/*
Theme Name: Brava Real Estate
Theme URI: https://brava.ae
Author: Brava
Description: Custom theme for Brava Real Estate Dubai - 5 pages: Home, For Clients, Blog, Careers, Valuation.
Version: 1.0
License: Private
Text Domain: brava
*/
/* ============================================================
   BRAVA REAL ESTATE — LIGHT LUXURY DESIGN SYSTEM v2
   White / Black / Gold + soft lavender & sky supporting hues
   All edges rounded — pill buttons, 20-36px card radii
   ============================================================ */

:root {
  /* Gold */
  --gold: #C9A962;
  --gold-light: #D4BC7E;
  --gold-deep: #A8873E;
  --gold-grad: linear-gradient(135deg, #E3CD97 0%, #C9A962 48%, #A8873E 100%);
  --gold-glow: rgba(201, 169, 98, 0.3);
  --gold-soft: rgba(201, 169, 98, 0.12);
  --gold-line: rgba(201, 169, 98, 0.35);

  /* Light foundation */
  --ivory: #FAF9F6;
  --white: #FFFFFF;
  --cream: #F3F0E9;
  --ink: #141416;
  --ink-soft: #2A2A2E;

  /* Supporting hues */
  --lavender: #EFEBFA;
  --sky: #E7F1FA;

  /* Neutrals */
  --gray: #6E6A63;
  --gray-light: #9a958c;
  --line: rgba(20, 20, 22, 0.08);

  /* Dark surfaces (footer, dark panels) */
  --footer-bg: #0D0D0F;
  --panel-dark: #141416;

  /* Legacy aliases so old markup keeps working */
  --dark: #FAF9F6;
  --dark-alt: #FFFFFF;
  --darker: #F3F0E9;

  /* Radii */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 36px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-soft: 0 10px 40px rgba(13, 13, 15, 0.06);
  --shadow-lift: 0 24px 70px rgba(13, 13, 15, 0.12);
  --shadow-gold: 0 12px 34px rgba(168, 135, 62, 0.32);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--gold); color: var(--white); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: var(--r-pill); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

[id] { scroll-margin-top: 110px; }

/* ============================================================
   NAVIGATION — floating glass pill
   ============================================================ */
.nav {
  position: fixed;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 28px));
  z-index: 1000;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-soft);
  padding: 10px 12px 10px 22px;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-lift);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-emblem {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold);
  padding: 2.5px;
  background: var(--white);
}
.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--ink);
}
.brand-name em { font-style: normal; color: var(--gold-deep); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--ink-soft);
  padding: 10px 15px;
  border-radius: var(--r-pill);
  position: relative;
}
.nav-links a:hover { background: var(--lavender); color: var(--ink); }
.nav-links a.active { background: var(--gold-soft); color: var(--gold-deep); }

.nav-cta {
  background: var(--ink) !important;
  color: var(--white) !important;
  border-radius: var(--r-pill) !important;
  padding: 11px 24px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  box-shadow: 0 8px 22px rgba(13, 13, 15, 0.18);
}
.nav-cta:hover { background: var(--gold-grad) !important; color: var(--ink) !important; transform: translateY(-1px); }

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: rgba(250, 249, 246, 0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  color: var(--ink);
  font-size: 1.4rem;
  font-family: var(--font-display);
}
.mobile-menu a:hover { color: var(--gold-deep); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2rem;
  color: var(--ink);
  background: none; border: none; cursor: pointer;
}

/* ============================================================
   HERO — homepage (two-column light luxury)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -12%;
  width: 62vw; height: 62vw;
  background: radial-gradient(circle at center, var(--lavender) 0%, transparent 62%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -25%; left: -14%;
  width: 55vw; height: 55vw;
  background: radial-gradient(circle at center, var(--sky) 0%, transparent 62%);
  z-index: 0;
}
.hero-arc {
  position: absolute;
  top: -140px; right: -60px;
  width: 420px; height: 420px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  z-index: 0;
}
.hero-arc::after {
  content: '';
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(201, 169, 98, 0.18);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  grid-auto-columns: minmax(0, 1fr);}
.hero-grid > .hero-content { position: relative; z-index: 3; min-width: 0; padding-right: 24px; }
.hero-grid > .hero-visual { min-width: 0; z-index: 1; }
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 9px 18px 9px 10px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 30px;
}
.trust-chip .dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 14px;
}
.trust-chip span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero-subtitle {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--gold-deep);
  margin-bottom: 22px;
  font-weight: 600;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 26px;
  color: var(--ink);
}
.hero h1 span,
.hero h1 em {
  font-style: italic;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 17.5px;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.85;
  font-weight: 400;
}
.hero-grid .hero-desc { margin-left: 0; margin-right: 0; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-grad);
  color: var(--ink) !important;
  padding: 17px 36px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  margin: 0;
}
.hero-cta:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(168, 135, 62, 0.42); }
.hero-cta-outline {
  background: transparent;
  color: var(--ink) !important;
  border: 1.5px solid rgba(20, 20, 22, 0.16);
  box-shadow: none;
}
.hero-cta-outline:hover {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--gold-deep) !important;
  box-shadow: none;
}
.hero-cta-wa {
  background: rgba(37, 211, 102, 0.1);
  border: 1.5px solid rgba(37, 211, 102, 0.55);
  color: #128C4A !important;
  box-shadow: none;
}
.hero-cta-wa:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff !important;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.35);
}
.hero-cta-wa svg { width: 18px; height: 18px; }

.hero-trust { display: flex; align-items: center; gap: 26px; margin-top: 44px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item .num { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--ink); }
.trust-item .lbl { font-size: 12px; color: var(--gray); line-height: 1.35; letter-spacing: 0.3px; }
.trust-divider { width: 1px; height: 34px; background: var(--line); }

/* Hero visual */
.hero-visual { position: relative; }
.visual-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 6px solid var(--white);
  outline: 1px solid var(--gold-line);
  transform: rotate(1.2deg);
  transition: var(--transition);
}
.visual-frame:hover { transform: rotate(0deg) scale(1.01); }
.visual-frame img { width: 100%; height: 560px; object-fit: cover; }
.visual-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(201, 169, 98, 0.14) 0%, transparent 40%);
}
.float-card {
  position: absolute;
  left: -34px; bottom: 44px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lift);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
  animation: floaty 6s ease-in-out infinite;
}
.float-card .fc-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 20px;
}
.float-card .fc-num { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--ink); line-height: 1.1; }
.float-card .fc-lbl { font-size: 12px; color: var(--gray); letter-spacing: 0.3px; }

.rics-pill {
  position: absolute;
  top: 26px; right: 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 13, 15, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--r-pill);
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  z-index: 3;
}
.rics-pill .rdot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 12px var(--gold-light); }

.emblem-badge {
  position: absolute;
  top: -22px; right: -22px; left: auto;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gold);
  box-shadow: var(--shadow-lift);
  display: flex; align-items: center; justify-content: center;
  z-index: 4;
  animation: floaty 7s ease-in-out infinite reverse;
}
.emblem-badge img { width: 66px; height: 66px; border-radius: 50%; object-fit: cover; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================================
   HERO SMALL — inner pages (light treatment)
   ============================================================ */
.hero-small {
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 160px 0 80px;
}
.hero-small::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle at center, var(--lavender) 0%, transparent 62%);
  z-index: 0;
}
.hero-small::after {
  content: '';
  position: absolute;
  bottom: -35%; left: -10%;
  width: 45vw; height: 45vw;
  background: radial-gradient(circle at center, var(--sky) 0%, transparent 62%);
  z-index: 0;
}
.hero-small > div { position: relative; z-index: 2; }
.hero-small h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--ink);
}
.hero-small h1 span {
  font-style: italic;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-small p {
  font-size: 17px;
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--cream); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-deep);
  margin-bottom: 16px;
  font-weight: 600;
}
.section-title {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--ink);
}
.section-title span {
  font-style: italic;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-desc { color: var(--gray); max-width: 640px; margin: 0 auto; font-size: 16px; line-height: 1.8; }
.gold-line {
  width: 60px; height: 2px;
  background: var(--gold-grad);
  margin: 0 auto 24px;
  border-radius: var(--r-pill);
}

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

/* Cards */
.card {
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  color: var(--ink);
}
.card:hover {
  border-color: var(--gold-line);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}
.card h3 { color: var(--ink); }
.card p { color: var(--gray); }

/* ============================================================
   BUTTONS — pill
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 13.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
  border-radius: var(--r-pill);
}
.btn-gold {
  background: var(--gold-grad);
  color: var(--ink);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(168, 135, 62, 0.42); }
.btn-outline {
  background: transparent;
  color: var(--gold-deep);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: var(--gold-grad); color: var(--ink); }
.btn-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(13, 13, 15, 0.2);
}
.btn-dark:hover { transform: translateY(-3px); background: var(--ink-soft); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(20, 20, 22, 0.16);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); background: var(--gold-soft); }
.btn-full { width: 100%; }

/* ============================================================
   LISTINGS
   ============================================================ */
.listing-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  overflow: hidden;
}
.listing-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}
.listing-img { height: 240px; position: relative; overflow: hidden; }
.listing-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.listing-card:hover .listing-img img { transform: scale(1.1); }
.listing-price {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold-grad);
  color: var(--ink);
  padding: 9px 20px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-gold);
}
.listing-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: var(--gold-deep);
  padding: 7px 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  border: 1px solid var(--gold-line);
  border-radius: var(--r-pill);
}
.listing-body { padding: 30px; }
.listing-body h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 8px; color: var(--ink); }
.listing-meta { color: var(--gray); font-size: 13px; margin-bottom: 16px; }
.listing-meta a { color: var(--gold-deep); }
.listing-meta a:hover { text-decoration: underline; }
.listing-details { display: flex; gap: 20px; margin-bottom: 20px; color: var(--gray); font-size: 13px; }
.listing-btns { display: flex; gap: 12px; }
.listing-btns .btn { flex: 1; padding: 12px 0; font-size: 12px; }

/* ============================================================
   TEAM
   ============================================================ */
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  text-align: center;
  padding: 40px 30px;
}
.team-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}
.team-img {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 2px solid var(--gold);
  padding: 3px;
}
.team-card h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 6px; color: var(--ink); }
.team-role { color: var(--gold-deep); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; font-weight: 600; }
.team-desc { color: var(--gray); font-size: 14px; line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-wrapper { overflow: hidden; position: relative; }
.testimonials-container { display: flex; gap: 30px; transition: transform 0.5s ease; }
.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  min-width: calc(33.333% - 20px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  padding: 40px;
  transition: var(--transition);
  min-height: 280px;
}
.testimonial-card:hover { border-color: var(--gold-line); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 15px; }
.testimonial-text {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--ink);
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-author h4 { font-weight: 600; color: var(--ink); font-size: 14px; }
.testimonial-author .title { font-size: 12px; color: var(--gold-deep); text-transform: uppercase; letter-spacing: 1px; }
.testimonial-nav { display: flex; justify-content: center; gap: 16px; margin-top: 40px; }
.testimonial-nav-btn {
  width: 48px; height: 48px;
  border: 1.5px solid var(--gold);
  background: var(--white);
  color: var(--gold-deep);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.testimonial-nav-btn:hover { background: var(--gold-grad); color: var(--ink); }

/* ============================================================
   CONTACT / FORMS
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h3 { font-family: var(--font-display); font-size: 28px; margin-bottom: 24px; color: var(--ink); }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-info-icon {
  width: 48px; height: 48px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--gold-deep);
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--white);
}
.contact-info-item h4 { font-size: 16px; color: var(--ink); margin-bottom: 4px; }
.contact-info-item p { color: var(--gray); font-size: 14px; line-height: 1.6; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form input,
.contact-form textarea,
.contact-form select,
.apply-form input,
.apply-form textarea,
.apply-form select {
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: var(--transition);
  border-radius: var(--r-sm);
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.apply-form input:focus,
.apply-form textarea:focus,
.apply-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-soft);
}
.contact-form textarea,
.apply-form textarea { min-height: 150px; resize: vertical; }
.contact-form select option,
.apply-form select option { background: var(--white); color: var(--ink); }

.apply-form input,
.apply-form textarea,
.apply-form select { margin-bottom: 20px; }

/* Form wrapper (valuation page) */
.form-wrapper {
  background: var(--white);
  padding: 50px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 10px;
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--ivory);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  font-family: var(--font-body);
  transition: var(--transition);
  border-radius: var(--r-sm);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-soft);
  background: var(--white);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group 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 12 12'%3E%3Cpath fill='%23A8873E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
}
.form-group select option { background: var(--white); color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { font-size: 13px; color: var(--gray); margin-top: 20px; line-height: 1.6; }
.form-note a { color: var(--gold-deep); }

.form-info h3 { font-family: var(--font-display); font-size: 36px; color: var(--ink); margin-bottom: 24px; }
.form-info h3 span {
  font-style: italic;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.form-info > p { color: var(--gray); line-height: 1.8; margin-bottom: 40px; }
.info-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
.info-icon {
  width: 48px; height: 48px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  border-radius: 50%;
  background: var(--white);
}
.info-icon svg { width: 20px; height: 20px; stroke: var(--gold-deep); transition: var(--transition); }
.info-icon:hover { background: var(--gold-grad); }
.info-icon:hover svg { stroke: var(--ink); }
.info-text h4 { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.info-text p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-tabs { display: flex; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; justify-content: center; }
.faq-tab {
  padding: 13px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--r-pill);
  font-weight: 600;
}
.faq-tab:hover { border-color: var(--gold); color: var(--gold-deep); }
.faq-tab.active { background: var(--gold-grad); color: var(--ink); border-color: transparent; box-shadow: var(--shadow-gold); }
.faq-content { display: none; }
.faq-content.active { display: block; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-item:hover { border-color: var(--gold-line); }
.faq-question {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  color: var(--ink);
}
.faq-question:hover { color: var(--gold-deep); }
.faq-answer { padding: 0 30px 24px; color: var(--gray); line-height: 1.8; font-size: 15px; display: none; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question { color: var(--gold-deep); }
.faq-toggle {
  width: 28px; height: 28px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--gold-deep);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
  border-radius: 50%;
}
.faq-item.active .faq-toggle { transform: rotate(45deg); background: var(--gold-grad); color: var(--ink); }
.faq-grid { max-width: 900px; margin: 0 auto; }

/* ============================================================
   CASE STUDIES
   ============================================================ */
.case-card {
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.case-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold-grad);
  transform: translateX(-100%);
  transition: transform 0.5s;
  border-radius: var(--r-pill);
}
.case-card:hover::before { transform: translateX(0); }
.case-card:hover { border-color: var(--gold-line); transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.case-title { font-size: 1.1rem; font-weight: 600; color: var(--ink); margin-bottom: 15px; }
.case-desc { color: var(--gray); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.case-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.case-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-deep);
  padding: 5px 14px;
  border: 1px solid var(--gold-line);
  border-radius: var(--r-pill);
  font-weight: 600;
}
.case-lesson {
  background: var(--gold-soft);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  margin-top: 20px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.case-lesson strong { color: var(--gold-deep); }
.case-full { display: none; }
.case-card.expanded .case-full { display: block; }
.case-card.expanded .case-preview { display: none; }
.case-read-btn {
  color: var(--gold-deep);
  font-size: 13px;
  cursor: pointer;
  border: 1.5px solid var(--gold);
  padding: 11px 26px;
  background: transparent;
  transition: var(--transition);
  margin-top: 20px;
  display: inline-block;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.case-read-btn:hover { background: var(--gold-grad); color: var(--ink); }

/* Commission */
.commission-highlight {
  text-align: center;
  padding: 50px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  max-width: 600px;
  margin: 0 auto;
}
.commission-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.commission-label { font-size: 1.1rem; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.commission-sub { color: var(--gray); font-size: 0.95rem; max-width: 500px; margin: 0 auto; }

/* ============================================================
   GUIDE TABS
   ============================================================ */
.guide-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.guide-tab {
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--r-pill);
}
.guide-tab:hover { border-color: var(--gold); color: var(--ink); }
.guide-tab.active { background: var(--gold-grad); color: var(--ink); border-color: transparent; box-shadow: var(--shadow-gold); }
.guide-section { display: none; }
.guide-section.active { display: block; }
.guide-section h3 { font-family: var(--font-display); font-size: 28px; color: var(--ink); margin-bottom: 20px; }
.guide-section h3 span {
  font-style: italic;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.guide-section p { color: var(--gray); font-size: 16px; line-height: 1.9; margin-bottom: 20px; }
.guide-section ul { margin: 20px 0 20px 24px; color: var(--gray); list-style: disc; }
.guide-section li { margin-bottom: 12px; line-height: 1.7; }
.guide-section strong { color: var(--ink); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card {
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
}
.blog-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lift); border-color: var(--gold-line); }
.blog-image { height: 220px; position: relative; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.blog-card:hover .blog-image img { transform: scale(1.1); }
.blog-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold-grad);
  color: var(--ink);
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-gold);
}
.blog-content { padding: 30px; }
.blog-content h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 12px; color: var(--ink); }
.blog-content p { color: var(--gray); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.blog-link {
  color: var(--gold-deep);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-link:hover { color: var(--gold); }

/* ============================================================
   VALUATION PAGE COMPONENTS
   ============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.feature-card {
  background: var(--white);
  padding: 50px 30px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold-grad);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.feature-card:hover::before { transform: translateX(0); }
.feature-card:hover { border-color: var(--gold-line); transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.feature-icon {
  width: 64px; height: 64px;
  border: 1.5px solid var(--gold);
  margin: 0 auto 30px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 50%;
  background: var(--gold-soft);
}
.feature-card h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 16px; color: var(--ink); }
.feature-card p { color: var(--gray); font-size: 15px; line-height: 1.8; }

.types-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 60px; }
.type-card {
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.type-card:hover { border-color: var(--gold-line); transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.type-card h3 { font-family: var(--font-display); font-size: 24px; color: var(--ink); margin-bottom: 16px; }
.type-card h3 span {
  font-style: italic;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.type-card p { color: var(--gray); line-height: 1.8; margin-bottom: 20px; }
.type-card ul { list-style: none; }
.type-card ul li {
  color: var(--gray);
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 14px;
}
.type-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 15px;
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  border-radius: 2px;
}

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 60px; }
.process-step { text-align: center; position: relative; }
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px; right: -15px;
  width: 30px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.process-num {
  width: 60px; height: 60px;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-deep);
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.process-step h4 { font-family: var(--font-display); font-size: 20px; margin-bottom: 12px; color: var(--ink); }
.process-step p { color: var(--gray); font-size: 14px; line-height: 1.7; }

.form-section { background: var(--cream); border-radius: var(--r-xl) var(--r-xl) 0 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.cta-section {
  text-align: center;
  padding: 110px 40px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-title { font-family: var(--font-display); font-size: 46px; color: var(--ink); margin-bottom: 24px; }
.cta-title span {
  font-style: italic;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-desc { color: var(--gray); max-width: 600px; margin: 0 auto 40px; font-size: 17px; line-height: 1.8; }

/* ============================================================
   MORTGAGE CALCULATOR
   ============================================================ */
.mortgage-calculator {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}
.mortgage-sliders { padding: 60px; border-right: 1px solid var(--line); }
.mortgage-result-panel {
  padding: 60px;
  background: var(--panel-dark);
  color: var(--white);
}
.mortgage-slider-group { margin-bottom: 40px; }
.mortgage-slider-group label {
  display: flex;
  justify-content: space-between;
  color: var(--gold-deep);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-weight: 600;
}
.mortgage-slider-group label span { color: var(--ink); font-size: 16px; font-weight: 600; }
.mortgage-slider-group input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 5px;
  background: var(--cream);
  border-radius: var(--r-pill);
  outline: none;
  margin-bottom: 10px;
}
.mortgage-slider-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 12px var(--gold-glow);
  border: 3px solid var(--white);
}
.mortgage-slider-group .slider-val { display: flex; justify-content: space-between; color: var(--gray); font-size: 12px; }
.mortgage-result-panel h3 { font-family: var(--font-display); font-size: 32px; color: var(--white); margin-bottom: 8px; }
.mortgage-result-panel .monthly-label {
  color: var(--gold-light);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
.mortgage-result-item {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 15px;
}
.mortgage-result-item:last-child { border-bottom: none; }
.mortgage-result-label { color: var(--gray-light); }
.mortgage-result-value { font-weight: 600; color: var(--white); }
.mortgage-result-value.highlight {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
}
.mortgage-btns { display: flex; gap: 16px; margin-top: 40px; }
.mortgage-btns .btn { flex: 1; }

/* ============================================================
   FOOTER — dark ink for contrast
   ============================================================ */
.footer { background: var(--ivory); padding: 80px 0 40px; border-top: 1px solid var(--gold-line); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.footer-logo span { color: var(--gold); }
.footer-brand p { color: var(--gray); line-height: 1.8; font-size: 15px; }
.footer-title {
  color: var(--gold-deep);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  font-weight: 600;
}
.footer-links li { margin-bottom: 14px; }
.footer-links a {
  color: var(--gray);
  transition: color 0.3s;
  font-size: 14px;
}
.footer-links a:hover { color: var(--gold-deep); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  text-align: center;
  color: var(--gray-light);
  font-size: 13px;
}

/* ============================================================
   MISC
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.highlight { color: var(--gold-deep); font-weight: 600; }

/* Inline dark-panel helper */
.dark-panel { background: var(--panel-dark); color: var(--white); border-radius: var(--r-lg); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .hero h1 { font-size: 42px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .visual-frame img { height: 420px; }
  .float-card { left: 16px; bottom: 20px; }
  .hero-arc { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .types-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 36px; }
  .cta-title { font-size: 36px; }
  .commission-number { font-size: 3rem; }
  .mortgage-calculator { grid-template-columns: 1fr; }
  .mortgage-sliders { border-right: none; border-bottom: 1px solid var(--line); }
  .testimonial-card { flex: 0 0 calc(50% - 15px); min-width: calc(50% - 15px); }
  .guide-tabs, .faq-tabs { flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .hero { padding-top: 120px; }
  .hero h1 { font-size: 32px; }
  .hero-actions .btn, .hero-actions .hero-cta { width: 100%; justify-content: center; }
  .visual-frame img { height: 320px; }
  .float-card { padding: 14px 18px; }
  .emblem-badge { width: 64px; height: 64px; top: -18px; left: -14px; }
  .emblem-badge img { width: 50px; height: 50px; }
  .hero-trust { gap: 18px; }
  .trust-divider { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step:not(:last-child)::after { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 28px; }
  .cta-title { font-size: 32px; }
  .commission-number { font-size: 2.5rem; }
  .testimonial-card { flex: 0 0 100%; min-width: 100%; }
  .mortgage-btns { flex-direction: column; }
  .guide-tabs, .faq-tabs { flex-direction: column; align-items: stretch; }
  .guide-tab, .faq-tab { width: 100%; text-align: center; }
  .form-wrapper { padding: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .rics-pill { top: 16px; right: 16px; padding: 8px 14px; font-size: 11px; }
}


/* Round 3 fixes */
.hero-small::before { background: radial-gradient(circle at center, rgba(201,162,75,0.14) 0%, transparent 62%) !important; }
.hero-small::after { background: radial-gradient(circle at center, rgba(201,162,75,0.10) 0%, transparent 62%) !important; }
.hero-small h1 { color: #fff !important; }
.hero-small p { color: rgba(255,255,255,0.85); }
.section-dark { background: #0B0B14; }
.section-dark .section-title { color: #fff; }
.section-dark .section-desc { color: rgba(255,255,255,0.65); }
.section-dark .process-step h4 { color: #fff; }
.section-dark .process-step p { color: rgba(255,255,255,0.6); }
.footer-logo img { width: 132px; height: auto; border-radius: 16px; background: #fff; padding: 10px; display: block; box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.grid-auto-5 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)) !important; }


/* Round 4 fixes */
.svc-carousel { display:flex; gap:26px; overflow-x:auto; scroll-snap-type:x mandatory; margin-top:60px; padding:10px 4px 22px; scrollbar-width:none; }
.svc-carousel::-webkit-scrollbar { display:none; }
.svc-carousel .card { flex:0 0 calc(33.333% - 18px); scroll-snap-align:start; }
@media (max-width: 1024px){ .svc-carousel .card { flex-basis: calc(50% - 13px); } }
@media (max-width: 640px){ .svc-carousel .card { flex-basis: 82%; } }
.svc-nav { display:flex; gap:12px; justify-content:flex-end; margin-top:6px; }
.svc-arrow { width:44px; height:44px; border-radius:50%; border:1.5px solid var(--gold); background:var(--white); color:var(--gold-deep); font-size:18px; cursor:pointer; transition:var(--transition); line-height:1; }
.svc-arrow:hover { background:var(--gold); color:#fff; }

/* ============================================================
   ARTICLE (single.php)
   ============================================================ */
.article-hero { padding: 215px 0 48px; background: var(--ivory); text-align: center; }
.article-back { display: inline-block; color: var(--gray); font-size: 14px; margin-bottom: 28px; transition: color .3s; }
.article-back:hover { color: var(--gold-deep); }
.article-badge { display: inline-block; padding: 8px 20px; border-radius: var(--r-pill); background: var(--gold-soft); color: var(--gold-deep); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px; }
.article-title { font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px); font-weight: 700; color: var(--ink); max-width: 900px; margin: 0 auto 24px; line-height: 1.2; }
.article-meta { color: var(--gray); font-size: 14px; }
.article-meta .dot { color: var(--gold); margin: 0 10px; }
.article-figure { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lift); margin-top: -10px; }
.article-figure img { width: 100%; height: auto; display: block; }
.article-body { padding: 70px 0 30px; background: var(--white); }
.article-container { max-width: 820px; }
.article-content { font-size: 17px; line-height: 1.9; color: var(--ink-soft); }
.article-content p { margin-bottom: 28px; }
.article-content h2 { font-family: var(--font-display); font-size: 32px; color: var(--ink); margin: 52px 0 22px; line-height: 1.3; }
.article-content h3 { font-family: var(--font-display); font-size: 24px; color: var(--ink); margin: 40px 0 16px; }
.article-content ul, .article-content ol { margin: 0 0 28px 24px; }
.article-content li { margin-bottom: 12px; }
.article-content strong { color: var(--ink); }
.article-content a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.article-content blockquote { border-left: 3px solid var(--gold); background: var(--cream); border-radius: 0 var(--r-md) var(--r-md) 0; padding: 28px 32px; margin: 36px 0; font-family: var(--font-display); font-size: 21px; color: var(--ink); line-height: 1.6; }
.article-content blockquote p { margin-bottom: 0; }
.article-content img { border-radius: var(--r-md); margin: 32px 0; }
.article-share { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--line); }
.article-share > span { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: var(--gray); font-weight: 600; margin-right: 8px; }
.share-btn { display: inline-block; padding: 10px 22px; border-radius: var(--r-pill); font-size: 14px; font-weight: 600; cursor: pointer; border: 1px solid var(--gold-line); background: var(--white); color: var(--ink); transition: var(--transition); font-family: var(--font-body); }
.share-btn:hover { background: var(--gold-soft); border-color: var(--gold); }
.article-cta { padding: 100px 40px; text-align: center; background: var(--cream); }
.article-cta h2 { font-family: var(--font-display); font-size: 40px; color: var(--ink); margin-bottom: 18px; }
.article-cta h2 em { color: var(--gold-deep); }
.article-cta p { color: var(--gray); max-width: 560px; margin: 0 auto 36px; font-size: 17px; line-height: 1.8; }
.article-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.article-related { background: var(--white); }

@media (max-width: 768px) {
  .article-hero { padding: 165px 0 36px; }
  .article-content { font-size: 16px; }
  .article-content h2 { font-size: 26px; }
  .article-cta { padding: 70px 24px; }
  .article-cta h2 { font-size: 30px; }
}

/* Comparison tables inside articles */
.article-content table { width: 100%; border-collapse: collapse; margin: 32px 0; font-size: 15.5px; background: var(--white); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-soft); }
.article-content th { background: var(--ink); color: var(--gold); font-family: var(--font-body); font-weight: 600; text-align: left; padding: 14px 18px; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }
.article-content td { padding: 13px 18px; border-top: 1px solid var(--line); color: var(--ink-soft); }
.article-content tr:nth-child(even) td { background: var(--cream); }
.article-content td:first-child { font-weight: 600; color: var(--ink); }

/* Team card socials + footer socials */
.team-social { display: flex; gap: 10px; justify-content: center; margin: 12px 0 4px; }
.team-social a { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); transition: all .3s ease; }
.team-social a:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid rgba(176,141,79,.5); border-radius: 50%; color: var(--gold); transition: all .3s ease; }
.footer-social a:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
