/* ==========================================================================
   Harborview Finance & Mortgage Brokers — Stylesheet
   Crafted by Hijazi Digital (Zero-bloat, Ultra-fast, Lead-Gen Focused)
   ========================================================================== */

:root {
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Outfit', sans-serif;

  /* Financial Authority Palette */
  --color-navy: #0a192f;
  --color-navy-dark: #060e1a;
  --color-navy-surface: #172a45;
  
  --color-emerald: #059669;
  --color-emerald-hover: #047857;
  --color-emerald-light: #ecfdf5;
  --color-emerald-border: #a7f3d0;
  
  --color-slate-900: #0f172a;
  --color-slate-700: #334155;
  --color-slate-500: #64748b;
  --color-slate-200: #e2e8f0;
  --color-slate-100: #f1f5f9;
  --color-slate-50: #f8fafc;
  --color-white: #ffffff;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.12);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --transition: 0.2s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-slate-50);
  color: var(--color-slate-900);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 70px;
}

@media (min-width: 769px) {
  body { padding-bottom: 0; }
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

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

/* ==========================================================================
   Top Demo Agency Bar
   ========================================================================== */
.demo-agency-bar {
  background: #060e1a;
  color: #e2e8f0;
  padding: 8px 16px;
  font-size: 0.84rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 100;
}

.demo-container {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.demo-badge {
  background: var(--color-emerald);
  color: #fff;
  font-weight: 800;
  font-size: 0.68rem;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}

.demo-text { flex: 1; min-width: 260px; }

.demo-link {
  color: #6ee7b7;
  font-weight: 700;
}

.demo-link:hover { text-decoration: underline; }

/* ==========================================================================
   Top Broker Credibility Bar
   ========================================================================== */
.broker-top-bar {
  background: var(--color-navy);
  color: #94a3b8;
  font-size: 0.78rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.bar-left, .bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cred-pill {
  color: #34d399;
  font-weight: 800;
}

.dot { opacity: 0.35; }

@media (max-width: 768px) {
  .bar-right { display: none; }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--color-slate-200);
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-symbol {
  width: 42px;
  height: 42px;
  background: var(--color-navy);
  color: #34d399;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.company-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--color-navy);
  line-height: 1.1;
}

.company-sub {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--color-emerald);
}

.nav-links {
  display: none;
  gap: 22px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-slate-700);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--color-emerald);
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-block {
  display: none;
  flex-direction: column;
  text-align: right;
}

.phone-tag {
  font-size: 0.65rem;
  color: var(--color-slate-500);
  font-weight: 700;
  text-transform: uppercase;
}

.phone-block strong {
  font-size: 1.05rem;
  color: var(--color-navy);
  font-weight: 800;
}

@media (min-width: 680px) {
  .phone-block { display: flex; }
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--color-navy);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-navy-dark);
  transform: translateY(-1px);
}

.btn-emerald {
  background: var(--color-emerald);
  color: #fff;
  box-shadow: 0 4px 10px rgba(5, 150, 105, 0.25);
}

.btn-emerald:hover {
  background: var(--color-emerald-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background: #fff;
  color: var(--color-navy);
  border: 1.5px solid var(--color-slate-200);
}

.btn-secondary:hover {
  background: var(--color-slate-100);
  border-color: var(--color-slate-400);
}

.btn-large {
  padding: 15px 28px;
  font-size: 1.05rem;
}

.full-width { width: 100%; }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 60px 0 70px;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
  border-bottom: 1px solid var(--color-slate-200);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.25fr 0.95fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-emerald-light);
  color: var(--color-emerald);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-emerald);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-navy);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.highlight-emerald {
  color: var(--color-emerald);
}

.hero-desc {
  font-size: 1.12rem;
  color: var(--color-slate-700);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  border-top: 1px solid var(--color-slate-200);
  padding-top: 22px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-item strong {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.1;
}

.stat-item span {
  font-size: 0.78rem;
  color: var(--color-slate-500);
}

.stat-sep {
  width: 1px;
  height: 28px;
  background: var(--color-slate-200);
}

/* Rate Card */
.hero-rate-card {
  background: #fff;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.card-header-dark {
  background: var(--color-navy);
  color: #fff;
  padding: 18px 24px;
}

.header-sub {
  font-size: 0.68rem;
  letter-spacing: 1px;
  color: #34d399;
  font-weight: 800;
}

.card-header-dark h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2px;
}

.card-rates-body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--color-slate-50);
}

.rate-row.highlight-rate {
  background: var(--color-emerald-light);
  border: 1px solid var(--color-emerald-border);
}

.rate-type strong {
  display: block;
  font-size: 0.92rem;
  color: var(--color-navy);
}

.rate-type span {
  font-size: 0.75rem;
  color: var(--color-slate-500);
}

.rate-val { text-align: right; }

.rate-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-emerald);
  line-height: 1;
}

.comp-rate {
  font-size: 0.68rem;
  color: var(--color-slate-500);
}

.card-footer-cta {
  padding: 16px 20px;
  border-top: 1px solid var(--color-slate-100);
}

.disclaimer-text {
  font-size: 0.68rem;
  color: var(--color-slate-500);
  margin-top: 8px;
  text-align: center;
  line-height: 1.4;
}

/* ==========================================================================
   Section Title
   ========================================================================== */
.section-title {
  max-width: 680px;
  margin: 0 auto 48px;
}

.text-center { text-align: center; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--color-emerald);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.eyebrow-light {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #34d399;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.section-title h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 1.05rem;
  color: var(--color-slate-500);
}

/* ==========================================================================
   Interactive Mortgage Calculator
   ========================================================================== */
.calculator-section {
  padding: 80px 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-slate-200);
}

.calc-wrapper-card {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  box-shadow: var(--shadow-md);
}

@media (min-width: 960px) {
  .calc-wrapper-card {
    grid-template-columns: 1.25fr 1fr;
  }
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.field-header label, .block-lbl {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-navy);
}

.input-currency-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--color-slate-200);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
}

.input-currency-wrap span {
  font-weight: 700;
  color: var(--color-slate-500);
  margin-right: 4px;
}

.input-currency-wrap input {
  border: none;
  outline: none;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-navy);
  width: 120px;
  text-align: right;
}

.short-num-input {
  width: 80px;
  padding: 6px 10px;
  border: 1.5px solid var(--color-slate-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 800;
  text-align: right;
  outline: none;
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--color-slate-200);
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-emerald);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.lvr-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-emerald);
}

.field-dual-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.term-toggle, .freq-toggle {
  display: flex;
  gap: 6px;
}

.term-btn, .freq-btn {
  flex: 1;
  background: #fff;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-slate-700);
  cursor: pointer;
  transition: var(--transition);
}

.term-btn.active, .freq-btn.active {
  background: var(--color-navy);
  color: #fff;
  border-color: var(--color-navy);
}

/* Calculator Summary */
.summary-card {
  background: #fff;
  border: 2px solid var(--color-emerald-border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.sum-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-emerald);
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 6px;
}

.repayment-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
}

.currency-symbol {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-navy);
}

.main-repay-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1;
}

.freq-period {
  font-size: 0.95rem;
  color: var(--color-slate-500);
  font-weight: 600;
}

.breakdown-list {
  border-top: 1px solid var(--color-slate-100);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.b-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
}

.b-row strong { color: var(--color-navy); }

.lmi-alert {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.78rem;
  color: #92400e;
  margin-bottom: 16px;
  line-height: 1.4;
}

.btn-lock-rate {
  padding: 14px;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.calc-footer-note {
  font-size: 0.72rem;
  color: var(--color-slate-500);
  text-align: center;
  line-height: 1.4;
}

/* ==========================================================================
   Stamp Duty Section
   ========================================================================== */
.stamp-duty-section {
  padding: 70px 0;
  background: var(--color-slate-50);
  border-bottom: 1px solid var(--color-slate-200);
}

.stamp-card {
  max-width: 850px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-md);
}

.stamp-header {
  text-align: center;
  margin-bottom: 24px;
}

.stamp-header h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.stamp-toggle-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.stamp-toggle-btn {
  background: var(--color-slate-100);
  border: 1px solid var(--color-slate-200);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.stamp-toggle-btn.active {
  background: var(--color-emerald);
  color: #fff;
  border-color: var(--color-emerald);
}

.stamp-calc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

@media (min-width: 680px) {
  .stamp-calc-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.stamp-input-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stamp-input-box label {
  font-size: 0.85rem;
  font-weight: 700;
}

.stamp-result-box {
  background: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  padding: 20px;
}

.stamp-figure {
  margin-bottom: 8px;
}

.stamp-label {
  display: block;
  font-size: 0.8rem;
  color: var(--color-slate-500);
  font-weight: 700;
}

.stamp-cost {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-navy);
}

.stamp-status-badge {
  display: inline-block;
  background: var(--color-emerald-light);
  color: var(--color-emerald);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.stamp-rule-text {
  font-size: 0.82rem;
  color: var(--color-slate-500);
}

/* ==========================================================================
   Lender Panel
   ========================================================================== */
.lenders-section {
  padding: 70px 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-slate-200);
}

.lenders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .lenders-grid { grid-template-columns: repeat(4, 1fr); }
}

.lender-pill {
  background: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-navy);
  transition: var(--transition);
}

.lender-pill:hover {
  background: var(--color-emerald-light);
  border-color: var(--color-emerald);
  transform: translateY(-2px);
}

/* ==========================================================================
   Playbook Section (Lead Magnet)
   ========================================================================== */
.playbook-section {
  padding: 80px 0;
  background: var(--color-navy);
  color: #fff;
}

.playbook-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 960px) {
  .playbook-card {
    grid-template-columns: 1.25fr 1fr;
  }
}

.playbook-tag {
  background: #059669;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 12px;
}

.playbook-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.playbook-content p {
  font-size: 1.05rem;
  color: #94a3b8;
  margin-bottom: 22px;
}

.playbook-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.playbook-points li {
  font-size: 0.92rem;
  color: #cbd5e1;
  position: relative;
  padding-left: 22px;
}

.playbook-points li::before {
  content: "✓";
  color: #34d399;
  font-weight: 800;
  position: absolute;
  left: 0;
}

.playbook-form {
  background: var(--color-navy-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.playbook-form h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.p-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.p-field label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #cbd5e1;
}

.p-field input {
  background: #0a192f;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: #fff;
  padding: 12px 14px;
  font-size: 0.95rem;
  outline: none;
}

.p-field input:focus { border-color: #34d399; }

.p-note {
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: center;
  margin-top: 8px;
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.process-section {
  padding: 80px 0;
  background: #fff;
  border-bottom: 1px solid var(--color-slate-200);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.process-step-card {
  background: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: var(--transition);
}

.process-step-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-emerald);
  box-shadow: var(--shadow-md);
}

.step-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-emerald);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.process-step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-step-card p {
  font-size: 0.9rem;
  color: var(--color-slate-500);
  line-height: 1.55;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews-section {
  padding: 80px 0;
  background: var(--color-slate-50);
  border-bottom: 1px solid var(--color-slate-200);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.review-card {
  background: #fff;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.r-stars { color: #f59e0b; margin-bottom: 12px; }

.review-card p {
  font-size: 0.92rem;
  color: var(--color-slate-700);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 18px;
}

.r-author {
  margin-top: auto;
  border-top: 1px solid var(--color-slate-100);
  padding-top: 12px;
}

.r-author strong { display: block; font-size: 0.92rem; }
.r-author span { font-size: 0.78rem; color: var(--color-emerald); font-weight: 600; }

/* ==========================================================================
   Booking Section
   ========================================================================== */
.booking-section {
  padding: 80px 0;
  background: #fff;
}

.booking-card {
  max-width: 960px;
  margin: 0 auto;
  background: var(--color-navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: var(--shadow-xl);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 960px) {
  .booking-grid { grid-template-columns: 1fr 1.2fr; }
}

.booking-intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.booking-intro p {
  font-size: 0.98rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 24px;
}

.booking-guarantees {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
  color: #cbd5e1;
}

.booking-form {
  background: var(--color-navy-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 26px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #cbd5e1;
}

.form-group input, .form-group select {
  background: #0a192f;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: #fff;
  padding: 12px 14px;
  font-size: 0.92rem;
  outline: none;
}

.form-group input:focus, .form-group select:focus {
  border-color: #34d399;
}

.b-note {
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: center;
  margin-top: 10px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #060e1a;
  color: #94a3b8;
  padding: 60px 0 30px;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 48px;
}

@media (min-width: 680px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.licence-text {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 8px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #94a3b8; transition: var(--transition); }
.footer-col ul li a:hover { color: #fff; }

.attribution-card {
  background: #101c2e;
  border: 1px solid #1e2e46;
  border-radius: var(--radius-md);
  padding: 16px;
}

.attribution-card p { font-size: 0.82rem; margin-bottom: 8px; color: #cbd5e1; }
.agency-link { color: #34d399; font-weight: 700; font-size: 0.82rem; }

.footer-bottom {
  border-top: 1px solid #101c2e;
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
}

.footer-bottom a { color: #94a3b8; font-weight: 600; }

/* ==========================================================================
   Mobile Sticky Bar
   ========================================================================== */
.mobile-sticky-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--color-slate-200);
  padding: 10px 16px;
  z-index: 100;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .mobile-sticky-action-bar { display: flex; gap: 10px; }
}

.btn-sticky-phone {
  flex: 1;
  background: var(--color-slate-100);
  border: 1px solid var(--color-slate-200);
  color: var(--color-navy);
  font-weight: 700;
  padding: 12px;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.9rem;
}

.btn-sticky-calc {
  flex: 1.3;
  background: var(--color-emerald);
  color: #fff;
  font-weight: 800;
  padding: 12px;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.95rem;
}
