/* =========================
   REGULAR (DESKTOP/TABLET)
   ========================= */

/* CSS Variables */
:root {
    --brand: #25632D;
    --text: #111928;
    --muted: #847576;
    --bg: #ffffff;
    --footer: #111928;
    --stroke: #e5e7eb;
    --light-grey: #f8f9fa;
    --text-dark: #333333;
    --text-light: #666666;
  
    /* Typography knobs */
    --nav-font-size: 1.25rem;
    --nav-font-size-mobile: 1.05rem;
    --hero-h1-mobile: 2.4rem;
    --hero-h1-desktop: 5rem;
  }
  
  /* Reset and Base Styles */
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
  }
  img { max-width: 100%; height: auto; display: block; }
  a { text-decoration: none; color: inherit; }
  
  /* Container */
  .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem; /* desktop/tablet default */
  }
  
  /* Header */
  .header {
    background: var(--bg);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  }
  
  .header-container {
    width: 100%;
    padding: 0 5rem; /* keep your desktop spacing */
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 0;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: auto;
    min-width: 0;
  }
  
  .nav { margin-left: auto; }
  
  .logo-box {
    background: var(--brand);
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.2s;
  }
  .logo-box:hover { transform: scale(1.05); }
  
  .logo-text {
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Desktop nav visible */
  .nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    font-size: var(--nav-font-size);
    align-items: center;
  }
  
  .nav-link {
    font-size: inherit;
    font-weight: 300;
    color: var(--text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.2s;
  }
  
  .nav-link:hover,
  .nav-link.active {
    background: #f1f5f9;
    color: var(--brand);
  }
  
  /* Mobile Menu Toggle (hidden by default / desktop) */
  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  
  .mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: transform 0.3s, opacity 0.3s;
  }
  
  .mobile-menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
  .mobile-menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  /* Main Content */
  main { padding-top: 80px; }
  
  /* Hero Section */
  .hero {
    position: relative;
    height: 750px;
    overflow: hidden;
  }
  
  .hero-background {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
  }
  
  .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(17,25,40,0.7), rgba(37,99,45,0.7));
  }
  
  .hero-content {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    z-index: 10;
  }
  
  .hero-text {
    color: white;
    max-width: 850px;
  }
  
  .hero-text h1 {
    font-size: var(--hero-h1-desktop);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
  }
  
  .hero-lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.2s backwards;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--stroke);
    cursor: pointer;
    font-size: 0.875rem;
    animation: fadeInUp 0.8s ease 0.4s backwards;
  }
  
  .btn.primary {
    background: var(--brand);
    color: white;
    border: 0;
  }
  
  .btn.primary:hover {
    background: #1e4f24;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 45, 0.3);
  }
  
  .btn:focus {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
  }
  
  /* Sections */
  .section { padding: 6rem 0; }
  .section-alt { background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); }
  
  /* Split Layout (desktop default = 2 columns) */
  .split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .split-layout.reverse .split-image { order: -1; }
  
  .split-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .split-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.3;
  }
  
  .split-content p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
  
  .split-image { display: flex; }
  
  /* Image Card */
  .image-card {
    background: var(--bg);
    border: 1px solid var(--stroke);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
  }
  
  .image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  }
  
  .image-card img {
    border-radius: 12px;
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s;
  }
  
  .image-card img:hover { transform: scale(1.02); }
  
  /* Cards - other pages */
  .card {
    background: var(--bg);
    border: 1px solid var(--stroke);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  }
  
  /* Media Block */
  .media-block {
    background: linear-gradient(135deg, #25632D, #e9ecef);
    border-radius: 8px;
    height: 50px;
  }
  
  /* Feature List */
  .feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .feature-item { position: relative; padding-left: 16px; }
  
  .feature-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    bottom: 0.35rem;
    width: 4px;
    background: var(--brand);
    border-radius: 2px;
  }
  
  .feature-item h3 {
    margin: 0 0 0.25rem;
    color: var(--text);
    font-size: 1.125rem;
    font-weight: 600;
  }
  
  .feature-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
  }
  
   /* Stats Items - Centered Vertically */
.split-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stat-item { 
    margin-bottom: 2.5rem;
}

.stat-item:last-child { 
    margin-bottom: 0; 
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--brand);
    line-height: 1;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--muted);
    margin-top: 0.5rem;
}
   
  /* Footer */
  .footer {
    background: var(--footer);
    color: white;
    padding: 3rem 0 1rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .logo-box-footer {
    background: var(--brand);
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1rem;
  }
  
  .footer-company {
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.2;
  }
  
  .footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
  }
  
  .footer-section ul { list-style: none; }
  .footer-section ul li { margin-bottom: 0.5rem; }
  
  .footer-section a {
    color: #d1d5db;
    transition: color 0.2s;
  }
  .footer-section a:hover { color: white; }
  
  .contact-info p {
    margin-bottom: 0.75rem;
    color: #d1d5db;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.2rem;
  }
  
  .social-links a:hover {
    background: var(--brand);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 45, 0.3);
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
  }
  
  /* Page-specific styles */
  .page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  /* .page-hero-image {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
  }
  
  .page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  } */
  
  .page-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
  }
  
  .page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
  }
  
  .page-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  /* Utility Classes */
  .text-center { text-align: center; }
  .mb-4 { margin-bottom: 2rem; }
  
  /* Enhanced focus states for accessibility */
  .btn:focus,
  .nav-link:focus {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* =========================
     MOBILE (ONE MEDIA BLOCK)
     ========================= */
  @media (max-width: 767px) {
  
    /* Container */
    .container { padding: 0 1rem; }
  
    /* Header */
    .header-container { padding: 0 1rem; }
    .header-content { padding: 0.6rem 0; }
  
    .logo-box { padding: 6px 10px; font-size: 1rem; }
    .logo-text { font-size: 0.8rem; max-width: 160px; }
  
    /* Show hamburger on mobile */
    .mobile-menu-toggle { display: flex; padding: 10px; }
  
    /* Hide desktop horizontal list by default on mobile */
    .nav-list { display: none; }
  
    /* Mobile dropdown panel */
    .nav {
      position: absolute;
      top: 100%;
      left: 0; right: 0;
      background: var(--bg);
      border-bottom: 1px solid var(--stroke);
  
      transform: translateY(-8px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
  
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }
  
    .nav.active {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
  
    /* Mobile list when menu is open */
    .nav.active .nav-list {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      padding: 0.75rem 1rem 1rem;
      gap: 0.25rem;
      font-size: var(--nav-font-size-mobile);
    }
  
    .nav-link {
      display: block;
      padding: 0.85rem 1rem;
      border-radius: 10px;
    }
  
    /* Main spacing */
    main { padding-top: 72px; }
  
    /* Hero on mobile */
    .hero { height: 620px; }
    .hero-text h1 { font-size: var(--hero-h1-mobile); }
    .hero-lead { font-size: 1.125rem; }
  
    /* Sections */
    .section { padding: 5rem 0; }
  
    /* Split layout becomes 1 column */
    .split-layout {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  
    .split-layout.reverse .split-image { order: 0; }
  
    .split-content h2 { font-size: 1.75rem; }
  
    /* Image sizing */
    .image-card img { height: 300px; }
  
    /* Footer becomes stacked */
    .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    /* Page hero text */
    .page-hero h1 { font-size: 3rem; }
  
    /* Optional: tiny phones */
    .logo-text { max-width: 140px; }
  }
  