@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --navy: #1a4a38;
  --navy-deep: #0d3526;
  --navy-mid: #1e5c44;
  --navy-light: #2a7a58;
  --gold: #c8a96e;
  --gold-light: #d9be8e;
  --cream: #f8f5f0;
  --cream-warm: #f2ede4;
  --white: #ffffff;
  --text-dark: #1a251e;
  --text-mid: #3d5a4a;
  --text-muted: #8a9e92;
  --border: rgba(13, 53, 38, 0.12);
  --shadow-sm: 0 2px 12px rgba(13, 53, 38, 0.08);
  --shadow-md: 0 8px 32px rgba(13, 53, 38, 0.14);
  --shadow-lg: 0 24px 64px rgba(13, 53, 38, 0.18);
  --radius: 4px;
  --radius-md: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

/* ─── NAV ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000;
  box-shadow: 0 1px 0 rgba(200,169,110,0.35), 0 4px 24px rgba(0,0,0,0.5);
}

/* Gold glow behind logo area */
.navbar::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 220px;
  background: radial-gradient(ellipse at left center, rgba(200,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.nav-logo img {
  height: 108px;
  width: auto;
  display: block;
  mix-blend-mode: lighten;
  transition: opacity var(--transition);
}

.nav-logo img:hover { opacity: 0.88; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold) !important; }

/* Dropdown */
.nav-item { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  pointer-events: none;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.82rem !important;
  color: var(--text-mid) !important;
  letter-spacing: 0.05em;
  text-transform: none !important;
  transition: background var(--transition), color var(--transition);
}

.dropdown-menu a::after { display: none !important; }

.dropdown-menu a:hover {
  background: var(--cream);
  color: var(--navy) !important;
  padding-left: 26px;
}

.dropdown-arrow {
  display: inline-block;
  margin-left: 4px;
  font-size: 0.6rem;
  transition: transform var(--transition);
  vertical-align: middle;
}

.nav-item:hover .dropdown-arrow { transform: rotate(180deg); }

/* Nav CTA */
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
  letter-spacing: 0.08em;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy-deep) !important; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  transition: all var(--transition);
  border-radius: 2px;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(200, 169, 110, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%),
    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;
}

.hero-line {
  position: absolute;
  z-index: 1;
  right: 0; top: 0; bottom: 0;
  width: 42%;
  background: linear-gradient(135deg, transparent 0%, rgba(200,169,110,0.06) 100%);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  padding-top: 116px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-eyebrow-line {
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero-eyebrow span {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  max-width: 700px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 3rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.25);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 5%;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s infinite;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}

/* ─── SECTIONS ─── */
section { padding: 100px 5%; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--navy-deep);
  margin-top: 0.5rem;
}

/* ─── CERTIFICATIONS CAROUSEL ─── */
.certs-section {
  background: var(--cream);
  padding: 80px 0;
  overflow: hidden;
}

.certs-heading {
  text-align: center;
  padding: 0 5%;
  margin-bottom: 3rem;
}

.certs-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy-deep);
  margin-top: 0.5rem;
}

.certs-marquee {
  overflow: hidden;
  position: relative;
}

.certs-marquee::before,
.certs-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.certs-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--cream), transparent);
}

.certs-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--cream), transparent);
}

.certs-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: certScroll 28s linear infinite;
}

.certs-track:hover { animation-play-state: paused; }

@keyframes certScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.cert-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 110px;
  border: 1px solid rgba(200,169,110,0.35);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 12px rgba(13,53,38,0.06);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.cert-logo:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(200,169,110,0.18);
  transform: translateY(-3px);
}

.cert-logo img {
  max-width: 140px;
  max-height: 75px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ─── ABOUT ─── */
.about-section { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--navy-light));
  border-radius: var(--radius) 0 0 var(--radius);
}

.about-card h3 {
  font-size: 1.5rem;
  color: var(--navy-deep);
  margin-bottom: 1rem;
}

.about-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
}

.card-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-icon svg {
  width: 20px; height: 20px;
  color: var(--gold);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.about-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ─── VALUES ─── */
.values-section { background: var(--white); }

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.value-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--navy-deep);
}

.value-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover .value-card-img-wrap img { transform: scale(1.04); }

.value-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,53,38,0.15) 0%, rgba(13,53,38,0.5) 100%);
  pointer-events: none;
}

.value-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: rgba(13,53,38,0.75);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid rgba(200,169,110,0.3);
}

.value-card-body {
  padding: 1.75rem;
  border-top: 2px solid var(--gold);
}

.value-card-body h3 {
  font-size: 1.25rem;
  color: var(--navy-deep);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.value-card-body p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 300;
}

/* Placeholder value card (no real image) */
.value-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
}

.value-card-placeholder svg {
  width: 64px;
  height: 64px;
  stroke: rgba(200,169,110,0.35);
  fill: none;
  stroke-width: 1;
}

/* ─── WHY CHOOSE US ─── */
.why-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 5%;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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.015'%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;
}

.why-split {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why-image-col {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.why-hero-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.why-image-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(200,169,110,0.1), transparent);
  border-radius: var(--radius-md);
  border: 1px solid rgba(200,169,110,0.2);
  pointer-events: none;
}

.why-content-col .section-label { color: var(--gold); }
.why-content-col h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--white);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.why-features {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: padding-left var(--transition);
}

.why-feature:last-child { border-bottom: none; }
.why-feature:hover { padding-left: 0.5rem; }

.why-feature-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
  margin-top: 2px;
}

.why-feature:hover .why-feature-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.why-feature-icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--transition);
}

.why-feature:hover .why-feature-icon svg { stroke: var(--navy-deep); }

.why-feature-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.3rem;
  font-weight: 500;
  line-height: 1.2;
}

.why-feature-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

/* ─── CONTACT ─── */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.contact-details { display: flex; flex-direction: column; gap: 1rem; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 16px; height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-detail span {
  font-size: 0.9rem;
  color: var(--text-mid);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13, 53, 38, 0.08);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-submit:hover {
  background: transparent;
  color: var(--navy-deep);
  border-color: var(--navy-deep);
  transform: translateY(-1px);
}

/* ─── FOOTER ─── */
footer {
  background: #000;
  padding: 64px 5% 32px;
  color: rgba(255,255,255,0.5);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand img {
  height: 108px;
  mix-blend-mode: lighten;
  margin-bottom: 1.2rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  font-weight: 300;
  color: #ffffff;
  max-width: 260px;
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }

.footer-col ul a {
  font-size: 0.85rem;
  color: #ffffff;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  background: var(--cream);
  color: var(--gold);
  margin: 2rem -5% -32px;
  padding: 1.25rem 5%;
  letter-spacing: 0.06em;
}

.footer-bottom a { color: var(--gold); text-decoration: none; }
.footer-bottom a:hover { color: var(--navy-deep); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .value-card { flex: 0 0 calc(50% - 0.75rem); }
  .why-split { grid-template-columns: 1fr; gap: 3rem; }
  .why-image-col { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 70px 5%; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 116px; left: 0; right: 0;
    background: var(--navy-deep);
    padding: 2rem 5%;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid rgba(200,169,110,0.2);
  }
  .nav-links.open a { color: rgba(255,255,255,0.85) !important; }
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: rgba(255,255,255,0.05);
    padding-left: 1rem;
    display: none;
  }
  .dropdown-menu.open { display: block; }
  .dropdown-menu::before { display: none; }
  .dropdown-menu a { color: rgba(255,255,255,0.6) !important; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .value-card { flex: 0 0 100%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ─── PRODUCTS PAGE ─── */
.products-hero {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  padding: 160px 5% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.products-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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.015'%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;
}

.products-hero h1 { color: var(--white); font-size: clamp(2.5rem, 5vw, 4rem); position: relative; }
.products-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-top: 1rem;
  font-weight: 300;
  position: relative;
}

/* Category pill nav */
.cat-nav {
  position: sticky;
  top: 116px;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(13,53,38,0.06);
}

.cat-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 5%;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cat-nav-inner::-webkit-scrollbar { display: none; }

.cat-pill {
  flex-shrink: 0;
  padding: 7px 18px;
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--text-mid);
  border: 1px solid var(--border);
  background: var(--white);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.cat-pill:hover,
.cat-pill.active {
  background: var(--navy-deep);
  color: var(--gold);
  border-color: var(--navy-deep);
  transform: translateY(-1px);
}

/* Products layout */
.products-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 5%;
}

.category-section { margin-bottom: 5rem; }

.category-header {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.category-header h2 {
  font-size: 2rem;
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.category-header p {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* Product grid - 4 columns like exim */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Product card */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transition: width 0.4s ease;
  z-index: 1;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.product-card:hover::before { width: 100%; }

.product-card-img-wrap {
  height: 200px;
  overflow: hidden;
  background: var(--navy-deep);
}

.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-img-wrap img { transform: scale(1.06); }

.product-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.product-card-body h3 {
  font-size: 1rem;
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.product-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1rem;
}

.prod-inquiry {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap var(--transition), color var(--transition);
}

.prod-inquiry:hover {
  color: var(--navy);
  gap: 10px;
}

.prod-inquiry svg {
  transition: transform var(--transition);
}

.prod-inquiry:hover svg { transform: translateX(3px); }

/* Products page sidebar CTA box (kept for inline use) */
.products-cta-strip {
  background: var(--navy-deep);
  border-radius: var(--radius-md);
  padding: 3rem;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.products-cta-strip p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .products-content { padding: 50px 5%; }
  .navbar { height: 96px; }
  .nav-logo img { height: 88px; }
  .hero-content { padding-top: 96px; }
  .cat-nav { top: 96px; }
  .footer-brand img { height: 88px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ─── MEGA MENU ─── */
.mega-menu {
  min-width: 440px;
  left: 0;
  transform: translateY(8px);
  display: flex;
  flex-direction: row;
  padding: 12px 0 8px;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.mega-col {
  flex: 1;
  padding: 0 0.5rem;
  border-right: 1px solid var(--border);
}

.mega-col:last-child { border-right: none; }

.mega-header {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 20px 10px;
  pointer-events: none;
}

.mega-view-all {
  margin-top: 0.5rem !important;
  padding-top: 0.75rem !important;
  border-top: 1px solid var(--border);
  font-weight: 600 !important;
  color: var(--navy-deep) !important;
}

/* ─── INTEREST CHECKBOX PILLS ─── */
.interest-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.interest-pill input { display: none; }

.interest-pill span {
  display: block;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  color: var(--text-mid);
  background: var(--white);
  user-select: none;
}

.interest-pill input:checked + span {
  background: var(--navy-deep);
  color: var(--gold);
  border-color: var(--navy-deep);
}

.interest-pill span:hover { border-color: var(--navy); color: var(--navy); }

/* ─── ABOUT CARD IMAGE ─── */
.about-card {
  padding-top: 0;
  overflow: hidden;
}

.about-card-img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  margin-bottom: 1.75rem;
}

/* ─── PHOTO GALLERY ─── */
.gallery-section { background: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ─── FOOTER SOCIAL ICONS ─── */
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  text-decoration: none;
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,169,110,0.08);
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}

/* ─── HERO SLIDER ─── */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,53,38,0.72) 0%,
    rgba(26,74,56,0.55) 50%,
    rgba(13,53,38,0.72) 100%
  );
}

.hero-dots {
  position: absolute;
  bottom: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 4;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.hero-dot.active {
  background: var(--gold);
  transform: scale(1.35);
}

.hero-dot:hover { background: rgba(255,255,255,0.65); }
