/* ================================================================
   SUN EXPORTS — GLOBAL STYLESHEET
   ================================================================ */

:root {
  --color-forest: #1C3D2E;
  --color-sage: #3A6B4F;
  --color-gold: #B8882A;
  --color-gold-light: #D4A84B;
  --color-cream: #F7F3EC;
  --color-white: #FFFFFF;
  --color-charcoal: #1A1A1A;
  --color-muted: #6B7280;
  --color-border: #E2DDD4;
  --color-success: #2D6A4F;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1280px;
  --section-pad: clamp(60px, 10vw, 120px);
  --section-pad: 40px;
  --radius-card: 4px;
  --radius-btn: 2px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(28,61,46,0.10);
  --shadow-lg: 0 20px 50px rgba(28,61,46,0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Nav sizing — single source of truth, referenced everywhere below */
  --nav-height: 78px;
  --nav-logo-height: 150px;
  --nav-icon-size: 40px;

}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-charcoal);
  background: var(--color-cream);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}


/* ---------- Typography ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--color-forest); }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 24px; }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); margin-bottom: 16px; }
h4 { font-size: 1.25rem; margin-bottom: 12px; }
p { margin-bottom: 16px; }
.lede { font-size: 1.125rem; color: var(--color-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9375rem; font-weight: 600;
  border-radius: var(--radius-btn);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold { background: var(--color-gold); color: var(--color-charcoal); }
.btn-gold:hover { background: var(--color-gold-light); transform: scale(1.02); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--color-white); border: 1.5px solid var(--color-white); }
.btn-outline:hover { background: var(--color-white); color: var(--color-forest); }
.btn-outline-dark { background: transparent; color: var(--color-forest); border: 1.5px solid var(--color-forest); }
.btn-outline-dark:hover { background: var(--color-forest); color: var(--color-white); }

/* ================================================================
   NAVIGATION
   ================================================================ */
/* ================================================================
   NAVIGATION
   ================================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  padding: 0;
  transition: all var(--transition);

  /* White Glass Effect */
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-forest);
  transition: color var(--transition);
}

.nav-logo .sun-icon {
  width: var(--nav-icon-size);
  height: var(--nav-icon-size);
  color: var(--color-gold);
  flex-shrink: 0;
}

.nav-logo .logo-img {
  max-height: var(--nav-logo-height);
  width: auto;
  display: block;
}

.nav-logo .exports {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

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

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-charcoal);
  position: relative;
  padding: 8px 0;
  transition: color var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  padding: 8px 0;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--color-charcoal);
  font-size: 0.9rem;
}

.nav-dropdown-menu a:hover {
  background: var(--color-cream);
  color: var(--color-forest);
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switcher {
  background: color(srgb red green blue)  ;
  border: 1px solid var(--color-border);
  color: var(--color-charcoal);
  padding: 8px 12px;
  border-radius: var(--radius-btn);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition);
}

.lang-switcher:hover {
  border-color: var(--color-forest);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; padding: 8px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-forest); /* Dark green */
    transition: all var(--transition);
}
.nav.scrolled .hamburger span { background: var(--color-forest); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu{
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;

    height: calc(100dvh - var(--nav-height));

    background: var(--color-forest);
    z-index: 999;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    padding: 30px 20px 40px;
    gap: 20px;

    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;

    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}
/* Prevent page scrolling when mobile menu is open */
body.menu-open{
    overflow:hidden;
}

/* Allow the mobile menu itself to scroll */
.mobile-menu{
    overflow-y:auto;
    overscroll-behavior:contain;
    -webkit-overflow-scrolling:touch;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu a{
    display:block;
    width:100%;
    text-align:center;

    color:var(--color-white);
    font-size:1.4rem;
    font-family:var(--font-display);

    padding:12px 0;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top:78px;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
  overflow: hidden;
}
.hero-home{
    position: relative;
    min-height: calc(100vh - var(--nav-height));
    margin-top: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: 0;
}

.hero-home-content{
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding-left: 60px;
    margin-top: 0;
}

.quality-hero .hero-content {
    margin-left: 0 !important;
    margin-right: auto !important;
    text-align: left !important;
}
/* ==========================================
   HOME PAGE HERO OVERLAY ONLY
========================================== */

.hero-home::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;

    background:linear-gradient(
        90deg,
        rgba(20,45,35,0.60) 0%,
        rgba(20,45,35,0.50) 15%,
        rgba(20,45,35,0.43) 25%,
        rgba(20,45,35,0.35) 30%,
        rgba(20,45,35,0.25) 50%
        
    );
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,
              rgba(0,0,0,0.45) 0%,
              rgba(0,0,0,0.15) 0%,
              transparent 10%),
              linear-gradient(90deg, rgba(28,61,46,0.85) 0%, rgba(28,61,46,0.4) 0%, transparent 100%);
  z-index: 1;
}
.hero.short{
    max-width: auto;
    margin-top:78px;
}
.hero-video {
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    z-index:0;}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 35px 10px;
    text-align: left;
}
.hero-home-content{
    position:relative;
    z-index:2;
    max-width:900px;
    padding-left:60px;
    margin-top:70px;
}
.hero-home-content h1{
  font-size:clamp(3rem,5vw,4.8rem);
  line-height:1.15;
  margin-bottom:24px;
}
.hero-home-content p{
    max-width:650px;
    font-size:1.15rem;
    line-height:1.8;
}
.hero-cta{
    display:flex;
    gap:20px;
    margin:35px 0 45px;
}
.hero-home-content .eyebrow-home{
    color:var(--color-gold-light);
}
.hero-home-content,
.hero-home-content h1,
.hero-home-content p{
    color:#fff;
    text-shadow:
        1px 1px 2px rgba(28,61,46,0.7),
       -1px -1px 2px rgba(28,61,46,0.7),
        0 0 6px rgba(28,61,46,0.35);
}
.hero h1, .hero p, .hero .btn, .hero .eyebrow { color: var(--color-white); }
.hero .eyebrow { color: var(--color-gold-light); }
.hero h1 { margin-bottom: 24px; }
.hero p { font-size: 1.125rem; opacity: 0.9; margin:0 auto 32px; max-width: 560px; color: var(--color-white); }
.hero-cta {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Hero trust stats */
.hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat { color: var(--color-white); }
.hero-stat .num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--color-gold-light); display: block; line-height: 1; }
.hero-stat .label { font-size: 0.8125rem; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; display: block; }

/* ================================================================
   SECTIONS
   ================================================================ */
section { padding: var(--section-pad) 0; position: relative; }
.section-cream { background: var(--color-cream); }
.contact-page > .container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

.contact-page .form-card {
  width: 100%;
  box-sizing: border-box;
}

.contact-page .form-row {
  width: 100%;
}

@media (max-width: 768px) {
  .contact-page > .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.contact-page > .container {
  max-width: 100%;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}
.section-forest { background: var(--color-forest); color: var(--color-white); }
.section-forest h1, .section-forest h2, .section-forest h3, .section-forest h4 { color: var(--color-white); }
.section-forest .eyebrow { color: var(--color-gold); }
.section-forest p { color: rgba(255,255,255,0.85); }
.section-white { background: var(--color-white); }

.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--color-muted); font-size: 1.0625rem; }
.section-forest .section-head p { color: rgba(255,255,255,0.8); }
.vision-card{  padding: 55px 40px;  margin: 20px 0 }

/* Grid utilities */
.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2x2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width:768px){

.testimonial-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
}

}
/* Feature cards */
.feature-card {
  background: var(--color-white);
  padding: 32px;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-gold); }
.feature-card .icon { width: 44px; height: 44px; color: var(--color-gold); margin-bottom: 16px; }
.feature-card h3 { color: var(--color-forest); font-family: var(--font-body); font-size: 1.25rem; font-weight: 600; }

/* Numbered reason cards */
.reason { display: flex; gap: 20px; }
.reason .num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--color-gold); line-height: 1; flex-shrink: 0; }
.reason h4 { color: var(--color-forest); font-family: var(--font-body); font-weight: 600; margin-bottom: 8px; }
.reason p { font-size: 0.9375rem; color: var(--color-muted); }

/* Product cards */
.product-card {
  background: var(--color-forest);
  color: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border-top: 3px solid var(--color-gold);
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card .img { aspect-ratio: 3/2; background: var(--color-sage); overflow: hidden; }
.product-card .img img { width: 100%; height: 100%; object-fit: contain; object-position: center 30%; }
.product-card .body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { color: var(--color-white); font-family: var(--font-display); font-size: 1.75rem; margin-bottom: 4px; }
.product-card .descriptor { color: var(--color-gold); font-size: 0.875rem; font-style: italic; margin-bottom: 12px; }
.product-card p { color: rgba(255,255,255,0.8); font-size: 0.9375rem; flex: 1; }
.product-card .learn { color: var(--color-gold); font-weight: 600; font-size: 0.875rem; margin-top: 16px; }

/* Big product cards (products.html) */
.product-big {
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.product-big:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-big .img { aspect-ratio: 16/9; background: var(--color-cream); overflow: hidden; }
.product-big .img img { width: 100%; height: 100%; object-fit: cover; }
.product-big .body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.product-big .badge { display: inline-block; background: var(--color-forest); color: var(--color-white); font-size: 0.7rem; font-weight: 600; padding: 4px 10px; border-radius: var(--radius-btn); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 12px; align-self: flex-start; }
.product-big h3 { color: var(--color-forest); font-family: var(--font-display); font-size: 1.875rem; margin-bottom: 4px; }
.product-big .tagline { color: var(--color-gold); font-style: italic; font-size: 0.9375rem; margin-bottom: 16px; }
.product-big .specs { list-style: none; margin: 16px 0; }
.product-big .specs li { font-size: 0.875rem; padding: 6px 0; border-bottom: 1px solid var(--color-border); display: flex; justify-content: space-between; gap: 16px; }
.product-big .specs li strong { color: var(--color-forest); font-weight: 600; }
.product-big .apps { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.product-big .apps span { background: var(--color-cream); color: var(--color-forest); font-size: 0.75rem; padding: 4px 12px; border-radius: 20px; font-weight: 500; }

.vision-card{
    background:#ffffff;
    padding:42px;
    border:1px solid #e6dfd2;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
    transition:all .3s ease;
    text-align:center;
}
/* Variant cards (product detail pages) */
.variant-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex; flex-direction: column;
  transition: all var(--transition);
}
.variant-card:hover { border-color: var(--color-gold); box-shadow: var(--shadow-md); }
.variant-card h3 { color: var(--color-forest); font-family: var(--font-body); font-size: 1.25rem; }
.variant-card a { color: var(--color-gold); font-weight: 600; font-size: 0.875rem; margin-top: auto; padding-top: 16px; }

/* Stats row */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center; padding: 48px 0;
}
.stat .num { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; color: var(--color-gold); display: block; line-height: 1; }
.stat .label { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-muted); margin-top: 8px; display: block; }
.section-forest .stat .label { color: rgba(255,255,255,0.7); }

/* Country flags grid */
.countries {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin: 32px 0;
}
.country {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
  color: var(--color-white);
  font-size: 0.9375rem;
}
.country .flag { font-size: 1.5rem; }

/* ================================================================
   EARTH STRIP
   ================================================================ */
.earth-strip {
  position: relative;
  height: 240px;
  background: var(--color-forest);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 40px 24px;
  overflow: hidden;
  clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%);
  margin: 80px 0;
}
.earth-strip::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.2 0 0 0 0 0.15 0 0 0 0.3 0'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.earth-strip blockquote {
  position: relative; z-index: 2;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--color-gold-light);
  max-width: 800px; line-height: 1.4;
  font-weight: 500;
}
.earth-strip cite { display: block; margin-top: 16px; font-size: 0.875rem; font-style: normal; color: rgba(255,255,255,0.7); letter-spacing: 0.1em; }

/* ================================================================
   FORMS
   ================================================================ */
.form-card {
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 6px; color: var(--color-forest); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-btn);
  background: var(--color-white);
  color: var(--color-charcoal);
  transition: border-color var(--transition);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--color-gold);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field .check-group { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.form-field .check-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 0.875rem;
  cursor: pointer;
}
.form-field .check-group label input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--color-gold);
}.form-success {
  display: none;
  background: var(--color-success); color: var(--color-white);
  padding: 24px; border-radius: var(--radius-card);
  text-align: center;
}
.form-success.show { display: block; }
.form-success h3 { color: var(--color-white); font-family: var(--font-body); }

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--color-charcoal);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 48px;
  margin-bottom: 48px;
}
footer h4 { color: var(--color-gold); font-family: var(--font-body); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 20px; }
footer .footer-brand h3 { color: var(--color-white); font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 8px; }
footer .footer-brand p { font-size: 0.875rem; line-height: 1.7; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul li a { font-size: 0.875rem; transition: color var(--transition); }
footer ul li a:hover { color: var(--color-gold); }
footer .footer-contact p { font-size: 0.875rem; margin-bottom: 8px; }
footer .footer-contact .label { color: var(--color-gold); font-weight: 600; margin-right: 8px; }
footer .certs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
footer .cert-badge {
  background: rgba(184,136,42,0.15); border: 1px solid var(--color-gold);
  color: var(--color-gold); font-size: 0.7rem; font-weight: 600;
  padding: 4px 10px; border-radius: var(--radius-btn);
  letter-spacing: 0.05em;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 0.8125rem;
}
.footer-bottom a:hover { color: var(--color-gold); }

/* ================================================================
   WHATSAPP BUTTON
   ================================================================ */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 998;
  background: #25D366; color: var(--color-white);
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  overflow: hidden;
}
.whatsapp-float:hover { width: 180px; border-radius: 30px; }
.whatsapp-float svg { width: 32px; height: 32px; flex-shrink: 0; }
.whatsapp-float .label {
  white-space: nowrap; font-weight: 600; font-size: 0.9375rem;
  max-width: 0; overflow: hidden; transition: max-width 0.3s;
}
.whatsapp-float:hover .label { max-width: 200px; margin-left: 12px; }
.whatsapp-float::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%; border: 2px solid #25D366;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s, transform 0.8s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Hero load animation */
.hero .eyebrow, .hero h1, .hero p, .hero-cta, .hero-stats {
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s forwards;
}
.hero .eyebrow { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.3s; }
.hero p { animation-delay: 0.5s;  max-width: 560px; margin: 0 0 32px; text-align: left; }
.hero-cta { animation-delay: 0.7s; }
.hero-stats { animation-delay: 0.9s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2x2 { grid-template-columns: 1fr; }
  .countries { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width:768px){

    .nav-links,
    .nav-actions .lang-switcher{
        display:none;
    }

    .hamburger{
        display:flex;
    }

    .hero-home{
        position:relative;
        height:100vh;
        min-height:100vh;
        margin-top:78px;        /* navbar height */
        padding:0;
        display:flex;
        align-items:center;
        justify-content:flex-start;
        overflow:hidden;
    }

    .hero-video{
        display:block;
        position:absolute;
        top:0;
        left:0;
        width:100%;
        height:100%;
        object-fit:cover;
        object-position:center;
        z-index:0;
    }

    .hero-home::before{
        content:"";
        position:absolute;
        inset:0;
        background:linear-gradient(
            90deg,
            rgba(28,61,46,.75) 0%,
            rgba(28,61,46,.45) 45%,
            rgba(28,61,46,0) 100%
        );
        z-index:1;
    }

    .hero-home-content{
        position:relative;
        z-index:2;
        width:100%;
        max-width:100%;
        padding:0 24px;
        margin:0;
        text-align:left;
    }

    .hero-home-content h1{
        font-size:2.2rem;
        line-height:1.2;
        margin-bottom:18px;
    }

    .hero-home-content p{
        max-width:100%;
        font-size:1rem;
        line-height:1.7;
    }

    .hero-cta{
        display:flex;
        flex-direction:column;
        gap:16px;
        margin-top:30px;
    }

    .hero-cta .btn{
        width:100%;
        justify-content:center;
    }

    .grid-2,
    .grid-3,
    .grid-4{
        grid-template-columns:1fr;
    }

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

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

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

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

}

@media (max-width: 420px) {
  .hero-home-content h1 { font-size: clamp(1.6rem, 9vw, 2.1rem); }
}
/* ---------- Certification Badges ---------- */
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  color: var(--color-forest);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--transition);
}
.cert-badge:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-sm);
}
.cert-badge.made-in-india {
  border-color: var(--color-gold);
  color: var(--color-charcoal);
  
}
@media (max-width:768px){

    .form-card{
        width:100%;
        max-width:100%;
        padding:24px;
        overflow:hidden;
    }

    .form-card input,
    .form-card select,
    .form-card textarea{
        width:100%;
        max-width:100%;
    }

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

}
@media (max-width:768px){

    section,
    .container,
    .grid,
    .hero-content{
        max-width:100%;
        overflow-x:hidden;
    }

}

