/* ═══════════════════════════════════════════════
   Li8 Brands — styles.css
   Full production stylesheet
═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --navy:        #16204e;
  --navy-deep:   #0e1738;
  --navy-mid:    #18245a;
  --gold:        #cf7b1c;
  --gold-light:  #f6d7a6;
  --gold-hover:  #e8921f;
  --cream:       #fbf5ef;
  --cream-mid:   #f8f1ea;
  --cream-dark:  #f2e8de;
  --white:       #ffffff;
  --text-muted:  #5a6382;
  --text-light:  #8892aa;
  --border:      rgba(22,32,78,0.08);
  --border-mid:  rgba(22,32,78,0.12);
  --shadow-sm:   0 2px 8px  rgba(22,32,78,0.06);
  --shadow-md:   0 6px 24px rgba(22,32,78,0.09);
  --shadow-lg:   0 16px 48px rgba(22,32,78,0.13);
  --shadow-xl:   0 28px 70px rgba(22,32,78,0.2);
  --shadow-gold: 0 8px 28px rgba(207,123,28,0.32);
  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --transition:  all .22s ease;
  --ease-premium: cubic-bezier(.16,1,.3,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: Manrope, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5 { line-height: 1.15; }

/* ── LAYOUT ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: inline-block;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-heading         { margin-bottom: 26px; }
.section-heading .eyebrow {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--navy);
  margin-bottom: 8px;
}
.section-heading h2      { font-family: Manrope, sans-serif; font-size: clamp(.92rem, 1.5vw, 1.05rem); font-weight: 600; color: var(--gold); max-width: 640px; margin-bottom: 0; line-height: 1.4; }
.section-heading p       { color: var(--text-muted); font-size: .92rem; font-weight: 600; max-width: 560px; line-height: 1.5; margin-top: 8px; }
.section-heading.compact .eyebrow { font-size: clamp(1.25rem, 2.2vw, 1.7rem); }
.section-heading.center  { text-align: center; }
.section-heading.center h2,
.section-heading.center p { max-width: 700px; margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: .92rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.button-primary {
  background: var(--gold);
  color: #fff;
  padding: 11px 24px;
  box-shadow: var(--shadow-gold);
  position: relative;
}
.button-primary:hover  { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(207,123,28,0.38); }
.button-primary:active { transform: translateY(0); }
.button-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
}
.button-ghost:hover { background: rgba(255,255,255,0.16); }
.button-outline {
  background: transparent;
  color: var(--navy);
  padding: 11px 22px;
  border: 1.5px solid var(--navy);
  border-radius: var(--radius-sm);
}
.button-outline:hover { background: var(--navy); color: #fff; }
.button-wa {
  background: #25D366;
  color: #fff;
  padding: 12px 22px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.button-wa:hover { background: #1ebc5a; transform: translateY(-2px); }

/* ═══════════════════════════════════════
   ICONS (custom sprite, replaces emoji)
═══════════════════════════════════════ */
.icon {
  display: inline-block;
  vertical-align: -2px;
  color: currentColor;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(250,246,241,0.99), rgba(248,241,234,0.98));
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(240, 240, 243, 0.05);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 8px;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}
.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #f6d7a6, #cf7b1c);
  color: var(--navy-mid);
  font-weight: 900;
  font-size: 1.15rem;
  box-shadow: 0 10px 28px rgba(207,123,28,0.25);
  flex-shrink: 0;
}
.brand-copy strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .02em;
  color: var(--navy);
}
.brand-copy small {
  display: block;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1px;
}
.header-trust {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.header-trust span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.65);
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.header-nav-shell {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.header-nav-shell .container { max-width: 1320px; }
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  gap: 14px;
}
.site-logo {
  position: relative;
  padding-right: 18px;
  flex-shrink: 0;
}
.site-logo::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 30px;
  background: var(--border-mid);
}
@media (max-width: 1024px) {
  .site-logo::after { display: none; }
}
.nav-primary {
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
}
.nav-primary a {
  position: relative;
  color: #16204e;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .01em;
  padding: 8px 10px;
  border-radius: 0;
  background: transparent;
  white-space: nowrap;
  transition: color .2s ease;
}
.nav-primary a::after {
  content: '';
  position: absolute;
  left: 10px; right: 10px; bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-primary a:hover {
  background: transparent;
  color: var(--navy);
}
.nav-primary a:hover::after { transform: scaleX(1); }

.nav-link {
  color: #16204e;
  font-weight: 700;
  font-size: .8rem;
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--border-mid);
  transition: all .22s ease;
}

.nav-link:hover {
  background: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
}

/* Header menu text color */
header a,
.navbar a,
.menu a,
nav a {
    color: #1B2B5E !important;
    font-weight: 600;
}

/* Hover effect */
header a:hover,
.navbar a:hover,
.menu a:hover,
nav a:hover {
    color: #0F1B44 !important;
}

.site-logo span {
    color: #16204e;
}

.site-logo img {
    height: 60px;
    width: auto;
}

.site-logo span {
    font-size: 1.5rem;
    font-weight: 800;
    color: #edeef4;
    letter-spacing: 0.5px;
}

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-size: 1.3rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 16px;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.82);
  font-weight: 700;
  font-size: .95rem;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  transition: var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.1); color: #fff; }

@media (max-width: 768px) {

    .logo-circle {
        width: auto;
        height: auto;
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .logo-circle img {
        height: auto;
        width: auto;
    }
}

/* ═══════════════════════════════════════
   HERO — pure image slider (banners already contain all copy)
═══════════════════════════════════════ */
.hero-section {
  position: relative;
  padding: 0;
  height: clamp(220px, 26vw, 460px);
  overflow: hidden;
  isolation: isolate;
  width: 100%;
}
.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-slider .highlighted-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slider .highlighted-slide.is-active { opacity: 1; }
.hero-slider .highlighted-slide img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center top;
  display: block;
}

/* Slider controls */
.hero-controls { position: absolute; inset: auto 0 18px 0; z-index: 2; display: flex; justify-content: center; }
.highlighted-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 2;
}
.highlighted-arrow {
  pointer-events: all;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.24);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1.3rem;
  display: grid;
  place-items: center;
  transition: var(--transition);
  line-height: 1;
}
.highlighted-arrow:hover { background: rgba(255,255,255,0.28); transform: translateY(-50%) scale(1.08); }
.highlighted-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.highlighted-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(22,32,78,0.15);
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.highlighted-dot.is-active { background: var(--gold); width: 22px; border-radius: 4px; }

@media (max-width: 640px) {
  .hero-section { height: 150px; }
  .highlighted-arrow { display: none; }
}

/* ═══════════════════════════════════════
   BRAND / CUSTOMERS BAND — bigger, colourful, sliding
═══════════════════════════════════════ */
.brand-band {
  padding: 32px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
#customers { padding-top: 8px; padding-bottom: 20px; border-top: none; }
.brand-band .section-heading { margin-bottom: 16px; }

.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  padding: 4px 0;
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  animation: logoScroll 26s linear infinite;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-marquee-reverse .logo-track { animation-direction: reverse; animation-duration: 30s; }

@keyframes logoScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-track img {
  height: 84px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  opacity: 1;
  filter: none;
  flex-shrink: 0;
  transition: transform .25s ease, filter .25s ease;
  padding: 5px 9px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.logo-track img:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: var(--shadow-md);
  border-color: rgba(207,123,28,0.35);
}

@media (max-width: 640px) {
  .logo-track { gap: 16px; }
  .logo-track img { height: 88px; max-width: 180px; padding: 4px 8px; }
}

/* ═══════════════════════════════════════
   FEATURE / GIFT CONCEPTS
═══════════════════════════════════════ */
.feature-section { padding: 72px 0; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 26px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease-premium), box-shadow .4s var(--ease-premium);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
  z-index: 1;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: none;
  color: var(--gold-light);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,0.24);
}
.feature-card h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}
.feature-card p { margin: 0; color: rgba(255,255,255,0.82); font-size: .9rem; line-height: 1.65; }

/* ═══════════════════════════════════════
   GALLERY — with explore buttons
═══════════════════════════════════════ */
.gallery-section { padding: 44px 0; background: var(--cream-mid); }
.gallery-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-card {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.gallery-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.gallery-img-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
  cursor: pointer;
}
.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  cursor: pointer;
}
.gallery-card:hover .gallery-img-wrap img { transform: scale(1.06); }
.gallery-card-caption {
  padding: 18px 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.gallery-card-caption h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.button-explore {
  background: var(--navy);
  color: #fff;
  padding: 9px 16px;
  font-size: .82rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery-card:hover .button-explore {
  background: var(--gold);
  box-shadow: var(--shadow-gold);
}

@media (max-width: 640px) {
  .gallery-card-caption { flex-direction: column; align-items: flex-start; gap: 10px; }
}

figure {
  margin: 0;
  text-align: center;
}

figcaption {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* ═══════════════════════════════════════
   REVIEWS
═══════════════════════════════════════ */
.proof-section { padding: 48px 0; background: var(--white); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 22px;
  font-family: Fraunces, Georgia, serif;
  font-size: 4rem;
  color: var(--gold-light);
  line-height: 1;
}
.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.review-brand-logo {
  height: 30px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
}
.review-card p  { margin: 0; color: var(--text-muted); font-size: .92rem; line-height: 1.78; }
.review-author  { margin-top: 18px; font-size: .82rem; font-weight: 800; color: var(--navy); }

/* ═══════════════════════════════════════
   CASE STUDY
═══════════════════════════════════════ */
.casestudy-section {
  padding: 52px 0;
  background: var(--navy-deep);
  color: #fff;
}
.casestudy-section .eyebrow { color: var(--gold-light); }
.casestudy-section .section-heading h2 { color: #fff; }
.casestudy-section .section-heading p  { color: rgba(255,255,255,0.6); }
.casestudy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.casestudy-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.casestudy-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.casestudy-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.cs-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(207,123,28,0.2);
  border: 1px solid rgba(246,215,166,0.22);
  border-radius: 999px;
  padding: 5px 13px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.casestudy-card h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 12px;
}
.casestudy-card > p {
  font-size: .89rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.72;
  margin-bottom: 24px;
  flex: 1;
}
.cs-metrics { display: flex; gap: 20px; flex-wrap: wrap; }
.cs-metric   { display: flex; flex-direction: column; gap: 3px; }
.cs-metric strong {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--gold-light);
  font-family: Fraunces, Georgia, serif;
  line-height: 1;
}
.cs-metric span {
  font-size: .72rem;
  color: rgba(255,255,255,0.48);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.casestudy-bottom {
  margin-top: 52px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.casestudy-bottom-copy h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.45rem;
  color: #fff;
  margin-bottom: 10px;
  max-width: 480px;
}
.casestudy-bottom-copy p {
  margin: 0;
  font-size: .93rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 520px;
}
.casestudy-bottom-stats { display: flex; gap: 44px; flex-shrink: 0; }
.cb-stat { display: flex; flex-direction: column; gap: 5px; align-items: center; text-align: center; }
.cb-stat strong {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
  font-family: Fraunces, Georgia, serif;
  line-height: 1;
}
.cb-stat span {
  font-size: .75rem;
  color: rgba(255,255,255,0.48);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  max-width: 90px;
  text-align: center;
}

/* ═══════════════════════════════════════
   ORDER PROCESS
═══════════════════════════════════════ */
.order-process-section { padding: 48px 0; background: var(--cream); }
.order-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.order-steps::before {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(10% + 1px);
  right: calc(10% + 1px);
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--border-mid) 0 8px, transparent 8px 14px);
  z-index: 0;
}
.order-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 14px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 900;
  font-family: Fraunces, Georgia, serif;
  display: grid;
  place-items: center;
  box-shadow: none;
  margin-bottom: 22px;
  border: 2px solid var(--navy);
  transition: var(--transition);
}
.order-step:hover .step-num { background: var(--navy); color: var(--gold-light); transform: scale(1.06); }
.order-step h4 {
  font-size: .97rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--navy);
}
.order-step p {
  margin: 0;
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════ */
.why-section { padding: 48px 0; background: var(--cream-mid); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-left .eyebrow { margin-bottom: 14px; }
.why-left h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
  line-height: 1.1;
  margin-bottom: 16px;
}
.why-left p   { color: var(--text-muted); line-height: 1.78; margin-bottom: 30px; font-size: 1rem; }
.why-left .button-primary { padding: 14px 28px; font-size: .97rem; }
.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card.featured {
  grid-column: span 2;
  background: var(--navy-deep);
  border-color: transparent;
  color: #fff;
}
.why-card.featured .why-icon { background: rgba(207,123,28,0.22); color: var(--gold-light); }
.why-card.featured h4 { color: #fff; }
.why-card.featured p  { color: rgba(255,255,255,0.62); }
.why-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(207,123,28,0.1);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.why-card h4 { font-size: .97rem; font-weight: 800; margin-bottom: 8px; color: var(--navy); }
.why-card p  { margin: 0; font-size: .86rem; color: var(--text-muted); line-height: 1.68; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-section { padding: 48px 0; background: var(--white); }
.faq-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}
.faq-sidebar h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.45rem;
  margin-bottom: 14px;
}
.faq-sidebar p    { color: var(--text-muted); font-size: .94rem; line-height: 1.72; margin-bottom: 26px; }
.faq-sidebar .button-primary { padding: 13px 24px; }
.faq-list {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list details:last-child { border-bottom: none; }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: .96rem;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  background: var(--white);
  transition: background .2s;
  user-select: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .25s;
  line-height: 1;
}
.faq-list details[open] summary { background: #fdf8f2; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details > p {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: .91rem;
  line-height: 1.77;
  background: #fdf8f2;
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-section { padding: 48px 0; background: var(--cream-mid); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info .eyebrow {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--navy);
  margin-bottom: 14px;
}
.contact-info h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  line-height: 1.1;
  margin-bottom: 16px;
}
.contact-info > p { color: var(--text-muted); line-height: 1.78; margin-bottom: 34px; }
.contact-details   { display: flex; flex-direction: column; gap: 14px; }
.contact-detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--cream);
  transition: var(--transition);
}
.contact-detail-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.contact-detail-item:nth-child(1) { background: linear-gradient(135deg, rgba(37,211,102,0.13), rgba(37,211,102,0.04)); border-color: rgba(37,211,102,0.3); }
.contact-detail-item:nth-child(1) .cd-icon { background: linear-gradient(135deg, rgba(37,211,102,0.25), rgba(37,211,102,0.1)); color: #1da851; border-color: rgba(37,211,102,0.35); }

.contact-detail-item:nth-child(2) { background: linear-gradient(135deg, rgba(46,111,242,0.11), rgba(46,111,242,0.03)); border-color: rgba(46,111,242,0.26); }
.contact-detail-item:nth-child(2) .cd-icon { background: linear-gradient(135deg, rgba(46,111,242,0.22), rgba(46,111,242,0.08)); color: #2e6ff2; border-color: rgba(46,111,242,0.3); }

.contact-detail-item:nth-child(3) { background: linear-gradient(135deg, rgba(207,123,28,0.13), rgba(207,123,28,0.04)); border-color: rgba(207,123,28,0.28); }
.contact-detail-item:nth-child(3) .cd-icon { background: linear-gradient(135deg, rgba(207,123,28,0.25), rgba(207,123,28,0.1)); color: var(--gold); border-color: rgba(207,123,28,0.3); }

.contact-detail-item:nth-child(4) { background: linear-gradient(135deg, rgba(14,165,164,0.13), rgba(14,165,164,0.04)); border-color: rgba(14,165,164,0.28); }
.contact-detail-item:nth-child(4) .cd-icon { background: linear-gradient(135deg, rgba(14,165,164,0.24), rgba(14,165,164,0.1)); color: #0e9490; border-color: rgba(14,165,164,0.3); }

.cd-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(207,123,28,0.16);
}
.cd-text strong {
  display: block;
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--navy);
  margin-bottom: 2px;
}
.cd-text span { font-size: .9rem; color: var(--text-muted); line-height: 1.55; }

/* Form */
.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-lg);
}
.contact-form-box h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.contact-form-box > p { color: var(--text-muted); font-size: .9rem; margin-bottom: 26px; }
.form-row { display: flex; gap: 14px; margin-bottom: 14px; }
.form-row input,
.form-row textarea,
.form-row select {
  flex: 1;
  padding: 13px 16px;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-family: inherit;
  font-size: .92rem;
  color: var(--navy);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(207,123,28,0.14);
  background: var(--white);
}
.form-row textarea  { min-height: 116px; resize: vertical; }
.form-row select    { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6382' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-row .button-primary { width: 100%; justify-content: center; padding: 15px; font-size: 1rem; }
.form-note { font-size: .79rem; color: var(--text-muted); text-align: center; margin-top: 10px; }
.form-note a { color: var(--gold); font-weight: 700; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.72);
}
.footer-main {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 48px;
  padding: 68px 0 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: .86rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.65;
  margin-bottom: 24px;
}
.footer-trust-badges   { display: flex; flex-direction: column; gap: 9px; }
.footer-badge          { display: flex; align-items: center; gap: 9px; font-size: .82rem; color: rgba(255,255,255,0.58); }
.footer-badge-icon {
  width: 24px; height: 24px;
  background: rgba(207,123,28,0.2);
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: .8rem;
  color: var(--gold-light);
  flex-shrink: 0;
}
.footer-col-title {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-col-links       { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a     { font-size: .89rem; color: rgba(255,255,255,0.58); transition: color .2s; }
.footer-col-links a:hover { color: var(--gold-light); }
.footer-contact-list    { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item    { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact-icon    { font-size: 1rem; margin-top: 1px; color: var(--gold-light); flex-shrink: 0; }
.footer-contact-item span { font-size: .88rem; color: rgba(255,255,255,0.58); line-height: 1.55; }
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 700;
  margin-top: 22px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.28);
}
.footer-wa-btn:hover { background: #1ebc5a; transform: translateY(-2px); }
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-bar small { font-size: .8rem; color: rgba(255,255,255,0.32); }
.footer-india { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: rgba(255,255,255,0.32); }
.footer-bottom-links   { display: flex; gap: 22px; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,0.32); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.68); }

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* Switch to hamburger before the full nav ever runs out of room */
@media (max-width: 1240px) {
  .nav-primary       { display: none; }
  .nav-hamburger     { display: flex; }
}

@media (max-width: 900px) {
  .feature-grid      { grid-template-columns: 1fr 1fr; }
  .casestudy-grid    { grid-template-columns: 1fr 1fr; }
  .review-grid       { grid-template-columns: 1fr 1fr; }
  .gallery-carousel  { grid-template-columns: 1fr 1fr; }
  .order-steps       { grid-template-columns: repeat(3, 1fr); }
  .order-steps::before { display: none; }
  .why-grid          { grid-template-columns: 1fr; gap: 40px; }
  .why-right         { grid-template-columns: 1fr 1fr; }
  .faq-layout        { grid-template-columns: 1fr; gap: 36px; }
  .contact-layout    { grid-template-columns: 1fr; gap: 40px; }
  .casestudy-bottom  { flex-direction: column; gap: 28px; }
  .casestudy-bottom-stats { gap: 28px; }
}

@media (max-width: 640px) {
  .container         { padding: 0 16px; }
  .feature-grid      { grid-template-columns: 1fr; }
  .casestudy-grid    { grid-template-columns: 1fr; }
  .review-grid       { grid-template-columns: 1fr; }
  .gallery-carousel  { grid-template-columns: 1fr; }
  .order-steps       { grid-template-columns: 1fr 1fr; }
  .why-right         { grid-template-columns: 1fr; }
  .why-card.featured { grid-column: span 1; }
  .footer-main       { grid-template-columns: 1fr; gap: 32px; }
  .nav-utility .nav-link { display: none; }
  .header-trust      { display: none; }
  .form-row          { flex-direction: column; }
}

@media (max-width: 400px) {
  .order-steps       { grid-template-columns: 1fr; }
  .casestudy-bottom-stats { flex-direction: column; gap: 20px; }
}


/* ─── Floating WhatsApp + Back to top ─── */
.float-wa-btn {
  position: fixed; right: 22px; top: 50%; bottom: auto; transform: translateY(-50%); z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.float-wa-btn:hover { transform: translateY(calc(-50% - 3px)) scale(1.05); box-shadow: 0 12px 30px rgba(37,211,102,0.55); }

.back-to-top {
  position: fixed; right: 22px; bottom: 88px; z-index: 200;
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: var(--navy, #16204e); color: #fff; font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(22,32,78,0.3);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

@media (max-width: 640px) {
  .float-wa-btn { right: 14px; top: 50%; bottom: auto; width: 50px; height: 50px; font-size: 1.4rem; }
  .back-to-top { right: 14px; bottom: 74px; width: 40px; height: 40px; }
}
