/* ═══════════════════════════════════════════════════════════
   Chanz Automation - Main Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────── 
   CSS Variables (Brand Colors)
   ─────────────────────────────────────────────────────────── */
   :root {
    --brand-primary: #242636;      /* Deep navy */
    --brand-accent: #5FA8D3;        /* Light blue */
    --brand-light: #f8f9fa;
    --brand-dark: #1a1c2e;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-muted: #999999;
  }
  
  /* ─────────────────────────────────────────────────────────── 
     Global Styles
     ─────────────────────────────────────────────────────────── */
  * {
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    padding: 0;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-top: 0;
  }
  
  a {
    transition: all 0.3s ease;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* ─────────────────────────────────────────────────────────── 
     Header / Navigation
     ─────────────────────────────────────────────────────────── */
  .site-header {
    background-color: var(--brand-primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 48px;
    max-height: 48px;
    overflow: hidden;
  }

  .site-logo {
    transition: transform 0.3s ease;
    max-height: 35px;
    height: auto;
    width: auto;
  }

  .site-logo:hover {
    transform: scale(1.03);
  }
  
  .site-header .nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
    padding: 0.25rem 0.75rem !important;
  }
  
  .site-header .nav-link:hover {
    color: var(--brand-accent) !important;
  }
  
  .site-header .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: var(--brand-accent);
    border-radius: 2px;
  }
  
  /* ─────────────────────────────────────────────────────────── 
     Hero Section
     ─────────────────────────────────────────────────────────── */
  .hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    position: relative;
    padding: 6rem 0;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(36, 38, 54, 0.85) 0%, rgba(95, 168, 211, 0.6) 100%);
  }
  
  .hero .container {
    position: relative;
    z-index: 1;
  }
  
  .hero h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
  }
  
  .hero .lead {
    font-size: 1.25rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }
  
  /* ─────────────────────────────────────────────────────────── 
     Buttons
     ─────────────────────────────────────────────────────────── */
  .btn-accent {
    background-color: var(--brand-accent);
    border-color: var(--brand-accent);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
  }
  
  .btn-accent:hover {
    background-color: #4a8fb8;
    border-color: #4a8fb8;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(95, 168, 211, 0.4);
  }
  
  .btn-outline-secondary:hover {
    transform: translateY(-2px);
  }
  
  /* ─────────────────────────────────────────────────────────── 
     Cards
     ─────────────────────────────────────────────────────────── */
  .card {
    transition: all 0.3s ease;
    border-radius: 0.75rem;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
  }

  .hover-card {
    transition: all 0.3s ease;
  }

  .hover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(95, 168, 211, 0.2) !important;
  }

  .card-title {
    color: var(--brand-primary);
    font-weight: 600;
  }
  
  .border-accent {
    border-color: var(--brand-accent) !important;
  }
  
  /* ─────────────────────────────────────────────────────────── 
     Services Section
     ─────────────────────────────────────────────────────────── */
  .services {
    background-color: #ffffff;
  }
  
  .services h2 {
    color: var(--brand-primary);
    font-weight: 700;
  }
  
  /* ─────────────────────────────────────────────────────────── 
     About Section
     ─────────────────────────────────────────────────────────── */
  .about {
    background-color: var(--brand-light);
  }
  
  .about h2 {
    color: var(--brand-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  .about .list-unstyled li {
    margin-bottom: 0.75rem;
  }
  
  /* ─────────────────────────────────────────────────────────── 
     CTA Section
     ─────────────────────────────────────────────────────────── */
  .cta {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    padding: 4rem 0;
  }
  
  .cta h2 {
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  /* ─────────────────────────────────────────────────────────── 
     Footer
     ─────────────────────────────────────────────────────────── */
  .site-footer {
    background-color: var(--brand-primary);
    color: rgba(255, 255, 255, 0.8);
  }
  
  .site-footer a {
    color: rgba(255, 255, 255, 0.9);
  }
  
  .site-footer a:hover {
    color: var(--brand-accent);
    text-decoration: underline;
  }
  
  .site-footer address {
    font-style: normal;
    line-height: 1.8;
  }
  
  .text-accent {
    color: var(--brand-accent) !important;
  }
  
  .site-footer .text-accent {
    color: var(--brand-accent) !important;
    font-weight: 600;
  }
  
  /* ─────────────────────────────────────────────────────────── 
     Login Page
     ─────────────────────────────────────────────────────────── */
  .login-page {
    background-color: var(--brand-light);
    min-height: calc(100vh - 200px);
  }
  
  .login-page .card {
    border: none;
    border-radius: 1rem;
  }
  
  .login-page h2 {
    color: var(--brand-primary);
  }
  
  .login-page .form-control:focus {
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 0.2rem rgba(95, 168, 211, 0.25);
  }
  
  /* ─────────────────────────────────────────────────────────── 
     Admin Dashboard
     ─────────────────────────────────────────────────────────── */
  .admin-page h1 {
    color: var(--brand-primary);
  }
  
  .admin-page .card {
    border-radius: 0.75rem;
  }
  
  /* ─────────────────────────────────────────────────────────── 
     Privacy Page
     ─────────────────────────────────────────────────────────── */
  .privacy-page h1 {
    color: var(--brand-primary);
  }
  
  .privacy-page h2 {
    color: var(--brand-primary);
    margin-top: 2rem;
  }
  
  /* ─────────────────────────────────────────────────────────── 
     Error Pages (404, 500)
     ─────────────────────────────────────────────────────────── */
  .error-page {
    background-color: var(--brand-light);
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
  }
  
  .error-page .display-1 {
    font-size: 8rem;
    font-weight: 700;
  }
  
  /* ─────────────────────────────────────────────────────────── 
     Utility Classes
     ─────────────────────────────────────────────────────────── */
  .text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  
  .shadow-sm {
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.075) !important;
  }
  
  .rounded {
    border-radius: 0.5rem !important;
  }
  
  /* ─────────────────────────────────────────────────────────── 
     Responsive Adjustments
     ─────────────────────────────────────────────────────────── */
  @media (max-width: 768px) {
    .hero {
      min-height: 400px;
      padding: 4rem 0;
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  
    .hero .lead {
      font-size: 1rem;
    }
  
    .site-header .navbar-nav {
      flex-direction: row;
      flex-wrap: wrap;
    }
  
    .site-header .nav-link {
      padding: 0.5rem 0.75rem !important;
      font-size: 0.9rem;
    }
  
    .error-page .display-1 {
      font-size: 5rem;
    }
  }
  
  @media (max-width: 576px) {
    .hero h1 {
      font-size: 1.75rem;
    }
  
    .btn-accent {
      padding: 0.5rem 1.5rem;
    }
  
    .site-header .nav-link {
      padding: 0.5rem !important;
      font-size: 0.85rem;
    }
  }
  
  /* ─────────────────────────────────────────────────────────── 
     Animations
     ─────────────────────────────────────────────────────────── */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .card {
    animation: fadeIn 0.6s ease-out;
  }
  
  /* ─────────────────────────────────────────────────────────── 
     Print Styles
     ─────────────────────────────────────────────────────────── */
  @media print {
    .site-header,
    .site-footer,
    .cta {
      display: none;
    }
  
    body {
      font-size: 12pt;
      color: #000;
    }
  }