/* ═══════════════════════════════════════════════════════════
   WP REALTY — Premium Redesign
═══════════════════════════════════════════════════════════ */

:root {
  --primary-dark: #0A0A0F;
  --secondary-dark: #13131A;
  --surface-dark: #1C1C24;
  --gold-1: #B8860B;
  --gold-2: #D4AF37;
  --gold-3: #F5DEB3;
  --warm-white: #FAF8F5;
  --text-main: #EAE6DF;
  --text-muted: #A09D96;
  
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --gold-grad: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 50%, var(--gold-3) 100%);
  
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 20px;
  
  --font-serif: 'Playfair Display', serif;
  --font-cormorant: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
  
  --transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--primary-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }

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

.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.shimmer {
  position: relative; overflow: hidden;
}
.shimmer::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  transition: 0.5s;
}
.shimmer:hover::after { left: 150%; }

.gold-separator {
  height: 1px; width: 100%;
  background: linear-gradient(90deg, transparent 0%, var(--gold-2) 50%, transparent 100%);
  opacity: 0.2;
}

/* ─── Typography & Shared Sections ─── */
.section-tag {
  display: inline-block; font-family: var(--font-sans); font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-2); border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 24px;
}
.section-title {
  font-family: var(--font-cormorant); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500; color: var(--warm-white); line-height: 1.1;
  margin-bottom: 24px; letter-spacing: 0.02em;
}
.section-title em { font-style: italic; color: var(--gold-2); }
.section-sub {
  font-size: 1.1rem; color: var(--text-muted); max-width: 650px;
  margin-bottom: 64px; line-height: 1.8;
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold-grad); color: var(--primary-dark);
  font-family: var(--font-sans); font-weight: 600; font-size: 0.95rem;
  padding: 16px 36px; border-radius: 100px; letter-spacing: 0.05em;
  transition: var(--transition); text-transform: uppercase;
}
.btn-primary:hover { box-shadow: 0 0 24px rgba(212, 175, 55, 0.4); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold-2); border: 1px solid var(--gold-2);
  font-family: var(--font-sans); font-weight: 600; font-size: 0.9rem;
  padding: 12px 28px; border-radius: 100px; text-transform: uppercase;
  letter-spacing: 0.05em; transition: var(--transition);
}
.btn-outline:hover { background: var(--gold-2); color: var(--primary-dark); }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 500; font-size: 0.95rem; color: var(--warm-white);
  border: 1px solid rgba(250,248,245,0.25); border-radius: 100px;
  padding: 15px 32px; transition: var(--transition); text-transform: uppercase;
  letter-spacing: 0.05em; backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--gold-2); color: var(--gold-2); background: rgba(212,175,55,0.08); }
.btn-full { width: 100%; }

/* ─── Navbar ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all var(--transition); padding: 20px 0;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  padding: 12px 0; background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(16px); border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 40px; height: 40px; }
.logo-main { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; line-height: 1; letter-spacing: 0.02em; color: var(--warm-white); }
.logo-wp { color: var(--gold-2); }
.logo-tagline { font-family: var(--font-sans); font-size: 0.55rem; font-weight: 600; letter-spacing: 0.3em; color: var(--text-muted); margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a { font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); transition: color var(--transition); }
.nav-links a:hover { color: var(--gold-2); }
.nav-cta { border: 1px solid rgba(212, 175, 55, 0.5); padding: 10px 24px; border-radius: 100px; color: var(--gold-2) !important; }
.nav-cta:hover { background: var(--gold-2); color: var(--primary-dark) !important; }

/* ─── Hero ─── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7) contrast(1.1); transform: scale(1.05); animation: hero-zoom 20s linear infinite alternate; }
@keyframes hero-zoom { 0% { transform: scale(1.05); } 100% { transform: scale(1.15); } }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle at center, transparent 0%, var(--primary-dark) 100%), linear-gradient(180deg, rgba(10,10,15,0.4) 0%, var(--primary-dark) 100%); z-index: 1; }
.hero-particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.hero-particles::before, .hero-particles::after {
  content: ''; position: absolute; width: 4px; height: 4px; background: var(--gold-2); border-radius: 50%; box-shadow: 0 0 12px 2px var(--gold-2);
  animation: float-particle 15s linear infinite; opacity: 0.5;
}
.hero-particles::before { top: 20%; left: 10%; }
.hero-particles::after { bottom: 30%; right: 15%; animation-duration: 20s; animation-direction: reverse; }
@keyframes float-particle { 0% { transform: translate(0, 0); } 50% { transform: translate(100px, -100px); } 100% { transform: translate(0, 0); } }

.hero-content { position: relative; z-index: 2; padding: 160px 0 80px; max-width: 800px; }
.hero-badge { display: inline-flex; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-2); border: 1px solid rgba(212, 175, 55, 0.3); border-radius: 100px; padding: 8px 20px; margin-bottom: 32px; background: var(--glass-bg); backdrop-filter: blur(10px); }
.hero-headline { font-family: var(--font-cormorant); font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 600; color: var(--warm-white); line-height: 1.05; margin-bottom: 24px; }
.hero-sub { font-size: 1.15rem; color: rgba(250, 248, 245, 0.7); max-width: 600px; line-height: 1.7; margin-bottom: 48px; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; margin-bottom: 64px; }
.play-btn-wrapper { display: flex; align-items: center; gap: 16px; color: var(--warm-white); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.1em; font-weight: 500; }
.play-btn { width: 56px; height: 56px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; transition: var(--transition); background: rgba(255,255,255,0.05); backdrop-filter: blur(5px); }
.play-btn svg { width: 20px; height: 20px; fill: var(--warm-white); margin-left: 4px; }
.play-btn-wrapper:hover .play-btn { border-color: var(--gold-2); background: var(--gold-2); }
.play-btn-wrapper:hover .play-btn svg { fill: var(--primary-dark); }

.hero-stats-glass { display: flex; gap: 40px; padding: 32px 48px; background: var(--glass-bg); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); max-width: max-content; }
.stat-num, .stat-plus { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 600; color: var(--gold-2); line-height: 1; }
.stat-label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-top: 8px; }
.stat-divider { width: 1px; background: var(--glass-border); }
.scroll-line { position: absolute; bottom: 0; left: 50%; width: 1px; height: 80px; background: linear-gradient(to bottom, var(--gold-2), transparent); animation: scroll-drop 2s infinite; }
@keyframes scroll-drop { 0% { transform: scaleY(0); transform-origin: top; opacity: 1; } 50% { transform: scaleY(1); transform-origin: top; opacity: 1; } 50.1% { transform: scaleY(1); transform-origin: bottom; opacity: 1; } 100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; } }

/* ─── Partners Bar ─── */
.partners-bar { padding: 40px 0; border-bottom: 1px solid var(--glass-border); background: var(--secondary-dark); text-align: center; }
.partners-title { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--text-muted); margin-bottom: 24px; }
.partners-logos { display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; }
.partner-logo { font-family: var(--font-serif); font-size: 1.4rem; color: #555; font-weight: 600; transition: color var(--transition); cursor: default; }
.partner-logo:hover { color: var(--text-muted); }

/* ─── Why Us ─── */
.why-section { padding: 120px 0; background: var(--warm-white); }
.why-section .section-title { color: var(--primary-dark); }
.why-section .section-sub { color: #555; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.glass-panel { background: #fff; border: 1px solid rgba(0,0,0,0.05); border-radius: var(--radius-lg); padding: 48px 32px; position: relative; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: var(--transition); }
.glass-panel:hover { transform: translateY(-8px); background: #fafafa; box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.glow-border { position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity var(--transition); }
.glow-border::before { content: ''; position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px; background: conic-gradient(from 0deg, transparent, var(--gold-2), transparent); animation: spin-glow 4s linear infinite; z-index: -1; border-radius: inherit; }
.glass-panel:hover .glow-border { opacity: 0.5; }
@keyframes spin-glow { to { transform: rotate(360deg); } }
.trust-icon { width: 48px; height: 48px; margin-bottom: 24px; }
.trust-title { font-family: var(--font-cormorant); font-size: 1.8rem; color: var(--primary-dark); margin-bottom: 16px; font-weight: 600; }
.trust-desc { font-size: 0.95rem; color: #555; line-height: 1.7; }

/* ─── Services Section ─── */
.services-section {
  padding: 120px 0;
  background: var(--secondary-dark);
  position: relative;
}
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212,175,55,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212,175,55,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.services-header { text-align: center; margin-bottom: 64px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 44px 28px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 2px;
  background: var(--gold-grad);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.4s, width 0.4s;
}
.service-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(212, 175, 55, 0.06);
}
.service-card:hover::before {
  opacity: 1; width: 100%;
}
.service-icon-wrap {
  width: 72px; height: 72px;
  margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.15);
}
.service-icon-wrap svg {
  width: 32px; height: 32px;
}
.service-title {
  font-family: var(--font-cormorant);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.service-tags span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-2);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 100px;
  padding: 4px 12px;
  background: rgba(212, 175, 55, 0.04);
  transition: var(--transition);
}
.service-card:hover .service-tags span {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.08);
}


/* ─── Offerings ─── */
.offer-section { padding: 120px 0; background: var(--primary-dark); }
.offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.offer-card { background: var(--secondary-dark); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--glass-border); transition: var(--transition); }
.offer-card:hover { border-color: rgba(212, 175, 55, 0.3); transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.offer-img-wrap { position: relative; height: 320px; overflow: hidden; }
.offer-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); filter: contrast(1.1) brightness(0.8); }
.offer-card:hover .offer-img { transform: scale(1.05); }
.offer-img-overlay-mesh { position: absolute; inset: 0; background: linear-gradient(to top, var(--secondary-dark) 0%, transparent 80%), radial-gradient(circle at top right, rgba(212,175,55,0.1), transparent 50%); }
.offer-chip { position: absolute; top: 24px; left: 24px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--primary-dark); background: var(--gold-grad); border-radius: 100px; padding: 6px 16px; }
.offer-body { padding: 40px; }
.offer-title { font-family: var(--font-cormorant); font-size: 2.2rem; font-weight: 500; color: var(--warm-white); margin-bottom: 16px; }
.offer-desc { font-size: 1rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.offer-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.offer-list li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--text-main); }
.check { color: var(--gold-2); font-size: 0.8rem; }

/* ─── Testimonials ─── */
.testimonials { padding: 120px 0; background: var(--warm-white); text-align: center; }
.testimonials .section-title { color: var(--primary-dark); }
.testimonials .section-sub { color: #555; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: left; margin-top: 48px; }
.testi-card { position: relative; padding: 48px 32px; display: flex; flex-direction: column; justify-content: space-between; background: #fff; border-radius: var(--radius-lg); box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.quote-mark { font-family: var(--font-serif); font-size: 6rem; color: rgba(212, 175, 55, 0.15); position: absolute; top: 10px; left: 24px; line-height: 1; }
.testi-text { font-size: 1.05rem; font-style: italic; color: #444; line-height: 1.8; margin-bottom: 32px; position: relative; z-index: 1; }
.testi-stars { color: var(--gold-2); font-size: 1.2rem; margin-bottom: 8px; letter-spacing: 2px; }
.testi-author h4 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--primary-dark); font-weight: 600; }
.testi-author span { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: #777; }

/* ─── Contact ─── */
.contact-section { padding: 120px 0; background: var(--secondary-dark); position: relative; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-perks { display: flex; flex-direction: column; gap: 20px; margin-top: 48px; }
.perk { display: flex; align-items: center; gap: 16px; font-size: 1rem; color: var(--text-main); }
.perk-icon { color: var(--gold-2); font-size: 1.2rem; }
.glass-form { background: var(--glass-bg); padding: 48px; border-radius: var(--radius-lg); border: 1px solid var(--glass-border); backdrop-filter: blur(12px); }
.form-group { margin-bottom: 24px; }
label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 10px; }
label span { color: var(--gold-2); }
input, select { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--glass-border); padding: 12px 0; color: var(--warm-white); font-family: var(--font-sans); font-size: 1rem; transition: var(--transition); border-radius: 0; }
input:focus, select:focus { outline: none; border-bottom-color: var(--gold-2); }
input::placeholder { color: rgba(160, 157, 150, 0.4); }
.phone-wrap { display: flex; align-items: center; }
.phone-code { padding-right: 12px; color: var(--text-muted); border-bottom: 1px solid var(--glass-border); padding: 12px 12px 12px 0; }
select { appearance: none; cursor: pointer; }
select option { background: var(--primary-dark); color: var(--warm-white); }
.field-err { display: block; color: #ff6b6b; font-size: 0.8rem; margin-top: 6px; min-height: 18px; }
.form-success { display: none; text-align: center; margin-top: 24px; padding: 24px; border: 1px solid var(--gold-2); border-radius: var(--radius-md); background: rgba(212,175,55,0.05); }
.form-success.visible { display: block; }

/* ─── Footer ─── */
.footer { background: var(--primary-dark); padding: 80px 0 0; border-top: 1px solid var(--glass-border); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; padding-bottom: 64px; }
.footer-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; max-width: 400px; margin-top: 24px; }
.footer h4 { font-family: var(--font-cormorant); font-size: 1.4rem; color: var(--warm-white); font-weight: 500; margin-bottom: 24px; }
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.9rem; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--gold-2); }
.footer-contact p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 12px; }
.footer-bottom { border-top: 1px solid var(--glass-border); padding: 24px 0; text-align: center; font-size: 0.85rem; color: rgba(160,157,150,0.5); }

/* ─── WhatsApp ─── */
.wa-float { position: fixed; bottom: 32px; right: 32px; width: 64px; height: 64px; background: #25D366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,0.3); z-index: 999; transition: var(--transition); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float:hover { transform: scale(1.1); background: #20BA56; }

/* ─── Mobile Menu / Hamburger ─── */
.hamburger { display: none; }
.mobile-menu { display: none; }

/* ═══════════════════════════════════════════════════════════
   INNER PAGE STYLES
═══════════════════════════════════════════════════════════ */

/* ─── Breadcrumbs ─── */
.breadcrumbs {
  padding: 100px 0 0;
  background: var(--primary-dark);
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  list-style: none;
  flex-wrap: wrap;
}
.breadcrumb-list li + li::before {
  content: '›';
  margin-right: 8px;
  color: var(--text-muted);
  opacity: 0.5;
}
.breadcrumb-list a {
  color: var(--text-muted);
  transition: color var(--transition);
  text-decoration: none;
}
.breadcrumb-list a:hover { color: var(--gold-2); }
.breadcrumb-list [aria-current="page"] {
  color: var(--gold-2);
  font-weight: 500;
}

/* ─── Page Hero Banner ─── */
.page-hero {
  padding: 48px 0 80px;
  background: var(--primary-dark);
  position: relative;
}
.page-hero .section-tag { margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--font-cormorant);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--warm-white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.page-hero h1 em { font-style: italic; color: var(--gold-2); }
.page-hero p {
  font-size: 1.1rem;
  color: rgba(250,248,245,0.7);
  max-width: 700px;
  line-height: 1.7;
}

/* ─── Inner Page Main Content ─── */
.inner-page { min-height: 50vh; }

/* Light content section */
.content-section {
  padding: 80px 0;
  background: var(--warm-white);
}
.content-section h2 {
  font-family: var(--font-cormorant);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}
.content-section h2 em { font-style: italic; color: var(--gold-1); }
.content-section h3 {
  font-family: var(--font-cormorant);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 32px 0 12px;
}
.content-section p, .content-section li {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}
.content-section ul {
  list-style: none;
  padding: 0;
}
.content-section ul li {
  position: relative;
  padding-left: 24px;
}
.content-section ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold-2);
  font-size: 0.7rem;
  top: 4px;
}
.content-section a {
  color: var(--gold-1);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.content-section a:hover { color: var(--primary-dark); }

/* Dark content section */
.content-section-dark {
  padding: 80px 0;
  background: var(--secondary-dark);
}
.content-section-dark h2 {
  font-family: var(--font-cormorant);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--warm-white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.content-section-dark h2 em { font-style: italic; color: var(--gold-2); }
.content-section-dark h3 {
  font-family: var(--font-cormorant);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--warm-white);
  margin: 32px 0 12px;
}
.content-section-dark p, .content-section-dark li {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.content-section-dark ul { list-style: none; padding: 0; }
.content-section-dark ul li { position: relative; padding-left: 24px; }
.content-section-dark ul li::before { content: '✦'; position: absolute; left: 0; color: var(--gold-2); font-size: 0.7rem; top: 4px; }
.content-section-dark a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 3px; }
.content-section-dark a:hover { color: var(--gold-3); }

/* ─── Feature Grid ─── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.feature-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.feature-card-dark {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.feature-card-dark:hover {
  background: rgba(255,255,255,0.05);
  transform: translateY(-4px);
}
.feature-card h3, .feature-card-dark h3 {
  font-family: var(--font-cormorant);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.feature-card h3 { color: var(--primary-dark); }
.feature-card-dark h3 { color: var(--warm-white); }
.feature-card p { color: #555; font-size: 0.92rem; line-height: 1.6; margin-bottom: 0; }
.feature-card-dark p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; margin-bottom: 0; }
.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

/* ─── Location Links Grid ─── */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin: 40px 0;
}
.location-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-md);
  color: var(--primary-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
}
.location-link:hover {
  border-color: var(--gold-2);
  color: var(--gold-1);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}
.location-link-dark {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--warm-white);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
}
.location-link-dark:hover {
  border-color: var(--gold-2);
  color: var(--gold-2);
  background: rgba(255,255,255,0.06);
}

/* ─── FAQ Section ─── */
.faq-section {
  padding: 100px 0;
  background: var(--warm-white);
}
.faq-section-dark {
  padding: 100px 0;
  background: var(--primary-dark);
}
.faq-list {
  max-width: 800px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-md);
  padding: 0 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: var(--transition);
  overflow: hidden;
}
.faq-section-dark .faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: none;
}
.faq-item:hover {
  transform: translateY(-2px);
}
.faq-section-dark .faq-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 175, 55, 0.3);
}
.faq-item.active {
  border-color: var(--gold-2);
}
.faq-section-dark .faq-item.active {
  background: rgba(212, 175, 55, 0.05);
}
.faq-question {
  font-family: var(--font-cormorant);
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  color: var(--primary-dark);
  transition: color 0.3s ease;
}
.faq-section-dark .faq-question { color: var(--warm-white); }
.faq-question:hover { color: var(--gold-1); }
.faq-section-dark .faq-question:hover { color: var(--gold-2); }
.faq-question::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold-2);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s;
}
.faq-item.active .faq-question::after {
  transform: rotate(45deg);
  background: var(--gold-2);
  color: var(--primary-dark);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.25, 1, 0.5, 1), padding 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.faq-item.active .faq-answer {
  max-height: 600px;
  padding-bottom: 24px;
  opacity: 1;
}
.faq-section .faq-answer p { color: #555; font-size: 1.05rem; line-height: 1.8; margin-bottom: 0; }
.faq-section-dark .faq-answer p { color: rgba(250, 248, 245, 0.7); font-size: 1.05rem; line-height: 1.8; margin-bottom: 0; }

/* ─── CTA Banner ─── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212,175,55,0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* ─── Blog Cards ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
  margin: 40px 0;
}
.blog-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.blog-card h3 {
  font-family: var(--font-cormorant);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.blog-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
.blog-card h3 a:hover { color: var(--gold-1); }
.blog-card p {
  color: #555;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.blog-card .read-more {
  color: var(--gold-1);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color var(--transition);
}
.blog-card .read-more:hover { color: var(--primary-dark); }

/* ─── Article Content ─── */
.article-content {
  padding: 60px 0 80px;
  background: var(--warm-white);
}
.article-body {
  max-width: 780px;
  margin: 0 auto;
}
.article-body h2 {
  font-family: var(--font-cormorant);
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 48px 0 16px;
}
.article-body h3 {
  font-family: var(--font-cormorant);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 32px 0 12px;
}
.article-body p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.85;
  margin-bottom: 20px;
}
.article-body ul { list-style: none; padding: 0; margin-bottom: 20px; }
.article-body ul li {
  position: relative;
  padding-left: 24px;
  font-size: 1.02rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 8px;
}
.article-body ul li::before { content: '✦'; position: absolute; left: 0; color: var(--gold-2); font-size: 0.7rem; top: 5px; }
.article-body a { color: var(--gold-1); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--primary-dark); }
.article-meta {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* ─── Two Column Layout ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin: 40px 0;
}

/* ─── 404 Page ─── */
.page-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
  background: var(--primary-dark);
}
.page-404 h1 {
  font-family: var(--font-cormorant);
  font-size: 8rem;
  font-weight: 700;
  color: var(--gold-2);
  line-height: 1;
  margin-bottom: 16px;
}
.page-404 h2 {
  font-family: var(--font-cormorant);
  font-size: 2rem;
  color: var(--warm-white);
  margin-bottom: 16px;
}
.page-404 p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}
.page-404-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}
.page-404-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 8px 16px;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  transition: var(--transition);
  text-decoration: none;
}
.page-404-links a:hover {
  color: var(--gold-2);
  border-color: var(--gold-2);
}

/* ─── Responsive ─── */
@media (max-width: 992px) {
  .hero-content { padding-top: 120px; }
  .trust-grid, .offer-grid, .testi-grid, .contact-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; flex-direction: column; gap: 5px; padding: 10px; z-index: 1001; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--warm-white); transition: 0.3s; }
  .mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10,10,15,0.98); z-index: 1000; flex-direction: column; align-items: center; justify-content: center; padding: 24px; gap: 24px; }
  .mobile-menu.open { display: flex; }
  .mob-link { font-size: 1.5rem; font-family: var(--font-cormorant); color: var(--warm-white); }
  .hero-headline { font-size: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats-glass { flex-direction: column; gap: 24px; padding: 24px; text-align: center; }
  .stat-divider { width: 100%; height: 1px; }
  .partners-logos { gap: 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 2.2rem; }
  .page-404 h1 { font-size: 5rem; }
  .footer-inner { grid-template-columns: 1fr; }
}
