 /* ===== CSS RESET & VARIABLES ===== */
    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /*accent: #f4a623;*/
    :root {
      --primary: #1a7a3a;
      --primary-dark: #0f5c28;
      --primary-logo: #cd4047;
      --primary-light: #2ecc55;
      --accent: #cd4047;
      --dark: #1a1a2e;
      --dark-light: #2d2d44;
      --light: #f0f7f2;
      --white: #ffffff;
      --gray: #6b7280;
      --gray-light: #e5e7eb;
      --shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
      --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.08);
      --radius: 16px;
      --radius-sm: 10px;
      --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
      color: var(--dark);
      background: var(--white);
      line-height: 1.7;
      overflow-x: hidden;
    }

    body.menu-open {
      overflow: hidden;
    } 

    a,
    a:hover,
    a:visited {
      color: var(--primary);
      text-decoration: none;
      cursor: pointer;
    }

    a:hover {
      color: var(--primary-dark);
    }

    a.logo:hover,
    a.logo:visited {
      color: var(--white);
    } 

    a.btn-explore-products,
    a.btn-our-mission {
      color: var(--white);
    }

    a.btn-our-mission:hover {
      color: var(--primary);
    }

    .seeger-color {
      color: var(--primary-logo);
    }

    .hide {
      display: none;
    }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: var(--light);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--primary);
      border-radius: 10px;
    }

    /* ===== NAVIGATION ===== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 18px 0;
      box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
      background: rgba(255, 255, 255, 0.01);
      transition: var(--transition);
    }

    .navbar.scrolled {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(20px);
      padding: 18px 0;
      box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    }

    .navbar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--white);
      transition: var(--transition);
      z-index: 1001;
    }

    body:not(.menu-open) .navbar.scrolled .logo {
      color: var(--primary-logo);
    }

    .logo-icon {
      width: 42px;
      height: 42px;
      background: var(--primary-light);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      align-items: center;
      /* Centers both words horizontally relative to each other */
      line-height: 1;
      /* Collapses default text spacing */
    }

    .logo-title {
      font-size: 1.6rem;
      font-weight: 800;
    }

    .logo-reg {
      font-size: 12px;
      vertical-align: super;
    }

    .logo-subtitle {
      font-size: 0.6em;
      font-weight: 800;
      /* Optional: matches the boldness of the main title */
      margin-top: 2px;
      /* Controls the small gap; adjust this pixel value as needed */
      letter-spacing: 1px;
      /* Optional: improves readability for small text */
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: rgba(255, 255, 255, 0.85);
      font-weight: 500;
      font-size: 0.95rem;
      padding: 8px 20px;
      border-radius: 50px;
      transition: var(--transition);
      cursor: pointer;
    }

    .navbar.scrolled .nav-links:not(.open) a {
      color: var(--dark);
    }

    .nav-links a.active, .nav-cta.active {
      background: var(--primary-dark) !important;
      color: var(--white) !important;
    }

    .nav-links a:hover {
      background: var(--primary);
      color: var(--white) !important;
    }

    .nav-cta {
      color: var(--accent) !important;
      background: var(--white) !important;
      font-weight: 700 !important;
    }

    .nav-cta:hover {
      /*background: #e0951a !important;*/
      /*background: #333 !important;*/
      background: var(--primary) !important;
      transform: translateY(-2px);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 5px;
      z-index: 1001;
    }

    .hamburger span {
      width: 28px;
      height: 3px;
      background: var(--white);
      border-radius: 3px;
      transition: var(--transition);
    }

    .navbar.scrolled .hamburger span {
      background: var(--dark);
    }

    .hamburger.open span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -6px);
    }

    select.langSelect {
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: var(--light);
      padding: 5px 10px;
      border-radius: 6px;
      margin-left: 15px;
      z-index: 1001;
    }

    body:not(.menu-open) .navbar.scrolled select.langSelect {
      color: var(--dark);
      border-color: #c1c1c1;
    }

    /* ===== CONTAINER ===== */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===== PAGE SECTIONS ===== */
    .page {
      display: block;
      opacity: 1;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .page.active {
      display: block;
    }

    .page.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== HOME PAGE — HERO ===== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background-image: url('/media/hero-image.jpg');
      background-position: center center;
      background-size: cover;
      background-repeat: no-repeat;
      min-height: 100vh;
      overflow: hidden; 
    }

    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Video Styling */
    .hero-bg video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      transform: translate(-50%, -50%);
      z-index: 0;
      object-fit: cover;
      opacity: 0; /* Hidden initially, fades in via JS */
      transition: opacity 2s ease-in-out;
    }

    /* Video Visible State */
    .hero video.video-loaded {
        opacity: 1;
    }

    /* Smooth Transition Overlay */
    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* Keeps text readable */
        z-index: 2;
        transition: background 0.8s ease-in-out;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg,
          rgba(15, 52, 20, 0.3) 0%,
          rgba(26, 122, 58, 0.9) 30%,
          rgba(46, 204, 85, 0.5) 100%);
      z-index: 1;
    }

    .hero-particles {
      position: absolute;
      inset: 0;
      z-index: 2;
      overflow: hidden;
    }

    .particle {
      position: absolute;
      width: 6px;
      height: 6px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      animation: float-up linear infinite;
    }

    @keyframes float-up {
      0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
      }

      10% {
        opacity: 1;
      }

      90% {
        opacity: 1;
      }

      100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
      }
    }

    .hero-content {
      position: relative;
      z-index: 3;
      max-width: 750px;
      padding: 120px 0 80px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 8px 20px;
      border-radius: 50px;
      color: var(--primary-light);
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 24px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .hero-badge .dot {
      width: 8px;
      height: 8px;
      background: var(--primary-light);
      border-radius: 50%;
      animation: pulse-dot 2s ease infinite;
    }

    @keyframes pulse-dot {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.5;
        transform: scale(1.5);
      }
    }

    .hero h1 {
      font-size: clamp(2.5rem, 6vw, 4.2rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 20px;
      letter-spacing: -1px;
    }

    .hero h1 .highlight {
      background: linear-gradient(135deg, var(--primary-light), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero p {
      font-size: 1.15rem;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 40px;
      max-width: 560px;
      line-height: 1.8;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 36px;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: var(--transition);
      letter-spacing: 0.3px;
    }

    .btn-primary {
      background: var(--primary-light);
      color: var(--white);
      box-shadow: 0 8px 30px rgba(46, 204, 85, 0.4);
    }

    .btn-primary:hover {
      background: #27ae4a;
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(46, 204, 85, 0.5);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .btn-outline:hover {
      border-color: var(--white);
      background: rgba(255, 255, 255, 0.7);
      transform: translateY(-3px);
    }

    .btn-accent {
      background: var(--accent);
      color: var(--light) !important;
      /*box-shadow: 0 8px 30px rgba(244,166,35,0.4);*/
      box-shadow: 0 8px 30px rgb(0 0 0 / 40%)
    }

    .btn-accent:hover {
      /*background: #e0951a;*/
      background: var(--primary-dark);
      transform: translateY(-3px);
    }

    .hero-stats {
      display: flex;
      gap: 48px;
      margin-top: 60px;
      padding-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .stat h3 {
      font-size: 2.2rem;
      font-weight: 900;
      color: var(--primary-light);
    }

    .stat p {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 0;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* ===== HOME — FEATURES ===== */
    .features-section {
      padding: 100px 0;
      background: var(--light);
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-tag {
      display: inline-block;
      background: rgba(26, 122, 58, 0.1);
      color: var(--primary);
      padding: 6px 18px;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 16px;
    }

    .section-header h2 {
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 900;
      color: var(--dark);
      margin-bottom: 16px;
      letter-spacing: -0.5px;
    }

    .section-header p {
      font-size: 1.1rem;
      color: var(--gray);
      max-width: 600px;
      margin: 0 auto;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
    }

    .feature-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 40px 32px;
      transition: var(--transition);
      border: 1px solid transparent;
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--primary-light));
      transform: scaleX(0);
      transition: var(--transition);
    }

    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow);
      border-color: rgba(46, 204, 85, 0.15);
    }

    .feature-card:hover::before {
      transform: scaleX(1);
    }

    .feature-icon {
      width: 64px;
      height: 64px;
      background: linear-gradient(135deg, rgba(26, 122, 58, 0.1), rgba(46, 204, 85, 0.15));
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      margin-bottom: 24px;
    }

    .feature-card h3 {
      font-size: 1.25rem;
      font-weight: 800;
      margin-bottom: 12px;
      color: var(--dark);
    }

    .feature-card p {
      color: var(--gray);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    /* ===== HOME — CTA BANNER ===== */
    .cta-banner {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
    }

    .cta-banner::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 400px;
      height: 400px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 50%;
    }

    .cta-content {
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .cta-content h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 900;
      color: var(--white);
      margin-bottom: 16px;
    }

    .cta-content p {
      font-size: 1.15rem;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 36px;
      max-width: 550px;
      margin-left: auto;
      margin-right: auto;
    }

    /* ===== PRODUCTS PAGE ===== */
    .products-hero {
      padding: 160px 0 80px;
      background: linear-gradient(135deg, var(--dark) 0%, var(--primary-light) 100%);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .products-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a7a3a' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .products-hero h1 {
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      font-weight: 900;
      color: var(--white);
      margin-bottom: 16px;
      position: relative;
    }

    .products-hero p {
      font-size: 1.15rem;
      color: rgba(255, 255, 255, 0.6);
      max-width: 550px;
      margin: 0 auto;
      position: relative;
    }

    .products-section {
      padding: 80px 0 100px;
      background: var(--light);
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 32px;
    }

    .product-card {
      cursor: pointer;
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
    }

    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow);
    }

    .product-image {
      position: relative;
      height: 240px;
      overflow: hidden;
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }

    .product-card:hover .product-image img {
      transform: scale(1.08);
    }

    .product-tag {
      position: absolute;
      top: 16px;
      left: 16px;
      background: var(--primary);
      color: var(--white);
      padding: 5px 14px;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .product-info {
      padding: 28px;
    }

    .product-info h3 {
      font-size: 1.3rem;
      font-weight: 800;
      margin-bottom: 10px;
      color: var(--dark);
    }

    .product-info p {
      color: var(--gray);
      font-size: 0.92rem;
      margin-bottom: 20px;
      line-height: 1.7;
    }

    .product-specs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
    }

    .spec-badge {
      background: var(--light);
      color: var(--primary);
      padding: 5px 12px;
      border-radius: 6px;
      font-size: 0.78rem;
      font-weight: 600;
    }

    .product-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--primary);
      font-weight: 700;
      font-size: 0.9rem;
      text-decoration: none;
      transition: var(--transition);
    }

    .product-link:hover {
      gap: 14px;
      cursor: pointer;
    }

    /* ===== MISSION PAGE ===== */
    .mission-hero {
      padding: 160px 0 80px;
      background: linear-gradient(135deg, var(--primary-dark), var(--primary));
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .mission-hero::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
    }

    .mission-hero h1 {
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      font-weight: 900;
      color: var(--white);
      margin-bottom: 16px;
      position: relative;
    }

    .mission-hero p {
      font-size: 1.15rem;
      color: rgba(255, 255, 255, 0.75);
      max-width: 600px;
      margin: 0 auto;
      position: relative;
    }

    .mission-content {
      padding: 80px 0;
    }

    .mission-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-bottom: 80px;
    }

    .mission-block:nth-child(even) {
      direction: rtl;
    }

    .mission-block:nth-child(even)>* {
      direction: ltr;
    }

    .mission-image {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      position: relative;
    }

    .mission-image img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      display: block;
    }

    .mission-image .overlay-badge {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background: var(--white);
      padding: 12px 20px;
      border-radius: var(--radius-sm);
      box-shadow: var(--shadow-sm);
      font-weight: 800;
      color: var(--primary);
      font-size: 0.9rem;
    }

    .mission-text h2 {
      font-size: 2rem;
      font-weight: 900;
      color: var(--dark);
      margin-bottom: 16px;
    }

    .mission-text p {
      color: var(--gray);
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .mission-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .mission-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: var(--dark);
      font-weight: 500;
    }

    .mission-list li .check {
      width: 24px;
      height: 24px;
      min-width: 24px;
      background: rgba(46, 204, 85, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 0.75rem;
      margin-top: 2px;
    }

    /* Values Grid */
    .values-section {
      padding: 80px 0 100px;
      background: var(--light);
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 28px;
    }

    .value-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 36px 28px;
      text-align: center;
      transition: var(--transition);
    }

    .value-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
    }

    .value-icon {
      width: 72px;
      height: 72px;
      margin: 0 auto 20px;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: var(--white);
    }

    .value-card h3 {
      font-size: 1.15rem;
      font-weight: 800;
      margin-bottom: 10px;
      color: var(--dark);
    }

    .value-card p {
      color: var(--gray);
      font-size: 0.9rem;
    }

    /* ===== CONTACT PAGE ===== */
    .contact-hero {
      padding: 160px 0 80px;
      background: linear-gradient(135deg, var(--primary-light) 0%, #16213e 100%);
      text-align: center;
    }

    .contact-hero h1 {
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      font-weight: 900;
      color: var(--white);
      margin-bottom: 16px;
    }

    .contact-hero p {
      font-size: 1.15rem;
      color: rgba(255, 255, 255, 0.6);
      max-width: 500px;
      margin: 0 auto;
    }

    .contact-section {
      padding: 80px 0 100px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .contact-info h2 {
      font-size: 2rem;
      font-weight: 900;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .contact-info>p {
      color: var(--gray);
      font-size: 1.05rem;
      line-height: 1.7;
    }

    .info-card {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px;
      background: var(--light);
      border-radius: var(--radius-sm);
      transition: var(--transition);
    }

    .info-card:hover {
      background: rgba(46, 204, 85, 0.08);
    }

    .info-icon {
      width: 48px;
      height: 48px;
      min-width: 48px;
      background: var(--primary-light);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: var(--white);
    }

    .info-card h4 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 4px;
    }

    .info-card p {
      color: var(--gray);
      font-size: 0.9rem;
    }

    .contact-form-wrapper {
      background: var(--white);
      border-radius: var(--radius);
      padding: 40px;
      box-shadow: var(--shadow);
      border: 1px solid var(--gray-light);
    }

    .contact-form-wrapper h3 {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 28px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 14px 18px;
      border: 2px solid var(--gray-light);
      border-radius: var(--radius-sm);
      font-size: 0.95rem;
      font-family: inherit;
      color: var(--dark);
      transition: var(--transition);
      background: var(--white);
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(46, 204, 85, 0.1);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .submit-btn {
      width: 100%;
      padding: 16px;
      background: var(--primary);
      color: var(--white);
      border: none;
      border-radius: var(--radius-sm);
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: var(--transition);
      font-family: inherit;
    }

    .submit-btn:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(26, 122, 58, 0.3);
    }

    /* ===== LEGAL PAGE STYLES ===== */
    .legal-page {
      padding: 0;
      background: var(--white);
    }

    .legal-content {
      max-width: 800px;
      margin: 0 auto;
      padding-bottom: 80px;
    }

    .legal-content h1 {
      font-size: 2.5rem;
      font-weight: 900;
      color: var(--dark);
      margin-bottom: 32px;
      border-bottom: 2px solid var(--primary-light);
      display: inline-block;
      padding-bottom: 8px;
    }

    .legal-content h2 {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--primary-dark);
      margin-top: 40px;
      margin-bottom: 16px;
    }

    .legal-content p,
    .legal-content li {
      color: var(--gray);
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 12px;
    }

    .legal-content ul {
      padding-left: 20px;
      margin-bottom: 20px;
    }

    /* ===== COOKIE BANNER STYLES ===== */
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: var(--dark);
      color: var(--white);
      padding: 20px 0;
      z-index: 3000;
      /* Above footer */
      transform: translateY(100%);
      transition: transform 0.4s ease;
      box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    }

    .cookie-banner.show {
      transform: translateY(0);
    }

    .cookie-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .cookie-text {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.9);
      flex-grow: 1;
    }

    .cookie-btn {
      background: var(--primary-light);
      color: var(--white);
      border: none;
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: 700;
      cursor: pointer;
      transition: var(--transition);
      white-space: nowrap;
    }

    .cookie-btn:hover {
      background: var(--primary);
      transform: translateY(-2px);
    }

    /* Map */
    .map-section {
      padding: 0 0 100px;
    }

    .map-wrapper {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      height: 400px;
    }

    .map-wrapper iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--dark);
      color: rgba(255, 255, 255, 0.6);
      padding: 60px 0 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-brand .logo {
      color: var(--white);
      margin-bottom: 16px;
    }

    .footer-brand p {
      font-size: 0.9rem;
      line-height: 1.7;
      max-width: 300px;
    }

    .footer h4 {
      color: var(--white);
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      font-size: 0.9rem;
      transition: var(--transition);
      cursor: pointer;
    }

    .footer-links a:hover,
    .footer-links a.active {
      color: var(--primary-light);
      padding-left: 6px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 24px;
      display: block;
      /*display: flex;*/
      /*justify-content: space-between;*/
      /*align-items: center;*/
      font-size: 0.85rem;
      text-align: center;
    }

    .social-links {
      display: flex;
      gap: 12px;
    }

    .social-links a {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.06);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      transition: var(--transition);
      font-size: 1.1rem;
    }

    .social-links a:hover {
      background: var(--primary);
      color: var(--white);
      transform: translateY(-3px);
    }

    /* ===== TOAST NOTIFICATION ===== */
    .toast {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: var(--primary);
      color: var(--white);
      padding: 16px 28px;
      border-radius: var(--radius-sm);
      box-shadow: var(--shadow);
      font-weight: 600;
      z-index: 9999;
      transform: translateY(100px);
      opacity: 0;
      transition: var(--transition);
    }

    .toast.show {
      transform: translateY(0);
      opacity: 1;
    }

    .toast.error {
        background: var(--accent);
    }

    /* ===== MODAL STYLES ===== */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(5px);
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      padding: 0;
    }

    .modal-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .modal-content {
      background: var(--white);
      width: 100%;
      max-width: 900px;
      max-height: 100vh;
      /* Prevents it from being taller than the screen */
      /*border-radius: var(--radius);*/
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      position: relative;
      overflow-y: auto;
      /* Allows scrolling inside the modal */
      transform: scale(0.9);
      transition: transform 0.3s ease;
    }

    .modal-overlay.open .modal-content {
      transform: scale(1);
    }

    .close-modal {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 40px;
      height: 40px;
      background: var(--light);
      border: none;
      border-radius: 50%;
      font-size: 1.5rem;
      cursor: pointer;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--dark);
      transition: var(--transition);
    }

    .close-modal:hover {
      background: #fee2e2;
      color: #ef4444;
    }

    .modal-body {
      display: grid;
      grid-template-columns: 0.75fr 1.25fr;
    }

    .modal-image {
      height: 100%;
      min-height: 300px;
    }

    .modal-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .modal-info {
      padding: 40px;
      display: flex;
      flex-direction: column;
    }

    .modal-info h2 {
      font-size: 2rem;
      font-weight: 900;
      color: var(--primary-dark);
      margin-bottom: 12px;
    }

    .modal-price {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 20px;
      display: none;
    }

    .modal-desc {
      color: var(--gray);
      line-height: 1.7;
      margin-bottom: 24px;
      flex-grow: 1;
    }

    .modal-specs-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 30px;
    }

    .modal-spec-badge {
      background: var(--light);
      color: var(--primary-dark);
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 0.9rem;
      font-weight: 600;
      border: 1px solid rgba(26, 122, 58, 0.1);
    }

    .modal-actions {
      display: flex;
      gap: 12px;
    }

    /* ===== MODAL DETAILS LIST (STACKED) ===== */
    .modal-details-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      /* Space between each item */
      margin-bottom: 24px;
    }

    .detail-item {
      display: flex;
      flex-direction: column;
      /* Stacks label and text */
      position: relative;
      padding-left: 16px;
      /* Space for the bullet */
    }

    /* The bullet point */
    .detail-item::before {
      content: "•";
      color: var(--primary);
      font-weight: bold;
      font-size: 1.2rem;
      position: absolute;
      left: 0;
      top: 0;
      line-height: 1.2;
    }

    .detail-label {
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 6px;
      /* Space between title and text */
      font-size: 1rem;
    }

    .detail-text {
      color: var(--gray);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    /* Nested List Styling */
    .detail-sub-list {
      list-style-type: circle;
      color: var(--gray);
      margin-top: -6px;
      margin-left: 16px;
      /* Aligns with the text above */
      padding-left: 12px;
    }

    .detail-sub-list li {
      margin-bottom: 12px;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .detail-sub-list li strong {
      color: var(--primary-dark);
      display: block;
      /* Forces the label on its own line in sub-items too */
      margin-bottom: 2px;
    }

    /* ===== ICON HELPERS ===== */
    /* General spacing */
    .fa {
      margin-right: 8px;
    }

    /* Buttons: Arrow on the right */
    .btn i {
      margin-left: 8px;
      margin-right: 0;
    }

    /* Overlay Badges: Green icon on white background */
    .overlay-badge i {
      color: var(--primary);
      margin-right: 6px;
    }

    /* Feature Icons: Green icon on light background */
    .feature-icon i {
      font-size: 1.8rem;
      color: var(--primary);
    }

    /* Info Icons: White icon on green background */
    .info-icon i {
      font-size: 1.2rem;
      color: var(--white);
    }

    /* Logo: White icon on light green background */
    .logo-icon i {
      font-size: 1.3rem;
      color: var(--white);
    }

    /* Checkmarks: Green icon on light background */
    .check i {
      font-size: 0.75rem;
      color: var(--primary);
    }

    /* placeholder style */
    input::placeholder, textarea::placeholder {
      color: rgba(0, 0, 0, 0.3); /* Lighter gray */
      opacity: 1; /* Ensure full opacity of the color we set */
    }

    /* Mobile Responsive Modal */
    @media (max-width: 768px) {
      .modal-body {
        grid-template-columns: 1fr;
      }

      .modal-image {
        height: 250px;
      }

      .modal-info {
        padding: 24px;
      }
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
      .nav-links a {
        padding: 8px 10px;
      }

      .mission-block {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .mission-block:nth-child(even) {
        direction: ltr;
      }

      .contact-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .hamburger {
        display: flex;
      }

      /*
      .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        gap: 5%;
        transition: var(--transition);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
      }
      */
    /* 1. The Overlay */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        
        /* Semi-transparent dark overlay */
        background: rgba(0, 0, 0, 0.5); 
        
        /* Hidden by default */
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        
        /* Ensure it sits behind menu items but above content */
        z-index: 998; 
        
        /* Prevent clicks from passing through to content below */
        pointer-events: none;
    }

    /* 2. The Menu Items (must be above overlay) */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* or left */
        width: 100%; /*280px;*/
        height: 100vh;
        background: linear-gradient(135deg, var(--primary) 0% 15%, var(--primary-light) 140%);
        z-index: 999; /* Higher than the overlay */
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        gap: 5%;
        transition: var(--transition);
    }

    /* 3. Active State (Menu Open) */
    .nav-links.active {
        transform: translateX(0); /* Slide in */
    }

    body.menu-open::before {
        opacity: 1;
        visibility: visible;
        pointer-events: auto; /* Allow clicking the overlay to close */
        overflow: hidden;
    }

      .nav-links.open {
        right: 0;
      }

      .nav-links a {
        font-size: 1.1rem;
        padding: 12px 24px;
        width: 100%;
        text-align: center;
      }

      .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
      }

      .stat h3 {
        font-size: 1.6rem;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }

      .contact-form-wrapper {
        padding: 28px;
      }
    }

    @media (max-width: 480px) {
      .hero-buttons {
        flex-direction: column;
      }

      .btn {
        justify-content: center;
      }

      .products-grid {
        grid-template-columns: 1fr;
      }
    }

  /* Documentation Section Styles */
  .documentation-content {
      max-width: 800px;
      margin: 0 auto;
      padding-bottom: 80px;
  }

  .docs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
  }

  .doc-card {
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
      background: #fff;
      padding: 1.5rem;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
      border: 1px solid #eee;
      transition: transform 0.2s ease;
  }

  .doc-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 12px rgba(0,0,0,0.1);
  }

  .doc-image img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      background: #f9f9f9;
      border-radius: 4px;
      padding: 5px;
  }

  .doc-content h3 {
      margin: 0 0 0.5rem 0;
      font-size: 1.1rem;
      color: #333;
  }

  .doc-content p {
      margin: 0 0 1rem 0;
      font-size: 0.9rem;
      color: #666;
      line-height: 1.5;
  }

  .btn-download {
      display: inline-block;
      text-decoration: none;
      color: var(--primary);
      font-weight: 600;
      font-size: 0.9rem;
      border: 1px solid var(--primary);
      padding: 0.5rem 1rem;
      border-radius: 4px;
      transition: all 0.3s ease;
  }

  .doc-card:hover .btn-download,
  .btn-download:hover {
      background: var(--primary);
      color: #fff;
  }

  /* Responsive adjustment for small screens */
  @media (max-width: 480px) {
      .doc-card {
          flex-direction: column;
          align-items: center;
          text-align: center;
      }
  }

@media (max-width: 767px) {
  .hero-video {
    display: none;
  }
} 
