/* ═══════════════════════════════════════════════════
   CHITROKUTHIR WEDDINGS — v5.0
   Brand Colors: Amber #FFBF00 | Gold #FFD700
   Midnight Blue #0E1A2B | Burgundy #800020
   Fonts: Playfair Display | Poppins
   Bootstrap-like 12-col grid, fully responsive
═══════════════════════════════════════════════════ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600;1,700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: 'Poppins', sans-serif; font-weight: 400; line-height: 1.65; color: #1a1a1a; background: #fff; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color .2s; }
button { font-family: 'Poppins', sans-serif; cursor: pointer; }
ul, ol { list-style: none; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: #FFBF00; border-radius: 2px; }
::selection { background: rgba(255,191,0,.2); }

/* ── BRAND CSS VARIABLES ── */
:root {
  /* Primary */
  --amber:   #FFBF00;
  --gold:    #FFD700;
  --white:   #FFFFFF;
  /* Secondary */
  --navy:    #0E1A2B;
  --burgundy:#800020;
  --charcoal:#121212;
  /* Neutrals */
  --purple:  #800080;
  --ivory:   #FFF8E7;
  --warm-gray:#CCCCCC;
  /* Functional */
  --dark:    #121212;
  --dark-mid:#1a1a2e;
  --gray:    #6B7280;
  --gray-l:  #9CA3AF;
  --border:  #E5E7EB;
  --bg-light:#F9F7F2;
  /* Typography */
  --font-h:  'Playfair Display', Georgia, serif;
  --font-b:  'Poppins', sans-serif;
  /* Spacing */
  --nav-h:   72px;
  --max:     1200px;
  --gutter:  24px;
}

/* ════════════════════════════════════════
   GRID SYSTEM (Bootstrap-like 12 col)
════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 576px)  { .container { padding-left: 20px; padding-right: 20px; } }
@media (min-width: 768px)  { .container { padding-left: 28px; padding-right: 28px; } }
@media (min-width: 1200px) { .container { padding-left: 40px; padding-right: 40px; } }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(-1 * var(--gutter) / 2);
  margin-right: calc(-1 * var(--gutter) / 2);
}
[class*="col-"] {
  padding-left: calc(var(--gutter) / 2);
  padding-right: calc(var(--gutter) / 2);
  width: 100%;
}

/* xs (default) */
.col-12 { width: 100%; }
.col-6  { width: 50%; }
.col-4  { width: 33.333%; }
.col-3  { width: 25%; }

/* sm ≥576px */
@media (min-width: 576px) {
  .col-sm-12 { width: 100%; }
  .col-sm-6  { width: 50%; }
  .col-sm-4  { width: 33.333%; }
}

/* md ≥768px */
@media (min-width: 768px) {
  .col-md-12 { width: 100%; }
  .col-md-8  { width: 66.666%; }
  .col-md-6  { width: 50%; }
  .col-md-4  { width: 33.333%; }
  .col-md-3  { width: 25%; }
}

/* lg ≥992px */
@media (min-width: 992px) {
  .col-lg-12 { width: 100%; }
  .col-lg-8  { width: 66.666%; }
  .col-lg-6  { width: 50%; }
  .col-lg-4  { width: 33.333%; }
  .col-lg-3  { width: 25%; }
  .col-lg-2  { width: 16.666%; }
}

/* xl ≥1200px */
@media (min-width: 1200px) {
  .col-xl-4  { width: 33.333%; }
  .col-xl-3  { width: 25%; }
  .col-xl-6  { width: 50%; }
}

/* ── SECTION SPACING ── */
.section        { padding: 72px 0; }
.section--sm    { padding: 48px 0; }
.section--lg    { padding: 96px 0; }
.section--dark  { background: var(--navy); color: #fff; }
.section--light { background: var(--bg-light); }
.section--ivory { background: var(--ivory); }
.section--charcoal { background: var(--charcoal); color: #fff; }

/* ── TYPOGRAPHY ── */
.heading-xl { font-family: var(--font-h); font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 700; line-height: 1.1; }
.heading-lg { font-family: var(--font-h); font-size: clamp(1.9rem, 3.5vw, 3rem);  font-weight: 700; line-height: 1.15; }
.heading-md { font-family: var(--font-h); font-size: clamp(1.4rem, 2.5vw, 2rem);  font-weight: 600; line-height: 1.2; }
.heading-sm { font-family: var(--font-h); font-size: clamp(1.1rem, 2vw, 1.4rem);  font-weight: 600; line-height: 1.3; }
.body-lg    { font-size: 1.05rem; line-height: 1.8; }
.body-md    { font-size: .95rem;  line-height: 1.75; }
.body-sm    { font-size: .85rem;  line-height: 1.7; }
.eyebrow    { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; color: var(--amber); display: block; margin-bottom: 10px; }
.text-amber { color: var(--amber); }
.text-gold  { color: var(--gold); }
.text-navy  { color: var(--navy); }
.text-burg  { color: var(--burgundy); }
.text-white { color: #fff; }
.text-gray  { color: var(--gray); }
.text-center { text-align: center; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }

/* Section header */
.section-header { margin-bottom: 52px; }
.section-header.text-center { text-align: center; }
.section-title  { font-family: var(--font-h); font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 700; color: var(--dark); line-height: 1.15; margin-bottom: 14px; }
.section-title--light { color: #fff; }
.section-desc   { font-size: .97rem; color: var(--gray); line-height: 1.8; max-width: 640px; }
.section-desc--light { color: rgba(255,255,255,.65); }

/* ── FLEX/GRID UTILS ── */
.d-flex       { display: flex; }
.flex-center  { align-items: center; justify-content: center; }
.flex-between { align-items: center; justify-content: space-between; }
.flex-wrap    { flex-wrap: wrap; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; font-family: var(--font-b); font-size: .8rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; border-radius: 4px;
  border: 2px solid transparent; transition: all .25s; cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--amber); color: var(--dark); border-color: var(--amber); }
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-outline-dark { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: #0a1220; color: #fff; }
.btn-burgundy { background: var(--burgundy); color: #fff; border-color: var(--burgundy); }
.btn-burgundy:hover { background: #600018; color: #fff; }
.btn-sm { padding: 9px 20px; font-size: .75rem; }
.btn-lg { padding: 16px 36px; font-size: .85rem; }
.btn-full { width: 100%; }

/* ── CARDS ── */
.card { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: box-shadow .3s, transform .3s; }
.card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.1); transform: translateY(-2px); }
.card-body { padding: 28px; }
.card-body--sm { padding: 20px; }
.card--navy { background: var(--navy); border-color: transparent; color: #fff; }
.card--amber { border-color: var(--amber); border-width: 2px; }
.card--elevated { box-shadow: 0 8px 32px rgba(0,0,0,.1); border: none; }

/* ── BADGE ── */
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 4px; font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.badge-amber { background: rgba(255,191,0,.12); border: 1px solid rgba(255,191,0,.35); color: var(--amber); }
.badge-green { background: #F0FDF4; border: 1px solid #BBF7D0; color: #15803D; }
.badge-red   { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; }
.badge-navy  { background: rgba(14,26,43,.08); border: 1px solid rgba(14,26,43,.2); color: var(--navy); }
.badge-dot   { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }

/* ── DIVIDER ── */
.divider-gold { width: 60px; height: 3px; background: linear-gradient(to right, var(--amber), var(--gold)); border-radius: 2px; margin: 16px 0; }
.divider-gold.mx-auto { margin-left: auto; margin-right: auto; }

/* ── PLACEHOLDER IMAGE ── */
.img-ph { background: linear-gradient(145deg, #F5E6C8, #E8D4A0, #D4BC82); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; color: rgba(80,60,20,.5); font-style: italic; font-size: .85rem; }
.img-ph__icon { font-size: 2.5rem; opacity: .6; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ══════════════════════════════════════════════
   TOP BANNER
══════════════════════════════════════════════ */
.ck-banner {
  background: var(--charcoal);
  color: rgba(255,255,255,.75);
  padding: 10px 16px;
  text-align: center;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  position: relative;
  z-index: 300;
}
.ck-banner__inner {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  max-width: var(--max); margin: 0 auto;
}
.ck-banner__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }

/* ══════════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════════ */
.ck-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s ease, border-color .4s ease, box-shadow .4s ease, top .3s ease;
}
/* When banner is visible, shift header down */
.ck-banner + .ck-header { top: 37px; }
.ck-banner + .ck-header.scrolled { top: 0; }

.ck-header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  border-color: var(--border);
  box-shadow: 0 2px 24px rgba(0,0,0,.08);
}
.ck-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (min-width: 768px)  { .ck-header__inner { padding: 0 28px; } }
@media (min-width: 1200px) { .ck-header__inner { padding: 0 40px; } }

/* Logo */
.ck-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.ck-logo__mark {
  width: 40px; height: 40px;
  border: 1.5px solid var(--amber);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-b); font-size: .85rem; font-weight: 800;
  color: var(--amber);
  flex-shrink: 0;
  transition: all .4s;
}
.ck-logo__name { display: block; font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.1; transition: color .4s; }
.ck-logo__tag  { display: block; font-size: .58rem; color: rgba(255,255,255,.45); font-weight: 400; letter-spacing: .18em; text-transform: uppercase; transition: color .4s; }
.ck-header.scrolled .ck-logo__mark { background: var(--amber); color: var(--dark); border-color: var(--amber); }
.ck-header.scrolled .ck-logo__name { color: var(--dark); }
.ck-header.scrolled .ck-logo__tag  { color: var(--gray); }

/* Desktop Nav Links */
.ck-header__nav { display: none; align-items: center; gap: 24px; }
@media (min-width: 992px) { .ck-header__nav { display: flex; } }
.ck-header__nav a { font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.8); position: relative; transition: color .25s; padding-bottom: 4px; }
.ck-header__nav a::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1.5px; background: var(--amber); transform: scaleX(0); transition: transform .3s; transform-origin: left; }
.ck-header__nav a:hover { color: #fff; }
.ck-header__nav a:hover::after { transform: scaleX(1); }
.ck-header.scrolled .ck-header__nav a { color: var(--dark); }
.ck-header.scrolled .ck-header__nav a:hover { color: var(--amber); }

/* Actions */
.ck-header__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.ck-header__wa {
  width: 38px; height: 38px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
  flex-shrink: 0;
}
.ck-header__wa:hover { transform: scale(1.1); color: #fff; }
.ck-header__book {
  display: none;
  padding: 9px 20px;
  background: var(--amber); color: var(--dark);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 4px; border: none; transition: all .25s;
}
@media (min-width: 576px) { .ck-header__book { display: inline-flex; align-items: center; } }
.ck-header__book:hover { background: var(--gold); color: var(--dark); }
.ck-header.scrolled .ck-header__book { background: var(--navy); color: #fff; }
.ck-header.scrolled .ck-header__book:hover { background: var(--amber); color: var(--dark); }

/* Hamburger */
.ck-header__ham {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px; cursor: pointer;
}
@media (min-width: 992px) { .ck-header__ham { display: none; } }
.ck-header__ham span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.ck-header.scrolled .ck-header__ham span { background: var(--dark); }
.ck-header__ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ck-header__ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ck-header__ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.ck-mobile-nav {
  position: fixed; top: 0; right: -100%; bottom: 0;
  width: min(360px, 90vw);
  background: var(--navy);
  z-index: 400;
  display: flex; flex-direction: column;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.ck-mobile-nav.open { right: 0; }
.ck-mobile-nav__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,.1);
  flex-shrink: 0;
}
.ck-mobile-nav__close {
  background: none; border: none; color: rgba(255,255,255,.6);
  font-size: 1.3rem; cursor: pointer; transition: color .2s; padding: 4px;
}
.ck-mobile-nav__close:hover { color: #fff; }
.ck-mobile-nav nav { padding: 8px 0; flex: 1; }
.ck-mobile-nav nav a {
  display: block; padding: 14px 24px;
  font-family: var(--font-h); font-size: 1.3rem; font-style: italic; font-weight: 500;
  color: rgba(255,255,255,.7); border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s, background .2s;
}
.ck-mobile-nav nav a:hover { color: var(--amber); background: rgba(255,191,0,.05); }
.ck-mobile-nav__footer { padding: 20px 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.ck-mobile-nav__wa { display: flex; align-items: center; gap: 10px; color: #25D366; font-size: .85rem; font-weight: 600; transition: opacity .2s; }
.ck-mobile-nav__wa:hover { opacity: .8; color: #25D366; }
.ck-mobile-nav__book { display: block; text-align: center; padding: 13px; background: var(--amber); color: var(--dark); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; border-radius: 4px; transition: background .2s; }
.ck-mobile-nav__book:hover { background: var(--gold); color: var(--dark); }
/* Overlay */
.ck-mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 399; opacity: 0; pointer-events: none; transition: opacity .35s; }
.ck-mobile-overlay.active { opacity: 1; pointer-events: auto; }
/* Inner pages header */
.ck-inner-page .ck-header { background: var(--navy); border-color: rgba(255,255,255,.1); }
.ck-inner-page .ck-header .ck-logo__name { color: #fff; }
.ck-inner-page .ck-header .ck-header__nav a { color: rgba(255,255,255,.75); }
.ck-inner-page .ck-header .ck-header__nav a:hover { color: var(--amber); }
.ck-inner-page .ck-header .ck-header__ham span { background: #fff; }

/* ══════════════════════════════════════════════
   HERO — Full Screen Cinematic
══════════════════════════════════════════════ */
.ck-hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--charcoal);
}
.ck-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(80,50,10,.65) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 25%, rgba(14,26,43,.7) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 80%, rgba(128,0,32,.3) 0%, transparent 45%),
    linear-gradient(150deg, #0a0805 0%, #150d03 30%, #0e0a1a 65%, #080808 100%);
}
.ck-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(10,8,5,.25) 0%, transparent 40%, rgba(10,8,5,.55) 100%);
}
.ck-hero__content {
  position: relative; z-index: 2;
  width: 100%; text-align: center;
  padding: 140px 16px 90px;
}
@media (min-width: 768px) { .ck-hero__content { padding: 160px 32px 100px; } }
.ck-hero__badge { margin-bottom: 36px; }
.ck-hero__title { font-family: var(--font-h); font-size: clamp(2.8rem, 7vw, 7rem); font-weight: 800; color: #fff; line-height: 1.05; letter-spacing: -.01em; margin-bottom: 0; }
.ck-hero__title-em { display: block; font-style: italic; color: var(--amber); font-size: clamp(2.5rem, 6.5vw, 6.5rem); line-height: 1.1; margin-bottom: 28px; }
.ck-hero__desc { font-size: clamp(.92rem, 1.5vw, 1.08rem); color: rgba(255,255,255,.62); line-height: 1.85; max-width: 620px; margin: 0 auto 44px; }
.ck-hero__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.ck-hero__divider { width: 200px; height: 1px; background: linear-gradient(to right, transparent, rgba(255,191,0,.45), transparent); margin: 0 auto 52px; }
.ck-hero__stats { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; }
.ck-hero__stat  { text-align: center; padding: 0 24px; }
@media (min-width: 576px) { .ck-hero__stat { padding: 0 36px; } }
.ck-hero__stat-n { display: block; font-family: var(--font-h); font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 700; color: var(--amber); line-height: 1; }
.ck-hero__stat-n sup { font-size: .55em; vertical-align: super; }
.ck-hero__stat-l { display: block; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: 5px; }
.ck-hero__sep { width: 1px; height: 32px; background: rgba(255,255,255,.12); }
.ck-hero__scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; }
.ck-hero__scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--amber), transparent); margin: 0 auto; animation: ck-scroll 2s ease infinite; }
@keyframes ck-scroll { 0%,100%{opacity:.3}50%{opacity:1} }

/* ══════════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════════ */
.service-card { height: 100%; display: flex; flex-direction: column; }
.service-card__icon { width: 52px; height: 52px; background: rgba(255,191,0,.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; border: 1px solid rgba(255,191,0,.25); }
.service-card h3 { font-family: var(--font-h); font-size: 1.25rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.service-card__quote { font-size: .82rem; color: var(--amber); font-style: italic; margin-bottom: 14px; line-height: 1.5; }
.service-card p { font-size: .88rem; color: var(--gray); line-height: 1.75; margin-bottom: 14px; }
.service-card ul { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.service-card ul li { display: flex; align-items: center; gap: 10px; font-size: .84rem; color: var(--gray); }
.service-card ul li::before { content: ''; width: 16px; height: 16px; flex-shrink: 0; background: rgba(255,191,0,.15); border: 1.5px solid rgba(255,191,0,.4); border-radius: 50%; }

/* Why us box */
.why-box { background: var(--bg-light); border: 1px solid var(--border); border-radius: 16px; padding: 40px; }
.why-stat-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 24px; text-align: center; }
.why-stat-card__n { font-family: var(--font-h); font-size: 2rem; font-weight: 800; color: var(--amber); line-height: 1; display: block; margin-bottom: 6px; }
.why-stat-card strong { display: block; font-size: .9rem; margin-bottom: 4px; }
.why-stat-card span { font-size: .78rem; color: var(--gray); }
.step-card { display: flex; align-items: flex-start; gap: 14px; }
.step-num { width: 36px; height: 36px; background: rgba(255,191,0,.15); border: 1.5px solid rgba(255,191,0,.4); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--amber); font-size: .9rem; flex-shrink: 0; }
.step-card strong { display: block; font-size: .9rem; margin-bottom: 4px; }
.step-card p { font-size: .8rem; color: var(--gray); line-height: 1.5; }

/* ══════════════════════════════════════════════
   PACKAGES SECTION
══════════════════════════════════════════════ */
.pkg-tabs-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 36px; }
.pkg-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.pkg-tab-btn { padding: 10px 22px; border-radius: 6px; font-size: .8rem; font-weight: 600; border: 1.5px solid rgba(255,255,255,.2); background: rgba(255,255,255,.05); color: rgba(255,255,255,.65); cursor: pointer; transition: all .25s; font-family: var(--font-b); }
.pkg-tab-btn.active, .pkg-tab-btn:hover { background: var(--amber); color: var(--dark); border-color: var(--amber); }
.pkg-type-tabs { display: flex; background: rgba(255,255,255,.08); border-radius: 8px; padding: 4px; }
.pkg-type-btn { padding: 8px 22px; border-radius: 6px; font-size: .78rem; font-weight: 600; border: none; background: transparent; color: rgba(255,255,255,.5); cursor: pointer; transition: all .25s; font-family: var(--font-b); }
.pkg-type-btn.active { background: #fff; color: var(--dark); }

.pkg-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .pkg-grid { grid-template-columns: repeat(3, 1fr); } }

.pkg-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 32px; position: relative; transition: border-color .3s, box-shadow .3s; display: flex; flex-direction: column; }
.pkg-card:hover { border-color: rgba(255,191,0,.4); box-shadow: 0 8px 32px rgba(255,191,0,.1); }
.pkg-card.featured { border: 2px solid var(--amber); background: rgba(255,191,0,.06); }
.pkg-card__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 5px 18px; background: var(--amber); color: var(--dark); border-radius: 999px; font-size: .7rem; font-weight: 700; white-space: nowrap; letter-spacing: .06em; }
.pkg-card__name { font-family: var(--font-h); font-size: 1.6rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.pkg-card__dur  { font-size: .78rem; color: rgba(255,255,255,.4); margin-bottom: 6px; }
.pkg-card__tag  { font-size: .8rem; color: var(--amber); font-style: italic; margin-bottom: 20px; }
.pkg-card__old  { font-size: .88rem; color: rgba(255,255,255,.3); text-decoration: line-through; margin-bottom: 4px; }
.pkg-card__price { font-family: var(--font-h); font-size: 2.4rem; font-weight: 700; color: var(--amber); line-height: 1; margin-bottom: 4px; }
.pkg-card.featured .pkg-card__price { color: var(--gold); }
.pkg-card__save { font-size: .72rem; color: #22C55E; font-weight: 600; margin-bottom: 24px; }
.pkg-card__btn { display: block; width: 100%; padding: 12px; text-align: center; background: rgba(255,255,255,.08); color: rgba(255,255,255,.8); border: 1.5px solid rgba(255,255,255,.15); border-radius: 6px; font-size: .78rem; font-weight: 600; cursor: pointer; transition: all .25s; margin-bottom: 20px; font-family: var(--font-b); letter-spacing: .06em; text-transform: uppercase; }
.pkg-card__btn:hover { background: var(--amber); color: var(--dark); border-color: var(--amber); }
.pkg-card.featured .pkg-card__btn { background: var(--amber); color: var(--dark); border-color: var(--amber); }
.pkg-card.featured .pkg-card__btn:hover { background: var(--gold); }
.pkg-card__feats { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pkg-card__feats li { display: flex; align-items: flex-start; gap: 10px; font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.5; }
.pkg-card.featured .pkg-card__feats li { color: rgba(255,255,255,.8); }
.pkg-card__feats li::before { content: '✓'; color: var(--amber); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Incl/Value boxes */
.incl-box { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 28px; height: 100%; }
.incl-box h4 { font-family: var(--font-h); font-size: 1.05rem; font-weight: 600; color: #fff; margin-bottom: 16px; }
.incl-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.incl-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; color: rgba(255,255,255,.6); }
.incl-list li::before { content: '✓'; color: #22C55E; font-weight: 700; flex-shrink: 0; }
.value-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; margin-bottom: 10px; }
.value-list li .vi { color: #22C55E; font-weight: 700; flex-shrink: 0; }
.value-list strong { color: #fff; }
.value-list span { color: rgba(255,255,255,.55); }
.seo-box { background: rgba(14,26,43,.6); border: 1px solid rgba(14,26,43,.4); border-radius: 12px; padding: 28px; margin-top: 24px; }
.seo-box h4 { font-family: var(--font-h); font-size: 1rem; font-weight: 600; color: var(--amber); margin-bottom: 10px; }
.seo-box p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.75; margin-bottom: 8px; }

/* ══════════════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════════════ */
.pf-filters { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.pf-filter-btn { padding: 8px 20px; border-radius: 6px; font-size: .78rem; font-weight: 600; border: 1.5px solid var(--border); background: #fff; color: var(--dark); cursor: pointer; transition: all .2s; font-family: var(--font-b); }
.pf-filter-btn:hover, .pf-filter-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.pf-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 576px) { .pf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .pf-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .pf-grid { grid-template-columns: repeat(4, 1fr); } }

.pf-card { position: relative; overflow: hidden; border-radius: 10px; background: linear-gradient(145deg, #F5E6C8, #E8D4A0, #D4BC82); cursor: pointer; aspect-ratio: 3/4; }
@media (min-width: 768px) { .pf-card:first-child, .pf-card:nth-child(6) { grid-column: span 2; aspect-ratio: 16/9; } }
.pf-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pf-card:hover img { transform: scale(1.06); }
.pf-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; transition: transform .6s ease; }
.pf-card:hover .pf-ph { transform: scale(1.06); }
.pf-ph span { font-size: .78rem; color: rgba(80,60,20,.5); font-style: italic; }
.pf-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,26,43,.85), transparent 55%); opacity: 0; transition: opacity .35s; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 18px; }
.pf-card:hover .pf-overlay { opacity: 1; }
.pf-cat   { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--amber); margin-bottom: 4px; }
.pf-title { font-family: var(--font-h); font-size: 1rem; font-style: italic; color: #fff; font-weight: 400; }

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testi-wrap { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 40px 32px; }
@media (min-width: 768px) { .testi-wrap { padding: 56px 64px; } }
.testi-slide { display: none; text-align: center; animation: ck-fade .4s ease; }
.testi-slide.active { display: block; }
@keyframes ck-fade { from{opacity:0;transform:translateX(16px)} to{opacity:1;transform:none} }
.testi-stars { color: var(--amber); font-size: 1.2rem; letter-spacing: 4px; margin-bottom: 16px; }
.testi-badge { margin-bottom: 20px; }
.testi-text  { font-family: var(--font-h); font-size: clamp(.95rem, 1.5vw, 1.1rem); font-style: italic; line-height: 1.8; color: var(--dark); max-width: 700px; margin: 0 auto 28px; }
.testi-name  { font-weight: 700; font-size: .95rem; margin-bottom: 2px; }
.testi-loc   { font-size: .8rem; color: var(--gray); }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.testi-btn { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--border); background: #fff; color: var(--dark); font-size: .95rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; }
.testi-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.testi-dots { display: flex; gap: 8px; align-items: center; }
.testi-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--border); cursor: pointer; transition: all .25s; }
.testi-dot.active { background: var(--amber); width: 24px; }

.testi-stats { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-top: 40px; }
@media (min-width: 576px) { .testi-stats { grid-template-columns: repeat(3, 1fr); } }
.testi-stat { background: var(--ivory); padding: 28px 24px; text-align: center; }
.testi-stat__n { font-family: var(--font-h); font-size: 2.2rem; font-weight: 700; color: var(--amber); line-height: 1; display: block; margin-bottom: 4px; }
.testi-stat__l { font-weight: 700; font-size: .9rem; display: block; margin-bottom: 2px; }
.testi-stat__d { font-size: .72rem; color: var(--amber); font-weight: 600; }

.values-box { background: #F0FDF4; border: 1px solid #BBF7D0; border-radius: 12px; padding: 32px; margin-top: 32px; }
.values-box h4 { font-family: var(--font-h); font-size: 1.05rem; font-weight: 700; text-align: center; margin-bottom: 24px; }
.value-item { display: flex; align-items: flex-start; gap: 12px; }
.value-check { width: 22px; height: 22px; background: #F0FDF4; border: 1px solid #BBF7D0; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #15803D; font-size: .75rem; flex-shrink: 0; margin-top: 2px; }
.value-item strong { display: block; font-size: .88rem; margin-bottom: 3px; }
.value-item p { font-size: .8rem; color: var(--gray); }

/* ══════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════ */
.about-img { position: relative; }
.about-img__main { border-radius: 16px; overflow: hidden; aspect-ratio: 3/4; }
.about-img__badge { position: absolute; bottom: -24px; right: -16px; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 18px 22px; text-align: center; box-shadow: 0 8px 24px rgba(0,0,0,.1); }
@media (min-width: 768px) { .about-img__badge { right: -24px; } }
.about-img__badge span { font-size: 1.8rem; display: block; margin-bottom: 4px; }
.about-img__badge strong { font-size: .82rem; display: block; }
.about-img__badge small { font-size: .65rem; color: var(--gray); text-transform: uppercase; letter-spacing: .1em; }
.about-content h2 { font-family: var(--font-h); font-size: clamp(1.9rem, 3vw, 3rem); font-weight: 700; line-height: 1.15; margin-bottom: 20px; }
.about-content p { font-size: .95rem; color: var(--gray); line-height: 1.85; margin-bottom: 16px; }
.about-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.about-vals { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.about-val { padding: 16px; border: 1px solid var(--border); border-radius: 10px; }
.about-val__t { font-family: var(--font-h); font-size: .95rem; font-weight: 600; margin-bottom: 4px; }
.about-val__d { font-size: .78rem; color: var(--gray); line-height: 1.6; }

/* ══════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-item { background: #fff; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 20px 24px; font-family: var(--font-h); font-size: .98rem; font-weight: 600; color: var(--dark); background: none; border: none; cursor: pointer; text-align: left; gap: 16px; transition: color .2s, background .2s; }
.faq-q:hover { color: var(--amber); background: var(--ivory); }
.faq-icon { font-size: 1.2rem; color: var(--amber); flex-shrink: 0; transition: transform .3s; line-height: 1; font-weight: 300; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 24px 20px; background: var(--ivory); }
.faq-a p { font-size: .88rem; color: var(--gray); line-height: 1.8; }

/* ══════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════ */
.contact-info-card { background: var(--ivory); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.contact-info-card h4 { font-family: var(--font-h); font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; }
.contact-info-card .country { font-size: .8rem; color: var(--gray); margin-bottom: 8px; }
.contact-info-card .quote  { font-size: .8rem; color: var(--amber); font-style: italic; margin-bottom: 14px; }
.contact-link { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: var(--gray); margin-bottom: 6px; transition: color .2s; }
.contact-link:hover { color: var(--amber); }
.office-icon { font-size: 2.2rem; margin-bottom: 12px; display: block; }
.soc-btn { display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; border: 1.5px solid var(--border); border-radius: 6px; font-size: .75rem; font-weight: 600; color: var(--gray); background: #fff; transition: all .2s; }
.soc-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.soc-btn--wa { border-color: #25D366; color: #25D366; }
.soc-btn--wa:hover { background: #25D366; color: #fff; }
.form-wrap { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
@media (min-width: 768px) { .form-wrap { padding: 40px; } }
.form-wrap h3 { font-family: var(--font-h); font-size: 1.5rem; font-weight: 700; margin-bottom: 6px; }
.form-wrap p  { font-size: .82rem; color: var(--gray); margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gray); font-weight: 500; }
.form-group input, .form-group select, .form-group textarea { background: var(--bg-light); border: 1.5px solid var(--border); border-radius: 6px; padding: 11px 14px; font-size: .9rem; color: var(--dark); font-family: var(--font-b); outline: none; transition: border-color .2s, box-shadow .2s; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(255,191,0,.12); background: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 5 5-5z' fill='%236B7280'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.form-success { display: none; margin-top: 14px; padding: 14px 18px; background: #F0FDF4; border: 1px solid #BBF7D0; color: #15803D; font-size: .87rem; border-radius: 8px; }
.form-error   { display: none; margin-top: 14px; padding: 14px 18px; background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; font-size: .87rem; border-radius: 8px; }
.form-privacy { font-size: .72rem; color: var(--gray); text-align: center; margin-top: 10px; }

/* Verified */
.verified-wrap { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.verified-wrap h5 { font-family: var(--font-h); font-size: .95rem; font-weight: 700; margin-bottom: 18px; }
.verified-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.verified-icon { width: 34px; height: 34px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: .9rem; color: #fff; flex-shrink: 0; }
.vi-blue { background: #3B82F6; } .vi-green { background: #22C55E; } .vi-gold { background: var(--amber); }
.verified-item strong { display: block; font-size: .87rem; margin-bottom: 2px; }
.verified-item p { font-size: .78rem; color: var(--gray); line-height: 1.5; }
.verified-tags { display: flex; gap: 8px; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 14px; margin-top: 4px; }
.vtag { padding: 4px 12px; border-radius: 999px; font-size: .7rem; font-weight: 600; }
.vtag-blue { background: #EFF6FF; color: #1D4ED8; } .vtag-gold { background: rgba(255,191,0,.12); color: var(--amber); }

/* Follow */
.follow-section { text-align: center; padding-top: 48px; border-top: 1px solid var(--border); margin-top: 48px; }
.follow-section h4 { font-family: var(--font-h); font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.follow-section p { color: var(--gray); margin-bottom: 24px; font-size: .9rem; }
.follow-icons { display: flex; justify-content: center; gap: 14px; }
.follow-icon { width: 50px; height: 50px; border-radius: 50%; background: var(--ivory); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; transition: all .25s; }
.follow-icon:hover { background: var(--amber); border-color: var(--amber); color: var(--dark); transform: translateY(-2px); }

/* ══════════════════════════════════════════════
   BLOG SECTION
══════════════════════════════════════════════ */
.blog-card { height: 100%; display: flex; flex-direction: column; }
.blog-card__thumb { aspect-ratio: 16/9; overflow: hidden; border-radius: 12px 12px 0 0; }
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card__thumb img { transform: scale(1.05); }
.blog-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card__cat  { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--amber); font-weight: 600; display: block; margin-bottom: 8px; }
.blog-card__body h3 { font-family: var(--font-h); font-size: 1.15rem; font-weight: 600; line-height: 1.3; margin-bottom: 10px; }
.blog-card__body h3 a:hover { color: var(--amber); }
.blog-card__body p { font-size: .84rem; color: var(--gray); line-height: 1.7; flex: 1; margin-bottom: 14px; }
.blog-card__meta { display: flex; justify-content: space-between; align-items: center; font-size: .75rem; color: var(--gray-l); border-top: 1px solid var(--border); padding-top: 12px; }
.blog-card__meta a { color: var(--amber); font-weight: 600; transition: color .2s; }
.blog-card__meta a:hover { color: var(--amber); }

/* ══════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════ */
.trust-bar { background: var(--navy); padding: 32px 0; }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 16px; }
.trust-icon { font-size: 1.8rem; flex-shrink: 0; }
.trust-item strong { display: block; font-size: .9rem; color: #fff; margin-bottom: 2px; }
.trust-item span  { display: block; font-size: .78rem; color: rgba(255,255,255,.5); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.ck-footer { background: var(--charcoal); color: #fff; padding: 72px 0 0; }
.ck-footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.ck-footer__logo-mark { width: 40px; height: 40px; border: 1.5px solid var(--amber); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-family: var(--font-b); font-size: .85rem; font-weight: 800; color: var(--amber); flex-shrink: 0; }
.ck-footer__logo-name { display: block; font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: #fff; }
.ck-footer__logo-tag  { display: block; font-size: .58rem; color: rgba(255,255,255,.4); letter-spacing: .18em; text-transform: uppercase; }
.ck-footer__desc { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.8; margin-bottom: 20px; }
.ck-footer__social { display: flex; gap: 10px; margin-bottom: 16px; }
.ck-footer__social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.15); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); font-size: 1rem; transition: all .2s; }
.ck-footer__social a:hover { background: var(--amber); border-color: var(--amber); color: var(--dark); }
.ck-footer__trade { font-size: .68rem; color: rgba(255,255,255,.25); }
.ck-footer__col-title { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--amber); font-weight: 600; margin-bottom: 16px; }
.ck-footer__col a { display: block; font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 9px; transition: color .2s; }
.ck-footer__col a:hover { color: #fff; }
.ck-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 52px; padding: 24px 0 32px; }
.ck-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.ck-footer__copy { font-size: .78rem; color: rgba(255,255,255,.3); }
.ck-footer__legal { display: flex; gap: 20px; }
.ck-footer__legal a { font-size: .78rem; color: rgba(255,255,255,.35); transition: color .2s; }
.ck-footer__legal a:hover { color: var(--amber); }
.ck-footer__social-bottom { display: flex; gap: 14px; }
.ck-footer__social-bottom a { font-size: 1.1rem; color: rgba(255,255,255,.35); transition: color .2s; }
.ck-footer__social-bottom a:hover { color: var(--amber); }

/* ══════════════════════════════════════════════
   WA FLOAT
══════════════════════════════════════════════ */
.ck-wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 100; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.45); transition: transform .2s; }
.ck-wa-float:hover { transform: scale(1.1); }

/* ══════════════════════════════════════════════
   TERMS & CONDITIONS PAGE
══════════════════════════════════════════════ */
.tc-hero { background: var(--navy); padding: 140px 0 72px; text-align: center; }
.tc-hero h1 { font-family: var(--font-h); font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; color: #fff; margin-bottom: 14px; }
.tc-hero p { color: rgba(255,255,255,.6); max-width: 560px; margin: 0 auto; }
.tc-body { padding: 72px 0; }
.tc-sidebar { position: sticky; top: calc(var(--nav-h) + 20px); }
.tc-toc { background: var(--ivory); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.tc-toc h4 { font-family: var(--font-h); font-size: 1rem; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.tc-toc ul { list-style: none; }
.tc-toc ul li { margin-bottom: 8px; }
.tc-toc ul li a { font-size: .82rem; color: var(--gray); transition: color .2s; display: block; padding: 4px 0; border-left: 2px solid transparent; padding-left: 12px; }
.tc-toc ul li a:hover { color: var(--amber); border-color: var(--amber); }
.tc-content { max-width: 100%; }
.tc-section { margin-bottom: 48px; scroll-margin-top: calc(var(--nav-h) + 24px); }
.tc-section h2 { font-family: var(--font-h); font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--amber); display: inline-block; }
.tc-section h3 { font-family: var(--font-h); font-size: 1.1rem; font-weight: 600; color: var(--dark); margin: 20px 0 10px; }
.tc-section p { font-size: .92rem; color: var(--gray); line-height: 1.85; margin-bottom: 12px; }
.tc-section ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.tc-section ul li { display: flex; align-items: flex-start; gap: 12px; font-size: .9rem; color: var(--gray); line-height: 1.7; }
.tc-section ul li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); flex-shrink: 0; margin-top: 9px; }
.tc-highlight { background: rgba(255,191,0,.08); border-left: 3px solid var(--amber); border-radius: 0 8px 8px 0; padding: 16px 20px; margin: 16px 0; }
.tc-highlight p { margin-bottom: 0; font-size: .88rem; }
.tc-highlight strong { color: var(--dark); }
.tc-payment-box { background: var(--navy); color: #fff; border-radius: 10px; padding: 20px 24px; margin: 16px 0; }
.tc-payment-box strong { color: var(--amber); display: block; margin-bottom: 8px; font-size: .85rem; }
.tc-payment-box p, .tc-payment-box li { color: rgba(255,255,255,.75); font-size: .85rem; }
.tc-payment-box ul li::before { background: var(--amber); }
.tc-cta-box { background: var(--ivory); border: 1px solid var(--border); border-radius: 16px; padding: 40px; text-align: center; margin-top: 56px; }
.tc-cta-box h3 { font-family: var(--font-h); font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; }
.tc-cta-box p { color: var(--gray); margin-bottom: 24px; }
.tc-cta-box .btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.tc-updated { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 16px 20px; margin-bottom: 32px; font-size: .82rem; color: var(--gray); display: flex; align-items: center; gap: 10px; }
.tc-updated span { color: var(--amber); font-weight: 600; }

/* ══════════════════════════════════════════════
   INNER PAGE HERO (for standard pages)
══════════════════════════════════════════════ */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, #1a2840 100%); padding: 140px 0 64px; text-align: center; }
.page-hero h1 { font-family: var(--font-h); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.6); max-width: 540px; margin: 0 auto; }

/* ══════════════════════════════════════════════
   RESPONSIVE FIXES
══════════════════════════════════════════════ */
@media (max-width: 991px) {
  .section { padding: 56px 0; }
  .section--lg { padding: 72px 0; }
  .about-img { max-width: 480px; margin: 0 auto; }
  .about-img__badge { bottom: -16px; right: 0; }
  .about-content { padding-top: 44px; }
  .tc-sidebar { display: none; }
}
@media (max-width: 767px) {
  :root { --nav-h: 64px; }
  .section { padding: 48px 0; }
  .service-card { padding: 22px; }
  .pkg-card { padding: 24px; }
  .pf-grid { grid-template-columns: 1fr 1fr; }
  .pf-card:first-child, .pf-card:nth-child(6) { grid-column: auto; aspect-ratio: 3/4; }
  .testi-wrap { padding: 28px 20px; }
  .about-vals { grid-template-columns: 1fr; }
  .form-wrap { padding: 24px; }
  .ck-footer .row > [class*="col-"] { padding-bottom: 32px; }
  .ck-footer__bottom-inner { flex-direction: column; text-align: center; }
  .ck-hero__buttons { flex-direction: column; align-items: center; }
  .ck-hero__sep { height: 24px; }
  .ck-hero__stat { padding: 0 16px; }
}
@media (max-width: 575px) {
  .pf-grid { grid-template-columns: 1fr; }
  .about-vals { grid-template-columns: 1fr; }
  .pkg-tabs { justify-content: center; }
  .testi-stats { grid-template-columns: 1fr; }
  .trust-bar .row { flex-direction: column; }
}
