/* ═══════════════════════════════════════════════════════════════════════════
   MIDNIGHT CALL GIRL — Bangalore Luxury Companion Service
   Black & Gold theme · Playfair Display + Inter · Romantic premium
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --bg: #000000;
  --bg-2: #0a0a0a;
  --surface: #111111;
  --surface-2: #161616;
  --surface-3: #1c1c1c;
  --line: rgba(212, 175, 55, 0.12);
  --line-2: rgba(255, 255, 255, 0.06);
  --gold: #D4AF37;
  --gold-2: #F4D062;
  --gold-3: #B8941F;
  --gold-soft: rgba(212, 175, 55, 0.08);
  --text: #f5f1e8;
  --text-2: #cdc6b8;
  --text-3: #8a8478;
  --rose: #e8b4a0;
  --teal: #5eead4;
  --whatsapp: #25d366;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow: 0 20px 50px -20px rgba(0,0,0,.7);
  --shadow-gold: 0 0 40px -8px rgba(212,175,55,.22);
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 0px;
}
@media (min-width: 768px) { body { padding-bottom: 0; } }

::selection { background: var(--gold); color: #000; }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--gold-3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: var(--font-sans); font-weight: 700; }
p { color: var(--text-2); }
a { color: var(--gold-2); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(0,0,0,.94);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.header-inner { max-width: 1280px; margin: 0 auto; padding: 14px 20px; display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); font-weight: 800; }
.brand:hover { color: var(--text); }
.brand-mark {
  width: 40px; height: 40px; border-radius: 11px;
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  display: grid; place-items: center; color: #000; font-family: var(--font-display);
  font-weight: 900; font-size: 22px; box-shadow: var(--shadow-gold);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; font-size: 17px; letter-spacing: -.02em; font-family: var(--font-display); font-weight: 800; }
.brand-text small { font-size: 10px; font-weight: 600; color: var(--gold-2); letter-spacing: .18em; text-transform: uppercase; margin-top: 3px; font-family: var(--font-sans); }
.main-nav { display: flex; gap: 26px; margin-left: auto; }
.nav-link { color: var(--text-2); font-weight: 600; font-size: 14px; position: relative; padding: 4px 0; }
.nav-link:hover, .nav-link.active { color: var(--gold-2); }
.nav-link.active::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-3)); border-radius: 2px; }
.header-cta { display: flex; gap: 10px; }
.btn-gold, .btn-wa {
  display: inline-flex; align-items: center; gap: 7px; padding: 10px 16px;
  border-radius: 12px; font-weight: 700; font-size: 14px; transition: all .2s; white-space: nowrap;
}
.btn-gold { background: linear-gradient(135deg, #F4D062, #D4AF37); color: #000; }
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -6px rgba(212,175,55,.5); color: #000; }
.btn-wa { background: var(--whatsapp); color: #fff; }
.btn-wa:hover { background: #20bd5a; transform: translateY(-1px); color: #fff; }
.btn-gold.lg, .btn-wa.lg { padding: 14px 26px; font-size: 16px; border-radius: 14px; }
.btn-gold.full, .btn-wa.full { width: 100%; justify-content: center; margin-top: 8px; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.menu-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; flex-direction: column; gap: 6px; padding: 16px 20px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { padding: 10px 0; font-size: 16px; border-bottom: 1px solid var(--line-2); }

@media (max-width: 980px) { .main-nav, .header-cta { display: none; } .menu-toggle { display: flex; } }

/* ── Hero ── */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  background:
    radial-gradient(ellipse 70% 50% at 15% 25%, rgba(212,175,55,.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 75%, rgba(244,208,98,.12), transparent 55%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(212,175,55,.08), transparent 60%),
    linear-gradient(135deg, #000 0%, #0c0a05 40%, #0a0a0a 70%, #000 100%);
  overflow: hidden;
}
/* dotted gold texture */
.hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(212,175,55,.06) 1px, transparent 0); background-size: 28px 28px; opacity: .7; }
/* decorative gold glow orbs */
.hero::after { content: ''; position: absolute; top: -120px; right: -80px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(212,175,55,.10), transparent 65%); filter: blur(20px); animation: float-orb 8s ease-in-out infinite; pointer-events: none; }
@keyframes float-orb { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-30px, 40px) scale(1.08); } }
.hero-inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 90px 20px; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: linear-gradient(135deg, rgba(212,175,55,.14), rgba(244,208,98,.06)); border: 1px solid rgba(212,175,55,.35); border-radius: 999px; font-size: 12px; font-weight: 700; color: var(--gold-2); text-transform: uppercase; letter-spacing: .14em; margin-bottom: 24px; backdrop-filter: blur(8px); box-shadow: 0 4px 20px -8px rgba(212,175,55,.3); }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-2); box-shadow: 0 0 10px var(--gold-2); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.85); } }
.hero h1 { color: #fff; margin-bottom: 22px; font-size: clamp(2.6rem, 6vw, 4.2rem); line-height: 1.05; letter-spacing: -0.02em; text-shadow: 0 4px 30px rgba(0,0,0,.5); }
.hero h1 .accent { background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 50%, var(--gold-3) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 2px 12px rgba(212,175,55,.3)); }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--text-2); max-width: 680px; margin-bottom: 36px; line-height: 1.65; }
.hero-sub strong { color: var(--gold-2); font-weight: 700; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; padding-top: 28px; border-top: 1px solid var(--line); }
.hero-trust .item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-2); font-weight: 500; }
.hero-trust .item svg { color: var(--gold-2); filter: drop-shadow(0 0 4px rgba(212,175,55,.4)); }
/* hero decorative side panel */
.hero-side { position: absolute; right: 4%; top: 50%; transform: translateY(-50%); width: 280px; height: 380px; display: none; z-index: 1; opacity: .4; }
@media (min-width: 1100px) { .hero-side { display: block; } }
.hero-side-ring { position: absolute; inset: 0; border: 1px solid rgba(212,175,55,.3); border-radius: 50%; animation: rotate-slow 30s linear infinite; }
.hero-side-ring::before { content: ''; position: absolute; top: -4px; left: 50%; width: 8px; height: 8px; background: var(--gold-2); border-radius: 50%; box-shadow: 0 0 12px var(--gold-2); }
@keyframes rotate-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-side-inner { position: absolute; inset: 40px; border: 1px dashed rgba(212,175,55,.2); border-radius: 50%; }

/* ── Stats bar ── */
.stats-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1px; background: linear-gradient(180deg, var(--line), transparent); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { background: var(--bg); padding: 32px 20px; text-align: center; position: relative; transition: background .3s; }
.stat:hover { background: var(--surface); }
.stat::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold-2), transparent); transition: width .3s; }
.stat:hover::after { width: 60%; }
.stat .num { display: block; font-family: var(--font-display); font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 800; background: linear-gradient(135deg, var(--gold-2), var(--gold-3)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.1; }
.stat .lbl { display: block; font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: .14em; margin-top: 8px; font-weight: 600; }

/* ── Cards ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.card { background: linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: all .35s cubic-bezier(.4,0,.2,1); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold-2), var(--gold-3)); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.card::after { content: ''; position: absolute; top: -50%; right: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(212,175,55,.06), transparent 50%); opacity: 0; transition: opacity .35s; pointer-events: none; }
.card:hover { border-color: rgba(212,175,55,.45); transform: translateY(-6px); box-shadow: 0 20px 50px -20px rgba(0,0,0,.7), 0 0 30px -10px rgba(212,175,55,.15); }
.card:hover::before { transform: scaleX(1); }
.card:hover::after { opacity: 1; }
.card h3 { color: #fff; margin-bottom: 10px; font-size: 1.25rem; }
.card p { font-size: 14px; flex: 1; }
.card .card-icon { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(212,175,55,.18), rgba(244,208,98,.08)); color: var(--gold-2); margin-bottom: 18px; border: 1px solid rgba(212,175,55,.2); box-shadow: 0 4px 14px -4px rgba(212,175,55,.2); }
.card .price { color: var(--gold-2); font-weight: 800; font-size: 18px; margin-top: 12px; font-family: var(--font-display); }
.card a.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 700; font-size: 14px; color: var(--gold-2); transition: gap .2s; }
.card a.card-link:hover { gap: 10px; }
.card a.card-link::after { content: '→'; transition: transform .2s; }

/* ── Profile cards ── */
.profile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.profile-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all .3s; display: flex; flex-direction: column; }
.profile-card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,.4); box-shadow: var(--shadow); }
.profile-thumb { aspect-ratio: 3/4; background:
  radial-gradient(circle at 30% 20%, rgba(212,175,55,.15), transparent 60%),
  radial-gradient(circle at 70% 80%, rgba(244,208,98,.10), transparent 60%),
  linear-gradient(135deg, #1a1a14, #111); position: relative; display: grid; place-items: center; overflow: hidden; }
.profile-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.4)); pointer-events: none; }
.profile-thumb .initial { font-family: var(--font-display); font-size: 5rem; font-weight: 800; background: linear-gradient(135deg, var(--gold-2), var(--gold-3)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 4px 12px rgba(212,175,55,.3)); }
.profile-thumb .verified { position: absolute; top: 10px; right: 10px; background: linear-gradient(135deg, var(--gold-2), var(--gold-3)); color: #000; font-size: 10px; font-weight: 800; padding: 4px 8px; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em; z-index: 2; }
.profile-thumb .tag { position: absolute; bottom: 10px; left: 10px; background: rgba(0,0,0,.7); backdrop-filter: blur(8px); color: var(--gold-2); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; border: 1px solid var(--line); z-index: 2; }
.profile-thumb .rating-badge { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,.7); backdrop-filter: blur(8px); color: var(--gold-2); font-size: 11px; font-weight: 700; padding: 4px 8px; border-radius: 999px; z-index: 2; }
.profile-info { padding: 14px 16px 18px; }
.profile-info .pname { font-weight: 700; color: #fff; font-size: 16px; display: flex; align-items: center; gap: 6px; font-family: var(--font-display); }
.profile-info .pmeta { font-size: 12px; color: var(--text-3); margin-top: 4px; display: flex; flex-wrap: wrap; gap: 6px; }
.profile-info .pmeta .chip { display: inline-block; padding: 2px 7px; background: var(--surface-3); border: 1px solid var(--line-2); border-radius: 4px; font-size: 11px; color: var(--text-2); }
.profile-info .ploc { font-size: 12px; color: var(--gold-2); margin-top: 8px; display: flex; align-items: center; gap: 4px; }
.profile-info .pstars { font-size: 11px; color: var(--gold-2); margin-top: 6px; letter-spacing: 1px; }
.profile-info .pprice { font-size: 15px; color: var(--gold-2); font-weight: 800; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line-2); font-family: var(--font-display); }

/* ── CTA band ── */
.cta-band { background: linear-gradient(135deg, #0a0a0a, #14140a); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 56px 0; }
.cta-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: var(--text-2); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── FAQ ── */
.faq-section { max-width: 880px; margin: 0 auto; padding: 72px 20px; }
.faq-section h2 { text-align: center; margin-bottom: 12px; }
.faq-section .faq-intro { text-align: center; color: var(--text-3); font-size: 14px; margin-bottom: 36px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: linear-gradient(160deg, var(--surface), var(--surface-2)); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: all .25s; }
.faq-item:hover { border-color: rgba(212,175,55,.25); }
.faq-item[open] { border-color: rgba(212,175,55,.4); box-shadow: 0 8px 24px -8px rgba(212,175,55,.1); }
.faq-item summary { padding: 20px 24px; font-weight: 700; color: #fff; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px; font-family: var(--font-display); font-size: 16px; transition: color .2s; }
.faq-item summary:hover { color: var(--gold-2); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ''; width: 22px; height: 22px; flex-shrink: 0; border: 1px solid var(--gold-3); border-radius: 50%; position: relative; transition: transform .25s, background .25s; background: transparent; }
.faq-item summary::before { content: ''; position: absolute; width: 10px; height: 2px; background: var(--gold-2); transform: translate(-5px, -1px); right: 28px; top: 50%; }
.faq-item summary span { flex: 1; }
.faq-item[open] summary::after { transform: rotate(180deg); background: linear-gradient(135deg, var(--gold-2), var(--gold-3)); border-color: var(--gold-2); }
.faq-item[open] summary::before { opacity: 0; }
.faq-a { padding: 0 24px 22px; color: var(--text-2); font-size: 15px; line-height: 1.7; animation: faq-open .3s ease; }
@keyframes faq-open { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ── Reviews ── */
.review-section { padding: 64px 20px; max-width: 1280px; margin: 0 auto; }
.review-section h2 { text-align: center; margin-bottom: 40px; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.review-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; transition: transform .2s; }
.review-card:hover { transform: translateY(-3px); }
.r-stars { color: var(--gold-2); font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
.r-body { color: var(--text-2); font-size: 14px; font-style: italic; margin-bottom: 14px; }
.r-meta { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.r-name { font-weight: 700; color: #fff; font-family: var(--font-display); }
.r-date { color: var(--text-3); }

/* ── Related / internal links ── */
.related-section { padding: 56px 20px; max-width: 1280px; margin: 0 auto; }
.related-section h2 { margin-bottom: 28px; }
.link-grid { display: grid; gap: 12px; }
.link-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.link-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.link-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .link-grid.cols-3, .link-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .link-grid.cols-2, .link-grid.cols-3, .link-grid.cols-4 { grid-template-columns: 1fr; } }
.link-card { display: flex; flex-direction: column; gap: 4px; padding: 16px 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); transition: all .2s; }
.link-card:hover { border-color: rgba(212,175,55,.4); transform: translateX(4px); background: var(--surface-2); }
.link-card.simple { flex-direction: row; align-items: center; }
.lc-title { font-weight: 600; color: #fff; font-size: 15px; font-family: var(--font-display); }
.lc-desc { font-size: 12px; color: var(--text-3); }

/* ── Breadcrumbs ── */
.breadcrumbs { padding: 18px 20px; max-width: 1280px; margin: 0 auto; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; font-size: 13px; }
.breadcrumbs li { color: var(--text-3); }
.breadcrumbs a { color: var(--text-3); }
.breadcrumbs a:hover { color: var(--gold-2); }
.breadcrumbs .sep { color: var(--text-3); }
.breadcrumbs [aria-current="page"] { color: var(--gold-2); font-weight: 600; }

/* ── Page content ── */
.page-hero { padding: 56px 20px 32px; max-width: 1280px; margin: 0 auto; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero h1 .accent { background: linear-gradient(135deg, var(--gold-2), var(--gold-3)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.page-hero .lead { font-size: clamp(1rem, 1.6vw, 1.15rem); color: var(--text-2); max-width: 760px; }
.page-content { max-width: 1280px; margin: 0 auto; padding: 0 20px 56px; }
.prose { max-width: 820px; }
.prose h2 { color: #fff; margin: 36px 0 14px; }
.prose h3 { color: #fff; margin: 28px 0 12px; }
.prose p { margin-bottom: 16px; color: var(--text-2); }
.prose ul, .prose ol { margin: 0 0 18px 20px; color: var(--text-2); }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--gold-2); }
.prose a { color: var(--gold-2); text-decoration: underline; text-decoration-color: rgba(212,175,55,.3); text-underline-offset: 3px; }



/* ── Chat button (GOLD) — bottom-left of triangle ── */






/* Mobile: stack vertically above sticky CTA */
@media (max-width: 767px) {
  
  
  
  
}

/* ── Back-to-top (separate, bottom-LEFT corner) ── */



@media (max-width: 767px) {  }

/* ── Fix: Mobile sticky CTA — remove extra padding ── */



/* ── Fix: Footer — reduce extra space above Legal & Help ── */







/* ── Fix: Testimonial slider ── */
.testimonial-slider { max-width: 880px; margin: 0 auto; padding: 48px 20px; }
.testimonial-slider h2 { text-align: center; margin-bottom: 32px; }
.ts-track { display: flex; overflow: hidden; border-radius: 14px; }





.ts-dots { display: flex; gap: 10px; justify-content: center; margin-top: 28px; }
.ts-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(212,175,55,.2); border: none; cursor: pointer; transition: all .25s; padding: 0; }
.ts-dot.active { background: #D4AF37; width: 32px; border-radius: 5px; }
.ts-dot:hover { background: rgba(212,175,55,.5); }

/* Fix: testimonial slider — override scroll-reveal */

.ts-track { display: flex; overflow: hidden; }

/* ── Testimonial slider — single clean definition ── */
.testimonial-slider { max-width: 920px; margin: 0 auto; padding: 56px 20px; position: relative; }
.testimonial-slider::before {
  content: '"';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  font-size: 180px; line-height: 1; color: rgba(212,175,55,.06);
  font-family: 'Playfair Display', Georgia, serif; font-weight: 900;
  pointer-events: none; z-index: 0;
}
.testimonial-slider h2 { text-align: center; margin-bottom: 12px; color: #fff; font-family: 'Playfair Display', Georgia, serif; position: relative; z-index: 1; }
.testimonial-slider h2::after {
  content: ''; display: block; width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-3));
  margin: 14px auto 0; border-radius: 2px;
}
.ts-track { display: flex; overflow: hidden; border-radius: 16px; position: relative; z-index: 1; }
.ts-slide {
  min-width: 100%; padding: 44px 40px; background: linear-gradient(160deg, #111, #0a0a0a);
  border: 1px solid rgba(212,175,55,.2); border-radius: 16px; text-align: center;
  flex-shrink: 0; opacity: 1 !important; transform: none !important;
  transition: margin-left .5s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.ts-slide::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-2), var(--gold-3), var(--gold-2), transparent);
  border-radius: 16px 16px 0 0;
}
.ts-slide .ts-stars { color: #F4D062; font-size: 22px; letter-spacing: 4px; margin-bottom: 20px; }
.ts-slide .ts-quote { color: #f5f1e8; font-size: 17px; font-style: italic; line-height: 1.8; margin-bottom: 24px; font-family: 'Playfair Display', Georgia, serif; }
.ts-slide .ts-author { color: #D4AF37; font-weight: 700; font-size: 15px; letter-spacing: .02em; }
.ts-slide .ts-date { color: #8b8194; font-size: 13px; margin-top: 6px; }
.ts-dots { display: flex; gap: 10px; justify-content: center; margin-top: 28px; position: relative; z-index: 1; }
.ts-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(212,175,55,.2); border: none; cursor: pointer; transition: all .25s; padding: 0; }
.ts-dot.active { background: #D4AF37; width: 32px; border-radius: 5px; }
.ts-dot:hover { background: rgba(212,175,55,.5); }
@media (max-width: 600px) {
  .testimonial-slider { padding: 36px 16px; }
  .testimonial-slider::before { font-size: 120px; }
  .ts-slide { padding: 32px 22px; }
  .ts-slide .ts-quote { font-size: 15px; line-height: 1.7; }
  .ts-slide .ts-stars { font-size: 18px; }
}

/* ── Mobile sticky CTA — ZERO extra padding ── */



@media (min-width: 768px) {  }

/* ── Footer — compact, no extra space ── */


@media (max-width: 900px) {  }
@media (max-width: 560px) {  }

body { padding-bottom: 0px; }

/* ── Hero with background image ── */
.hero {
  background:
    linear-gradient(135deg, rgba(0,0,0,.85) 0%, rgba(10,10,10,.75) 50%, rgba(0,0,0,.9) 100%),
    url('/site/assets/images/bangalore-hero.jpg') center center / cover no-repeat;
}
.hero::before { display: none; }
.hero::after { display: none; }

/* ── Page hero with background image ── */
.page-hero {
  background: linear-gradient(135deg, rgba(0,0,0,.85) 0%, rgba(10,10,10,.75) 50%, rgba(0,0,0,.9) 100%), url('/site/assets/images/bangalore-bg2.jpg') center center / cover no-repeat !important;
  border-radius: 0 0 20px 20px;
  padding: 64px 20px 48px;
  margin-bottom: 24px;
}

/* ── Fix: Mobile content shaking / horizontal scroll ── */
html { overflow-x: hidden; max-width: 100vw; }
body { overflow-x: hidden; max-width: 100vw; position: relative; }
* { max-width: 100%; }
img { max-width: 100%; height: auto; }
section { overflow-x: hidden; }
.content-container { max-width: 100%; overflow-x: hidden; }
.content-section { overflow-x: hidden; }
.prose { overflow-x: hidden; word-wrap: break-word; overflow-wrap: break-word; }
.page-content { overflow-x: hidden; }
.page-hero { overflow-x: hidden; }
table { max-width: 100%; }
.hero { overflow-x: hidden; }
.hero-inner { max-width: 100%; overflow-x: hidden; }
.header-inner { max-width: 100%; overflow-x: hidden; }

.profile-grid { overflow-x: hidden; }
.card-grid { overflow-x: hidden; }
.service-cards { overflow-x: hidden; }
.feature-boxes { overflow-x: hidden; }
.verification-boxes { overflow-x: hidden; }
.booking-steps { overflow-x: hidden; }
.comparison-columns { overflow-x: hidden; }
.location-chips-grid { overflow-x: hidden; }
.service-chips-row { overflow-x: hidden; flex-wrap: wrap; }
.blog-chips-grid { overflow-x: hidden; }
.prof-chips-grid { overflow-x: hidden; }
.faq-preview { overflow-x: hidden; }
.svc-layout { overflow-x: hidden; }
.mega-location-grid { overflow-x: hidden; }

/* Prevent any element from causing horizontal scroll */
div, p, h1, h2, h3, h4, h5, h6, span, a, ul, ol, li { max-width: 100%; }
pre, code { overflow-x: auto; max-width: 100%; }


/* ═══════════════════════════════════════════════════════════════════════════
   REDESIGNED FOOTER — Premium luxury
   ═══════════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
  border-top: 1px solid rgba(212,175,55,.15);
  padding: 0;
  position: relative;
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #D4AF37, #F4D062, #D4AF37, transparent);
}

/* Keyword links at top */
.footer-keyword-links {
  max-width: 1280px; margin: 0 auto; padding: 16px 20px;
  text-align: center; border-bottom: 1px solid rgba(212,175,55,.06);
}
.footer-keyword-links p {
  font-size: 10px; color: #6a6268; line-height: 2; margin: 0 0 4px;
}
.footer-keyword-links a {
  color: #6a6268; text-decoration: none; transition: color .2s;
}
.footer-keyword-links a:hover { color: #D4AF37; }
.footer-keyword-links strong {
  color: #D4AF37; font-size: 10px; font-weight: 700;
}

/* Main grid */
.foot-grid {
  max-width: 1280px; margin: 0 auto; padding: 24px 20px 16px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px; align-items: start;
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; gap: 12px; } }

/* Brand column */
.brand-col h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #fff; margin-bottom: 8px; font-size: 18px; font-weight: 800;
}
.brand-col p {
  font-size: 12px; color: #6a6268; margin-bottom: 10px; line-height: 1.6;
}
.foot-contact {
  display: flex; flex-direction: column; gap: 4px; margin-bottom: 8px;
}
.foot-contact a {
  color: #D4AF37; font-size: 12px; font-weight: 600; text-decoration: none;
}
.foot-contact a:hover { color: #F4D062; }
.rating-line {
  color: #D4AF37; font-weight: 700; font-size: 12px;
}

/* Column headings */
.foot-col h4 {
  color: #D4AF37; margin-bottom: 8px; font-size: 10px;
  text-transform: uppercase; letter-spacing: .1em;
  font-family: 'Inter', sans-serif; font-weight: 700;
  padding-bottom: 6px; border-bottom: 1px solid rgba(212,175,55,.08);
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 4px; }
.foot-col a {
  color: #8b8194; font-size: 12px; text-decoration: none; transition: color .2s;
}
.foot-col a:hover { color: #D4AF37; padding-left: 2px; }

/* Copyright at bottom */
.site-footer > p {
  font-size: 11px; color: #4a4248; line-height: 1.6; margin: 0;
  text-align: center; padding: 12px 20px;
  border-top: 1px solid rgba(212,175,55,.06);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FLOATING BUTTONS — Perfect triangle with equal gaps
   Layout:        [Call RED]
          [Chat GOLD] [WhatsApp GREEN]
   Equal 12px gap between all buttons
   ═══════════════════════════════════════════════════════════════════════════ */

@keyframes btn-wave {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Container — fixed position, holds all 3 buttons in triangle */
.float-triangle {
  position: fixed; bottom: 20px; right: 20px; z-index: 91;
  width: 152px; height: 152px;
  pointer-events: none;
}
.float-triangle * { pointer-events: auto; }

/* Call (RED) — top center of triangle */
.float-call {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, #ef4444, #dc2626); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px -4px rgba(239,68,68,.5);
  transition: transform .2s; text-decoration: none;
}
.float-call::before, .float-call::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #ef4444; animation: btn-wave 2.5s ease-out infinite;
}
.float-call::after { animation-delay: 1.25s; }
.float-call:hover { transform: translateX(-50%) scale(1.1); color: #fff; }

/* WhatsApp (GREEN) — bottom right of triangle */
.float-wa {
  position: absolute; bottom: 0; right: 0;
  width: 64px; height: 64px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px -4px rgba(37,211,102,.5);
  transition: transform .2s; text-decoration: none;
}
.float-wa::before, .float-wa::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25d366; animation: btn-wave 2.5s ease-out infinite;
}
.float-wa::after { animation-delay: 1.25s; }
.float-wa:hover { transform: scale(1.1); color: #fff; }

/* Chat (GOLD) — bottom left of triangle */
.chat-widget {
  position: absolute; bottom: 0; left: 0;
  width: 64px; height: 64px;
}
.chat-toggle {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, #F4D062, #D4AF37); color: #000;
  border: none; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px -4px rgba(212,175,55,.5);
  transition: transform .2s; position: relative;
}
.chat-toggle::before, .chat-toggle::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #D4AF37; animation: btn-wave 2.5s ease-out infinite;
}
.chat-toggle::after { animation-delay: 1.25s; }
.chat-toggle:hover { transform: scale(1.08); }

/* Chat panel — opens ABOVE the floating buttons, anchored to right edge, above triangle */
.chat-panel {
  position: fixed; bottom: 180px; right: 16px; width: 320px;
  max-width: calc(100vw - 32px);
  background: linear-gradient(160deg, #111, #0a0a0a);
  border: 1px solid rgba(212,175,55,.3); border-radius: 16px;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,.7);
  display: none; flex-direction: column; overflow: hidden;
  opacity: 0; transform: translateY(10px); transition: opacity .25s, transform .25s;
  z-index: 200;
}
.chat-panel.open { display: flex; opacity: 1; transform: translateY(0); }
.chat-header {
  background: linear-gradient(135deg, #F4D062, #D4AF37); color: #000;
  padding: 12px 16px; font-weight: 800; font-family: 'Playfair Display', serif;
  display: flex; align-items: center; gap: 8px; font-size: 14px;
}
.chat-header .ch-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #0a0;
  box-shadow: 0 0 6px #0f0; animation: pulse 2s infinite;
}
.chat-body { padding: 14px; max-height: 240px; overflow-y: auto; display: flex; flex-direction: column; gap: 8px; }
.chat-msg { padding: 8px 12px; border-radius: 10px; font-size: 13px; max-width: 85%; line-height: 1.5; }
.chat-msg.bot { background: #1a1a26; color: #8b8194; align-self: flex-start; }
.chat-msg.user { background: linear-gradient(135deg, #F4D062, #D4AF37); color: #000; align-self: flex-end; font-weight: 600; }
.chat-quick { display: flex; flex-wrap: wrap; gap: 4px; padding: 0 12px 10px; }
.chat-quick button {
  background: #1a1a26; border: 1px solid rgba(212,175,55,.15); color: #D4AF37;
  padding: 5px 10px; border-radius: 999px; font-size: 11px; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: all .2s;
}
.chat-quick button:hover { border-color: #D4AF37; background: rgba(212,175,55,.08); }
.chat-input-row { display: flex; gap: 6px; padding: 10px 12px; border-top: 1px solid rgba(212,175,55,.1); }
.chat-input-row input {
  flex: 1; background: #1a1a26; border: 1px solid rgba(212,175,55,.15);
  border-radius: 8px; padding: 8px 12px; color: #f5f1e8; font-size: 13px;
  font-family: 'Inter', sans-serif;
}
.chat-input-row input:focus { outline: none; border-color: #D4AF37; }
.chat-input-row button {
  background: linear-gradient(135deg, #F4D062, #D4AF37); color: #000;
  border: none; border-radius: 8px; padding: 0 12px; cursor: pointer; font-weight: 700;
}

/* Back-to-top — separate, bottom left */
.back-to-top {
  position: fixed; bottom: 20px; left: 20px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, #F4D062, #D4AF37); color: #000;
  display: grid; place-items: center; cursor: pointer;
  box-shadow: 0 8px 24px -4px rgba(212,175,55,.4);
  opacity: 0; pointer-events: none; transition: all .3s; border: none;
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px) scale(1.05); }

/* Mobile adjustments */
@media (max-width: 767px) {
  .float-triangle { width: 132px; height: 132px; bottom: 16px; right: 16px; }
  .float-call, .float-wa, .chat-toggle { width: 52px; height: 52px; }
  .float-call svg, .float-wa svg { width: 26px; height: 26px; }
  .chat-toggle svg { width: 24px; height: 24px; }
  .back-to-top { display: none; }
}

/* Enhanced content sections */
.content-box h3 { color: #fff; font-size: 15px; margin: 14px 0 6px; font-family: Inter, sans-serif; font-weight: 700; padding-left: 10px; border-left: 2px solid #D4AF37; }
.content-box h3 a { color: #F4D062; }
.content-box h3 a:hover { color: #D4AF37; }
.content-box p { color: #8b8194; font-size: 13px; line-height: 1.7; margin: 0 0 10px; padding-left: 12px; }
.content-box p:last-child { margin-bottom: 0; }
.content-box a { color: #D4AF37; }

/* Chat panel — legacy !important overrides removed (panel now positioned cleanly above toggle) */
.chat-panel.open { display: flex !important; opacity: 1 !important; transform: translateY(0) !important; }
.chat-header { background: linear-gradient(135deg, #F4D062, #D4AF37) !important; color: #000 !important; padding: 12px 16px !important; font-weight: 800 !important; font-family: 'Playfair Display', serif !important; font-size: 14px !important; display: flex !important; align-items: center !important; gap: 8px !important; }
.chat-body { padding: 14px !important; max-height: 200px !important; overflow-y: auto !important; display: flex !important; flex-direction: column !important; gap: 8px !important; }
.chat-msg { padding: 8px 12px !important; border-radius: 10px !important; font-size: 13px !important; max-width: 85% !important; line-height: 1.5 !important; }
.chat-msg.bot { background: #1a1a26 !important; color: #8b8194 !important; align-self: flex-start !important; }
.chat-msg.user { background: linear-gradient(135deg, #F4D062, #D4AF37) !important; color: #000 !important; align-self: flex-end !important; font-weight: 600 !important; }
.chat-quick { display: flex !important; flex-wrap: wrap !important; gap: 4px !important; padding: 0 12px 10px !important; }
.chat-quick button { background: #1a1a26 !important; border: 1px solid rgba(212,175,55,.15) !important; color: #D4AF37 !important; padding: 5px 10px !important; border-radius: 999px !important; font-size: 11px !important; cursor: pointer !important; font-family: Inter, sans-serif !important; transition: all .2s !important; }
.chat-quick button:hover { border-color: #D4AF37 !important; background: rgba(212,175,55,.08) !important; }
.chat-input-row { display: flex !important; gap: 6px !important; padding: 10px 12px !important; border-top: 1px solid rgba(212,175,55,.1) !important; }
.chat-input-row input { flex: 1 !important; background: #1a1a26 !important; border: 1px solid rgba(212,175,55,.15) !important; border-radius: 8px !important; padding: 8px 12px !important; color: #f5f1e8 !important; font-size: 13px !important; font-family: Inter, sans-serif !important; }
.chat-input-row input:focus { outline: none !important; border-color: #D4AF37 !important; }
.chat-input-row button { background: linear-gradient(135deg, #F4D062, #D4AF37) !important; color: #000 !important; border: none !important; border-radius: 8px !important; padding: 0 12px !important; cursor: pointer !important; font-weight: 700 !important; font-size: 13px !important; }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE GRID FIXES — profile hero & service layout
   Prevents 320px fixed column from overflowing on mobile
   ═══════════════════════════════════════════════════════════════════════════ */
.profile-hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: center;
}
.svc-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}
.profile-hero-img {
  position: relative;
  max-width: 320px;
  width: 100%;
  justify-self: end;
}
.profile-hero-img img {
  width: 100% !important;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--gold-3);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.7);
  display: block;
}

/* Tablet — collapse to narrower sidebar */
@media (max-width: 980px) {
  .profile-hero-grid { grid-template-columns: 1fr 260px; gap: 24px; }
  .svc-layout { grid-template-columns: 1fr 260px; gap: 24px; }
  .profile-hero-img { max-width: 260px; }
}

/* Mobile — single column stack, image first or after text */
@media (max-width: 720px) {
  .profile-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
    text-align: left;
  }
  .profile-hero-img {
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
    justify-self: center;
    order: -1; /* show image first on mobile for visual hook */
  }
  .svc-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ── Hamburger menu improvements (mobile) ── */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.mobile-menu.open {
  max-height: 520px;
  padding: 14px 20px 18px;
  display: flex;
  gap: 2px;
}
.mobile-menu .nav-link {
  padding: 13px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--line-2);
  color: var(--text-2);
  font-weight: 600;
}
.mobile-menu .nav-link:last-of-type { border-bottom: none; }
.mobile-menu .nav-link:hover, .mobile-menu .nav-link.active { color: var(--gold-2); }
.mobile-menu .btn-gold.full {
  width: 100%;
  justify-content: center;
  margin-top: 12px;
  padding: 13px 16px;
  font-size: 15px;
}
.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  transition: border-color .2s, background .2s;
}
/* Mobile breakpoint — show hamburger, hide desktop nav */
@media (max-width: 980px) {
  .main-nav, .header-cta { display: none !important; }
  .menu-toggle { display: flex !important; }
}
.menu-toggle:hover { border-color: var(--gold-3); background: var(--surface-2); }
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .3s;
  display: block;
}

/* ── Profile card mobile polish ── */
@media (max-width: 600px) {
  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .profile-info { padding: 10px 12px 14px; }
  .profile-info .pname { font-size: 14px; }
  .profile-info .pmeta { font-size: 11px; gap: 4px; }
  .profile-info .pmeta .chip { padding: 1px 6px; font-size: 10px; }
  .profile-info .ploc { font-size: 11px; }
  .profile-info .pprice { font-size: 14px; margin-top: 8px; padding-top: 8px; }
  .profile-thumb .initial { font-size: 3.5rem; }
  .profile-thumb .verified { font-size: 9px; padding: 3px 6px; }
  .profile-thumb .tag { font-size: 10px; padding: 3px 8px; }
  .profile-thumb .rating-badge { font-size: 10px; padding: 3px 6px; }
}

/* ── Profile detail page table mobile fix ── */
@media (max-width: 600px) {
  .price-table, .price-table thead, .price-table tbody,
  .price-table tr, .price-table th, .price-table td {
    display: block;
    width: 100%;
  }
  .price-table thead { display: none; }
  .price-table tr {
    margin-bottom: 8px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
  }
  .price-table td {
    padding: 8px 14px;
    border: none;
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }
  .price-table td::before {
    content: attr(data-label);
    color: var(--text-3);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
  }
}

/* ── Hero CTA mobile fix ── */
@media (max-width: 600px) {
  .hero-cta { flex-direction: column; gap: 10px; }
  .hero-cta .btn-gold, .hero-cta .btn-wa { width: 100%; justify-content: center; }
}

/* ── Page hero mobile padding ── */
@media (max-width: 600px) {
  .page-hero { padding: 36px 16px 28px; }
  .page-content { padding: 0 16px 40px; }
  .header-inner { padding: 12px 16px; gap: 12px; }
  .brand-text { font-size: 15px; }
  .brand-mark { width: 36px; height: 36px; font-size: 19px; border-radius: 10px; }
}

/* ── Breadcrumbs mobile ── */
@media (max-width: 600px) {
  .breadcrumbs ol { flex-wrap: wrap; gap: 2px; font-size: 12px; }
  .breadcrumbs li { font-size: 12px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE BOTTOM NAV — sticky 5-item quick actions bar
   Layout: [Home] [Escorts] [Call↑] [WhatsApp] [Menu]
   Only visible ≤980px. Desktop uses top nav instead.
   ═══════════════════════════════════════════════════════════════════════════ */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 95;
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  padding: 0;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -8px 28px -8px rgba(0,0,0,.6);
  justify-content: space-around;
  align-items: flex-end;
  height: 64px;
  transition: transform .3s ease;
}
.mobile-bottom-nav::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.5), transparent);
}
.mbn-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 4px 6px;
  color: var(--text-3);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: color .2s;
  position: relative;
  min-height: 44px;
}
.mbn-item svg { transition: transform .2s; }
.mbn-item:hover { color: var(--gold-2); }
.mbn-item:hover svg { transform: translateY(-1px); }
.mbn-item.active { color: var(--gold-2); }
.mbn-item.active::after {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 24px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-3));
  border-radius: 2px;
}
.mbn-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: capitalize;
}

/* Center Call button — elevated, gold gradient */
.mbn-center {
  position: relative;
  flex: 1;
}
.mbn-icon-wrap {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F4D062, #D4AF37);
  color: #000;
  display: grid; place-items: center;
  margin-top: -16px;
  box-shadow: 0 6px 18px -4px rgba(212,175,55,.6), 0 0 0 3px rgba(8,8,8,1);
  transition: transform .2s, box-shadow .2s;
}
.mbn-center:hover .mbn-icon-wrap {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 24px -4px rgba(212,175,55,.7), 0 0 0 3px rgba(8,8,8,1);
}
.mbn-center .mbn-label {
  color: var(--gold-2);
  font-weight: 700;
  margin-top: 1px;
}

/* WhatsApp item — green tint on hover */
.mbn-wa:hover { color: #25d366; }
.mbn-wa:hover svg { color: #25d366; }

/* Mobile-only: show bottom nav, add bottom padding to body so content isn't hidden */
@media (max-width: 980px) {
  .mobile-bottom-nav { display: flex; }
  body { padding-bottom: 70px !important; }
  /* Move floating triangle up so it doesn't overlap bottom nav */
  .float-triangle { bottom: 76px !important; }
  /* Chat panel also needs to move up */
  .chat-panel { bottom: 240px !important; }
  /* Back-to-top hidden on mobile (bottom nav takes its place) */
  .back-to-top { display: none !important; }
}

/* Small phones — slightly smaller icons */
@media (max-width: 360px) {
  .mobile-bottom-nav { height: 60px; }
  .mbn-label { font-size: 9px; }
  .mbn-icon-wrap { width: 42px; height: 42px; margin-top: -14px; }
  .mbn-item svg { width: 20px; height: 20px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RECENTLY VIEWED section — proper styling
   ═══════════════════════════════════════════════════════════════════════════ */
.recent-section {
  max-width: 1280px;
  margin: 56px auto 24px;
  padding: 32px 20px;
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.recent-section::before {
  content: 'Recently Viewed';
  position: absolute; top: -8px; left: 24px;
  background: var(--bg);
  padding: 0 12px;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold-2);
  letter-spacing: .18em;
  text-transform: uppercase;
}
.recent-section h2 {
  color: #fff;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 8px;
}
.recent-section .rv-intro {
  color: var(--text-3);
  font-size: 13px;
  margin-bottom: 20px;
}
.rv-grid {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important;
  gap: 14px !important;
}
.rv-card {
  position: relative;
}
.rv-card::after {
  content: '↻';
  position: absolute; top: 8px; right: 8px;
  width: 22px; height: 22px;
  background: rgba(212,175,55,.15);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 50%;
  color: var(--gold-2);
  font-size: 11px;
  display: grid; place-items: center;
  z-index: 3;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER LOCATION KEYWORD CHIPS — SEO + UX
   Row of 25+ keyword-location chips below footer columns
   ═══════════════════════════════════════════════════════════════════════════ */
.foot-keywords {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 20px 8px;
  border-top: 1px solid var(--line);
}
.foot-keywords-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold-2);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: var(--font-sans);
}
.foot-keywords-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.foot-keywords-list a {
  display: inline-block;
  padding: 4px 10px;
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 11px;
  color: var(--text-2);
  text-decoration: none;
  transition: all .2s;
  font-weight: 500;
}
.foot-keywords-list a:hover {
  background: var(--gold-soft);
  border-color: var(--gold-3);
  color: var(--gold-2);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PROFILE FILTERS — multi-dimensional filter bar for profiles listing
   ═══════════════════════════════════════════════════════════════════════════ */
.profile-filters {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.profile-filters::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-3), var(--gold-2), var(--gold-3), transparent);
}
.filter-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  flex-wrap: wrap;
}
.filter-row + .filter-row {
  border-top: 1px solid var(--line-2);
}
.filter-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-2);
  letter-spacing: .05em;
  text-transform: uppercase;
  min-width: 70px;
  flex-shrink: 0;
  font-family: var(--font-sans);
}
.filter-input {
  flex: 1;
  min-width: 200px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 10px 16px;
  color: var(--text);
  font-size: 14px;
  font-family: var(--font-sans);
  transition: border-color .2s, box-shadow .2s;
}
.filter-input::placeholder { color: var(--text-3); }
.filter-input:focus {
  outline: none;
  border-color: var(--gold-3);
  box-shadow: 0 0 0 3px rgba(212,175,55,.1);
}
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
}
.filter-chip {
  padding: 7px 14px;
  background: var(--surface-3);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--text-2);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font-sans);
  white-space: nowrap;
}
.filter-chip:hover {
  border-color: var(--gold-3);
  color: var(--gold-2);
  background: var(--gold-soft);
}
.filter-chip.active {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  color: #000;
  border-color: var(--gold-2);
  font-weight: 700;
  box-shadow: 0 4px 12px -4px rgba(212,175,55,.4);
}
.filter-clear {
  padding: 7px 14px;
  background: transparent;
  border: 1px solid rgba(239,68,68,.3);
  border-radius: 999px;
  color: #ef4444;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font-sans);
  white-space: nowrap;
  margin-left: auto;
}
.filter-clear:hover {
  background: rgba(239,68,68,.1);
  border-color: #ef4444;
}
.filter-results-count {
  color: var(--text-3);
  font-size: 13px;
  margin-bottom: 16px;
  padding: 0 4px;
}
.filter-results-count strong {
  color: var(--gold-2);
  font-weight: 700;
  font-size: 15px;
}
.filter-no-results {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  color: var(--text-2);
  font-size: 15px;
  margin-bottom: 20px;
}
.filter-no-results a {
  color: var(--gold-2);
  font-weight: 700;
}
.profile-card.hidden {
  display: none !important;
}

/* Mobile: filters stack, labels go on top */
@media (max-width: 720px) {
  .profile-filters { padding: 14px 16px; }
  .filter-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .filter-label { min-width: auto; }
  .filter-chips { width: 100%; }
  .filter-clear { margin-left: 0; }
  .filter-chip { padding: 6px 12px; font-size: 11px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PROFILE IMAGE GALLERY — thumbnail strip on profile detail pages
   ═══════════════════════════════════════════════════════════════════════════ */
.profile-gallery {
  position: relative;
}
.profile-gallery-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gold-3);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.7);
  background: var(--surface-2);
}
.profile-gallery-main img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: opacity .3s;
}
.profile-gallery-main img.fading { opacity: 0; }
.gallery-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .05em;
  z-index: 2;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  color: var(--gold-2);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 3;
  transition: all .2s;
}
.gallery-nav:hover {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  color: #000;
  border-color: var(--gold-2);
}
.gallery-nav.prev { left: 10px; }
.gallery-nav.next { right: 10px; }
.gallery-counter {
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(8px);
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  z-index: 3;
}
.profile-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.gallery-thumb {
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
  background: var(--surface-2);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-thumb:hover {
  border-color: var(--gold-3);
  transform: translateY(-2px);
}
.gallery-thumb.active {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 2px rgba(212,175,55,.2);
}
@media (max-width: 720px) {
  .profile-gallery-thumbs { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .gallery-nav { width: 34px; height: 34px; }
  .gallery-nav.prev { left: 6px; }
  .gallery-nav.next { right: 6px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PROFILE DETAIL LAYOUT — 2-col (content + sticky sidebar)
   ═══════════════════════════════════════════════════════════════════════════ */
.profile-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}
.profile-detail-main {
  max-width: 100%;
}
.profile-detail-sidebar {
  position: sticky;
  top: 90px;
}
@media (max-width: 980px) {
  .profile-detail-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .profile-detail-sidebar {
    position: static;
    order: -1; /* sidebar (quickbook) shows above content on mobile */
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PROFILE QUICK BOOK WIDGET — sticky sidebar on desktop, top on mobile
   ═══════════════════════════════════════════════════════════════════════════ */
.profile-quickbook {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px -16px rgba(0,0,0,.5);
}
.profile-quickbook::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-3), var(--gold-2));
}
.qb-header {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-2);
}
.qb-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.qb-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--gold-2);
  line-height: 1;
}
.qb-price small {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-3);
  font-family: var(--font-sans);
}
.qb-rating {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-2);
}
.qb-rating small {
  font-size: 11px;
  color: var(--text-3);
  font-weight: 500;
}
.qb-availability {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: #4ade80;
}
.qb-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: qb-pulse 2s infinite;
}
@keyframes qb-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}
.qb-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 16px;
}
.qb-feat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-2);
  font-weight: 500;
  line-height: 1.3;
}
.qb-feat svg {
  color: #4ade80;
  flex-shrink: 0;
}
.qb-call, .qb-wa {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 16px !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  margin-bottom: 8px;
  transition: transform .2s, box-shadow .2s;
}
.qb-call:hover, .qb-wa:hover {
  transform: translateY(-2px);
}
.qb-note {
  font-size: 11px;
  color: var(--text-3);
  text-align: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line-2);
  line-height: 1.5;
}
.qb-note strong { color: var(--gold-2); }

/* ═══════════════════════════════════════════════════════════════════════════
   TRUST BADGES — row of 4 trust signals
   ═══════════════════════════════════════════════════════════════════════════ */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1280px;
  margin: 24px auto;
  padding: 0 20px;
}
.tb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.tb-item:hover {
  border-color: var(--gold-3);
  transform: translateY(-2px);
}
.tb-item svg {
  color: var(--gold-2);
}
.tb-item span {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .02em;
}
@media (max-width: 720px) {
  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 16px auto;
  }
  .tb-item { padding: 12px 8px; }
  .tb-item span { font-size: 11px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BLOG TABLE OF CONTENTS — sticky sidebar for long articles
   ═══════════════════════════════════════════════════════════════════════════ */
.blog-toc {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  position: sticky;
  top: 90px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}
.blog-toc::before {
  content: 'On This Page';
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold-2);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-2);
}
.blog-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-toc li {
  margin-bottom: 4px;
}
.blog-toc a {
  display: block;
  padding: 6px 10px;
  font-size: 13px;
  color: var(--text-2);
  text-decoration: none;
  border-radius: 6px;
  border-left: 2px solid transparent;
  transition: all .2s;
  line-height: 1.4;
}
.blog-toc a:hover {
  color: var(--gold-2);
  background: var(--gold-soft);
  border-left-color: var(--gold-3);
}
.blog-toc a.active {
  color: var(--gold-2);
  background: var(--gold-soft);
  border-left-color: var(--gold-2);
  font-weight: 600;
}
.blog-toc a.toc-h3 {
  padding-left: 22px;
  font-size: 12px;
  color: var(--text-3);
}
.blog-article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 980px) {
  .blog-article-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .blog-toc {
    position: static;
    max-height: none;
    order: -1;
    display: none; /* hide TOC on mobile by default, could add toggle */
  }
  .blog-toc.show-mobile { display: block; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   READING PROGRESS BAR — top of blog articles
   ═══════════════════════════════════════════════════════════════════════════ */
.reading-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(212, 175, 55, 0.08);
  z-index: 9999;
  pointer-events: none;
}
.reading-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-3), var(--gold-2));
  background-size: 200% 100%;
  animation: progress-shimmer 3s linear infinite;
  transition: width .1s linear;
  box-shadow: 0 0 8px rgba(212,175,55,.5);
}
@keyframes progress-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE TOC TOGGLE — show/hide table of contents on mobile
   ═══════════════════════════════════════════════════════════════════════════ */
.toc-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-sans);
  margin-bottom: 16px;
  width: 100%;
  transition: border-color .2s, background .2s;
}
.toc-toggle:hover {
  border-color: var(--gold-3);
  background: var(--gold-soft);
}
.toc-toggle::after {
  content: '▼';
  margin-left: auto;
  font-size: 10px;
  transition: transform .2s;
}
.toc-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}
@media (max-width: 980px) {
  .toc-toggle { display: flex; }
  /* Show TOC on mobile when toggled */
  .blog-toc.show-mobile {
    display: block !important;
    position: static;
    max-height: 400px;
    margin-bottom: 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SB-TITLE — title for service/location quick book widget
   ═══════════════════════════════════════════════════════════════════════════ */
.sb-widget .sb-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BLOG ARTICLE META — author, date, reading time, word count, category
   ═══════════════════════════════════════════════════════════════════════════ */
.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding: 16px 20px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  border-radius: 12px;
  flex-wrap: wrap;
}
.am-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.am-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  color: #000;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  box-shadow: var(--shadow-gold);
}
.am-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.am-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.am-date {
  font-size: 12px;
  color: var(--text-3);
}
.am-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.am-stat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-2);
  font-weight: 500;
}
.am-stat svg {
  color: var(--gold-2);
}
.am-cat svg { color: var(--rose); }

/* ═══════════════════════════════════════════════════════════════════════════
   ARTICLE SHARE BUTTONS — WhatsApp, Telegram, Facebook, X, Copy
   ═══════════════════════════════════════════════════════════════════════════ */
.article-share {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.as-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-right: 4px;
}
.as-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  background: var(--surface-2);
  color: var(--text-2);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.as-btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold-3);
}
.as-wa:hover { background: #25d366; color: #fff; border-color: #25d366; }
.as-tg:hover { background: #0088cc; color: #fff; border-color: #0088cc; }
.as-fb:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
.as-tw:hover { background: #000; color: #fff; border-color: #fff; }
.as-copy:hover { background: var(--gold-3); color: #000; border-color: var(--gold-2); }
.as-copy.copied { background: #4ade80; color: #000; border-color: #4ade80; }
.as-copy.copied::after {
  content: '✓';
  position: absolute;
  font-size: 10px;
  font-weight: 700;
  margin-top: -20px;
}

/* Blog hero adjustments for meta + share */
.blog-hero .lead { margin-bottom: 0; }

/* Mobile: article meta stacks */
@media (max-width: 720px) {
  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
  }
  .am-stats { gap: 10px; }
  .am-stat { font-size: 11px; }
  .as-btn { width: 34px; height: 34px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RELATED PROFILES CAROUSEL — horizontal scroll on profile detail pages
   ═══════════════════════════════════════════════════════════════════════════ */
.profile-carousel {
  position: relative;
  margin: 0 -20px;
  padding: 0 20px;
  overflow: hidden;
}
.profile-carousel-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-3) transparent;
}
.profile-carousel-track::-webkit-scrollbar { height: 6px; }
.profile-carousel-track::-webkit-scrollbar-track { background: transparent; }
.profile-carousel-track::-webkit-scrollbar-thumb { background: var(--gold-3); border-radius: 3px; }
.profile-carousel-track .profile-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
}
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  color: var(--gold-2);
  cursor: pointer;
  display: grid; place-items: center;
  z-index: 5;
  transition: all .2s;
}
.carousel-nav:hover {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  color: #000;
  border-color: var(--gold-2);
}
.carousel-nav.prev { left: -8px; }
.carousel-nav.next { right: -8px; }
.carousel-nav.hidden { display: none; }
@media (max-width: 720px) {
  .profile-carousel-track .profile-card { flex: 0 0 160px; }
  .carousel-nav { width: 34px; height: 34px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   IMAGE GALLERY LIGHTBOX — click to enlarge
   ═══════════════════════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  border: 2px solid var(--gold-3);
  box-shadow: 0 20px 60px rgba(0,0,0,.8);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid var(--line);
  color: #fff;
  cursor: pointer;
  display: grid; place-items: center;
  font-size: 24px;
  transition: all .2s;
}
.lightbox-close:hover {
  background: #ef4444;
  border-color: #ef4444;
}
.lightbox-counter {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.7);
  color: var(--gold-2);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--line);
}

/* ═══════════════════════════════════════════════════════════════════════════
   COST CALCULATOR — interactive pricing quote on pricing page
   ═══════════════════════════════════════════════════════════════════════════ */
.cost-calculator {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.cost-calculator::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-3), var(--gold-2));
}
.calc-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.calc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.calc-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-2);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.calc-select {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--text);
  font-size: 14px;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='3'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.calc-select:focus {
  outline: none;
  border-color: var(--gold-3);
  box-shadow: 0 0 0 3px rgba(212,175,55,.1);
}
.calc-select option {
  background: var(--bg-2);
  color: var(--text);
}
.calc-extras {
  gap: 8px;
}
.calc-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
  cursor: pointer;
  padding: 8px 12px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  transition: border-color .2s, background .2s;
}
.calc-check:hover {
  border-color: var(--gold-3);
  background: var(--gold-soft);
}
.calc-check input {
  width: 16px; height: 16px;
  accent-color: var(--gold-3);
  cursor: pointer;
}
.calc-result {
  position: sticky;
  top: 90px;
}
.calc-result-card {
  background: linear-gradient(160deg, #1a1a1a, #0d0d0d);
  border: 1px solid var(--gold-3);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: 0 12px 32px -12px rgba(212,175,55,.2);
}
.calc-result-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.calc-result-price {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--gold-2);
  line-height: 1;
  margin-bottom: 8px;
  transition: transform .2s;
}
.calc-result-price.bump {
  animation: price-bump .3s ease;
}
@keyframes price-bump {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); color: var(--gold-2); }
  100% { transform: scale(1); }
}
.calc-result-note {
  display: block;
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 16px;
}
.calc-breakdown {
  text-align: left;
  background: rgba(0,0,0,.3);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
  border: 1px solid var(--line-2);
}
.calc-bd-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-3);
  padding: 4px 0;
}
.calc-bd-row span:first-child { color: var(--text-3); }
.calc-bd-row span:last-child { color: var(--text-2); font-weight: 600; }
.calc-bd-total {
  border-top: 1px solid var(--line-2);
  margin-top: 6px;
  padding-top: 8px;
  font-size: 13px;
}
.calc-bd-total span:first-child { color: var(--gold-2); font-weight: 700; }
.calc-bd-total span:last-child { color: var(--gold-2); font-weight: 800; }
.calc-cta {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  margin-bottom: 8px;
}
.calc-disclaimer {
  font-size: 10px;
  color: var(--text-3);
  margin-top: 12px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .cost-calculator {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  .calc-result { position: static; }
}
@media (max-width: 600px) {
  .cost-calculator { padding: 16px; }
  .calc-result-price { font-size: 34px; }
  .calc-select { padding: 10px 36px 10px 12px; font-size: 13px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FEEDBACK WIDGET — "Was this helpful?" on blog articles
   ═══════════════════════════════════════════════════════════════════════════ */
.feedback-widget {
  max-width: 600px;
  margin: 40px auto 0;
  padding: 24px;
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}
.feedback-widget::before {
  content: '';
  display: block;
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-3));
  margin: 0 auto 16px;
  border-radius: 2px;
}
.fw-question {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  font-family: var(--font-display);
}
.fw-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.fw-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--surface-3);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--text-2);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all .2s;
}
.fw-btn:hover {
  border-color: var(--gold-3);
  background: var(--gold-soft);
  transform: translateY(-2px);
}
.fw-btn svg { color: var(--gold-2); }
.fw-btn.selected {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  color: #000;
  border-color: var(--gold-2);
}
.fw-btn.selected svg { color: #000; }
.fw-result {
  display: none;
  margin-top: 16px;
  padding: 14px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-3);
  border-radius: 10px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 600;
}
.fw-result.show { display: block; animation: fw-fade .3s ease; }
@keyframes fw-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   AVAILABILITY INDICATOR — green dot on profile cards
   ═══════════════════════════════════════════════════════════════════════════ */
.availability-dot {
  position: absolute;
  top: 10px; left: 10px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #4ade80;
  border: 2px solid var(--bg);
  z-index: 3;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
  animation: avail-pulse 2s infinite;
}
.availability-dot::after {
  content: 'Available';
  position: absolute;
  left: 16px; top: -2px;
  font-size: 9px;
  font-weight: 700;
  color: #4ade80;
  background: rgba(0,0,0,.7);
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}
.profile-card:hover .availability-dot::after {
  opacity: 1;
}
@keyframes avail-pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PREMIUM UI REFINEMENT — Phase 1: Design System + Core Components
   Enterprise-grade polish without changing functionality/SEO/content
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Design tokens: refined spacing scale + elevation ── */
:root {
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 72px;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --shadow-xs: 0 1px 2px rgba(0,0,0,.3);
  --shadow-sm: 0 4px 12px -4px rgba(0,0,0,.4);
  --shadow-md: 0 8px 24px -8px rgba(0,0,0,.5);
  --shadow-lg: 0 20px 50px -20px rgba(0,0,0,.7);
  --shadow-gold-sm: 0 4px 16px -4px rgba(212,175,55,.2);
  --shadow-gold-md: 0 8px 28px -6px rgba(212,175,55,.3);
  --transition-fast: .18s cubic-bezier(.4,0,.2,1);
  --transition: .28s cubic-bezier(.4,0,.2,1);
  --transition-slow: .4s cubic-bezier(.4,0,.2,1);
}

/* ── Hero: refined height + spacing ── */
.hero { min-height: auto !important; padding: 0; }
.hero-inner { 
  max-width: 1280px; margin: 0 auto; padding: 80px 24px 72px !important;
  display: flex; flex-direction: column; justify-content: center; gap: 20px;
}
@media (max-width: 768px) {
  .hero-inner { padding: 56px 20px 48px !important; gap: 16px; }
}

/* ── Hero badge refinement ── */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 999px;
  background: rgba(212,175,55,.08); border: 1px solid rgba(212,175,55,.2);
  font-size: 12px; font-weight: 600; color: var(--gold-2);
  letter-spacing: .02em; width: fit-content;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold-2);
  box-shadow: 0 0 8px var(--gold-2);
}

/* ── Hero trust badges row ── */
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 8px;
}
.hero-trust .item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--text-2);
}

/* ── Hero CTA spacing ── */
.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px;
}

/* ── Premium buttons ── */
.btn-gold, .btn-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px !important; border-radius: 12px !important;
  font-weight: 700; font-size: 14px; letter-spacing: .01em;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  white-space: nowrap; position: relative; overflow: hidden;
  border: none; cursor: pointer; text-decoration: none;
}
.btn-gold {
  background: linear-gradient(135deg, #F4D062 0%, #D4AF37 100%);
  color: #000;
  box-shadow: var(--shadow-gold-sm);
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #FFE082 0%, #F4D062 100%);
  opacity: 0; transition: opacity var(--transition-fast);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-md);
  color: #000;
}
.btn-gold:hover::before { opacity: 1; }
.btn-gold > * { position: relative; z-index: 1; }
.btn-wa {
  background: #25d366; color: #fff;
  box-shadow: 0 4px 16px -4px rgba(37,211,102,.4);
}
.btn-wa:hover {
  transform: translateY(-2px);
  background: #20bd5a;
  box-shadow: 0 8px 24px -4px rgba(37,211,102,.5);
  color: #fff;
}
.btn-gold.lg, .btn-wa.lg {
  padding: 15px 28px !important; font-size: 15px !important;
  border-radius: 14px !important;
}
.btn-gold.full, .btn-wa.full {
  width: 100%; justify-content: center;
}

/* ── Premium cards (universal) ── */
.card, .profile-card, .link-card, .pricing-card {
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition) !important;
  position: relative;
}
.card:hover, .profile-card:hover, .link-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(212,175,55,.15);
  border-color: rgba(212,175,55,.3) !important;
}
.card {
  padding: 28px !important;
  display: flex; flex-direction: column; gap: 8px;
}
.card h3 {
  font-size: 18px; font-weight: 700; color: #fff;
  margin-bottom: 4px;
}
.card p { font-size: 14px; line-height: 1.6; color: var(--text-2); }
.card .price {
  font-size: 20px; font-weight: 800; color: var(--gold-2);
  font-family: var(--font-display); margin-top: 4px;
}
.card .card-link {
  margin-top: auto; padding-top: 12px;
  font-size: 13px; font-weight: 700; color: var(--gold-2);
  text-decoration: none; letter-spacing: .02em;
}
.card .card-link::after { content: ' →'; transition: margin var(--transition-fast); }
.card:hover .card-link::after { margin-left: 4px; }

/* ── Card icon refinement ── */
.card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(212,175,55,.15), rgba(212,175,55,.05));
  border: 1px solid rgba(212,175,55,.2);
  display: grid; place-items: center; color: var(--gold-2);
  margin-bottom: 8px;
}

/* ── Link card (location chips) ── */
.link-card {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 20px !important;
  text-decoration: none;
}
.link-card .lc-title {
  font-size: 15px; font-weight: 700; color: #fff;
  transition: color var(--transition-fast);
}
.link-card .lc-desc {
  font-size: 12px; color: var(--text-3); line-height: 1.5;
}
.link-card:hover .lc-title { color: var(--gold-2); }

/* ── Profile card refinement ── */
.profile-card {
  background: linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--line);
  overflow: hidden;
}
.profile-card:hover {
  border-color: rgba(212,175,55,.35) !important;
  box-shadow: var(--shadow-lg), var(--shadow-gold-sm) !important;
}
.profile-info {
  padding: 14px 16px 18px !important;
}
.profile-info .pname {
  font-size: 16px; font-weight: 700; color: #fff;
  font-family: var(--font-display); display: block; margin-bottom: 6px;
}
.profile-info .pprice {
  font-size: 16px; font-weight: 800; color: var(--gold-2);
  font-family: var(--font-display);
}

/* ── Section head refinement ── */
.section-head {
  text-align: center; max-width: 760px; margin: 0 auto 36px;
}
.section-head .eyebrow {
  font-size: 11px; font-weight: 700; color: var(--gold-2);
  letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 10px; display: block;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem); color: #fff;
  margin-bottom: 12px;
}
.section-head p {
  font-size: 15px; color: var(--text-2); line-height: 1.6;
}
.divider-gold {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-3));
  border-radius: 2px; margin: 0 auto 16px;
}

/* ── Eyebrow (universal) ── */
.eyebrow {
  font-size: 11px; font-weight: 700; color: var(--gold-2);
  letter-spacing: .18em; text-transform: uppercase;
  display: block; margin-bottom: 10px;
}

/* ── Premium prose typography ── */
.prose { max-width: 820px; }
.prose h2 {
  color: #fff; font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  margin: 40px 0 16px; line-height: 1.2;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
  position: relative;
}
.prose h2::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-3));
  border-radius: 2px;
}
.prose h3 {
  color: #fff; font-size: 1.15rem; font-family: var(--font-sans);
  font-weight: 700; margin: 28px 0 12px;
}
.prose p {
  font-size: 15px; line-height: 1.75; color: var(--text-2);
  margin-bottom: 18px;
}
.prose strong { color: var(--gold-2); font-weight: 700; }
.prose a {
  color: var(--gold-2); text-decoration: underline;
  text-decoration-color: rgba(212,175,55,.3);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--transition-fast);
}
.prose a:hover { text-decoration-color: var(--gold-2); }
.prose ul, .prose ol {
  margin: 0 0 20px 4px; padding-left: 20px; color: var(--text-2);
}
.prose li {
  margin-bottom: 10px; font-size: 15px; line-height: 1.7;
  padding-left: 4px;
}
.prose ul li::marker { color: var(--gold-2); }
.prose ol li::marker { color: var(--gold-2); font-weight: 700; }

/* ── Premium tables (desktop) ── */
.price-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  margin: 24px 0; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  background: var(--surface);
}
.price-table thead { background: linear-gradient(135deg, var(--surface-3), var(--surface-2)); }
.price-table th {
  padding: 16px 20px; text-align: left;
  font-size: 12px; font-weight: 700; color: var(--gold-2);
  letter-spacing: .08em; text-transform: uppercase;
  border-bottom: 2px solid rgba(212,175,55,.2);
}
.price-table td {
  padding: 14px 20px; font-size: 14px; color: var(--text-2);
  border-bottom: 1px solid var(--line-2);
  transition: background var(--transition-fast);
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover td { background: rgba(212,175,55,.04); }
.price-table td.price, .price-table td .price {
  color: var(--gold-2); font-weight: 800; font-family: var(--font-display);
}
.price-table td.price { font-size: 16px; }

/* ── Premium booking form ── */
.booking-form-wrap {
  max-width: 760px; margin: 0 auto;
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.booking-form-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-3), var(--gold-2));
}
.booking-form-wrap h3 {
  font-size: 22px; font-weight: 800; color: #fff;
  font-family: var(--font-display); margin-bottom: 8px;
}
.booking-form-wrap .form-intro {
  font-size: 14px; color: var(--text-2); margin-bottom: 24px; line-height: 1.6;
}
.bf-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px;
}
.bf-row.single { grid-template-columns: 1fr; }
.bf-field { display: flex; flex-direction: column; gap: 6px; }
.bf-field label {
  font-size: 12px; font-weight: 700; color: var(--gold-2);
  letter-spacing: .04em; text-transform: uppercase;
}
.bf-field input, .bf-field select, .bf-field textarea {
  background: var(--bg-2); border: 1px solid var(--line-2);
  border-radius: 10px; padding: 12px 14px;
  color: var(--text); font-size: 14px; font-family: var(--font-sans);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  width: 100%;
}
.bf-field input::placeholder, .bf-field textarea::placeholder { color: var(--text-3); }
.bf-field input:focus, .bf-field select:focus, .bf-field textarea:focus {
  outline: none; border-color: var(--gold-3);
  box-shadow: 0 0 0 3px rgba(212,175,55,.1);
  background: var(--surface);
}
.bf-field textarea { resize: vertical; min-height: 80px; }
.bf-field select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='3'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px;
}
.bf-field select option { background: var(--bg-2); color: var(--text); }
.bf-submit {
  width: 100%; padding: 15px 24px;
  background: linear-gradient(135deg, #25d366, #20bd5a);
  color: #fff; border: none; border-radius: 12px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  font-family: var(--font-sans); transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  margin-top: 8px;
  box-shadow: 0 4px 16px -4px rgba(37,211,102,.4);
}
.bf-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -4px rgba(37,211,102,.5);
}
.bf-note {
  font-size: 12px; color: var(--text-3); text-align: center;
  margin-top: 14px; line-height: 1.5;
}
.bf-note a { color: var(--gold-2); }
@media (max-width: 600px) {
  .bf-row { grid-template-columns: 1fr; gap: 12px; }
  .booking-form-wrap { padding: 22px 18px; }
}

/* ── Feature row + feature boxes ── */
.feature-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; margin: 24px 0;
}
.feature-box {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 22px 20px; text-align: left;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.feature-box::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-3));
  opacity: 0; transition: opacity var(--transition-fast);
}
.feature-box:hover {
  transform: translateY(-3px); border-color: rgba(212,175,55,.3);
  box-shadow: var(--shadow-md);
}
.feature-box:hover::before { opacity: 1; }
.feature-box .fb-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(212,175,55,.15), rgba(212,175,55,.05));
  border: 1px solid rgba(212,175,55,.2);
  display: grid; place-items: center; color: var(--gold-2);
  font-size: 18px; font-weight: 800; margin-bottom: 12px;
}
.feature-box h4 {
  font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px;
}
.feature-box p {
  font-size: 13px; color: var(--text-2); line-height: 1.6; margin: 0;
}

/* ── EEAT section cards ── */
.eeat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; margin-top: 24px;
}
.eeat-card {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; position: relative; overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.eeat-card:hover {
  transform: translateY(-4px); border-color: rgba(212,175,55,.3);
  box-shadow: var(--shadow-lg), var(--shadow-gold-sm);
}
.eeat-card .eeat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(212,175,55,.15), rgba(212,175,55,.05));
  border: 1px solid rgba(212,175,55,.2);
  display: grid; place-items: center; color: var(--gold-2);
  margin-bottom: 16px;
}
.eeat-card h3 {
  font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px;
}
.eeat-card p {
  font-size: 14px; color: var(--text-2); line-height: 1.65;
}

/* ── Stats bar ── */
.stats-bar {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0; margin: 0 auto; max-width: 1280px;
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 0;
}
.stats-bar .stat {
  flex: 1; min-width: 140px; text-align: center;
  padding: 24px 16px;
  border-right: 1px solid var(--line-2);
  transition: background var(--transition-fast);
}
.stats-bar .stat:last-child { border-right: none; }
.stats-bar .stat:hover { background: rgba(212,175,55,.04); }
.stats-bar .stat .num {
  display: block; font-size: 28px; font-weight: 800;
  color: var(--gold-2); font-family: var(--font-display);
  line-height: 1; margin-bottom: 6px;
}
.stats-bar .stat .lbl {
  font-size: 11px; color: var(--text-3); font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
}
@media (max-width: 768px) {
  .stats-bar { flex-wrap: wrap; }
  .stats-bar .stat { flex: 1 1 45%; border-bottom: 1px solid var(--line-2); }
}

/* ── Trust strip ── */
.trust-strip {
  background: rgba(212,175,55,.04); border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 20px; text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PREMIUM FOOTER REDESIGN — enterprise-grade
   ═══════════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: linear-gradient(180deg, #000 0%, #050505 50%, #0a0a0a 100%);
  border-top: 1px solid var(--line);
  position: relative;
  margin-top: 56px;
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(212,175,55,.4) 50%, transparent 90%);
}
.foot-grid {
  max-width: 1280px; margin: 0 auto;
  padding: 56px 24px 32px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px; align-items: start;
}
.brand-col h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  color: #fff; margin-bottom: 12px;
  background: linear-gradient(135deg, #fff, var(--gold-2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-col p {
  font-size: 13px; color: var(--text-3); line-height: 1.7;
  margin-bottom: 18px; max-width: 340px;
}
.foot-contact {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px;
}
.foot-contact a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--gold-2);
  text-decoration: none; transition: color var(--transition-fast), transform var(--transition-fast);
  width: fit-content;
}
.foot-contact a::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold-3);
}
.foot-contact a:hover { color: var(--gold-2); transform: translateX(3px); }
.rating-line {
  font-size: 12px; color: var(--gold-2); font-weight: 600;
  padding: 8px 12px; background: rgba(212,175,55,.06);
  border: 1px solid rgba(212,175,55,.15); border-radius: 8px;
  display: inline-block; width: fit-content;
}
.foot-col h4 {
  color: var(--gold-2); margin-bottom: 16px; font-size: 11px;
  text-transform: uppercase; letter-spacing: .14em;
  font-family: var(--font-sans); font-weight: 700;
  padding-bottom: 10px; border-bottom: 1px solid var(--line);
  position: relative;
}
.foot-col h4::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 24px; height: 1px; background: var(--gold-2);
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 8px; }
.foot-col a {
  color: var(--text-2); font-size: 13px; text-decoration: none;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: inline-block; position: relative; padding-left: 0;
}
.foot-col a::before {
  content: '›'; position: absolute; left: -12px;
  color: var(--gold-3); opacity: 0; transition: opacity var(--transition-fast), left var(--transition-fast);
}
.foot-col a:hover {
  color: var(--gold-2); padding-left: 12px;
}
.foot-col a:hover::before { opacity: 1; left: 0; }

/* Footer keyword chips */
.foot-keywords {
  max-width: 1280px; margin: 0 auto;
  padding: 28px 24px 20px;
  border-top: 1px solid var(--line-2);
}
.foot-keywords-title {
  font-size: 10px; font-weight: 700; color: var(--gold-2);
  letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 14px; font-family: var(--font-sans);
}
.foot-keywords-list {
  display: flex; flex-wrap: wrap; gap: 7px;
}
.foot-keywords-list a {
  display: inline-block; padding: 5px 12px;
  background: var(--surface-2); border: 1px solid var(--line-2);
  border-radius: 999px; font-size: 11px; color: var(--text-2);
  text-decoration: none; transition: all var(--transition-fast);
  font-weight: 500;
}
.foot-keywords-list a:hover {
  background: rgba(212,175,55,.1); border-color: var(--gold-3);
  color: var(--gold-2); transform: translateY(-1px);
}

/* ── Footer Bottom — Premium Two-Level Design ── */
.foot-bottom {
  max-width: 1320px; margin: 0 auto;
  padding: 24px 24px 32px;
  border-top: 1px solid var(--line-2);
}

/* LEVEL 1: Copyright + Links + Back to Top */
.fb-level-1 {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-2);
}
.fb-copyright {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-3); font-weight: 500;
}
.fb-copy-icon {
  font-size: 16px; color: var(--gold-2); font-weight: 700;
}
.fb-copy-sep {
  color: var(--text-3); opacity: .4; margin: 0 2px;
}
.fb-adults {
  font-size: 11px; font-weight: 700; color: var(--gold-2);
  background: rgba(212,175,55,.08); padding: 2px 8px;
  border-radius: 999px; border: 1px solid rgba(212,175,55,.15);
}
.fb-links-row {
  display: flex; align-items: center; gap: 0;
}
.fb-links-row a {
  font-size: 13px; color: var(--text-2); text-decoration: none;
  padding: 4px 12px; transition: color var(--transition-fast);
  position: relative;
}
.fb-links-row a::after {
  content: ''; position: absolute; bottom: 0; left: 12px; right: 12px;
  height: 1px; background: var(--gold-2);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition-fast);
}
.fb-links-row a:hover { color: var(--gold-2); }
.fb-links-row a:hover::after { transform: scaleX(1); }
.fb-link-sep {
  width: 1px; height: 14px; background: var(--line-2);
  flex-shrink: 0;
}
.fb-back-top {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(212,175,55,.06); border: 1px solid rgba(212,175,55,.2);
  color: var(--gold-2); cursor: pointer;
  display: grid; place-items: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}
.fb-back-top:hover {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  color: #000; border-color: var(--gold-2);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px -4px rgba(212,175,55,.4);
}
.fb-back-top:active { transform: translateY(-1px); }

/* LEVEL 2: Disclaimer Card */
.fb-disclaimer-card {
  margin-top: 20px;
  display: flex; justify-content: center;
}
.fb-disclaimer-inner {
  display: flex; align-items: flex-start; gap: 12px;
  max-width: 780px; width: 100%;
  padding: 18px 24px;
  background: linear-gradient(160deg, rgba(17,17,17,.6), rgba(10,10,10,.4));
  border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 4px 16px -8px rgba(0,0,0,.3);
}
.fb-info-icon {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 8px;
  background: rgba(212,175,55,.08); border: 1px solid rgba(212,175,55,.15);
  display: grid; place-items: center; color: var(--gold-2);
  margin-top: -2px;
}
.fb-disclaimer-inner p {
  font-size: 12px; color: var(--text-3); line-height: 1.8;
  margin: 0; flex: 1;
}

/* ── Mobile: stack vertically, center ── */
@media (max-width: 768px) {
  .fb-level-1 {
    flex-direction: column; text-align: center; gap: 14px;
  }
  .fb-copyright {
    flex-wrap: wrap; justify-content: center; gap: 4px 8px;
  }
  .fb-links-row {
    flex-wrap: wrap; justify-content: center; gap: 4px;
  }
  .fb-links-row a { padding: 4px 10px; font-size: 12px; }
  .fb-link-sep { display: none; }
  .fb-back-top { margin-top: 4px; }
  .fb-disclaimer-inner { padding: 14px 18px; }
  .fb-disclaimer-inner p { font-size: 11px; line-height: 1.7; }
}
@media (max-width: 480px) {
  .foot-bottom { padding: 20px 16px 28px; }
  .fb-disclaimer-inner { flex-direction: column; gap: 8px; }
  .fb-info-icon { margin: 0 auto; }
  .fb-disclaimer-inner p { text-align: center; }
}

@media (max-width: 980px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding: 40px 20px 24px; }
  .brand-col { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .foot-grid { grid-template-columns: 1fr; gap: 24px; padding: 32px 16px 20px; }
  .foot-keywords { padding: 20px 16px 16px; }
  .foot-bottom { padding: 16px 16px 24px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PREMIUM KEYWORD HIGHLIGHTING — NextGen-style, subtle, consistent
   Reusable .kw class for SEO keyword emphasis across all pages
   ═══════════════════════════════════════════════════════════════════════════ */
.kw {
  color: var(--gold-2);
  font-weight: 600;
  background: none;
  padding: 0;
  border-radius: 0;
  text-decoration: none;
}
/* In paragraphs + lists: gold color, medium weight — natural emphasis */
.prose .kw, p .kw, li .kw, td .kw, .feat .kw {
  color: var(--gold-2);
  font-weight: 600;
  background: none;
}
/* In headings: gold color, bold — strong hierarchy */
h1 .kw, h2 .kw, h3 .kw, h4 .kw {
  background: none;
  color: var(--gold-2);
  font-weight: 700;
}
/* In hero/lead: gold, semibold */
.hero-sub .kw, .lead .kw, .hero-badge .kw {
  color: var(--gold-2);
  font-weight: 600;
  background: none;
}
/* In cards/feature-boxes: gold accent */
.card .kw, .feature-box .kw, .eeat-card .kw, .fb-icon-gold + h3 .kw {
  color: var(--gold-2);
  font-weight: 600;
}
/* In footer: gold links */
.site-footer .kw {
  color: var(--gold-2);
  font-weight: 600;
}
/* kw-strong: slightly stronger — for primary keywords in headings */
.kw-strong {
  color: var(--gold-2);
  font-weight: 700;
  background: none;
  padding: 0;
}
h1 .kw-strong, h2 .kw-strong, h3 .kw-strong {
  color: var(--gold-2);
  font-weight: 800;
}
.prose .kw-strong, p .kw-strong {
  color: var(--gold-2);
  font-weight: 700;
}
/* Links that are also keywords — underline + gold */
a.kw, a .kw {
  color: var(--gold-2);
  text-decoration: underline;
  text-decoration-color: rgba(212,175,55,.3);
  text-underline-offset: 2px;
}
a.kw:hover, a:hover .kw {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTENT BOXES — premium info/highlight panels
   ═══════════════════════════════════════════════════════════════════════════ */
.content-box {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 28px; margin: 24px 0;
  border-left: 3px solid var(--gold-3);
  position: relative;
}
.content-box h3 {
  color: #fff; font-size: 15px; margin: 12px 0 8px;
  font-family: var(--font-sans); font-weight: 700;
  padding-left: 12px; border-left: 2px solid var(--gold-3);
}
.content-box p {
  color: var(--text-2); font-size: 13px; line-height: 1.75;
  margin: 0 0 10px; padding-left: 14px;
}
.content-box p:last-child { margin-bottom: 0; }
.content-box a { color: var(--gold-2); }

/* Highlight panel (for key takeaways, important notes) */
.highlight-panel {
  background: linear-gradient(160deg, rgba(212,175,55,.06), rgba(212,175,55,.02));
  border: 1px solid rgba(212,175,55,.2); border-radius: var(--radius);
  padding: 24px 28px; margin: 28px 0;
  position: relative;
}
.highlight-panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-3));
  border-radius: var(--radius) var(--radius) 0 0;
}

/* Info box (neutral) */
.info-box {
  background: var(--surface);
  border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  padding: 18px 22px; margin: 20px 0;
  border-left: 3px solid var(--text-3);
}
.info-box p { margin: 0; font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════════════════════
   VISUAL SEPARATORS
   ═══════════════════════════════════════════════════════════════════════════ */
.separator-gold {
  width: 100%; height: 1px; margin: 40px 0;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.3), transparent);
  border: none;
}
.separator-fade {
  width: 100%; height: 1px; margin: 32px 0;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
  border: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA BAND refinement
   ═══════════════════════════════════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1408 50%, #0a0a0a 100%);
  border-top: 1px solid rgba(212,175,55,.2);
  border-bottom: 1px solid rgba(212,175,55,.2);
  padding: 56px 24px; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-2), var(--gold-3), var(--gold-2), transparent);
}
.cta-band::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-2), var(--gold-3), var(--gold-2), transparent);
}
.cta-band h2 {
  color: #fff; font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px; font-family: var(--font-display);
}
.cta-band p {
  color: var(--text-2); font-size: 15px; max-width: 600px;
  margin: 0 auto 24px; line-height: 1.6;
}
.cta-band .hero-cta {
  justify-content: center; margin-top: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   COMPARISON TABLE refinement
   ═══════════════════════════════════════════════════════════════════════════ */
.compare-agency-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  margin: 24px 0; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
.compare-agency-table th {
  padding: 16px 20px; background: linear-gradient(135deg, var(--surface-3), var(--surface-2));
  font-size: 13px; font-weight: 700; color: var(--gold-2);
  text-align: left; border-bottom: 2px solid rgba(212,175,55,.2);
}
.compare-agency-table th:first-child { color: var(--text); }
.compare-agency-table td {
  padding: 14px 20px; font-size: 14px; color: var(--text-2);
  border-bottom: 1px solid var(--line-2);
}
.compare-agency-table td.feat { font-weight: 600; color: var(--text); }
.compare-agency-table td.us {
  color: var(--gold-2); font-weight: 700;
  background: rgba(212,175,55,.04);
}
.compare-agency-table tbody tr:last-child td { border-bottom: none; }
.compare-agency-table tbody tr:hover td { background: rgba(212,175,55,.02); }

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE HERO refinement
   ═══════════════════════════════════════════════════════════════════════════ */
.page-hero {
  padding: 56px 24px 40px !important;
  max-width: 1280px; margin: 0 auto;
}
.page-hero h1 {
  color: #fff; margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.15;
}
.page-hero h1 .accent {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero .lead {
  font-size: clamp(1rem, 1.5vw, 1.1rem); color: var(--text-2);
  max-width: 760px; line-height: 1.7;
}
.page-content {
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px 64px !important;
}
@media (max-width: 768px) {
  .page-hero { padding: 40px 16px 28px !important; }
  .page-content { padding: 0 16px 40px !important; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER refinement
   ═══════════════════════════════════════════════════════════════════════════ */
.site-header {
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
  transition: box-shadow var(--transition-fast);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 12px 24px !important;
  display: flex; align-items: center; gap: 28px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--text); font-weight: 800; text-decoration: none;
  flex-shrink: 0;
}
.brand-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  display: grid; place-items: center; color: #000;
  font-family: var(--font-display); font-weight: 900; font-size: 20px;
  box-shadow: var(--shadow-gold-sm);
  flex-shrink: 0;
}
.brand-text {
  display: flex; flex-direction: column; line-height: 1;
  font-size: 16px; letter-spacing: -.02em;
  font-family: var(--font-display); font-weight: 800;
}
.brand-text small {
  font-size: 9px; font-weight: 600; color: var(--gold-2);
  letter-spacing: .18em; text-transform: uppercase;
  margin-top: 3px; font-family: var(--font-sans);
}
.main-nav {
  display: flex; gap: 28px; margin-left: auto; align-items: center;
}
.nav-link {
  color: var(--text-2); font-weight: 600; font-size: 14px;
  position: relative; padding: 6px 0; text-decoration: none;
  transition: color var(--transition-fast);
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--gold-2), var(--gold-3));
  border-radius: 2px; transform: scaleX(0); transition: transform var(--transition-fast);
  transform-origin: left;
}
.nav-link:hover, .nav-link.active { color: var(--gold-2); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.header-cta { display: flex; gap: 10px; align-items: center; }
@media (max-width: 1200px) {
  .main-nav { gap: 20px; }
  .nav-link { font-size: 13px; }
}
@media (max-width: 980px) {
  .main-nav, .header-cta { display: none !important; }
  .menu-toggle { display: flex !important; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   AREA CHIPS + TAG PILLS
   ═══════════════════════════════════════════════════════════════════════════ */
.area-chips-large, .link-grid {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 24px;
}
.tag-pill {
  display: inline-block; padding: 8px 16px;
  background: var(--surface-2); border: 1px solid var(--line-2);
  border-radius: 999px; font-size: 13px; color: var(--text-2);
  text-decoration: none; transition: all var(--transition-fast);
  font-weight: 500;
}
.tag-pill:hover {
  background: rgba(212,175,55,.1); border-color: var(--gold-3);
  color: var(--gold-2); transform: translateY(-2px);
  box-shadow: var(--shadow-gold-sm);
}
.link-grid.cols-4 {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CARD GRID + PROFILE GRID
   ═══════════════════════════════════════════════════════════════════════════ */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px; margin: 24px 0;
}
.profile-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TEXT CENTER + SPACING UTILITIES
   ═══════════════════════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.mt-8 { margin-top: 32px; }
.mt-4 { margin-top: 16px; }

/* ═══════════════════════════════════════════════════════════════════════════
   HOMEPAGE DEEP UI REFINEMENT — section differentiation + premium polish
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Trust strip (between hero and stats) ── */
.trust-strip {
  background: linear-gradient(90deg, rgba(212,175,55,.06), rgba(212,175,55,.03), rgba(212,175,55,.06));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--gold-2);
  font-weight: 600;
  letter-spacing: .02em;
}

/* ── Stats bar premium ── */
.stats-bar {
  background: linear-gradient(180deg, #050505, #0a0a0a) !important;
  border-top: 1px solid var(--line) !important;
  border-bottom: 1px solid var(--line) !important;
  padding: 0 !important;
  position: relative;
}
.stats-bar::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.3), transparent);
}
.stats-bar .stat {
  padding: 28px 20px !important;
  border-right: 1px solid var(--line-2);
  transition: background var(--transition-fast);
  position: relative;
}
.stats-bar .stat:last-child { border-right: none; }
.stats-bar .stat::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--gold-2); transition: width var(--transition);
}
.stats-bar .stat:hover::after { width: 40px; }
.stats-bar .stat:hover { background: rgba(212,175,55,.04); }
.stats-bar .stat .num {
  font-size: 32px !important; font-weight: 800; color: var(--gold-2);
  font-family: var(--font-display); line-height: 1; margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(212,175,55,.15);
}
.stats-bar .stat .lbl {
  font-size: 11px !important; color: var(--text-3); font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
}
@media (max-width: 768px) {
  .stats-bar { flex-wrap: wrap !important; }
  .stats-bar .stat { flex: 1 1 45% !important; border-bottom: 1px solid var(--line-2); padding: 20px 12px !important; }
  .stats-bar .stat .num { font-size: 24px !important; }
}

/* ── Section differentiation: alternate backgrounds ── */
/* Odd page-content sections: subtle surface tint */

/* Featured profiles section (first) gets a distinct top accent */
main > section.page-content:nth-child(3) {
  position: relative;
}
main > section.page-content:nth-child(4)::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-3), var(--gold-2));
}

/* ── Profile sections: differentiate the 4 repeating sections ── */
/* Section 1 (Top Verified, nth-child 11): default style */
/* Section 2 (Most Booked, nth-child 12): gold accent border */
/* Section 3 (New Profiles, nth-child 13): rose tint */
/* Section 4 (VIP, nth-child 14): gold glow */
main > section.page-content:nth-child(12) .profile-card {
  border-color: rgba(212,175,55,.25) !important;
  border-top: 2px solid rgba(212,175,55,.35) !important;
}
main > section.page-content:nth-child(12) .profile-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  opacity: 0; transition: opacity var(--transition);
}
main > section.page-content:nth-child(12) .profile-card:hover::before { opacity: 1; }

main > section.page-content:nth-child(13) {
  background: linear-gradient(180deg, rgba(17,17,17,.3), transparent);
}
main > section.page-content:nth-child(13) .profile-card {
  border-color: rgba(232,180,160,.2) !important;
  border-top: 2px solid rgba(232,180,160,.15) !important;
}
main > section.page-content:nth-child(13) .profile-card:hover {
  border-color: rgba(232,180,160,.3) !important;
}

main > section.page-content:nth-child(14) {
  background: linear-gradient(180deg, rgba(10,10,5,.5), transparent);
}
main > section.page-content:nth-child(14) .profile-card {
  border-color: rgba(212,175,55,.3) !important;
  box-shadow: 0 0 20px -10px rgba(212,175,55,.15) !important;
  border-top: 2px solid var(--gold-3) !important;
}
main > section.page-content:nth-child(14) .profile-card:hover {
  box-shadow: var(--shadow-lg), 0 0 30px -8px rgba(212,175,55,.2) !important;
}

/* ── Profile grid: better card sizing ── */
.profile-grid {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
  gap: 18px;
}
@media (max-width: 980px) {
  .profile-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)) !important; gap: 14px; }
}
@media (max-width: 600px) {
  .profile-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
}

/* ── Profile card image: prevent cropping ── */
.profile-thumb {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--surface-2), var(--surface-3));
  position: relative;
  overflow: hidden;
}
.profile-thumb .profile-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform var(--transition-slow);
}
.profile-card:hover .profile-thumb .profile-img {
  transform: scale(1.05);
}

/* ── Service cards: differentiate from profile cards ── */
main > section.page-content:nth-child(6) .card-grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
  gap: 20px;
}
main > section.page-content:nth-child(6) .card {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-top: 3px solid transparent;
  transition: all var(--transition);
}
.page-content:nth-of-type(2) .card:hover {
  border-top-color: var(--gold-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
main > section.page-content:nth-child(6) .card .card-icon {
  background: linear-gradient(135deg, rgba(212,175,55,.18), rgba(212,175,55,.06));
  border: 1px solid rgba(212,175,55,.25);
}

/* ── Location cards: wider, better spacing ── */
main > section.page-content:nth-child(7) .link-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
  gap: 14px;
}
main > section.page-content:nth-child(7) .link-card {
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold-3);
  padding: 18px 22px !important;
  transition: all var(--transition);
}
.page-content:nth-of-type(3) .link-card:hover {
  border-left-color: var(--gold-2);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
main > section.page-content:nth-child(7) .link-card .lc-title {
  font-size: 16px;
  display: flex; align-items: center; gap: 8px;
}
main > section.page-content:nth-child(7) .link-card .lc-title::before {
  content: '📍'; font-size: 14px;
}

/* ── EEAT section: premium background ── */
.eeat-section {
  background: linear-gradient(180deg, transparent, rgba(17,17,17,.5), transparent) !important;
  padding: 64px 24px !important;
  position: relative;
}
.eeat-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.eeat-grid {
  max-width: 1280px; margin: 32px auto 0;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
  gap: 20px;
}
.eeat-card {
  background: linear-gradient(160deg, var(--surface), var(--surface-2)) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  padding: 32px 28px !important;
  position: relative; overflow: hidden;
}
.eeat-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-3));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.eeat-card:hover::before { transform: scaleX(1); }
.eeat-card .eeat-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(212,175,55,.15), rgba(212,175,55,.05));
  border: 1px solid rgba(212,175,55,.2);
  display: grid; place-items: center; color: var(--gold-2);
  margin-bottom: 20px;
}

/* ── Comparison section: premium table container ── */
.comparison-section {
  background: linear-gradient(180deg, rgba(17,17,17,.3), transparent) !important;
  padding: 56px 24px !important;
}
.comparison-section .page-content {
  padding: 0 !important;
}
.compare-agency-table {
  margin: 32px 0 !important;
}

/* ── Content section (mega content): premium scannable layout ── */
.content-section {
  padding: 64px 24px !important;
  background: linear-gradient(180deg, transparent, rgba(10,10,10,.3), transparent) !important;
}
.content-section > div {
  max-width: 1280px; margin: 0 auto;
}
.content-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  color: #fff; margin: 48px 0 20px !important;
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
  position: relative;
}
.content-section h2::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 56px; height: 2px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-3));
  border-radius: 2px;
}
.content-section h3 {
  font-size: 16px !important; color: #fff; font-weight: 700;
  margin: 24px 0 10px; padding-left: 12px;
  border-left: 3px solid var(--gold-3);
}
.content-section p {
  font-size: 14px; line-height: 1.75; color: var(--text-2);
  margin-bottom: 14px;
}
.content-section .content-box {
  margin: 28px 0 !important;
  padding: 24px 28px !important;
}
.content-section .content-box h3 {
  border-left: 2px solid var(--gold-2);
  padding-left: 14px;
  margin-top: 0;
}

/* ── Testimonial slider section background ── */
.testimonial-slider {
  background: linear-gradient(180deg, transparent, rgba(17,17,17,.4), transparent) !important;
  padding: 64px 24px !important;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ── FAQ section premium ── */
.faq-section {
  padding: 64px 24px !important;
  background: linear-gradient(180deg, rgba(10,10,10,.2), transparent) !important;
}
.faq-section h2 {
  margin-bottom: 16px !important;
}
.faq-list {
  gap: 14px !important;
}
.faq-item {
  border-radius: var(--radius-sm) !important;
  transition: all var(--transition) !important;
}
.faq-item:hover {
  border-color: rgba(212,175,55,.2) !important;
}
.faq-item[open] {
  border-color: rgba(212,175,55,.35) !important;
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(212,175,55,.1);
}
.faq-item summary {
  padding: 22px 28px !important;
  font-size: 16px !important;
}

/* ── CTA band premium (between profile sections and mega content) ── */
.cta-band {
  margin: 0 !important;
  padding: 56px 24px !important;
}
.cta-band h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem) !important;
  margin-bottom: 14px !important;
}
.cta-band p {
  font-size: 16px !important; margin-bottom: 28px !important;
}

/* ── Section head: universal premium ── */
.section-head {
  margin-bottom: 40px !important;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem) !important;
  margin-bottom: 14px !important;
}
.section-head p {
  font-size: 15px !important; max-width: 680px; margin: 0 auto;
}
.divider-gold {
  width: 56px !important; height: 3px !important;
  margin: 0 auto 18px !important;
  border-radius: 2px;
}

/* ── Related grid (internal linking sections) ── */
.related-grid, .related-searches {
  max-width: 1280px; margin: 40px auto !important;
  padding: 0 24px;
}
.related-grid h2, .related-searches h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: #fff; margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
}

/* ── Text-center utility for "View All" buttons ── */
.text-center {
  text-align: center; margin-top: 36px;
}

/* ── Mobile: section spacing ── */
@media (max-width: 768px) {
  .eeat-section, .comparison-section, .content-section, .testimonial-slider, .faq-section {
    padding: 40px 16px !important;
  }
  .cta-band { padding: 40px 16px !important; }
  .stats-bar .stat { padding: 18px 12px !important; }
  .section-head { margin-bottom: 28px !important; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PREMIUM FOOTER — brand mark, trust badges, social icons, bottom links
   ═══════════════════════════════════════════════════════════════════════════ */
.foot-brand-row {
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
}
.foot-brand-mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  display: grid; place-items: center; color: #000;
  font-family: var(--font-display); font-weight: 900; font-size: 22px;
  box-shadow: var(--shadow-gold-sm); flex-shrink: 0;
}
.brand-col h3 {
  font-family: var(--font-display); font-size: 18px; font-weight: 800;
  color: #fff; margin-bottom: 2px; line-height: 1.2;
}
.foot-brand-tagline {
  font-size: 10px; font-weight: 600; color: var(--gold-2);
  letter-spacing: .15em; text-transform: uppercase;
  margin: 0 !important;
}
.foot-brand-desc {
  font-size: 13px; color: var(--text-3); line-height: 1.7;
  margin-bottom: 18px; max-width: 340px;
}
.foot-trust-badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px;
}
.ft-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; font-size: 11px; font-weight: 700;
  color: var(--gold-2); background: rgba(212,175,55,.06);
  border: 1px solid rgba(212,175,55,.15); border-radius: 999px;
  letter-spacing: .02em;
}
.ft-badge svg { color: var(--gold-2); }
.foot-social {
  display: flex; gap: 10px; margin-top: 16px;
}
.fs-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--surface-3); border: 1px solid var(--line-2);
  color: var(--text-2); text-decoration: none;
  transition: all var(--transition-fast);
}
.fs-icon:hover { transform: translateY(-2px); }
.fs-wa:hover { background: #25d366; color: #fff; border-color: #25d366; }
.fs-tg:hover { background: #0088cc; color: #fff; border-color: #0088cc; }
.fs-call:hover { background: linear-gradient(135deg, var(--gold-2), var(--gold-3)); color: #000; border-color: var(--gold-2); }

/* (Old foot-bottom-inner/links CSS removed — replaced by .fb-level-1 design above) */
@media (max-width: 600px) {
  .foot-brand-row { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS GRID — homepage client reviews
   ═══════════════════════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 18px;
  margin: 24px 0;
}
.testimonial-card {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 8px; right: 20px;
  font-size: 60px; line-height: 1;
  color: rgba(212,175,55,.1);
  font-family: var(--font-display); font-weight: 900;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212,175,55,.25);
  box-shadow: var(--shadow-md);
}
.testimonial-card .t-stars {
  color: var(--gold-2); font-size: 16px; letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-card .t-quote {
  font-size: 14px; line-height: 1.7; color: var(--text-2);
  font-style: italic; margin-bottom: 14px;
}
.testimonial-card .t-author {
  font-size: 12px; font-weight: 700; color: var(--gold-2);
  letter-spacing: .02em;
}
@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
  .testimonial-card { padding: 18px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PREMIUM FOOTER — luxury, conversion-focused, glassmorphism
   ═══════════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: linear-gradient(180deg, #000 0%, #050505 40%, #0a0a0a 100%);
  position: relative; margin-top: 56px;
  border-top: 1px solid var(--line);
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(212,175,55,.5) 50%, transparent 95%);
}
.footer-top {
  max-width: 1320px; margin: 0 auto; padding: 56px 24px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr 1.5fr;
  gap: 36px; align-items: start;
}

/* Brand column */
.foot-brand-col { max-width: 340px; }
.foot-brand-row {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.foot-brand-mark {
  width: 48px; height: 48px; border-radius: 13px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  display: grid; place-items: center; color: #000;
  font-family: var(--font-display); font-weight: 900; font-size: 24px;
  box-shadow: 0 8px 24px -6px rgba(212,175,55,.4), 0 0 0 1px rgba(212,175,55,.2);
  flex-shrink: 0;
}
.foot-brand-name {
  font-family: var(--font-display); font-size: 19px; font-weight: 800;
  color: #fff; margin-bottom: 2px; line-height: 1.2;
}
.foot-brand-tagline {
  font-size: 10px; font-weight: 600; color: var(--gold-2);
  letter-spacing: .15em; text-transform: uppercase; margin: 0;
}
.foot-brand-desc {
  font-size: 13px; color: var(--text-3); line-height: 1.7;
  margin-bottom: 18px;
}

/* Stats row */
.foot-stats {
  display: flex; gap: 0; margin-bottom: 18px;
  background: rgba(255,255,255,.02); border: 1px solid var(--line);
  border-radius: 12px; overflow: hidden;
}
.foot-stat {
  flex: 1; text-align: center; padding: 12px 8px;
  border-right: 1px solid var(--line-2);
}
.foot-stat:last-child { border-right: none; }
.foot-stat .fs-num {
  display: block; font-size: 22px; font-weight: 800;
  color: var(--gold-2); font-family: var(--font-display);
  line-height: 1; margin-bottom: 4px;
}
.foot-stat .fs-num small { font-size: 12px; opacity: .6; }
.foot-stat .fs-lbl {
  font-size: 10px; color: var(--text-3); font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
}

/* Trust badges */
.foot-trust-badges {
  display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px;
}
.ft-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 11px; font-size: 10px; font-weight: 700;
  color: var(--gold-2); background: rgba(212,175,55,.06);
  border: 1px solid rgba(212,175,55,.15); border-radius: 999px;
  letter-spacing: .03em;
}
.ft-badge svg { color: var(--gold-2); }

/* Social icons */
.foot-social { display: flex; gap: 10px; }
.fs-icon {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.03); border: 1px solid var(--line-2);
  color: var(--text-2); text-decoration: none;
  transition: all var(--transition-fast);
  backdrop-filter: blur(6px);
}
.fs-icon:hover { transform: translateY(-3px); }
.fs-wa:hover { background: #25d366; color: #fff; border-color: #25d366; box-shadow: 0 6px 18px -4px rgba(37,211,102,.4); }
.fs-tg:hover { background: #0088cc; color: #fff; border-color: #0088cc; box-shadow: 0 6px 18px -4px rgba(0,136,204,.4); }
.fs-mail:hover { background: linear-gradient(135deg, var(--gold-2), var(--gold-3)); color: #000; border-color: var(--gold-2); box-shadow: 0 6px 18px -4px rgba(212,175,55,.4); }
.fs-call:hover { background: #ef4444; color: #fff; border-color: #ef4444; box-shadow: 0 6px 18px -4px rgba(239,68,68,.4); }

/* Column titles */
.foot-col-title {
  display: flex; align-items: center; gap: 8px;
  color: var(--gold-2); margin-bottom: 16px; font-size: 11px;
  text-transform: uppercase; letter-spacing: .14em;
  font-family: var(--font-sans); font-weight: 700;
  padding-bottom: 10px; border-bottom: 1px solid var(--line);
  position: relative;
}
.foot-col-title svg { color: var(--gold-2); flex-shrink: 0; }
.foot-col-title::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 24px; height: 1px; background: var(--gold-2);
}
.foot-col-title-2 { margin-top: 24px; }

/* Link lists */
.foot-link-list { list-style: none; }
.foot-link-list li { margin-bottom: 7px; }
.foot-link-list a {
  color: var(--text-2); font-size: 13px; text-decoration: none;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: inline-block; position: relative; padding-left: 0;
}
.foot-link-list a::before {
  content: '›'; position: absolute; left: -14px;
  color: var(--gold-3); opacity: 0; transition: opacity var(--transition-fast), left var(--transition-fast);
}
.foot-link-list a:hover { color: var(--gold-2); padding-left: 14px; }
.foot-link-list a:hover::before { opacity: 1; left: 0; }

/* Contact column */
.foot-contact-info {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px;
}
.fci-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--text-2); text-decoration: none;
  transition: color var(--transition-fast);
  padding: 6px 0;
}
.fci-item svg { color: var(--gold-2); flex-shrink: 0; }
.fci-item:hover { color: var(--gold-2); }
.fci-hours { color: var(--text-3); font-size: 12px; }

/* Newsletter */
.foot-newsletter {
  background: rgba(212,175,55,.04); border: 1px solid rgba(212,175,55,.12);
  border-radius: 12px; padding: 16px;
}
.fn-text {
  font-size: 12px; color: var(--text-2); margin-bottom: 10px; font-weight: 500;
}
.fn-form {
  display: flex; gap: 6px;
}
.fn-form input {
  flex: 1; background: var(--bg-2); border: 1px solid var(--line-2);
  border-radius: 8px; padding: 10px 12px; color: var(--text);
  font-size: 13px; font-family: var(--font-sans);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.fn-form input::placeholder { color: var(--text-3); }
.fn-form input:focus {
  outline: none; border-color: var(--gold-3);
  box-shadow: 0 0 0 3px rgba(212,175,55,.1);
}
.fn-form button {
  width: 40px; height: 40px; border-radius: 8px; border: none;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  color: #000; cursor: pointer; display: grid; place-items: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.fn-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px -2px rgba(212,175,55,.4);
}
.fn-success {
  font-size: 12px; color: #4ade80; margin-top: 8px; font-weight: 600;
}

/* Why Choose Us strip */
.foot-why-choose {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 36px; padding-top: 32px;
  border-top: 1px solid var(--line);
}
.fwc-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,.02); border: 1px solid var(--line);
  border-radius: 12px; transition: all var(--transition-fast);
}
.fwc-item:hover {
  border-color: rgba(212,175,55,.25);
  background: rgba(212,175,55,.04);
  transform: translateY(-2px);
}
.fwc-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(212,175,55,.15), rgba(212,175,55,.05));
  border: 1px solid rgba(212,175,55,.2);
  display: grid; place-items: center; color: var(--gold-2);
  flex-shrink: 0;
}
.fwc-item strong {
  display: block; font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 2px;
}
.fwc-item span {
  font-size: 11px; color: var(--text-3); line-height: 1.4;
}

/* Location chips */
.foot-keywords {
  max-width: 1320px; margin: 0 auto;
  padding: 28px 24px 20px;
  border-top: 1px solid var(--line-2);
}
.foot-keywords-title {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; color: var(--gold-2);
  letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 14px; font-family: var(--font-sans);
}
.foot-keywords-title svg { color: var(--gold-2); }
.foot-keywords-list {
  display: flex; flex-wrap: wrap; gap: 7px;
}
.foot-keywords-list a {
  display: inline-block; padding: 5px 12px;
  background: var(--surface-2); border: 1px solid var(--line-2);
  border-radius: 999px; font-size: 11px; color: var(--text-2);
  text-decoration: none; transition: all var(--transition-fast);
  font-weight: 500;
}
.foot-keywords-list a:hover {
  background: rgba(212,175,55,.1); border-color: var(--gold-3);
  color: var(--gold-2); transform: translateY(-1px);
}

/* Bottom bar */
.foot-bottom {
  max-width: 1320px; margin: 0 auto;
  padding: 20px 24px 28px;
  border-top: 1px solid var(--line-2);
}
.foot-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 8px;
}
.foot-bottom-inner p {
  font-size: 12px; color: var(--text-3); margin: 0;
}
.foot-bottom-links {
  display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
}
.foot-bottom-links a {
  font-size: 12px; color: var(--text-3); text-decoration: none;
  transition: color var(--transition-fast);
}
.foot-bottom-links a:hover { color: var(--gold-2); }
.foot-back-top {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; font-size: 11px; font-weight: 600;
  color: var(--gold-2); background: rgba(212,175,55,.06);
  border: 1px solid rgba(212,175,55,.2); border-radius: 999px;
  cursor: pointer; font-family: var(--font-sans);
  transition: all var(--transition-fast);
}
.foot-back-top:hover {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  color: #000; border-color: var(--gold-2);
  transform: translateY(-1px);
}
.disclaimer {
  font-size: 11px; color: var(--text-3); opacity: .7;
  max-width: 760px; margin: 8px auto 0; line-height: 1.6; text-align: center;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .foot-brand-col { grid-column: 1 / -1; max-width: 100%; }
  .foot-contact-col { grid-column: 1 / -1; }
  .foot-why-choose { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-top { padding: 40px 16px 24px; }
  .foot-why-choose { grid-template-columns: 1fr; gap: 12px; }
  .foot-keywords { padding: 20px 16px 16px; }
  .foot-bottom { padding: 16px 16px 24px; }
  .foot-bottom-inner { flex-direction: column; text-align: center; gap: 10px; }
  .foot-stats { gap: 0; }
  .foot-stat { padding: 10px 6px; }
  .foot-stat .fs-num { font-size: 18px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .foot-brand-row { justify-content: center; text-align: center; }
  .foot-stats { max-width: 320px; margin-left: auto; margin-right: auto; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   TESTIMONIAL CAROUSEL — multi-card, responsive, infinite loop
   ═══════════════════════════════════════════════════════════════════════════ */
.testimonial-section {
  max-width: 1280px; margin: 0 auto;
  padding: 64px 24px;
  background: linear-gradient(180deg, transparent, rgba(17,17,17,.4), transparent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ts-header {
  text-align: center; max-width: 680px; margin: 0 auto 36px;
}
.ts-header .eyebrow {
  font-size: 11px; font-weight: 700; color: var(--gold-2);
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 10px;
}
.ts-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem); color: #fff;
  margin-bottom: 12px; font-family: var(--font-display);
}
.ts-header .divider-gold {
  width: 56px; height: 3px; margin: 0 auto 16px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-3));
}
.ts-intro {
  font-size: 15px; color: var(--text-2); line-height: 1.6;
}

/* Carousel layout */
.ts-carousel {
  position: relative;
  display: flex; align-items: center; gap: 12px;
}
.ts-viewport {
  overflow: hidden; flex: 1;
  cursor: grab;
}
.ts-viewport:active { cursor: grabbing; }
.ts-track {
  display: flex; gap: 18px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.ts-track.no-transition { transition: none; }

/* Nav buttons */
.ts-nav {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0,0,0,.7); backdrop-filter: blur(8px);
  border: 1px solid var(--line); color: var(--gold-2);
  cursor: pointer; display: grid; place-items: center;
  flex-shrink: 0; z-index: 5;
  transition: all var(--transition-fast);
}
.ts-nav:hover {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  color: #000; border-color: var(--gold-2);
  transform: scale(1.08);
}
.ts-nav:disabled { opacity: .3; cursor: default; transform: none; }

/* Testimonial card */
.ts-card {
  flex: 0 0 calc((100% - 36px) / 3);
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; position: relative; overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.ts-card::before {
  content: '"';
  position: absolute; top: 8px; right: 16px;
  font-size: 60px; line-height: 1;
  color: rgba(212,175,55,.08);
  font-family: var(--font-display); font-weight: 900;
  pointer-events: none;
}
.ts-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,.25);
  box-shadow: var(--shadow-md);
}
.ts-card-top {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.ts-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  display: grid; place-items: center; color: #000;
  font-family: var(--font-display); font-weight: 900; font-size: 18px;
  flex-shrink: 0;
}
.ts-meta { flex: 1; min-width: 0; }
.ts-author {
  font-size: 15px; font-weight: 700; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ts-loc {
  font-size: 12px; color: var(--text-3); margin-top: 2px;
}
.ts-verified {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.2);
  display: grid; place-items: center; color: #4ade80;
  flex-shrink: 0;
}
.ts-stars {
  color: var(--gold-2); font-size: 16px; letter-spacing: 2px;
  margin-bottom: 12px;
}
.ts-quote {
  font-size: 14px; line-height: 1.7; color: var(--text-2);
  font-style: italic; margin-bottom: 14px; flex: 1;
}
.ts-readmore {
  background: none; border: none; color: var(--gold-2);
  font-size: 12px; font-weight: 600; cursor: pointer;
  padding: 0; font-family: var(--font-sans);
  text-decoration: underline; text-decoration-color: rgba(212,175,55,.3);
  text-underline-offset: 2px;
}
.ts-readmore:hover { text-decoration-color: var(--gold-2); }
.ts-date {
  font-size: 11px; color: var(--text-3); font-weight: 600;
  letter-spacing: .04em;
}

/* Dots */
.ts-dots {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 28px;
}
.ts-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(212,175,55,.2); border: none;
  cursor: pointer; padding: 0; transition: all var(--transition-fast);
}
.ts-dot.active {
  background: var(--gold-2); width: 28px; border-radius: 4px;
}
.ts-dot:hover { background: rgba(212,175,55,.5); }

/* Responsive: 2 cards on tablet, 1 on mobile */
@media (max-width: 980px) {
  .ts-card { flex: 0 0 calc((100% - 18px) / 2); }
}
@media (max-width: 600px) {
  .ts-card { flex: 0 0 100%; }
  .testimonial-section { padding: 40px 16px; }
  .ts-nav { width: 38px; height: 38px; }
  .ts-card { padding: 18px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   KEYWORD CHIPS — homepage keyword hub sections
   ═══════════════════════════════════════════════════════════════════════════ */
.keyword-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.kw-chip {
  display: inline-block;
  padding: 8px 14px;
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-2);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-fast);
}
.kw-chip:hover {
  background: rgba(212,175,55,.1);
  border-color: var(--gold-3);
  color: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-sm);
}
@media (max-width: 600px) {
  .kw-chip { font-size: 12px; padding: 6px 12px; }
}
