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

:root {	
  --gold:        #e4ad34;
  --gold-light:  #f5c84a;
  --gold-dim:    rgba(228,173,52,0.15);
  --blue:        #043474;
  --blue-mid:    #0a4a9e;
  --blue-dark:   #021d42;
  --green:       #31542b;
  --green-light: #3d6835;
  --white:       #ffffff;
  --off-white:   #f5f0e8;
  --light-gray:  #ede8df;
  --body-text:   #3a3530;
  --muted:       #8a7f72;

/* In :root */
--font-display: 'Inter', sans-serif;
--font-body:    'Inter', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --section-pad: clamp(60px, 10vw, 60px);
  --container:   1280px;
}

html {
  scroll-behavior: smooth;
  overflow-y: auto;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  overflow-y: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--body-text);
  overflow-x: hidden;
  cursor: none;
}

.logo img { display: block; width: 15%; height: 100%; object-fit: cover; }
@media (max-width: 768px) {
  .logo img {
    width: 25%;
  }
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }

/* ── GRAIN OVERLAY ────────────────────────────────────── */
.grain-overlay {
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* ── CUSTOM CURSOR ────────────────────────────────────── */
.cursor-dot {
  position: fixed; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), opacity 0.3s;
  opacity: 0.6;
}
body:hover .cursor-ring { opacity: 0.6; }
a:hover ~ .cursor-ring, button:hover ~ .cursor-ring { width: 56px; height: 56px; }

@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
}

/* ── CONTAINER ─────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}
.section-pad { padding: var(--section-pad) 0; }

/* ── TYPOGRAPHY ────────────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.section-label.light { color: var(--gold-light); }
.section-label::before {
  content: '';
  display: block; width: 30px; height: 1.5px;
  background: var(--gold);
}
.section-label.light::before { background: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 600;
  line-height: 1.12;
   overflow: hidden;
  color: var(--blue);
  margin-bottom: 1.5rem;
  text-align:center;
}
.section-title.left{
	text-align:left !important;
}

.section-title span {
  vertical-align: top;
}

.section-title em {
  overflow: hidden;
  display: inline-block;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-title.light { color: var(--white); }
.section-title.centered { text-align: center; }

.section-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.section-subcontact {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--blue);
  max-width: 600px;
  line-height: 1.4;
}

.section-sub.centered { 
margin: 0 auto 3.5rem; text-align: center; 
color:#fff;
}

.body-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5a5248;
  margin-bottom: 1.25rem;
}

/* ── BUTTONS ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold);
  color: var(--blue-dark);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.9rem 2.2rem;
  border-radius: 35px;
  transition: background 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(228,173,52,0.4);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.9rem 2rem;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 2px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(228,173,52,0.08);
  transform: translateY(-3px);
}
.btn-ghost.light { color: var(--white); }

.btn-line {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--blue);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 4px;
  transition: color 0.3s, gap 0.3s;
  margin-top: 2rem;
}
.btn-line:hover { color: var(--gold); gap: 1rem; }

/* ── DARK SECTION ──────────────────────────────────────── */
.dark-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #082050 100%);
  position: relative;
}
.dark-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.5s var(--ease-out), padding 0.4s, box-shadow 0.4s;
  padding: 1.5rem 0;
}
.site-header.scrolled {
  background: rgba(2, 29, 66, 0.97);
  backdrop-filter: blur(16px);
  padding: 0.85rem 0;
  box-shadow: 0 4px 40px rgba(0,0,0,0.25);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  display: flex; align-items: center; gap: 2rem;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 0.85rem;
  text-decoration: none;
}
.logo-mark {
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
  flex-shrink: 0;
}
.logo-text { line-height: 1.2; }
.logo-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
}
.logo-text em {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 400;
  color: var(--gold); font-style: normal;
  letter-spacing: 0.15em; text-transform: uppercase;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; }
.nav-link {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  padding: 0.5rem 1rem;
  border-radius: 2px;
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 2px; left: 1rem; right: 1rem; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.header-cta {
  margin-left: 1.5rem;
  background: var(--gold); color: var(--blue-dark);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border-radius: 30px;
  transition: background 0.3s, transform 0.3s;
  white-space: nowrap;
}
.header-cta:hover { background: var(--gold-light); transform: translateY(-2px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; margin-left: auto;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--blue-dark);
  padding: 1.5rem clamp(20px, 5vw, 80px) 2rem;
  gap: 0.25rem;
  border-top: 1px solid rgba(228,173,52,0.2);
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; }
.mob-link {
  font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.85);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mob-link:hover { color: var(--gold); }
.mob-cta {
  display: inline-block; margin-top: 1.25rem;
  background: var(--gold); color: var(--blue-dark);
  font-size: 0.9rem; font-weight: 600;
  padding: 0.8rem 2rem; border-radius: 2px;
  text-align: center;
}

@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav.open { display: flex; } /* CHANGE: was .mobile-nav, now only .mobile-nav.open */
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  transform-origin: center;
  will-change: transform;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient( 105deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 50, 117, 0.75) 45%, rgba(49,84,43,0.3) 100% );
}

.hero-overlayxx {
	position: absolute;
	inset: 0;
	background: linear-gradient( 105deg, rgba(0, 0, 0, 0.92) 0%, rgba(4, 10, 22, 0.75) 45%, rgba(0, 0, 0, 0.43) 100% );
}

.hero-content {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  padding-top: 10rem;
  padding-bottom: 12rem;
}

@media (max-width: 768px) {
  .hero-content {
    padding-top: 6rem;
    padding-bottom: 16rem;
  }
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.75rem;
  opacity: 0; /* GSAP animates */
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 700;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 2rem;
  overflow: hidden;
}
.hero-title .line {
  display: block;
  transform: translateY(100%); /* GSAP animates */
  opacity: 0;
}
.hero-title .accent { color: var(--gold); font-style: italic; }

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2.75rem;
  opacity: 0; /* GSAP */
}

.hero-actions {
  display: flex; align-items: center; gap: 1.25rem;
  flex-wrap: wrap;
  opacity: 0; /* GSAP */
}

/* CENTER HERO CONTENT */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* FIX EYEBROW */
.hero-eyebrow {
  justify-content: center;
}

/* FIX TITLE */
.hero-title {
  text-align: center;
}

/* FIX SUBTITLE */
.hero-sub {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* FIX BUTTONS */
.hero-actions {
  justify-content: center;
}

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 10rem; left: clamp(20px,5vw,80px);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollDrop 2s ease-in-out infinite;
}
.scroll-hint span {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); writing-mode: vertical-rl;
}
@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero stats bar */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: rgba(2,29,66,0.88);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(228,173,52,0.2);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem clamp(20px,5vw,80px);
  gap: 0;
  opacity: 0; /* GSAP */
}
.stat {
  flex: 1; text-align: center; padding: 0.5rem 1rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700; color: var(--gold);
  line-height: 1;
}
.stat sup { font-size: 0.5em; vertical-align: super; }
.stat p {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65); text-transform: uppercase;
  margin-top: 0.4rem;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.12);
}

@media (max-width: 600px) {
  .hero-stats { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .scroll-hint { display: none; }
}

/* ══════════════════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 1rem 0;
}
.marquee-track {
  display: flex; align-items: center; gap: 2rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue-dark);
}
.marquee-track .sep { color: var(--blue); opacity: 0.5; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════
   INTRO SECTION
══════════════════════════════════════════════════════════ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.intro-left {}

.intro-img-wrap {
  position: relative;
  height: clamp(400px, 55vw, 620px);
  border-radius: 3px;
  overflow: visible;
}
.intro-img {
  width: 100%; height: 100%;
  border-radius: 3px;
  clip-path: inset(100% 0 0 0); /* GSAP reveals */
}
.intro-badge {
  position: absolute; bottom: -2rem; left: -2rem;
  background: var(--gold);
  color: var(--blue-dark);
  padding: 1.5rem;
  border-radius: 3px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 700; line-height: 1;
}
.badge-label {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; line-height: 1.4;
}

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; }
  .intro-right { order: -1; }
  .intro-img-wrap { height: 350px; }
  .intro-badge { bottom: -1.5rem; left: -0.5rem; }
}

/* ══════════════════════════════════════════════════════════
   JOURNEY / PROGRESS SECTION
══════════════════════════════════════════════════════════ */
.progress-line-wrap {
  position: relative;
  margin-top: 5rem;
}

.progress-line-bg {
  position: absolute; top: 38px; left: 5%; right: 5%;
  height: 2px;
  background: rgba(255,255,255,0.1);
  z-index: 0;
  border-radius: 2px;
}
.progress-line-fill {
  height: 100%; width: 0%;
  background: linear-gradient(to right, var(--gold), var(--green-light));
  border-radius: 2px;
  transition: width 1.5s var(--ease-out);
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative; z-index: 1;
}

.journey-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 1.5rem;
  opacity: 0; transform: translateY(30px); /* GSAP */
}

.step-node {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(228,173,52,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.4s, background 0.4s, transform 0.4s;
  flex-shrink: 0;
}
.journey-step.active .step-node,
.journey-step:hover .step-node {
  border-color: var(--gold);
  background: rgba(228,173,52,0.12);
  transform: scale(1.08);
}
.step-icon { font-size: 1.75rem; }

.step-content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600; color: var(--white);
  margin-bottom: 0.5rem;
}
.step-content p {
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .journey-steps { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .progress-line-bg { display: none; }
}
@media (max-width: 500px) {
  .journey-steps { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 2.5rem 2rem;
  border-radius: 3px;
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(30px); /* GSAP */
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(4,52,116,0.1);
  border-color: var(--gold);
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--gold), var(--blue));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.why-card:hover::before { transform: scaleX(1); }

.card-icon { font-size: 2rem; margin-bottom: 1.25rem; }

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600; color: var(--blue);
  margin-bottom: 0.75rem;
}
.why-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }

.card-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.why-card:hover .card-line { opacity: 1; }

/* Accent card */
.why-card--accent {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-color: var(--blue);
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start;
}
.why-card--accent:hover { border-color: var(--gold); }
.card-big-num {
  font-family: var(--font-display);
  font-size: 5rem; font-weight: 700; line-height: 1;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.card-big-num sup { font-size: 0.35em; vertical-align: super; }
.why-card--accent p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 2rem; }

.btn-card {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; font-weight: 600;
  color: var(--gold);
  padding-bottom: 3px;
  transition: gap 0.3s, color 0.3s;
}
.btn-card:hover { gap: 0.8rem; color: var(--gold-light); }

@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  { .why-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════
   PRODUCTS PREVIEW
══════════════════════════════════════════════════════════ */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3.5rem 0;
}

.prod-card {
  border-radius: 3px;
  overflow: hidden;
  opacity: 0; transform: translateY(30px); /* GSAP */
  transition: transform 0.4s var(--ease-out);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.prod-card:hover { transform: translateY(-8px); }

.prod-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.prod-img-wrap img {
  transition: transform 0.7s var(--ease-out);
}
.prod-card:hover .prod-img-wrap img { transform: scale(1.08); }
.prod-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(2,29,66,0.9) 0%, transparent 60%);
}

.prod-info {
  padding: 1.5rem;
}
.prod-cat {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.5rem;
}
.prod-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 600; color: var(--white);
  margin-bottom: 0.6rem;
}
.prod-info p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 1.25rem; }

.prod-link {
  font-size: 0.82rem; font-weight: 600;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 0.3rem;
  border-bottom: 1px solid rgba(228,173,52,0.35);
  padding-bottom: 2px;
  transition: gap 0.3s, border-color 0.3s;
}
.prod-link:hover { gap: 0.7rem; border-color: var(--gold); }

.centered-action { text-align: center; margin-top: 1.5rem; }

@media (max-width: 1024px) { .prod-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px)  { .prod-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════
   TRUST / GLOBAL SECTION
══════════════════════════════════════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
}

.trust-stats {
  display: flex; gap: 2.5rem; margin-top: 3rem; flex-wrap: wrap;
}
.t-stat span {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.t-stat p {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-top: 0.3rem;
}

/* Globe visual */
.globe-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 450px;
  margin: 0 auto;
   overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.globe-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(4,52,116,0.2);
  animation: rotateSlow 20s linear infinite;
}
.ring1 { width: 100%; height: 100%; animation-duration: 20s; }
.ring2 { width: 75%; height: 75%; animation-duration: 15s; animation-direction: reverse; border-color: rgba(228,173,52,0.15); }
.ring3 { width: 50%; height: 50%; animation-duration: 10s; border-color: rgba(49,84,43,0.2); }
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.globe-core {
  font-size: 4rem; z-index: 2; position: relative;
  animation: floatGlobe 4s ease-in-out infinite;
}
@keyframes floatGlobe {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.globe-dot {
  position: absolute; font-size: 1.25rem; z-index: 3;
  animation: floatDot 3s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(228,173,52,0.5));
}
@keyframes floatDot {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.1); }
}

@media (max-width: 900px) {
  .trust-grid { grid-template-columns: 1fr; }
  .globe-visual { max-width: 300px; }
}

/* ══════════════════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════════════════ */
.cta-band {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0; z-index: 0;
}
.cta-img { object-fit: cover; }
.cta-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.76) 100%);
}
.cta-inner {
  position: relative; z-index: 2;
  text-align: center;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700; color: var(--white); line-height: 1.12;
  margin-bottom: 1.5rem;
}
.cta-title em { color: var(--gold); font-style: italic; }
.cta-inner p {
  font-size: 1.1rem; color: rgba(255,255,255,0.7);
  max-width: 540px; margin: 0 auto 2.75rem;
  line-height: 1.75;
}
.cta-btns {
  display: flex; align-items: center; justify-content: center; gap: 1.25rem;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.65);
}
.site-footer a {
  color: var(--gold);
  transition: color 0.3s;
}

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


.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(2rem, 4vw, 4rem);
}


.footer-col a, .footer-col p {
  display: block;
  font-size: 0.9rem; color: rgba(255,255,255,0.5);
  padding: 0.3rem 0;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--white); }

.small-btn { padding: 0.65rem 1.4rem !important; font-size: 0.82rem !important; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer-bottom p { font-size: 0.82rem; color: #fff; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════════════════════
   REVEAL ANIMATIONS (pre-state)
══════════════════════════════════════════════════════════ */
[data-reveal] { opacity: 0; transform: translateY(30px); }
.reveal-left { opacity: 0; transform: translateX(-50px); }
.reveal-right { opacity: 0; transform: translateX(50px); }


/* ── ABOUT HERO ─────────────────────────────────────────── */
.about-hero {
  position: relative;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.about-hero-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient( 110deg, rgba(0, 0, 0, 0.93) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(49,84,43,0.45) 100% );
}
.about-hero-content {
  position: relative; z-index: 2;
  padding-top: 8rem;
  padding-bottom: 2rem;
}
.about-hero-eyebrow {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.75rem;
  opacity: 0; /* GSAP */
}
.about-hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.about-hero-title {
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.75rem;
}
.ah-line {
  display: block;
  opacity: 0; transform: translateY(40px); /* GSAP */
}
.gold-italic { color: var(--gold); font-style: italic; }
.about-hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.7; max-width: 520px;
  opacity: 0; /* GSAP */
}
/* Diagonal decorative bottom edge */
.about-hero-deco {
  position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3;
  height: 80px;
  background: var(--off-white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* ── STORY SECTION ──────────────────────────────────────── */
.au-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}

/* Stacked image layout */
.au-story-images {
  position: relative;
  height: clamp(380px, 52vw, 580px);
}
.au-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 82%; height: 85%;
  border-radius: 3px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(4,52,116,0.18);
}
.au-img-main img { clip-path: inset(100% 0 0 0); /* GSAP reveal */ }

.au-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%; height: 52%;
  border-radius: 3px; overflow: hidden;
  border: 4px solid var(--off-white);
  box-shadow: 0 20px 50px rgba(4,52,116,0.15);
}
.au-img-accent img { clip-path: inset(100% 0 0 0); /* GSAP reveal */ }

.au-img-badge {
  position: absolute;
  top: 50%; left: -1.5rem;
  transform: translateY(-50%);
  background: var(--gold);
  color: var(--blue-dark);
  padding: 1rem 1.25rem;
  border-radius: 3px;
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  box-shadow: 0 15px 40px rgba(228,173,52,0.35);
  z-index: 2;
}
.badge-icon { font-size: 1.5rem; }
.badge-text {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; text-align: center; line-height: 1.3;
}

.au-inline-stats {
  display: flex; gap: 2rem; margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light-gray);
  flex-wrap: wrap;
}
.au-istat span {
  display: block;
  font-size: 2rem; font-weight: 800;
  letter-spacing: -0.02em; line-height: 1;
  color: var(--gold);
}
.au-istat p {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-top: 0.3rem;
}

@media (max-width: 900px) {
  .au-story-grid { grid-template-columns: 1fr; }
  .au-story-images { height: 320px; }
  .au-img-badge { left: 0.5rem; }
}

/* ── LEADER SECTION ─────────────────────────────────────── */
.au-leader-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.au-quote-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(228,173,52,0.2);
  border-radius: 4px;
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
}
.quote-mark {
  font-size: 7rem; line-height: 0.6;
  color: var(--gold); opacity: 0.25;
  font-family: Georgia, serif;
  margin-bottom: 1rem;
  display: block;
}
.au-quote-card blockquote {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin-bottom: 2rem;
}
.quote-author {
  display: flex; align-items: center; gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
}
.quote-avatar {
  width: 48px; height: 48px;
  background: var(--gold);
  color: var(--blue-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 800;
  flex-shrink: 0;
}
.quote-author strong {
  display: block; color: var(--white);
  font-size: 0.95rem; font-weight: 700;
}
.quote-author span {
  display: block; color: var(--gold);
  font-size: 0.78rem; letter-spacing: 0.05em; margin-top: 0.2rem;
}

@media (max-width: 900px) {
  .au-leader-grid { grid-template-columns: 1fr; }
}

/* ── MISSION & VISION ───────────────────────────────────── */
.centered-label { justify-content: center; }

.au-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

.au-mv-card {
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 4px;
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(30px); /* GSAP */
}
.mission-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
}
.vision-card {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border: 1px solid rgba(228,173,52,0.2);
}

.mv-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.75rem;
}
.mission-card .mv-icon-wrap { background: var(--gold-dim); }
.vision-card  .mv-icon-wrap { background: rgba(255,255,255,0.08); }

.mv-icon { font-size: 1.75rem; }

.mv-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.75rem;
}
.au-mv-card h3 {
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.2;
  margin-bottom: 1.25rem;
}
.mission-card h3 { color: var(--blue); }
.vision-card  h3 { color: var(--white); }

.au-mv-card p {
  font-size: 0.97rem; line-height: 1.75; margin-bottom: 1rem;
}
.mission-card p { color: var(--muted); }
.vision-card  p { color: rgba(255,255,255,0.65); }

.mv-deco-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--gold), transparent);
}

@media (max-width: 700px) {
  .au-mv-grid { grid-template-columns: 1fr; }
}

/* ── WHAT WE EXPORT GRID ────────────────────────────────── */
.au-what-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.au-what-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  opacity: 0; transform: translateY(30px); /* GSAP */
  transition: border-color 0.4s, background 0.4s, transform 0.4s;
}
.au-what-item:hover {
  border-color: rgba(228,173,52,0.4);
  background: rgba(228,173,52,0.06);
  transform: translateY(-6px);
}
.what-num {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em;
  color: var(--gold); opacity: 0.6;
  margin-bottom: 1rem;
}
.what-icon { font-size: 2.25rem; margin-bottom: 1rem; }
.au-what-item h4 {
  font-size: 1rem; font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white); margin-bottom: 0.6rem;
}
.au-what-item p {
  font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6;
}

@media (max-width: 1024px) { .au-what-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 600px)  { .au-what-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 400px)  { .au-what-grid { grid-template-columns: 1fr; } }

/* ── VALUES / HOW WE WORK ───────────────────────────────── */
.au-values-list {
  margin-top: 3.5rem;
  display: flex; flex-direction: column;
  gap: 0;
}

.au-value-row {
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--light-gray);
  opacity: 0; transform: translateX(-30px); /* GSAP */
  transition: background 0.3s;
}
.au-value-row:first-child { border-top: 1px solid var(--light-gray); }
.au-value-row:hover { background: rgba(4,52,116,0.02); }

.av-number {
  font-size: 2.5rem; font-weight: 800;
  letter-spacing: -0.04em; line-height: 1;
  color: var(--gold); opacity: 0.35;
}
.av-content h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 700; letter-spacing: -0.01em;
  color: var(--blue); margin-bottom: 0.5rem;
}
.av-content p {
  font-size: 0.95rem; color: var(--muted); line-height: 1.7;
}
.av-icon { font-size: 2rem; text-align: center; }

@media (max-width: 600px) {
  .au-value-row {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }
  .av-icon { display: none; }
  .av-number { font-size: 1.75rem; }
}


/* ── PRODUCTS HERO ──────────────────────────────────────── */
.prod-hero {
  position: relative;
  padding: 6rem 0 0rem;
  overflow: hidden;
}
.prod-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.prod-hero-bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.prod-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient( 110deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.75) 55%, rgba(49,84,43,0.5) 100% );
}
.prod-hero-content {
  position: relative; z-index: 2;
  padding-top: 2rem; padding-bottom: 3rem;
}
.prod-hero-eyebrow {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
}
.prod-hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.prod-hero-title {
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.1;
  color: var(--white); margin-bottom: 1.5rem;
}
.ph-line { display: block; opacity: 0; transform: translateY(40px); }
.prod-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.7); line-height: 1.7;
  max-width: 560px; opacity: 0;
}

/* ── INTRO STRIP ────────────────────────────────────────── */
.prod-intro {
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.prod-intro-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem; align-items: center;
}
.prod-intro-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.15;
  color: var(--blue); margin-bottom: 1rem;
}
.prod-intro-text h2 em { color: var(--gold); font-style: italic; }
.prod-intro-text p {
  font-size: 1rem; color: var(--muted); line-height: 1.75;
}
.prod-intro-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.pi-stat {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 3px;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.pi-stat:hover { border-color: var(--gold); transform: translateY(-4px); }
.pi-stat span {
  display: block;
  font-size: 2.2rem; font-weight: 800;
  letter-spacing: -0.03em; color: var(--gold); line-height: 1;
}
.pi-stat p {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-top: 0.4rem;
}

@media (max-width: 800px) {
  .prod-intro-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .prod-intro-stats { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 500px) {
  .prod-intro-stats { grid-template-columns: repeat(2,1fr); }
}

/* ── CATEGORY SECTIONS ──────────────────────────────────── */
.cat-section {
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  border-bottom: 1px solid #fff;
}

/* Parallax bg */
.cat-bg {
  position: absolute; inset: 0; z-index: 0;
}
.cat-bg img {
  position: absolute; inset: -20% 0;
  width: 100%; height: 140%;
  object-fit: cover;
  will-change: transform;
}

/* Overlays per category — each has unique color mood */
.cat-overlay {
  position: absolute; inset: 0;
}
.spices-overlay {
	background: linear-gradient( 105deg, rgba(2,29,66,0.96) 0%, rgba(9, 29, 56, 0.88) 45%, rgba(100,40,10,0.6) 100% );
}
.pulses-overlay {
	background: linear-gradient( 255deg, rgba(2,29,66,0.96) 0%, rgba(0, 1, 2, 0.88) 45%, rgba(49,84,43,0.65) 100% );
}
.seeds-overlay {
	background: linear-gradient( 105deg, rgba(2,29,66,0.96) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(90,70,10,0.55) 100% );
}
.fresh-overlay {
	background: linear-gradient( 255deg, rgba(2,29,66,0.96) 0%, rgba(0, 0, 0, 0.88) 50%, rgba(20,80,40,0.6) 100% );
}
.fmcg-overlay {
	background: linear-gradient( 105deg, rgba(2,29,66,0.97) 0%, rgba(2, 3, 4, 0.85) 55%, rgba(2,29,66,0.7) 100% );
}

/* Inner layout */
.cat-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
  padding-top: clamp(4rem, 10vw, 0rem);
  padding-bottom: clamp(4rem, 8vw, 0rem);
}

/* Flipped layout — right side shows pills first on desktop */
.cat-flipped .cat-inner {
  direction: rtl;
}
.cat-flipped .cat-inner > * {
  direction: ltr;
}

/* Left — title block */
.cat-left { }

.cat-num {
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 800; letter-spacing: -0.05em; line-height: 1;
  color: rgba(255,255,255,0.06);
  margin-bottom: -1rem;
  opacity: 0; transform: translateY(20px);
}
.cat-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.75rem;
  opacity: 0; transform: translateY(20px);
}
.cat-title {
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.75rem;
  opacity: 0; transform: translateY(30px);
}
.cat-title em { color: var(--gold); font-style: italic; }

.cat-desc {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  color: rgba(255,255,255,0.65); line-height: 1.8;
  margin-bottom: 1.25rem;
  opacity: 0; transform: translateY(20px);
}
.cat-use {
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
  line-height: 1.6; opacity: 0; transform: translateY(20px);
}
.cat-use strong { color: rgba(255,255,255,0.75); font-weight: 600; }

/* Right — pills block */
.cat-right {
  display: flex; flex-direction: column; gap: 1.5rem;
}
.cat-pills-group {
  display: flex; flex-direction: column; gap: 2rem;
}
.cat-pills-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem; opacity: 0;
}
.cat-pills {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
}

/* THE PILLS ✨ */
.pill {
  display: inline-flex; align-items: center;
  padding: 0.6rem 1.35rem;
  border: 1.5px solid rgba(228,173,52,0.4);
  border-radius: 100px;
  font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  cursor: default;
  opacity: 0; transform: translateY(15px) scale(0.95);
  transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.3s;
}
.pill:hover {
  border-color: var(--gold);
  background: rgba(228,173,52,0.15);
  color: var(--gold);
  transform: translateY(-3px) scale(1.04);
}

.cat-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.05em;
  color: var(--gold);
  border-bottom: 1.5px solid rgba(228,173,52,0.4);
  padding-bottom: 4px;
  width: fit-content;
  opacity: 0;
  transition: gap 0.3s, border-color 0.3s;
}
.cat-cta:hover { gap: 1rem; border-color: var(--gold); }

/* Mobile stacking */
@media (max-width: 900px) {
  .cat-section { min-height: auto; }
  .cat-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .cat-flipped .cat-inner { direction: ltr; }
  .cat-num { font-size: 5rem; }
  .cat-title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
}

/* ── QUALITY PROMISE ────────────────────────────────────── */
.prod-quality {
  background: var(--off-white);
}
.pq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
}
.pq-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 3px;
  padding: 2.5rem 2rem;
  text-align: center;
  opacity: 0; transform: translateY(30px);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}
.pq-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(4,52,116,0.1);
  border-color: var(--gold);
}
.pq-icon { font-size: 2.25rem; margin-bottom: 1.25rem; }
.pq-card h3 {
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--blue); margin-bottom: 0.75rem;
}
.pq-card p {
  font-size: 0.9rem; color: var(--muted); line-height: 1.7;
}

@media (max-width: 1024px) { .pq-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px)  { .pq-grid { grid-template-columns: 1fr; } }

 
.about-hero-deco { display: none !important; }

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}

.contact-card {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 14px;
    transition: transform 0.3s var(--ease-out);
}

.contact-card:hover {
    transform: translateX(10px);
    border-color: var(--gold);
}

.c-icon { font-size: 1.3rem; }

.contact-card h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 0.2rem;
}

.contact-card p {
    font-weight: 500;
    color: var(--blue-dark);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* ── SOCIALS ─────────────────────────────────────────── */
.social-box { margin-top: 3rem; }
.social-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted);
    margin-bottom: 1rem;
}
.social-links { display: flex; gap: 0.8rem; }
.social-circle {
    width: 42px; height: 42px;
    border: 1.5px solid var(--light-gray);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 700;
    color: var(--blue); border-radius: 50%;
    transition: all 0.3s var(--ease-out);
}
.social-circle:hover {
    background: var(--gold);
    color: var(--blue-dark);
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* ── FORM STYLING (Cinematic Dark) ───────────────────── */
.contact-form-wrap {
    background: var(--blue-dark);
    padding: clamp(2rem, 5vw, 3.5rem);
    border-radius: 2px;
    box-shadow: 0 30px 60px rgba(4,52,116,0.2);
}

.cinematic-form .input-group { margin-bottom: 1.2rem; }

.cinematic-form label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.cinematic-form input, 
.cinematic-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(228,173,52,0.2);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    border-radius: 2px;
}

.cinematic-form input:focus, 
.cinematic-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.07);
}

@media (max-width: 768px) {
    .form-grid { grid-template-columns: 1fr; }
}

/* ── CINEMATIC SOCIAL DOCK ───────────────────────────── */
.social-dock-wrapper {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted);
    position: relative;
    padding-left: 40px;
}

/* Decorative line for the label */
.social-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.social-dock {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 100px; /* Pill Shape */
    border: 1px solid var(--light-gray);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    width: fit-content;
}

.dock-item {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--blue-dark);
    font-weight: 700;
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.4s var(--ease-out);
    background: var(--off-white);
}

.dock-icon {
    z-index: 2;
    transition: color 0.3s;
}

/* The Hover Glow Effect */
.dock-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--gold);
    transform: scale(0);
    transition: transform 0.4s var(--ease-out);
    z-index: 1;
}

.dock-item:hover { 
    color: var(--white);
    box-shadow: 0 10px 20px var(--gold-dim);
}

.dock-item:hover::before {
    transform: scale(1);
}

/* Tooltip Styling */
.dock-tooltip {
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--blue-dark);
    color: var(--gold);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-out);
    pointer-events: none;
}

.dock-item:hover .dock-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
 
.dock-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: var(--blue-dark) transparent transparent transparent;
}