/* ============================================================
   A.P Industries — Master Stylesheet
   www.apindustriespromo.com
   Design Direction: Corporate Luxury Authority
   Fonts: Playfair Display (headings) + DM Sans (body)
   ============================================================ */

/* ── Google Fonts loaded via <link> in HTML head for better performance ── */

/* ============================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  /* Colors */
  --navy:          #0A1628;
  --navy-mid:      #0F2040;
  --navy-light:    #1A3260;
  --gold:          #D4A843;
  --gold-light:    #E8C06A;
  --gold-dark:     #B8902E;
  --white:         #FFFFFF;
  --off-white:     #F5F7FA;
  --grey-100:      #EEF1F6;
  --grey-200:      #D8DCE6;
  --grey-400:      #9AA3B5;
  --grey-600:      #5A6278;
  --grey-800:      #2E3447;
  --text-primary:  #0A1628;
  --text-secondary:#5A6278;
  --text-light:    #9AA3B5;
  --success:       #2ECC71;
  --whatsapp:      #25D366;

  /* Typography */
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'DM Sans', sans-serif;

  /* Font sizes — fluid with clamp() */
  --fs-xs:    clamp(0.75rem,  1vw,   0.8125rem);
  --fs-sm:    clamp(0.875rem, 1.2vw, 0.9375rem);
  --fs-base:  clamp(1rem,     1.5vw, 1.0625rem);
  --fs-md:    clamp(1.125rem, 1.8vw, 1.25rem);
  --fs-lg:    clamp(1.25rem,  2vw,   1.5rem);
  --fs-xl:    clamp(1.5rem,   2.5vw, 2rem);
  --fs-2xl:   clamp(2rem,     3.5vw, 2.75rem);
  --fs-3xl:   clamp(2.5rem,   4.5vw, 3.75rem);
  --fs-4xl:   clamp(3rem,     5.5vw, 5rem);

  /* Spacing */
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-5:   1.25rem;
  --space-6:   1.5rem;
  --space-8:   2rem;
  --space-10:  2.5rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;
  --space-32:  8rem;

  /* Layout */
  --container-max: 1320px;
  --container-pad: clamp(1rem, 4vw, 2.5rem);
  --nav-height:    80px;

  /* Borders & Radius */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(10,22,40,0.08), 0 1px 2px rgba(10,22,40,0.06);
  --shadow-md:  0 4px 16px rgba(10,22,40,0.10), 0 2px 6px rgba(10,22,40,0.08);
  --shadow-lg:  0 12px 40px rgba(10,22,40,0.14), 0 4px 12px rgba(10,22,40,0.10);
  --shadow-xl:  0 24px 64px rgba(10,22,40,0.18), 0 8px 24px rgba(10,22,40,0.12);
  --shadow-gold: 0 8px 32px rgba(212,168,67,0.25);

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;
  --transition-spring: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--text-primary);
  background-color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol { list-style: none; }

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

/* ============================================================
   3. UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section-pad {
  padding: var(--space-20) 0;
}

.section-pad-lg {
  padding: var(--space-32) 0;
}

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

.bg-navy     { background-color: var(--navy); }
.bg-off-white{ background-color: var(--off-white); }

/* Gold accent line above headings */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-4);
  line-height: 1.15;
}

.section-title span {
  color: var(--gold);
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: var(--space-12);
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-label {
  justify-content: center;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* Divider */
.gold-divider {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-full);
  margin: var(--space-4) 0;
}

.gold-divider.centered {
  margin: var(--space-4) auto;
}

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-height: 48px;
  cursor: pointer;
  text-decoration: none;
}

/* Primary — Gold */
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(212,168,67,0.30);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,168,67,0.40);
  color: var(--navy);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Secondary — Outlined Gold */
.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* White — for dark backgrounds */
.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--navy);
}

/* Ghost — for dark backgrounds */
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
  color: var(--white);
}

/* WhatsApp */
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.30);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.40);
  color: var(--white);
}

/* Small size */
.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: var(--fs-xs);
  min-height: 40px;
}

/* Large size */
.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: var(--fs-base);
  min-height: 56px;
}

/* ============================================================
   5. NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition-slow), box-shadow var(--transition-slow), height var(--transition-base);
  background: transparent;
}

#navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 24px rgba(10,22,40,0.30);
  height: 68px;
}

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

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--navy);
  font-family: var(--font-display);
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(212,168,67,0.3);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-logo-tagline {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
}

.nav-links a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  transition: color var(--transition-base), background var(--transition-base);
  position: relative;
  text-decoration: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 2rem);
  height: 2px;
  background: var(--gold);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-left: var(--space-4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: var(--space-2);
  border-radius: var(--radius-sm);
  transition: background var(--transition-base);
  flex-shrink: 0;
}

.hamburger:hover {
  background: rgba(255,255,255,0.1);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base), opacity var(--transition-base), width var(--transition-base);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--navy);
  padding: var(--space-6) var(--container-pad) var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 48px rgba(10,22,40,0.5);
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.nav-mobile.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.nav-mobile .nav-links {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: var(--space-6);
}

.nav-mobile .nav-links a {
  width: 100%;
  padding: var(--space-4) 0;
  font-size: var(--fs-base);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  border-radius: 0;
}

.nav-mobile .nav-links a::after { display: none; }

.nav-mobile .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   6. HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Geometric background pattern */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212,168,67,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(26,50,96,0.8) 0%, transparent 50%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
  z-index: 0;
}

/* Diagonal grid lines */
.hero-bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.018) 60px,
      rgba(255,255,255,0.018) 61px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.018) 60px,
      rgba(255,255,255,0.018) 61px
    );
  z-index: 0;
}

/* Gold accent circle */
.hero-bg-pattern::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.06) 0%, transparent 70%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-20) var(--container-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  width: 100%;
}

.hero-text {
  max-width: 600px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: rgba(212,168,67,0.12);
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-6);
  animation: fadeInDown 0.8s ease both;
}

.hero-eyebrow i {
  font-size: 0.75rem;
}

.hero-headline {
  font-size: var(--fs-4xl);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.9s ease 0.1s both;
}

.hero-headline .accent {
  color: var(--gold);
  font-style: italic;
}

.hero-subline {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.70);
  line-height: 1.7;
  margin-bottom: var(--space-10);
  animation: fadeInUp 0.9s ease 0.2s both;
}

.hero-subline strong {
  color: var(--gold-light);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
  animation: fadeInUp 0.9s ease 0.3s both;
}

/* Hero trust bar */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  animation: fadeInUp 0.9s ease 0.4s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.6);
}

.trust-item i {
  color: var(--gold);
  font-size: 0.875rem;
}

/* Hero visual side */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 1s ease 0.3s both;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-image-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Floating stat cards on hero */
.hero-stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-xl);
  text-align: center;
  min-width: 120px;
}

.hero-stat-card .stat-num {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.hero-stat-card .stat-label {
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: var(--space-1);
}

.hero-stat-card.card-1 {
  top: 8%;
  left: -40px;
  animation: floatUp 3s ease-in-out infinite;
}

.hero-stat-card.card-2 {
  bottom: 12%;
  right: -30px;
  animation: floatUp 3s ease-in-out 1.5s infinite;
}

.hero-stat-card .stat-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--navy);
  margin: 0 auto var(--space-2);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.4);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeIn 1s ease 1s both;
  cursor: pointer;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: var(--radius-full);
  animation: scrollBounce 2s ease infinite;
}

/* ============================================================
   7. STATS BAR
   ============================================================ */
#stats-bar {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  padding: var(--space-6) 0;
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.stat-block {
  text-align: center;
  padding: var(--space-4) var(--space-2);
  position: relative;
}

.stat-block:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(10,22,40,0.15);
}

.stat-block .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-block .num .plus {
  font-size: 0.6em;
  font-weight: 700;
}

.stat-block .label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.75;
  margin-top: var(--space-1);
}

/* ============================================================
   8. ABOUT SNAPSHOT (Homepage)
   ============================================================ */
#about-snap {
  padding: var(--space-24) 0;
  background: var(--white);
  overflow: hidden;
}

.about-snap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.about-snap-text .section-subtitle {
  margin-bottom: var(--space-8);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(212,168,67,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-text strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-1);
}

.feature-text span {
  font-size: var(--fs-xs);
  color: var(--text-secondary);
}

.about-snap-visual {
  position: relative;
}

.about-image-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.about-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-badge .badge-year {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.about-badge .badge-text {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: var(--space-1);
}

/* ============================================================
   9. PRODUCTS SECTION
   ============================================================ */
#featured-products {
  padding: var(--space-24) 0;
  background: var(--off-white);
  clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%);
  margin: -40px 0;
  padding-top: calc(var(--space-24) + 40px);
  padding-bottom: calc(var(--space-24) + 40px);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-spring), box-shadow var(--transition-slow);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--grey-100);
}

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

.product-card-image {
  position: relative;
  overflow: hidden;
  height: 240px;
  background: var(--grey-100);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.product-card-body {
  padding: var(--space-5) var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.product-name {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-3);
  line-height: 1.2;
}

.product-desc {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--space-5);
}

.product-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-xs);
  color: var(--text-light);
  margin-bottom: var(--space-4);
}

.product-meta i {
  color: var(--gold);
}

.product-card-footer {
  padding: var(--space-4) var(--space-6) var(--space-5);
  border-top: 1px solid var(--grey-100);
}

.product-card-footer .btn {
  width: 100%;
}

/* Product page filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-10);
  padding: var(--space-4) var(--space-5);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-100);
}

.filter-btn {
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-secondary);
  background: transparent;
  border: 1.5px solid var(--grey-200);
  cursor: pointer;
  transition: all var(--transition-base);
  min-height: 44px;
  font-family: var(--font-body);
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* Product Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.75);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

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

.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95) translateY(20px);
  transition: transform var(--transition-spring);
  position: relative;
}

.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--grey-600);
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  z-index: 1;
}

.modal-close:hover {
  background: var(--navy);
  color: var(--white);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-image {
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.modal-content {
  padding: var(--space-8) var(--space-8);
}

/* ============================================================
   10. WHY CHOOSE US
   ============================================================ */
#why-us {
  padding: var(--space-24) 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.why-card {
  text-align: center;
  padding: var(--space-8) var(--space-5);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-100);
  background: var(--white);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--grey-200);
}

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

.why-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  font-size: 1.75rem;
  color: var(--gold);
  transition: transform var(--transition-spring);
  box-shadow: 0 8px 24px rgba(10,22,40,0.15);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(-5deg);
}

.why-title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-3);
}

.why-desc {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   11. CLIENT LOGOS
   ============================================================ */
#clients {
  padding: var(--space-16) 0;
  background: var(--off-white);
  overflow: hidden;
}

.clients-track-wrapper {
  overflow: hidden;
  position: relative;
  max-width: 100%;
}

.clients-track-wrapper::before,
.clients-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.clients-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white), transparent);
}

.clients-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white), transparent);
}

.clients-track {
  display: flex;
  gap: var(--space-12);
  animation: marquee 28s linear infinite;
  width: max-content;
}

.clients-track:hover {
  animation-play-state: paused;
}

.client-logo-item {
  width: 140px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1) opacity(0.45);
  transition: filter var(--transition-base);
  flex-shrink: 0;
}

.client-logo-item:hover {
  filter: grayscale(0) opacity(1);
}

.client-logo-item img {
  max-width: 120px;
  max-height: 50px;
  object-fit: contain;
}

/* Placeholder logo style */
.logo-placeholder {
  width: 120px;
  height: 44px;
  background: var(--grey-200);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--grey-400);
  text-transform: uppercase;
}

/* ============================================================
   12. TESTIMONIALS
   ============================================================ */
#testimonials {
  padding: var(--space-24) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#testimonials::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.06) 0%, transparent 70%);
}

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-12);
  text-align: center;
  position: relative;
}

.quote-icon {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.25;
  font-family: Georgia, serif;
  line-height: 1;
  position: absolute;
  top: var(--space-5);
  left: var(--space-8);
}

.testimonial-text {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: var(--space-8);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.author-avatar-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--navy);
  flex-shrink: 0;
}

.author-info .name {
  font-weight: 700;
  color: var(--white);
  font-size: var(--fs-base);
}

.author-info .role {
  font-size: var(--fs-xs);
  color: var(--gold);
  font-weight: 500;
}

/* Star rating */
.star-rating {
  display: flex;
  justify-content: center;
  gap: var(--space-1);
  margin-bottom: var(--space-6);
}

.star-rating i {
  color: var(--gold);
  font-size: 0.875rem;
}

/* Slider controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,168,67,0.4);
  background: transparent;
  color: var(--gold);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.slider-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.slider-dots {
  display: flex;
  gap: var(--space-2);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
}

.slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: var(--radius-full);
}

/* ============================================================
   13. CTA BANNER
   ============================================================ */
#cta-banner {
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 50%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 41px
  );
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.cta-inner .section-label {
  justify-content: center;
}

.cta-title {
  font-size: var(--fs-3xl);
  font-weight: 900;
  color: var(--white);
  margin-bottom: var(--space-5);
  line-height: 1.1;
}

.cta-title .accent {
  color: var(--gold);
  font-style: italic;
}

.cta-sub {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-10);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

/* ============================================================
   14. FOOTER
   ============================================================ */
#footer {
  background: #060d1a;
  color: rgba(255,255,255,0.75);
  padding-top: var(--space-20);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: var(--space-10);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad) var(--space-16);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .nav-logo {
  margin-bottom: var(--space-5);
}

.footer-brand p {
  font-size: var(--fs-sm);
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-6);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: all var(--transition-base);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-5);
  position: relative;
  padding-bottom: var(--space-3);
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: var(--radius-full);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-base), padding-left var(--transition-base);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: var(--space-2);
}

.footer-links a i {
  font-size: 0.625rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.footer-links a:hover i {
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer-contact-item .icon {
  width: 36px;
  height: 36px;
  background: rgba(212,168,67,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item .info {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.footer-contact-item .info a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-base);
}

.footer-contact-item .info a:hover {
  color: var(--gold);
}

/* Footer bottom */
.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-5) var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-copyright {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.35);
}

.footer-copyright a {
  color: var(--gold);
  opacity: 0.75;
  transition: opacity var(--transition-base);
}

.footer-copyright a:hover { opacity: 1; }

.footer-legal {
  display: flex;
  gap: var(--space-5);
}

.footer-legal a {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.35);
  transition: color var(--transition-base);
  text-decoration: none;
}

.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   15. FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--whatsapp);
  color: var(--white);
  border-radius: var(--radius-full);
  padding: var(--space-3) var(--space-5) var(--space-3) var(--space-4);
  box-shadow: 0 8px 32px rgba(37,211,102,0.40);
  font-weight: 600;
  font-size: var(--fs-sm);
  transition: all var(--transition-spring);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.06) translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.50);
  color: var(--white);
}

.whatsapp-float i {
  font-size: 1.375rem;
  flex-shrink: 0;
}

.whatsapp-label {
  white-space: nowrap;
}

/* Pulse ring */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 2px solid var(--whatsapp);
  animation: pulse-ring 2.5s ease infinite;
  pointer-events: none;
}

/* ============================================================
   16. ABOUT PAGE
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  padding: calc(var(--nav-height) + var(--space-16)) 0 var(--space-20);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 50px,
    rgba(255,255,255,0.018) 50px,
    rgba(255,255,255,0.018) 51px
  );
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-4);
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-base);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--gold); }

.breadcrumb span { color: var(--gold); }

.page-hero h1 {
  font-size: var(--fs-3xl);
  font-weight: 900;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.page-hero h1 span { color: var(--gold); }

.page-hero p {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.65);
  max-width: 580px;
}

/* Mission Vision grid */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.mv-card {
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.mv-card.mission {
  background: var(--navy);
  color: var(--white);
}

.mv-card.vision {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}

.mv-card h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-4);
}

.mv-card.mission h3 { color: var(--gold); }
.mv-card.vision h3  { color: var(--navy); }

.mv-card p {
  font-size: var(--fs-sm);
  line-height: 1.8;
  opacity: 0.85;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-4) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + var(--space-10));
  position: relative;
  margin-bottom: var(--space-10);
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + var(--space-10));
}

.timeline-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-100);
  max-width: 320px;
  width: 100%;
  position: relative;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 900;
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.timeline-title {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-2);
  font-size: var(--fs-base);
}

.timeline-desc {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 16px);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--gold);
  z-index: 1;
}

/* ============================================================
   17. CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-12);
  align-items: start;
}

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  color: var(--white);
  position: sticky;
  top: calc(var(--nav-height) + var(--space-6));
}

.contact-info-card h3 {
  font-size: var(--fs-xl);
  color: var(--white);
  margin-bottom: var(--space-2);
}

.contact-info-card > p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-detail:last-of-type {
  border-bottom: none;
  margin-bottom: var(--space-6);
}

.contact-detail .icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(212,168,67,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.contact-detail .detail-body .label {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail .detail-body .value {
  font-size: var(--fs-base);
  color: var(--white);
  font-weight: 500;
  margin-top: 2px;
}

.contact-detail .detail-body .value a {
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition-base);
}

.contact-detail .detail-body .value a:hover { color: var(--gold); }

/* Contact form */
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-100);
}

.contact-form-box h3 {
  font-size: var(--fs-xl);
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.contact-form-box > p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.form-group label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy);
}

.form-group label span {
  color: var(--gold);
}

.form-control {
  width: 100%;
  padding: 0.875rem var(--space-4);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
  min-height: 48px;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,67,0.12);
}

.form-control::placeholder {
  color: var(--text-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239AA3B5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 3rem;
}

/* Map */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-12);
}

.map-wrapper iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ============================================================
   18. CUSTOMIZATION SECTION
   ============================================================ */
.customization-section {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: var(--space-12) var(--space-10);
  margin-top: var(--space-16);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
  color: var(--white);
}

.customization-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.custom-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--fs-sm);
  color: var(--navy);
  flex-shrink: 0;
}

.step-body strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.step-body span {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ============================================================
   19. SCROLL ANIMATION CLASSES
   ============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ============================================================
   20. KEYFRAME ANIMATIONS
   ============================================================ */
/* ── Toast notification ── */
.ap-toast {
  pointer-events: none;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(8px); opacity: 0.4; }
}

@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

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

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(10,22,40,0.15);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* ============================================================
   21. RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {

  :root {
    --nav-height: 72px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-12);
    padding-bottom: var(--space-16);
  }

  .hero-text {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-block:nth-child(2)::after { display: none; }

  .about-snap-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .about-badge {
    bottom: -16px;
    left: -8px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

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

  .contact-info-card {
    position: static;
  }

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

  .customization-section {
    grid-template-columns: 1fr;
  }

  /* Hide desktop nav, show hamburger */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .timeline::before {
    left: 20px;
    transform: none;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 60px;
  }

  .timeline-dot {
    left: 20px;
    transform: translate(-50%, 16px);
  }

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

  .modal-image {
    height: 260px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  }
}

/* ============================================================
   22. RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {

  .section-pad       { padding: var(--space-16) 0; }
  .section-pad-lg    { padding: var(--space-20) 0; }

  #featured-products {
    clip-path: polygon(0 20px, 100% 0, 100% calc(100% - 20px), 0 100%);
    padding-top: calc(var(--space-16) + 20px);
    padding-bottom: calc(var(--space-16) + 20px);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-block::after { display: none !important; }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

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

  .about-features {
    grid-template-columns: 1fr;
  }

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

  .testimonial-card {
    padding: var(--space-8) var(--space-6);
  }

  .cta-title {
    font-size: var(--fs-2xl);
  }

  .hero-actions {
    justify-content: center;
  }

  .whatsapp-float .whatsapp-label {
    display: none;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    bottom: var(--space-5);
    right: var(--space-5);
  }

  .page-hero {
    padding: calc(var(--nav-height) + var(--space-10)) 0 var(--space-12);
  }
}

/* ============================================================
   23. RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {

  .btn-lg {
    padding: 1rem 1.75rem;
    font-size: var(--fs-sm);
  }

  .hero-eyebrow { font-size: 0.65rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }

  .contact-form-box {
    padding: var(--space-6);
  }

  .contact-info-card {
    padding: var(--space-6);
  }

  .customization-section {
    padding: var(--space-8) var(--space-6);
  }
}

/* ============================================================
   24. UTILITY — PRINT & ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for keyboard navigation */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--gold);
  color: var(--navy);
  padding: var(--space-3) var(--space-5);
  font-weight: 700;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus { top: 0; }

/* Selection */
::selection {
  background: rgba(212,168,67,0.25);
  color: var(--navy);
}

/* Scrollbar styling (Chrome/Edge) */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--grey-200);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ============================================================
   END OF STYLESHEET
   A.P Industries | www.apindustriespromo.com
   ============================================================ */
