/* =====================================================
   Sriannai UPVC - Premium Corporate Website
   Main Stylesheet
   ===================================================== */

/* ---------- CSS Variables ----------
   Brand palette extracted from the Srii Annai logo:
   Green  #8CC63E  -> primary brand color (growth, nature, leaves)
   Brown  #5B4A42  -> secondary / deep neutral (window frame)
   Red    #C01E2E  -> tertiary accent (window glass, used sparingly)
   Gold   retained as the luxury metallic accent that pairs with the
   warm brown/green earth tones for a premium finish.
   Variable names are kept the same as the original system so every
   existing usage throughout the CSS re-themes automatically.
------------------------------------- */
:root {
  /* Primary palette - warm charcoal-brown (from logo frame) */
  --navy-950: #1A130E;
  --navy-900: #241A14;
  --navy-800: #33261B;
  --navy-700: #46331F;
  --navy-600: #5B4A3A;

  /* Brand green (from logo leaves) - primary accent */
  --royal-500: #5C8F2E;
  --royal-400: #78AF3E;
  --royal-300: #9DCB6A;
  --sky-200: #E4F1D3;

  /* Neutrals - warmed slightly to sit with the brown/green palette */
  --white: #FFFFFF;
  --off-white: #FBFAF6;
  --light-gray: #F4F3EE;
  --gray-300: #DAD7CD;
  --gray-500: #7D7A70;
  --gray-700: #423E36;
  --dark: #2E2A24;

  /* Luxury gold accent */
  --gold-500: #C9A24A;
  --gold-400: #D8B863;
  --gold-300: #E6CF8B;
  --orange-500: #e8853a;
  --orange-400: #f09a52;

  /* Brand red (from logo glass) - used sparingly for pop accents */
  --red-600: #A31A28;
  --red-500: #C01E2E;
  --red-400: #D9495A;
  --red-100: #F7DEE1;

  /* Semantic */
  --success: #4C8F2E;
  --warning: #e8a93a;
  --error: #C01E2E;

  /* Typography - premium heading + body pairing */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Manrope', sans-serif;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'Manrope', sans-serif;

  /* Spacing (8px system) */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 2.5rem;
  --sp-6: 3rem;
  --sp-7: 4rem;
  --sp-8: 5rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26, 19, 14, 0.07);
  --shadow-md: 0 8px 24px rgba(26, 19, 14, 0.11);
  --shadow-lg: 0 20px 50px rgba(26, 19, 14, 0.16);
  --shadow-xl: 0 30px 70px rgba(26, 19, 14, 0.20);
  --shadow-gold: 0 10px 30px rgba(201, 162, 74, 0.30);
  --shadow-green: 0 10px 30px rgba(92, 143, 46, 0.28);

  /* Gradients */
  --grad-navy: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  --grad-royal: linear-gradient(135deg, var(--royal-500) 0%, var(--royal-400) 100%);
  --grad-gold: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-300) 100%);
  --grad-hero: linear-gradient(135deg, #1A130E 0%, #33261B 50%, #46331F 100%);
  --grad-glass: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.2s var(--ease);
  --t-base: 0.35s var(--ease);
  --t-slow: 0.6s var(--ease);

  /* Layout */
  --max-w: 1280px;
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { 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.6;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; height: auto; }

a { color: inherit; text-decoration: none; transition: color var(--t-fast); }

ul, ol { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

input, textarea, select { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }
h6 { font-size: 0.9rem; }

p { margin-bottom: var(--sp-2); }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-4);
}

.section { padding: var(--sp-10) 0; position: relative; }
.section-sm { padding: var(--sp-8) 0; }

.text-center { text-align: center; }
.text-gold { color: var(--gold-500); }
.text-white { color: var(--white); }
.text-royal { color: var(--royal-500); }

.bg-navy { background: var(--navy-900); color: var(--gray-300); }
.bg-light { background: var(--off-white); padding-bottom: 20px; margin-top: 30px;}
.bg-gradient-navy { background: var(--grad-navy); color: var(--gray-300); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--royal-500);
  margin-bottom: var(--sp-2);
}
.eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--royal-500);
  border-radius: 2px;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: '';
  width: 28px; height: 2px;
  background: var(--royal-500);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: var(--sp-2);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 620px;
  margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: var(--sp-8);}
.section-header p { color: var(--gray-500); max-width: 620px; margin: var(--sp-2) auto 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  padding: 0.85rem 1.8rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--r-full);
  transition: all var(--t-base);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--white);
  color: black;
  box-shadow: black;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(201, 162, 74, 0.42);
}
.btn-secondary {
  background: transparent;
  color: var(--navy-900);
  border: 2px solid var(--navy-900);
}
.btn-secondary:hover {
  background: var(--navy-900);
  color: var(--white);
  transform: translateY(-3px);
}
.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border: 2px solid var(--navy-900);
}
.btn-outline:hover {
  background: var(--navy-900);
  color: var(--white);
  transform: translateY(-3px);
}
.btn-ghost {
  background: rgba(255,255,255,0.10);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}
.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.30);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(37, 211, 102, 0.42); }

.btn svg, .btn i { width: 18px; height: 18px; }

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
  text-align: center;
}
.preloader-logo .pl-mark {
  width: 64px; height: 64px;
  margin: 0 auto var(--sp-3);
  border: 3px solid rgba(201, 162, 74, 0.2);
  border-top-color: var(--gold-500);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.preloader-logo p {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--white);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
.preloader-logo p span { color: var(--gold-500); }

@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Header ---------- */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  padding:1.3rem 0;
  background-color: var(--white);
  box-shadow: 0 1px 0 rgba(26,19,14,0.05);
  transition:background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header .container{display:flex;align-items:center;justify-content:space-between;gap:2rem;}
.site-header.scrolled{
  background:rgba(251,250,246,0.86);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  padding:.85rem 0;
  box-shadow:var(--shadow-md);
}
.brand{display:flex;align-items:center;gap:.7rem;}
.brand-mark{
  width:42px;height:42px;
  display:flex;align-items:center;justify-content:center;
  color:var(--white);font-family:var(--font-display);font-weight:700;font-size:1.15rem;
  flex-shrink:0;
  transition: transform var(--t-base);
}

.brand-name{font-family:var(--font-display);font-weight:600;font-size:1.15rem;letter-spacing:-0.01em;color:var(--navy-900);transition:color .4s;}
.brand-name span{display:block;font-family:var(--font-mono);font-size:.62rem;letter-spacing:.18em;text-transform:uppercase;color: var(--royal-500); font-weight:600;}
.site-header.scrolled .brand-name{color:var(--navy-950);}

.nav-menu{display:flex;align-items:center;gap:2.1rem;}
.nav-menu a{
  font-size:.93rem;font-weight:550;color:var(--navy-900);
  position:relative;padding:.3rem 0;transition:color .3s;
}
.nav-menu a::after{
  content:"";position:absolute;left:0;bottom:-2px;height:2px;width:0;
  background:var(--royal-500);transition:width .35s var(--ease);
}
.nav-menu a:hover::after,.nav-menu a.active::after{width:100%;}
.nav-menu a:hover{color:var(--royal-500);}
.nav-menu a.active{color: var(--royal-500);}
.site-header.scrolled .nav-menu a{color:var(--navy-900);}
.site-header.scrolled .nav-menu a.active{color:var(--gold-500);}
.site-header.scrolled .nav-menu a::after{background:var(--gold-500);}

.header-actions{display:flex;align-items:center;gap:.7rem;}
.icon-btn{
  width:44px;height:44px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  border:1.5px solid rgba(36,26,20,0.20);color:var(--navy-900);
  transition:all .3s;
}
.icon-btn:hover{background:var(--royal-500);border-color:var(--royal-500);color:var(--white);transform:translateY(-2px);}
.site-header.scrolled .icon-btn{border-color:rgba(36,26,20,0.18);color:var(--navy-900);}
.site-header.scrolled .icon-btn:hover{background:var(--navy-900);border-color:var(--navy-900);color:var(--white);}
.icon-btn.whatsapp{background:#25D366;border-color:#25D366;color:var(--white);}
.icon-btn.whatsapp:hover{background:#1EBE59;}

.hamburger{display:none;flex-direction:column;gap:5px;width:30px;z-index:1200;}
.hamburger span{height:2px;background:var(--navy-900);border-radius:2px;transition:all .35s var(--ease);}
.site-header.scrolled .hamburger span{background:var(--navy-900);}
.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 */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--navy-900);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: var(--sp-6) var(--sp-4);
  transition: right var(--t-base);
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-base);
}
.mobile-nav-overlay.show { opacity: 1; visibility: visible; }
.mobile-nav .logo { margin-bottom: var(--sp-5); }
.mobile-nav-menu { display: flex; flex-direction: column; gap: var(--sp-1); }
.mobile-nav-menu a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gray-300);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
}
.mobile-nav-menu a:hover, .mobile-nav-menu a.active {
  background: rgba(255,255,255,0.06);
  color: var(--gold-400);
  padding-left: var(--sp-4);
}
.mobile-nav-actions { margin-top: auto; display: flex; flex-direction: column; gap: var(--sp-2); }
.mobile-nav-actions .btn { width: 100%; }


/* ===============================
   Hero Video (full-width, responsive)
================================== */

.hero{
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 70vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
    margin-top: var(--header-h); /* prevents fixed header overlapping hero content */
}

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

/* Responsive hero heights */
@media (max-width: 1024px) {
  .hero { min-height: 60vh; }
}

@media (max-width: 768px) {
  .hero { min-height: 50vh; }
}

@media (max-width: 480px) {
  .hero { min-height: 40vh; }
}

/* ---------- Page Banner ---------- */
.page-banner {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.banner-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:rgba(0,0,0,.55);
  z-index:1;
}
.page-banner-inner {
  position: relative;
  margin-top: 100px;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.page-banner h1 {
  color: var(--white);
  margin-bottom: var(--sp-2);
}
.page-banner h1 .highlight {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: var(--sp-1);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb span { color: var(--gold-400); }

/* ---------- Intro / About Preview ---------- */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.intro-visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--grad-navy);
}
.intro-visual img { width: 100%; height: 100%; object-fit: cover; }
.intro-visual .badge {
    position: absolute;
    bottom: 20px;
    left: 20px;

    width: 160px;
    padding: 10px 16px;

    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);

    border-radius: 14px;
    box-shadow: var(--shadow-md);
}
.intro-visual .badge .num {
  font-family: var(--font-heading);
  font-size: 20;
  font-weight: 700;
  color: var(--royal-500);
  line-height: 1;
}
.intro-visual .badge .label {
  font-size: 0.85rem;
  color: var(--gray-500);
}
.intro-content p { margin-bottom: var(--sp-3); color: var(--gray-700); }
.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
  margin: var(--sp-4) 0;
}
.intro-feature {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy-900);
}
.intro-feature .check {
  width: 28px; height: 28px;
  background: var(--grad-royal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.intro-feature .check svg { width: 14px; height: 14px; }

/* ---------- Feature Cards / Why Choose ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}
.feature-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-4);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon {
  width: 64px; height: 64px;
  background: var(--grad-royal);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: var(--sp-3);
  transition: transform var(--t-base);
}
.feature-icon svg { width: 30px; height: 30px; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: var(--sp-1); }
.feature-card p { font-size: 0.92rem; color: var(--gray-500); margin: 0; }

/* ---------- Products Section ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
  border: 1px solid var(--light-gray);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--grad-navy);
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.product-card:hover .product-img img { transform: scale(1.08); }
.product-img .tag {
  position: absolute;
  top: var(--sp-2); left: var(--sp-2);
  background: var(--red-500);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-full);
  box-shadow: 0 6px 16px rgba(192, 30, 46, 0.35);
  letter-spacing: 0.02em;
}
.product-body { padding: var(--sp-4); }
.product-body h3 { font-size: 1.2rem; margin-bottom: var(--sp-1); }
.product-body p { font-size: 0.92rem; color: var(--gray-500); margin-bottom: var(--sp-3); }
.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1);
  margin-bottom: var(--sp-3);
}
.product-features li {
  font-size: 0.8rem;
  color: var(--gray-700);
  background: var(--light-gray);
  padding: 0.25rem 0.7rem;
  border-radius: var(--r-full);
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.service-card {
  position: relative;
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-4);
  background: var(--white);
  border: 1px solid var(--light-gray);
  transition: all var(--t-base);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gray-500);
  opacity: 0;
  transition: opacity var(--t-base);
  z-index: 0;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card > * { position: relative; z-index: 1; transition: color var(--t-base); }
.service-card:hover h3, .service-card:hover p { color: var(--white); }
.service-card:hover p { color: rgba(255,255,255,0.7); }
.service-card:hover .service-num { color: var(--royal-300); }
.service-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--light-gray);
  line-height: 1;
  margin-bottom: var(--sp-2);
  transition: color var(--t-base);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: var(--sp-1); transition: color var(--t-base); }
.service-card p { font-size: 0.92rem; color: var(--gray-500); margin: 0; transition: color var(--t-base); }

/* ---------- Advantages ---------- */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.advantage-item {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-3);
  border-radius: var(--r-md);
  background: var(--white);
  border: 1px solid var(--light-gray);
  transition: all var(--t-base);
}
.advantage-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
  border-color: var(--royal-300);
}
.advantage-icon {
  width: 52px; height: 52px;
  background: var(--grad-royal);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-green);
  flex-shrink: 0;
}
.advantage-icon svg { width: 26px; height: 26px; }
.advantage-item h4 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.advantage-item p { font-size: 0.88rem; color: var(--gray-500); margin: 0; }

/* ---------- Stats / Counters ---------- */
.stats-section {
  padding-top: 50px;
  padding-bottom: 50px;
  background: var(--grad-navy);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(92, 143, 46, 0.25), transparent 50%);
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.stat-item { text-align: center; }
.stat-icon {
  width: 64px; height: 64px;
  margin: 0 auto var(--sp-2);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  backdrop-filter: blur(8px);
}
.stat-icon svg { width: 30px; height: 30px; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-num .suffix { color: var(--gold-400); }
.stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-top: var(--sp-1);
}

/* ---------- Projects ---------- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.project-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--grad-navy);
}
.project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.project-card:hover img { transform: scale(1.1); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,19,14,0.92) 0%, rgba(26,19,14,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-4);
  transition: all var(--t-base);
}
.project-overlay h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 0.25rem; }
.project-overlay p { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin: 0; }
.project-card .project-cat {
  position: absolute;
  top: var(--sp-3); right: var(--sp-3);
  background: var(--red-500);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: var(--r-full);
  z-index: 2;
}

/* ---------- Testimonials ---------- */
.testimonials-section { background: var(--off-white); }
.testimonials-slider {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s var(--ease);
}
.testimonial-card {
  flex: 0 0 100%;
  padding: var(--sp-6);
  background: var(--white);
  border-radius: var(--r-xl);
  margin: 0;
  text-align: center;
  transition: all var(--t-base);
}
.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: var(--sp-4);
  font-style: italic;
  position: relative;
  padding: 0 var(--sp-4);
}
.testimonial-quote::before {
  content: '"';
  position: absolute;
  top: -24px; left: 0;
  font-size: 4rem;
  color: var(--gold-400);
  opacity: 0.6;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
}
.testimonial-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--grad-royal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
}
.testimonial-info { text-align: left; }
.testimonial-info h4 { font-size: 1rem; margin-bottom: 0; }
.testimonial-info p { font-size: 0.85rem; color: var(--gray-500); margin: 0; }
.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--sp-3);
  color: var(--gold-500);
}
.testimonial-stars svg { width: 20px; height: 20px; }

.testimonials-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}
.testimonials-nav button {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  transition: all var(--t-fast);
  box-shadow: var(--shadow-sm);
  padding: 0;
  cursor: pointer;
}
.testimonials-nav button:hover {
  background: var(--royal-400);
  color: black;
  border-color: transparent;
  transform: scale(1.1);
}
.testimonials-nav button svg { width: 20px; height: 20px; }
.testimonials-dots {
  display: flex;
  gap: var(--sp-1);
  margin: 0 var(--sp-3);
  align-items: center;
}
.testimonials-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all var(--t-fast);
}
.testimonials-dots button.active {
  background: var(--royal-400);
  width: 28px;
  border-radius: 5px;
}

/*==============================
  TESTIMONIAL VIDEOS
===============================*/

.Testimonials{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:32px;
    margin:60px 0;
}

.video-card{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    box-shadow:
        0 15px 45px rgba(0,0,0,.12),
        inset 0 1px 1px rgba(255,255,255,.15);
    transition:.45s ease;
}


/* Video */

.Testimonials-video{
    width:100%;
    height:340px;
    display:block;
    object-fit:cover;
    transition:transform .8s ease;
}

/* Glass Overlay */

.video-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(8,20,45,.10),
        rgba(8,20,45,.45)
    );
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.4s ease;
}

/* Play Button */

.play-btn{
    width:85px;
    height:85px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(15px);
    border:2px solid rgba(255,255,255,.45);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    box-shadow:0 10px 35px rgba(0,0,0,.25);
    transform:scale(.75);
    transition:.4s ease;
}

.play-btn svg{
    width:34px;
    height:34px;
    margin-left:5px;
}

/*==============================
  SCROLL REVEAL
===============================*/

.video-card{
    opacity:0;
    transform:translateY(70px);
    animation:videoReveal .9s ease forwards;
}

.video-card:nth-child(2){
    animation-delay:.25s;
}

@keyframes videoReveal{

    from{
        opacity:0;
        transform:translateY(70px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/*==============================
  RESPONSIVE
===============================*/

@media(max-width:991px){

    .Testimonials{
        grid-template-columns:1fr;
        gap:24px;
    }

    .Testimonials-video{
        height:300px;
    }

}

@media(max-width:768px){

    .Testimonials-video{
        height:240px;
    }

    .play-btn{
        width:70px;
        height:70px;
    }

    .play-btn svg{
        width:28px;
        height:28px;
    }

}

@media(max-width:480px){

    .Testimonials-video{
        height:200px;
    }

}

/* ---------- Process / Timeline ---------- */
.process-section { background: var(--off-white); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(to right, var(--royal-300), var(--royal-300));
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--sp-3);
}
.process-num {
  width: 80px; height: 80px;
  margin: 0 auto var(--sp-3);
  background: var(--white);
  border: 3px solid var(--royal-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--royal-500);
  transition: all var(--t-base);
  box-shadow: var(--shadow-sm);
}
.process-step:hover .process-num {
  background: var(--royal-300);
  border-color: var(--royal-300);
  color: var(--navy-900);
  transform: scale(1.1);
}
.process-step h4 { font-size: 1.1rem; margin-bottom: var(--sp-1); }
.process-step p { font-size: 0.88rem; color: var(--gray-500); margin: 0; }

/* ---------- Brands ---------- */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    align-items: center;
}

.brand-item {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 130px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.brand-item img {
    max-width: 150px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-item:hover img {
    transform: scale(1.08);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-2);
  overflow: hidden;
  transition: all var(--t-base);
}
.faq-item.active {
  box-shadow: var(--shadow-md);
  border-color: var(--royal-300);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-3) var(--sp-4);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy-900);
  text-align: left;
  transition: color var(--t-fast);
}
.faq-item.active .faq-question { color: var(--royal-500); }
.faq-question .faq-icon {
  width: 32px; height: 32px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-base);
  flex-shrink: 0;
  margin-left: var(--sp-2);
}
.faq-item.active .faq-question .faq-icon {
  background: var(--royal-300);
  color: black;
  transform: rotate(180deg);
}
.faq-question .faq-icon svg { width: 16px; height: 16px; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-base), padding var(--t-base);
  padding: 0 var(--sp-4);
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 var(--sp-4) var(--sp-3);
}
.faq-answer p { color: var(--gray-500); font-size: 0.95rem; margin: 0; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  background: var(--royal-400);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(92, 143, 46, 0.3), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(201, 162, 74, 0.15), transparent 50%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: black; margin-bottom: var(--sp-2); }
.cta-banner h2 .highlight {
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 540px; margin: 0 auto var(--sp-4); font-size: 1.1rem; }
.cta-actions { display: flex; gap: var(--sp-2); justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer{background: linear-gradient(180deg, black 0%, var(--navy-950) 100%);color:var(--gray-300);padding-top:2.5rem;}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:3rem;padding-bottom:1.5rem;border-bottom:1px solid rgba(255,255,255,0.08);}
.footer-brand p{color: var(--gray-300); margin:1.2rem 0 1.5rem;max-width:320px;font-size:.92rem;opacity:.8;}
.footer-social{display:flex;gap:.7rem;}
.footer-social a{
  width:40px;height:40px;border-radius:50%;border:1px solid rgba(255,255,255,0.15);
  display:flex;align-items:center;justify-content:center;transition:all .3s; color: var(--white);
}
.footer-social a:hover{background:var(--royal-400);border-color:var(--royal-400);color:var(--white);transform:translateY(-3px);}
.footer-col h5{color:var(--royal-500);font-size:1rem;margin-bottom:1.4rem;}
.footer-col ul{display:flex;flex-direction:column;gap:.8rem;}
.footer-col a{font-size:.9rem;transition:color .3s; color: var(--gray-300); opacity:.85;}
.footer-col a:hover{color:var(--royal-400);opacity:1;}
.footer-contact li{display:flex;gap:.8rem;font-size:.9rem;margin-bottom:1rem;align-items:flex-start; color: var(--gray-300); opacity:.85;}
.footer-contact svg{width:18px;height:18px;color:var(--royal-500);flex-shrink:0;margin-top:2px;}
.footer-map{margin-top:1.4rem;border-radius:var(--r-md);overflow:hidden;aspect-ratio:16/10;border:1px solid rgba(255,255,255,0.1);}
.footer-map iframe{width:100%;height:100%;border:0;filter:grayscale(1) invert(0.92) contrast(0.9);}
.footer-bottom{display:flex;align-items:center;justify-content:space-around;padding:1.8rem 0;font-size:.82rem;flex-wrap:wrap;gap:1rem; padding-bottom: 1rem;}
.footer-bottom a{color: var(--gray-300)}
.footer-bottom a:hover{color:var(--royal-400);}

.back-to-top{
  position:fixed;bottom:2rem;right:2rem;z-index:900;
  width:52px;height:52px;border-radius:50%;
  background:var(--royal-500);color:var(--royal-300);
  display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow-lg);
  opacity:0;visibility:hidden;transform:translateY(15px);
  transition:all .4s var(--ease);
}
.back-to-top.visible{opacity:1;visibility:visible;transform:translateY(0);}
.back-to-top:hover{background:var(--royal-400);color:black;transform:translateY(-4px);}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: var(--sp-4);
  right: var(--sp-4);
  width: 50px; height: 50px;
  background: var(--royal-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  box-shadow: var(--shadow-green);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--t-base);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { transform: translateY(-4px) scale(1.05); }
.back-to-top svg { width: 22px; height: 22px; }

/* ---------- Floating WhatsApp ---------- */
.float-whatsapp {
  position: fixed;
  bottom: var(--sp-4);
  left: var(--sp-4);
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: all var(--t-base);
  animation: pulse 2s ease infinite;
}
.float-whatsapp:hover { transform: scale(1.1); }
.float-whatsapp svg { width: 30px; height: 30px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ---------- About Page Specifics ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.value-card {
  text-align: center;
  padding: var(--sp-5) var(--sp-3);
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--light-gray);
  transition: all var(--t-base);
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
  border-color: var(--royal-300);
}
.value-icon {
  width: 72px; height: 72px;
  margin: 0 auto var(--sp-3);
  background: var(--grad-royal);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform var(--t-base);
}
.value-card:hover .value-icon { transform: rotate(-5deg) scale(1.05); }
.value-icon svg { width: 34px; height: 34px; }
.value-card h4 { font-size: 1.15rem; margin-bottom: var(--sp-1); }
.value-card p { font-size: 0.9rem; color: var(--gray-500); margin: 0; }

/* Journey / Timeline */
.journey-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.journey-timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--royal-500));
  transform: translateX(-50%);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: var(--sp-3) var(--sp-5);
  margin-bottom: var(--sp-3);
}
.timeline-item:nth-child(odd) { left: 0; text-align: right; padding-right: var(--sp-6); }
.timeline-item:nth-child(even) { left: 50%; padding-left: var(--sp-6); }
.timeline-item::after {
  content: '';
  position: absolute;
  top: 24px;
  width: 18px; height: 18px;
  background: var(--white);
  border: 3px solid var(--royal-500);
  border-radius: 50%;
  z-index: 1;
  transition: all var(--t-base);
}
.timeline-item:nth-child(odd)::after { right: -9px; }
.timeline-item:nth-child(even)::after { left: -9px; }
.timeline-item:hover::after { background: var(--royal-500); transform: scale(1.2); }
.timeline-content {
  background: var(--white);
  padding: var(--sp-4);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: all var(--t-base);
}
.timeline-item:hover .timeline-content {
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}
.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--royal-500);
  margin-bottom: var(--sp-1);
}
.timeline-content h4 { font-size: 1.1rem; margin-bottom: var(--sp-1); }
.timeline-content p { font-size: 0.9rem; color: var(--gray-500); margin: 0; }

/* Manufacturing process steps */
.manufacturing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
.manufacturing-step {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--light-gray);
  transition: all var(--t-base);
}
.manufacturing-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--royal-300);
}
.manufacturing-step .step-num {
  width: 56px; height: 56px;
  background: var(--royal-400);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-900);
  flex-shrink: 0;
}
.manufacturing-step h4 { font-size: 1.1rem; margin-bottom: var(--sp-1); }
.manufacturing-step p { font-size: 0.9rem; color: var(--gray-500); margin: 0; }

/* Infrastructure */
.infra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.infra-visual {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--grad-navy);
}
.infra-visual img { width: 100%; height: 100%; object-fit: cover; }
.infra-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
.infra-item {
  padding: var(--sp-3);
  border-radius: var(--r-md);
  background: var(--white);
  border: 1px solid var(--light-gray);
  transition: all var(--t-base);
}
.infra-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--royal-300); }
.infra-item h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.infra-item p { font-size: 0.85rem; color: var(--gray-500); margin: 0; }

/* ---------- Products Page ---------- */
.product-categories {
  display: flex;
  justify-content: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}
.product-cat-btn {
  padding: 0.6rem 1.4rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: black;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--r-full);
  transition: all var(--t-fast);
}
.product-cat-btn:hover, .product-cat-btn.active {
  background: var(--royal-500);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
}

/* ---------- Product Catalog Grid ---------- */
.product-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.product-detail-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
  margin-bottom: 0;
  transition: all var(--t-base);
}
.product-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.product-detail-img {
  aspect-ratio: 1.2;
  overflow: hidden;
  background: var(--grad-navy);
}
.product-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.product-detail-card:hover .product-detail-img img {
  transform: scale(1.08);
}
.product-detail-body { padding: var(--sp-4); }
.product-detail-body h3 { font-size: 1.35rem; margin-bottom: var(--sp-2); }
.product-detail-body > p { color: var(--gray-500); margin-bottom: var(--sp-4); font-size: 0.92rem; }
.product-detail-body .btn { width: 100%; }
.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}
.product-spec {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: 0.85rem;
  color: var(--gray-700);
}
.product-spec .check {
  width: 20px;
  height: 20px;
  background: var(--grad-royal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.product-spec .check svg { width: 10px; height: 10px; }
.product-benefits {
  background: var(--off-white);
  border-radius: var(--r-md);
  padding: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.product-benefits h5 { font-size: 0.88rem; margin-bottom: var(--sp-2); color: var(--navy-900); }
.product-benefits ul { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-1); }
.product-benefits li {
  font-size: 0.82rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}
.product-benefits li::before {
  content: '✦';
  color: var(--royal-500);
  font-size: 0.8rem;
}

/* ---------- Our Works / Portfolio ---------- */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}
.filter-btn {
  padding: 0.6rem 1.4rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: black;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--r-full);
  transition: all var(--t-fast);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--royal-500);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.portfolio-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--grad-navy);
  transition: all var(--t-base);
}
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.portfolio-item:hover img { transform: scale(1.1); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,19,14,0.92) 0%, rgba(26,19,14,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-4);
  opacity: 0;
  transition: opacity var(--t-base);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 0.25rem; }
.portfolio-overlay p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 0; }
.portfolio-zoom {
  position: absolute;
  top: var(--sp-3); right: var(--sp-3);
  width: 44px; height: 44px;
  background: var(--royal-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  opacity: 0;
  transform: scale(0.5);
  transition: all var(--t-base);
  z-index: 2;
}

/* Before / After */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-7);
}
.ba-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 1/1;
  background: var(--grad-navy);
}
.ba-card img { width: 100%; height: 100%; object-fit: cover; }
.ba-label {
  position: absolute;
  top: var(--sp-2); left: var(--sp-2);
  background: rgba(26,19,14,0.85);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ba-label.after { background: var(--grad-gold); color: var(--navy-900); left: auto; right: var(--sp-2); }


/* ===========================
   Finished Projects Section
=========================== */

.Finished-projects {
    padding: 90px 0;
    background: #f8fafc;
}

.Finished-projects .section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.Finished-projects .section-header p {
    color: #64748b;
    line-height: 1.8;
    margin-top: 15px;
}

/* Video Grid */

.Finished-projects  {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: var(--sp-10);
}

/* Header Full Width */

.Finished-projects .section-header {
    grid-column: 1 / -1;
}

/* Video Card */

.Project-video {
    position: relative;
    overflow: hidden;
    padding: 12px;
}

/* Video */

.Finished-video {
    width: 500px;
    height: 500px;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #000;
    transition: .4s ease;
}
/* Responsive */

@media (max-width:992px){

    .Finished-projects .container{
        grid-template-columns:1fr;
        gap:25px;
    }

}

@media (max-width:768px){

    .Finished-projects{
        padding:70px 0;
    }

    .Project-video{
        padding:8px;
        border-radius:18px;
    }

    .Finished-video{
        border-radius:14px;
    }

}

@media (max-width:480px){

    .Finished-projects .section-header{
        margin-bottom:40px;
    }

    .Finished-projects .section-header p{
        font-size:15px;
        line-height:1.7;
    }

}

/*-----------project Categories------------*/
.project {
  padding-bottom: 80px;
}
/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-5);
}
.contact-info-card {
  background: var(--grad-navy);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  color: var(--gray-300);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(92, 143, 46, 0.25), transparent 50%);
}
.contact-info-card > * { position: relative; z-index: 1; }
.contact-info-card h3 { color: var(--white); margin-bottom: var(--sp-4); }
.contact-info-item {
  display: flex;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.contact-info-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-400);
  flex-shrink: 0;
  backdrop-filter: blur(8px);
}
.contact-info-icon svg { width: 22px; height: 22px; }
.contact-info-item h5 { color: var(--white); font-size: 0.95rem; margin-bottom: 0.25rem; }
.contact-info-item p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }
.contact-info-item a:hover { color: var(--royal-400); }
.contact-social-row {
  display: flex;
  gap: var(--sp-1);
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.contact-social-row a {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  transition: all var(--t-fast);
}
.contact-social-row a:hover { background: var(--royal-400); color: black; transform: translateY(-3px); }
.contact-social-row a svg { width: 18px; height: 18px; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-gray);
}
.contact-form-card h3 { margin-bottom: var(--sp-1); }
.contact-form-card > p { color: var(--gray-500); margin-bottom: var(--sp-5); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}
.form-group { margin-bottom: var(--sp-3); position: relative; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy-900);
  margin-bottom: var(--sp-1);
}
.form-group label .req { color: var(--error); }
.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--r-md);
  background: var(--off-white);
  color: var(--navy-900);
  transition: all var(--t-fast);
  font-size: 0.95rem;
}
.form-control:focus {
  outline: none;
  border-color: var(--royal-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(92, 143, 46, 0.1);
}
.form-control.error {
  border-color: var(--error);
  background: rgba(192, 30, 46, 0.04);
}
.form-error {
  display: none;
  font-size: 0.8rem;
  color: var(--error);
  margin-top: 0.3rem;
}
.form-group.error .form-error { display: block; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; margin-top: var(--sp-2); }
.form-success {
  display: none;
  background: rgba(76, 143, 46, 0.1);
  border: 1px solid var(--success);
  color: var(--success);
  padding: var(--sp-3);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-3);
  font-size: 0.9rem;
  text-align: center;
}
.form-success.show { display: block; }

.map-section { padding: 0 0 var(--sp-10); }
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  position: relative;
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Mission/Vision ---------- */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.mv-card {
  position: relative;
  padding: var(--sp-6);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--t-base);
}
.mv-card.vision { background: var(--grad-navy); color: var(--gray-300); }
.mv-card.mission { background: var(--grad-royal); color: var(--white); }
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mv-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: var(--sp-3);
  backdrop-filter: blur(8px);
}
.mv-icon svg { width: 32px; height: 32px; }
.mv-card h3 { color: var(--white); margin-bottom: var(--sp-2); }
.mv-card p { font-size: 0.95rem; opacity: 0.85; margin: 0; line-height: 1.7; }

/* ---------- Achievements ---------- */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}
.achievement-card {
  text-align: center;
  padding: var(--sp-4) var(--sp-3);
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--light-gray);
  transition: all var(--t-base);
}
.achievement-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.achievement-icon {
  width: 56px; height: 56px;
  margin: 0 auto var(--sp-2);
  background: var(--royal-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
}
.achievement-icon svg { width: 26px; height: 26px; }
.achievement-card h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.achievement-card p { font-size: 0.82rem; color: var(--gray-500); margin: 0; }

/* ---------- Section dividers ---------- */
.divider-curve {
  position: relative;
  height: 60px;
  background: var(--white);
}
.divider-curve svg { width: 100%; height: 100%; display: block; }

.banner-text {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--royal-500);
  margin-bottom: var(--sp-2);
}