/* ==========================================================================
   LAWSOLICITOR — MAIN STYLESHEET
   Design language: deep navy + brass gold, statute-clause (§) numbering
   used throughout as the page's structural signature, echoing the firm's
   own vernacular of numbered legal sections.
   ========================================================================== */

:root {
  /* ---- Colour tokens (dark theme) ---- */
  --navy-950: #0a0a0a;
  --navy-900: #121212;
  --navy-800: #1c1c1c;
  --navy-700: #2b2b2b;
  --navy-600: #3d3d3d;
  --gold-600: #8a6d23;
  --gold-500: #c9a227;
  --gold-400: #d4af37;
  --gold-300: #e8d9a0;
  --gold-100: #f7f0dc;
  --paper-50:  #141414;
  --paper-100: #1a1a1a;
  --ink-900: #f0ede6;
  --ink-700: #d4d4d4;
  --ink-500: #9a9a9a;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.10);
  --surface: #161616;
  --surface-2: #1e1e1e;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 14px 34px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 26px 60px rgba(0, 0, 0, 0.5);

  /* ---- Type ---- */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  /* ---- Layout ---- */
  --container-w: 1300px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --header-h: 88px;
}

/* ==========================================================================
   RESET
   ========================================================================== */
* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
svg { display: block; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--navy-950);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-900);
  color: var(--white);
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 { font-family: var(--font-display); color: var(--ink-900); font-weight: 600; letter-spacing: -0.01em; }
h2 { font-size: clamp(30px, 3.6vw, 44px); line-height: 1.18; }
h3 { font-size: 20px; line-height: 1.35; }
p { font-size: 16px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ==========================================================================
   REUSABLE: eyebrow / statute-numbering label
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 18px;
}
.eyebrow em {
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy-800);
  background: var(--gold-100);
  border: 1px solid var(--gold-300);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 16px;
  letter-spacing: 0;
}
.eyebrow--light { color: var(--gold-300); }
.eyebrow--light em { background: rgba(255,255,255,0.08); border-color: rgba(232,217,160,0.35); color: var(--gold-300); }

.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-lead { margin-top: 14px; font-size: 18px; color: var(--ink-500); }
.light-heading { color: var(--white); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  padding: 15px 28px;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn-lg { padding: 17px 32px; }
.btn-block { width: 100%; }

.btn-gold {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-600));
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-navy {
  background: var(--surface-2);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.14);
}
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }

/* ==========================================================================
   MAIN HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, height 0.35s ease;
}
.site-header.is-scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
  height: 76px;
}

.header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; }
.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.96);
  padding: 8px 14px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}
.brand-logo { height: 55px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 36px; }
.nav-list { display: flex; align-items: center; gap: 30px; }
.nav-link {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  padding: 6px 2px;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 2px;
  background: var(--gold-500);
  transition: right 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active-link::after { right: 0; }
.nav-link:hover { color: var(--gold-400); }
.nav-link.active-link { color: var(--gold-400); }

.nav-cta { font-size: 16px; padding: 12px 24px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  z-index: 600;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease, background-color 0.35s ease;
}

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

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding-bottom: 96px;
  background: #0a0a0a;
  overflow: hidden;
}
.hero-photo-bg {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background-image: url("../images/hero-bn-bg.jpg");
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.hero-photo-overlay {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(120% 140% at 15% 0%, rgba(43,43,43,0.94) 0%, rgba(18,18,18,0.95) 46%, rgba(10,10,10,0.97) 100%);
  z-index: 0;
}
.hero-bg { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 0; }
.hero-ledger-lines {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background-image: repeating-linear-gradient(
    to bottom, rgba(232,217,160,0.07) 0, rgba(232,217,160,0.07) 1px, transparent 1px, transparent 64px
  );
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 75%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 75%, transparent);
}
.hero-glow {
  position: absolute;
  width: 620px; height: 620px;
  right: -160px; top: -120px;
  background: radial-gradient(circle, rgba(201,162,39,0.28), transparent 70%);
  filter: blur(10px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-h) + 56px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-heading {
  color: var(--white);
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.12;
  margin-bottom: 22px;
}
.hero-heading .hl { color: var(--gold-300); }

.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  max-width: 52ch;
  margin-bottom: 34px;
}

.hero-ctas { display: flex; gap: 18px; margin-bottom: 40px; flex-wrap: wrap; }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.trust-strip li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
}
.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(201,162,39,0.18);
  color: var(--gold-300);
  font-size: 16px;
}

/* Hero form card */
.hero-form-wrap { position: relative; }
.hero-form-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px 36px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.10);
}
.seal {
  position: absolute;
  top: -22px; left: 32px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 8px 18px rgba(138,109,35,0.45);
  border: 3px solid var(--white);
  transform: rotate(-8deg);
}
.form-title { font-size: 24px; margin-bottom: 6px; margin-top: 8px; }
.form-sub { font-size: 16px; color: var(--ink-500); margin-bottom: 24px; }

.contact-form { display: flex; flex-direction: column; gap: 0px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 16px; font-weight: 600; color: var(--ink-900); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  font-size: 16px;
  background: var(--paper-50);
  color: var(--ink-900);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  width: 100%;
}
.form-group textarea { resize: vertical; min-height: 88px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--surface-2);
  box-shadow: 0 0 0 4px rgba(201,162,39,0.16);
}
.form-note { font-size: 16px; min-height: 20px; color: var(--gold-300); font-weight: 600; }
.form-note.success { color: #6fd39a; }

/* ==========================================================================
   FADE-UP SCROLL ANIMATION
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--fade-delay, 0s);
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { padding: 60px 0; background: var(--navy-950); }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.about-image { position: relative; }
.about-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-badge {
  position: absolute;
  bottom: -24px; right: -18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 130px;
}
.about-badge strong { display: block; font-family: var(--font-display); font-size: 20px; color: var(--gold-600); line-height: 1; margin-bottom: 4px; }
.about-badge span { font-size: 16px; color: var(--ink-500); font-weight: 600; }

.about-content h2 { margin-bottom: 20px; }
.hl-navy { color: var(--gold-600); }
.about-content > p { font-size: 16px; margin-bottom: 15px; max-width: 56ch; }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 28px; }
.feature-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 15px;
}
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--paper-100);
  color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 18px; }
.feature-card p { font-size: 16px; color: var(--ink-500); }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services {
  padding: 60px 0;
  background-color: var(--paper-50);
  background-image:
    radial-gradient(rgba(232,217,160,0.10) 1px, transparent 1px),
    radial-gradient(rgba(232,217,160,0.05) 1px, transparent 1px);
  background-size: 26px 26px, 26px 26px;
  background-position: 0 0, 13px 13px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-400);
}
.service-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-400);
  color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.service-icon svg { width: 24px; height: 24px; }
.service-card:hover .service-icon { background: var(--gold-500); color: var(--white); }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--ink-500); }

/* ==========================================================================
   PRACTICE AREAS — image + content slider, 3 (desktop) / 2 (tablet) / 1 (mobile)
   ========================================================================== */
.practice-slider { max-width: 1200px; margin: 0 auto; }
.practice-viewport { overflow: hidden; }
.practice-track {
  display: flex;
  align-items: stretch;
  width: 166.6667%; /* 5 slides / 3 visible */
  transition: transform 0.55s cubic-bezier(.65,0,.35,1);
}
.practice-slide {
  width: calc((100% / 5) - 24px);
  flex-shrink: 0;
  box-sizing: border-box;
  margin: 0 12px;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.practice-slide:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.practice-slide-image { position: relative; overflow: hidden; height: 250px; }
.practice-slide-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.practice-slide-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.practice-slide-content h3 { margin-bottom: 14px; font-size: 22px; line-height: 1.35; }
.practice-slide-content .service-icon {
  margin-bottom: 16px;
  width: 46px; height: 46px;
}
.practice-slide-content .service-icon svg { width: 20px; height: 20px; }
.practice-list { display: flex; flex-direction: column; gap: 9px; }
.practice-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-500);
}
.practice-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
}

/* ==========================================================================
   TRIBUNALS & SPECIAL COURTS
   ========================================================================== */
.tribunals { padding: 60px 0; background: var(--navy-950); }
.tribunal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tribunal-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--paper-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.tribunal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.tribunal-badge {
  flex-shrink: 0;
  min-width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-950));
  color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--gold-400);
  padding: 0 6px;
  text-align: center;
}
.tribunal-card h3 { font-size: 16px; line-height: 1.4; margin: 0; }

/* ==========================================================================
   COURTS WE APPEAR BEFORE — split layout, content left / image right
   ========================================================================== */
.courts {
  padding: 60px 0;
  background-color: var(--paper-50);
  background-image:
    radial-gradient(rgba(232,217,160,0.10) 1px, transparent 1px),
    radial-gradient(rgba(232,217,160,0.05) 1px, transparent 1px);
  background-size: 26px 26px, 26px 26px;
  background-position: 0 0, 13px 13px;
}
.courts-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.courts-content h2 { margin-bottom: 26px; }

.courts-featured {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
.court-featured-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.court-featured-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.court-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-400);
  background: var(--surface-2);
  color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
}
.court-icon svg { width: 22px; height: 22px; }
.court-featured-card h3 { color: var(--ink-900); font-size: 17px; margin: 0; line-height: 1.35; }

.courts-district-label {
  color: var(--gold-500);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 16px;
}
.courts-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.courts-chip-list span {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-700);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.courts-visual { position: relative; }
.courts-image { position: relative; }
.courts-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.courts-badge {
  position: absolute;
  bottom: -24px; left: -18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 130px;
}
.courts-badge strong { display: block; font-family: var(--font-display); font-size: 28px; color: var(--gold-500); line-height: 1; margin-bottom: 4px; }
.courts-badge span { font-size: 14px; color: var(--ink-500); font-weight: 600; }

/* ==========================================================================
   DISCLAIMER BAR — Privacy Policy & Confidentiality Note
   ========================================================================== */
.disclaimer-bar {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-top: 56px;
}
.disclaimer-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-100);
  color: var(--gold-600);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.disclaimer-icon svg { width: 21px; height: 21px; }
.disclaimer-text h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-900);
  margin: 0 0 8px;
}
.disclaimer-text p { font-size: 14px; line-height: 1.65; color: var(--ink-500); margin: 0; max-width: 68ch; }

/* ==========================================================================
   TEAM
   ========================================================================== */
.team { padding: 60px 0; background: var(--navy-950); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card {
  text-align: center;
  padding: 34px 22px 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.team-photo {
  width: 108px; height: 108px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-950));
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--gold-400);
}
.team-photo span { font-family: var(--font-display); font-size: 30px; color: var(--gold-300); font-weight: 600; }
.team-card h3 { font-size: 19px; margin-bottom: 4px; }
.team-role { font-size: 16px; color: var(--gold-600); font-weight: 600; margin-bottom: 16px; }
.team-socials { display: flex; justify-content: center; gap: 14px; }
.team-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--paper-100);
  color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.team-socials a:hover { background: var(--gold-500); color: var(--white); transform: translateY(-3px); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
  padding: 60px 0;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-950));
  position: relative;
}
.testimonial-slider {margin: 0 auto; }
.testimonial-viewport { overflow: hidden; }
.testimonial-track {
  display: flex;
  align-items: stretch;
  width: 200%; /* 6 slides / 3 visible = 200% */
  transition: transform 0.55s cubic-bezier(.65,0,.35,1);
}
.testimonial-slide {
  display: flex;
  flex-direction: column;
  width: calc((100% / 6) - 24px);
  flex-shrink: 0;
  box-sizing: border-box;
  margin: 0 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(232,217,160,0.18);
  border-radius: var(--radius-lg);
  padding: 40px 30px 30px;
  text-align: center;
}

.quote-mark { font-family: var(--font-display); font-size: 56px; color: var(--gold-500); line-height: 1; display: block; margin-bottom: 6px; }
.stars { color: var(--gold-400); font-size: 18px; letter-spacing: 4px; margin-bottom: 18px; }
.testimonial-text { color: rgba(255,255,255,0.9); font-size: 16px; line-height: 1.7; margin-bottom: 26px; flex: 1; }
.testimonial-person { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: auto; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold-500); color: var(--navy-950);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-display);
  flex-shrink: 0;
}
.testimonial-person strong { display: block; color: var(--white); font-size: 16px; }
.testimonial-person span { font-size: 16px; color: var(--gold-300); }

.slider-controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 34px; }
.slider-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(232,217,160,0.4);
  color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.slider-arrow:hover { background: var(--gold-500); color: var(--navy-950); transform: scale(1.06); }
.slider-dots { display: flex; gap: 10px; }
.slider-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(232,217,160,0.35);
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.slider-dots button.is-active { background: var(--gold-400); transform: scale(1.3); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { padding: 60px 0; background: var(--navy-950); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.info-list { display: flex; flex-direction: column; gap: 26px; margin-top: 36px; }
.info-list li { display: flex; gap: 18px; align-items: flex-start; }
.info-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--paper-100);
  color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
}
.info-icon svg { width: 22px; height: 22px; }
.info-list strong { display: block; font-size: 16px; color: var(--ink-900); margin-bottom: 3px; }
.info-list p { font-size: 16px; color: var(--ink-500); }
.info-list a:hover { color: var(--gold-400); }

.contact-map { position: relative; }
.map-placeholder {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.map-placeholder svg { width: 100%; height: auto; display: block; }
.map-pin-label {
  position: absolute;
  bottom: 18px; left: 18px;
  background: var(--surface);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-900);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   BOOK A CONSULTATION — CTA BANNER (before footer)
   ========================================================================== */
/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-choose { padding: 60px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.why-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-400);
  color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.why-icon svg { width: 24px; height: 24px; }
.why-card:hover .why-icon { background: var(--gold-500); color: var(--white); }
.why-card h3 { font-size: 18px; margin-bottom: 10px; }
.why-card p { font-size: 15px; color: var(--ink-500); }

.book-cta {
  position: relative;
  padding: 110px 0;
  text-align: center;
  overflow: hidden;
}
.book-cta-bg {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.book-cta-overlay {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(160deg, rgba(10,10,10,0.92), rgba(18,18,18,0.94));
  z-index: 0;
}
.book-cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.book-cta-inner .eyebrow { justify-content: center; }
.book-cta-inner h2 { margin-bottom: 16px; }
.book-cta-inner > p { color: rgba(255,255,255,0.8); font-size: 18px; margin-bottom: 36px; }
.book-cta-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { position: relative; background: var(--navy-950); color: rgba(255,255,255,0.75); overflow: hidden; }
.footer-bg {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.14;
  z-index: 0;
}
.footer-overlay {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(100deg, var(--navy-950) 55%, rgba(10,10,10,0.85));
  z-index: 0;
}
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding: 70px 32px 56px;
}
.footer-logo-card {
  display: inline-flex;
  background: var(--white);
  padding: 12px 18px;
  border-radius: 12px;
  margin-bottom: 22px;
}
.footer-logo { height: 40px; }
.footer-about p { font-size: 16px; line-height: 1.7; max-width: 40ch; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.footer-socials a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-950); transform: translateY(-3px); }

.footer-col h3 { color: var(--white); font-size: 18px; margin-bottom: 12px; }
.footer-heading-bar { display: block; width: 46px; height: 3px; background: var(--gold-500); border-radius: 2px; margin-bottom: 22px; }

.footer-links { display: flex; flex-direction: column; }
.footer-links li { border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-links li:first-child { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  padding: 12px 2px;
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.footer-links a:hover { color: var(--gold-300); padding-left: 6px; }
.footer-link-arrow { color: var(--gold-500); font-size: 18px; line-height: 1; }

.footer-contact { display: flex; flex-direction: column; gap: 18px; color: rgba(255,255,255,0.75); }
.footer-contact li { display: flex; align-items: flex-start; gap: 14px; font-size: 16px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-contact li:last-child { border-bottom: none; padding-bottom: 0; }
.footer-contact-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(232,217,160,0.12);
  color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
}
.footer-contact-icon svg { width: 16px; height: 16px; }
.footer-col a, .footer-contact li { font-size: 16px; }
.footer-col a:hover { color: var(--gold-300); }

.footer-bottom { position: relative; z-index: 1; background: var(--navy-800); }
.footer-bottom-inner { padding: 20px 32px; text-align: center; }
.footer-bottom p { font-size: 16px; color: rgba(255,255,255,0.75); }

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, background-color 0.3s ease;
  z-index: 400;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-500); color: var(--navy-950); }

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.whatsapp-fab {
  position: fixed;
  left: 26px; bottom: 84px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(37,211,102,0.45);
  z-index: 400;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 30px rgba(37,211,102,0.55); }

/* ==========================================================================
   ENQUIRE NOW — vertical slide-tab + slide-in form panel
   ========================================================================== */
.enquire-tab {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 46px;
  height: 176px;
  background: linear-gradient(180deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px 0 0 10px;
  box-shadow: var(--shadow-md);
  z-index: 450;
  transition: width 0.25s ease, background-color 0.25s ease;
}
.enquire-tab span {
  display: inline-block;
  transform: rotate(-90deg);
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.enquire-tab:hover { width: 52px; }
.enquire-tab.is-active { background: linear-gradient(180deg, var(--navy-700), var(--navy-900)); color: var(--gold-300); }

.enquire-backdrop {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(10,10,10,0.55);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
  z-index: 460;
}
.enquire-backdrop.is-open { opacity: 1; visibility: visible; }

.enquire-panel {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(420px, 92vw);
  background: var(--surface);
  box-shadow: -18px 0 50px rgba(0,0,0,0.5);
  padding: 56px 34px 34px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.77,0,.18,1);
  z-index: 470;
}
.enquire-panel.is-open { transform: translateX(0); }
.enquire-panel h2 { font-size: 24px; margin-bottom: 24px; line-height: 1.3; }
.enquire-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 22px;
  color: var(--ink-500);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.enquire-close:hover { background: var(--paper-100); color: var(--ink-900); }
.enquire-form .form-group { margin-bottom: 4px; }

/* ==========================================================================
   POPUP
   ========================================================================== */
.popup-overlay {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
  padding: 20px;
}
.popup-overlay.is-open { opacity: 1; visibility: visible; }
.popup-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: 100%;
  padding: 20px 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: scale(0.92) translateY(14px);
  transition: transform 0.35s ease;
/*  max-height: 90vh;*/
  overflow-y: auto;
}
.popup-card--form { max-width: 600px; text-align: left; }
.popup-card--form h2,
.popup-card--form > p { text-align: center; }
.popup-card--form .contact-form { margin-top: 20px; text-align: left; }
.popup-overlay.is-open .popup-card { transform: scale(1) translateY(0); }
.popup-card .seal--popup { position: static; transform: none; margin: 0 auto 18px; }
.popup-card h2 { font-size: 25px; margin-bottom: 12px; }
.popup-card p { font-size: 16px; color: var(--ink-500); margin-bottom: 26px; }
.popup-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 20px;
  color: var(--ink-500);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.25s ease, color 0.25s ease;
  z-index: 2;
  background: var(--paper-100);
}
.popup-close:hover { background: var(--surface-2); color: var(--ink-900); }
.popup-dismiss {
  display: block;
  margin: 16px auto 0;
  font-size: 16px;
  color: var(--ink-500);
  text-decoration: underline;
}
.popup-dismiss:hover { color: var(--gold-400); }



/*--- Enquire Form --*/
.sidebar-contact {
  position: fixed;
  top: 58%;
  right: -350px;
  transform: translateY(-50%);
  width: 350px;
  height: auto;
  padding: 0px;
  background: var(--surface);
  box-shadow: 0 20px 50px rgb(0 0 0 / 35%);
  box-sizing: border-box;
  transition: 0.5s;
  z-index: 999;
}

.sidebar-contact .toggle-2 {
    position: absolute;
    width: 160px;
    text-align: center;
    cursor: pointer;
    background-image: linear-gradient(45deg, #d4af37, #c9a227, #8a6d23) !important;
    top: 40%;
    transform: rotate(270deg);
    left: -104px;
    font-size: 18px;
    color: #fff;
    line-height: 34px;
    text-transform: uppercase;
    padding: 6px 10px;
}



.modal-form {
  padding: 15px;
}

.modal-form .form-footer {
    text-align: center;
    padding: 15px;
    /* border: 1px dashed gray; */
    border: 2px outset var(--gold-500);
}

.modal-form .form-footer p strong {
  font-size: 22px;
  margin-bottom: 5px;
  color: var(--ink-900);
  font-weight: 700;
}

.modal-form .form-footer p {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--ink-500);
}

.form-group {
  margin-bottom: 15px;
  position: relative;
}

.modal-form .form-control {
  border: 1px solid var(--line);
  color: var(--ink-900);
  background: var(--paper-50);
  border-radius: 4px;
  width: 100%;
}

.form-control {
  border-radius: 0;
  padding: 15px 15px;
  border: 1px solid rgba(255,255,255,0.3);
  background-color: transparent;
  color: #fff;
}


.sidebar-contact.active {
  right: 0;
}

.sidebar-contact.active .toggle {
  top: 60px;
  transition: 0.5s;
}

.modal-form .countryCode {
  color: var(--ink-900);
  outline: none;
}

.countryCode {
  position: absolute;
  width: 100px;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  height: 57%;
  border: 0;
  background-color: transparent;
  z-index: 1;
  color: #fff;
}

.countryCode~.form-control {
  padding-left: 120px;
}

.modal-form .send_btn.btn {
    background-image: linear-gradient(45deg, #d4af37, #c9a227, #8a6d23) !important;
    border-radius: 30px;
    color: #141414;
    padding: 18px 25px;
    margin: 0 auto;
    display: table;
    width: 100%;
}

@media(max-width:420px){
        .sidebar-contact {
        position: fixed;
        top: 50%;
        right: -310px;
        transform: translateY(-50%);
        width: 310px;
        height: auto;
        padding: 0px;
        background: var(--surface);
        box-shadow: 0 20px 50px rgb(0 0 0 / 35%);
        box-sizing: border-box;
        transition: 0.5s;
        z-index: 9999;
    }
}


/*# End*/
