/* ================================================
   SkipBoxes — style.css
   Mobile-first. Breakpoints: 768px, 1024px.
   All colors, fonts, and spacing via CSS custom properties.
   ================================================ */

/* ================================================
   CUSTOM PROPERTIES
   ================================================ */
:root {
  /* Colors — warm navy + amber system */
  /* Backgrounds */
  --bg-primary:      #FAFAF7;
  --bg-secondary:    #F0EEE8;
  --bg-white:        #FFFFFF;
  /* Navy (text, headings, structure) */
  --text-heading:    #2E4054;
  --text:            #3D5269;
  --text-secondary:  #6B7F94;
  --navy-dark:       #1E2D3D;
  /* Amber (CTAs, highlights, energy) */
  --accent:          #F0A020;
  --accent-dark:     #D4880A;
  --accent-light:    #F5E6C8;
  --accent-tint:     #FBF4E8;
  --accent-mid:      #8B6E2F;
  /* Borders */
  --border:          #E5E3DE;
  --border-hover:    #D5D3CE;
  /* White */
  --white:           #FFFFFF;
  --error:         #C0392B;
  --success:       #27AE60;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Layout */
  --max-width:        1200px;
  --section-pad:      48px;
  --container-pad:    24px;
  --radius-card:      12px;
  --radius-btn:       8px;
  --radius-input:     8px;
}

@media (min-width: 768px) {
  :root {
    --section-pad:    80px;
    --container-pad:  40px;
  }
}

/* ================================================
   RESET & BASE
   ================================================ */

/* Ensure the HTML `hidden` attribute always wins over display declarations in CSS */
[hidden] { display: none !important; }

*, *::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-body);
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* ================================================
   TYPOGRAPHY
   ================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.2;
}

h1 { font-size: 36px; }
h2 { font-size: 26px; margin-bottom: 32px; }
h3 { font-size: 20px; margin-bottom: 8px; }

h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-light);
  margin-bottom: 16px;
}

p { line-height: 1.65; }

@media (min-width: 768px) {
  h1 { font-size: 56px; }
  h2 { font-size: 32px; }
  h3 { font-size: 22px; }
}

/* ================================================
   LAYOUT UTILITIES
   ================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

section {
  padding: var(--section-pad) 0;
}

.bg-primary   { background-color: var(--bg-primary); }
.bg-secondary { background-color: var(--bg-secondary); }
.bg-white     { background-color: var(--bg-white); }

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background-color: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background-color: var(--accent);
  color: var(--white);
}

.btn:focus-visible {
  outline: 3px solid var(--accent-light);
  outline-offset: 2px;
}

/* ================================================
   HEADER & NAV
   ================================================ */
#header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo { height: 40px; width: auto; }

nav .nav-list {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  transition: color 0.15s;
}

.nav-link:hover { color: var(--accent-dark); }

.nav-cta {
  display: none;
  margin-left: auto;
  padding: 10px 20px;
  font-size: 14px;
}

.menu-toggle {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text);
  border-radius: 6px;
  transition: background 0.15s;
}

.menu-toggle:hover { background-color: var(--bg-primary); }
.menu-toggle svg { width: 24px; height: 24px; }

@media (min-width: 768px) {
  nav .nav-list { display: flex; }
  .nav-cta     { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px var(--container-pad) 24px;
  border-top: 1px solid var(--border);
  background-color: var(--bg-white);
}

.mobile-menu.is-open { display: flex; }

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.mobile-nav-link:hover { color: var(--accent); }

/* ================================================
   HERO
   ================================================ */
#hero { padding: 56px 0 48px; }

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-sub {
  font-size: 18px;
  margin: 20px 0 8px;
  max-width: 520px;
}

.hero-sub-2 {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0 0 32px;
  max-width: 520px;
  font-style: italic;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
}

.trust-item svg { width: 16px; height: 16px; flex-shrink: 0; }

.hero-image img {
  border-radius: var(--radius-card);
  width: 100%;
  object-fit: cover;
  max-height: 420px;
}

@media (min-width: 1024px) {
  #hero { padding: 96px 0 88px; }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }

  .hero-content { flex: 1; }
  .hero-image   { flex: 1; max-width: 540px; }

  .hero-image img { max-height: none; }
}

/* ================================================
   USP CALLOUT BANNER
   ================================================ */
.usp-banner-section {
  padding: 0;
}

.usp-banner-inner {
  padding: 0;
  max-width: 1200px;
}

.usp-banner-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ================================================
   VALUE PROPOSITION
   ================================================ */
.value-row {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.value-grid {
  display: grid;
  gap: 32px;
}

.value-col h3 { margin-bottom: 20px; }

.value-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  line-height: 1.5;
}

.value-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-list--bad  svg { color: #C0392B; }
.value-list--good svg { color: var(--success); }

.value-image {
  display: flex;
  align-items: center;
}

.value-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .value-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (min-width: 1024px) {
  .value-row {
    flex-direction: row;
    align-items: stretch;
    gap: 48px;
  }
  .value-grid {
    flex: 1 1 50%;
    min-width: 0;
  }
  .value-image {
    flex: 0 0 42%;
  }
}

/* ================================================
   THE BIN SHOWCASE
   ================================================ */
.section-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
}

.bin-showcase-grid {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.bin-showcase-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: var(--bg-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
}

.bin-showcase-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.bin-showcase-content {
  padding: 32px;
}

.bin-showcase-content h3 {
  margin-bottom: 20px;
}

.bin-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bin-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.bin-feature-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

@media (min-width: 768px) {
  .bin-showcase-card {
    flex-direction: row;
    align-items: stretch;
  }

  .bin-showcase-card--reverse {
    flex-direction: row-reverse;
  }

  .bin-showcase-image {
    flex: 1 1 50%;
  }

  .bin-showcase-image img {
    height: 100%;
    object-fit: cover;
  }

  .bin-showcase-content {
    flex: 1 1 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* ================================================
   HOW IT WORKS
   ================================================ */
.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: var(--bg-secondary);
  border-radius: 50%;
  color: var(--accent);
}

.step-icon svg { width: 28px; height: 28px; }

.step h3 { margin-bottom: 10px; }
.step p  { color: var(--text); max-width: 340px; }

.step-image { margin-top: 20px; }
.step-image img {
  border-radius: var(--radius-card);
  width: 100%;
  max-width: 480px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .steps-grid {
    flex-direction: row;
    gap: 32px;
  }
  .step        { flex: 1; }
  .step p      { max-width: none; }
}

/* ================================================
   PRICING
   ================================================ */
.pricing-grid {
  display: grid;
  gap: 24px;
}

.pricing-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.pricing-card:hover {
  box-shadow: 0 8px 28px rgba(13, 59, 102, 0.1);
  transform: translateY(-3px);
}

.pricing-card h3 { margin-bottom: 4px; }

.pricing-best-for {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 24px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price-note {
  font-size: 13px;
  color: var(--accent-mid);
  margin-bottom: 20px;
}

.pricing-details {
  flex: 1;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pricing-detail-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.pricing-detail-row:last-child { border-bottom: none; }

.pricing-detail-row svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
  flex-shrink: 0;
}

.pricing-card .btn { width: 100%; }

.pricing-extras {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
}

.pricing-extras li {
  font-size: 14px;
  color: var(--accent);
}

.pricing-footnote {
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
}

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

/* ================================================
   WHY SKIPBOXES
   ================================================ */
.why-grid {
  display: grid;
  gap: 20px;
}

.why-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px;
}

.why-card svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin-bottom: 14px;
}

.why-card h3 { margin-bottom: 8px; }
.why-card p  { font-size: 15px; }

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

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

/* ================================================
   SERVICE AREA
   ================================================ */
.service-area-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 900px) {
  .service-area-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 56px;
  }
  .service-map-wrap { flex: 0 0 52%; }
  .service-area-text { flex: 1; }
}

/* Map SVG */
.service-map {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
}

/* Map legend */
.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 14px;
}

.map-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.map-legend-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.map-legend-dot--standard { background-color: var(--accent); opacity: 0.85; }
.map-legend-dot--extended {
  background-color: transparent;
  border: 2px solid var(--accent);
}

/* Service tiers (text listing) */
.service-tier {
  margin-bottom: 24px;
}

.service-tier h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.tier-indicator {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tier-indicator--standard { background-color: var(--accent); }
.tier-indicator--extended {
  background-color: transparent;
  border: 2px solid var(--accent);
}

.tier-note {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.service-area-text .btn { margin-top: 8px; }

.service-cities {
  font-size: 17px;
  margin-bottom: 12px;
}

.service-note {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 28px;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-grid {
  display: grid;
  gap: 20px;
}

.testimonial-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 32px;
}

.testimonial-stars {
  font-size: 18px;
  color: #F59E0B;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-card blockquote {
  font-size: 16px;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--accent);
}

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

/* ================================================
   FAQ ACCORDION
   ================================================ */
.faq-container { max-width: 800px; }

.faq-list {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background-color: var(--bg-white);
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-heading);
  background: none;
  transition: background-color 0.15s;
}

.faq-question:hover,
.faq-question[aria-expanded="true"] {
  background-color: var(--bg-primary);
}

.faq-chevron {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.faq-chevron svg { width: 20px; height: 20px; }

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 4px 24px 20px;
  font-size: 15px;
  line-height: 1.65;
  background-color: var(--bg-primary);
}

/* ================================================
   BOOKING FORM
   ================================================ */
.form-wrapper {
  max-width: 760px;
  margin: 0 auto;
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px 28px;
}

@media (min-width: 600px) {
  .form-wrapper { padding: 48px 40px; }
}

.form-wrapper h2 { margin-bottom: 8px; }

.form-sub {
  color: var(--accent);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

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

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

.form-row .form-group { margin-bottom: 0; }

label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-heading);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-input);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background-color: var(--bg-white);
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91, 108, 125, 0.15);
}

input.input-error,
textarea.input-error,
.package-fieldset.input-error .package-options {
  border-color: var(--error);
}

.input-narrow { max-width: 160px; }

textarea {
  resize: vertical;
  min-height: 96px;
}

.field-hint {
  font-size: 12px;
  color: var(--accent-mid);
}

.field-error {
  font-size: 13px;
  color: var(--error);
  font-weight: 500;
  min-height: 18px;
}

.required { color: var(--error); }

.optional {
  color: var(--accent-mid);
  font-weight: 400;
  font-size: 13px;
}

.char-count {
  font-size: 12px;
  color: var(--accent-mid);
  text-align: right;
}

/* Package radio buttons */
.package-fieldset {
  border: none;
  padding: 0;
}

.package-fieldset legend {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 10px;
  float: left;
  width: 100%;
}

.package-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  clear: both;
}

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

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

.package-option { cursor: pointer; }

.package-option input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.package-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 14px 12px;
  border: 2px solid var(--border);
  border-radius: var(--radius-card);
  transition: border-color 0.15s, background-color 0.15s;
  cursor: pointer;
}

.package-label strong { font-size: 15px; }
.package-label .pkg-meta { font-size: 13px; color: var(--accent); }

.package-option input[type="radio"]:checked + .package-label {
  border-color: var(--accent);
  background-color: rgba(91, 108, 125, 0.06);
}

.package-option input[type="radio"]:focus-visible + .package-label {
  outline: 3px solid var(--accent-light);
  outline-offset: 2px;
}

/* SMS consent checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
}

/* Legal consent */
.form-legal {
  font-size: 13px;
  color: var(--accent-mid);
  margin-bottom: 24px;
  line-height: 1.5;
}

.form-legal a {
  color: var(--accent);
  text-decoration: underline;
}

/* Submit */
.btn-submit {
  min-width: 200px;
  gap: 10px;
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success state */
.form-success {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background-color: #F0FBF4;
  border: 1.5px solid var(--success);
  border-radius: var(--radius-card);
  padding: 24px;
  margin-bottom: 24px;
}

.form-success svg { width: 24px; height: 24px; color: var(--success); flex-shrink: 0; margin-top: 1px; }
.form-success p   { font-size: 16px; font-weight: 500; color: #1A5C34; line-height: 1.5; }

/* Server error */
.form-server-error {
  margin-top: 16px;
  padding: 14px 18px;
  background-color: #FEF2F2;
  border: 1.5px solid var(--error);
  border-radius: var(--radius-input);
  font-size: 14px;
  color: var(--error);
  font-weight: 500;
}

/* Honeypot — hidden from real users (bots that ignore CSS may fill it) */
.honeypot-field { display: none; }

/* ================================================
   SKIP LINK (keyboard / screen-reader accessibility)
   ================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 10px 18px;
  background-color: var(--accent-dark);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 0 0 var(--radius-btn) var(--radius-btn);
  text-decoration: none;
  transition: top 0.1s;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--accent-light);
  outline-offset: 2px;
}

/* ================================================
   LEGAL PAGES (privacy.html, terms.html)
   ================================================ */
.legal-hero {
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--border);
}

.legal-hero h1 {
  font-size: 32px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .legal-hero h1 { font-size: 44px; }
}

.legal-updated {
  font-size: 14px;
  color: var(--accent);
  max-width: 700px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.legal-updated a {
  color: var(--accent-dark);
  text-decoration: underline;
}

.legal-effective {
  font-size: 13px;
  color: var(--accent-mid);
  font-style: italic;
}

.legal-body {
  padding: var(--section-pad) 0;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

/* First paragraph intro */
.legal-content > p:first-child {
  font-size: 17px;
  color: var(--text);
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.legal-content h2 {
  font-size: 20px;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--text-heading);
}

@media (min-width: 768px) {
  .legal-content h2 { font-size: 24px; }
}

/* Sub-headings within a section (e.g., 2.1 Rental Period) */
.legal-content h3 {
  font-size: 16px;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--text-heading);
}

.legal-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--accent-dark);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--accent);
}

.legal-address {
  font-style: normal;
  background-color: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  margin-top: 8px;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.8;
}

.legal-address a {
  color: var(--accent-dark);
}

.legal-note {
  font-size: 13px;
  color: var(--accent-mid);
  font-style: italic;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.legal-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

.legal-blockquote {
  background: var(--bg-secondary);
  border-left: 4px solid var(--accent);
  margin: 16px 0 24px;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}

.legal-blockquote a {
  color: var(--accent-dark);
}

/* ============================================================
   COOKIE BANNER
============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-dark);
  border-top: 3px solid var(--accent);
  padding: 16px 0;
  z-index: 9000;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-banner-text a {
  color: var(--accent-light);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 20px;
  font-size: 14px;
  white-space: nowrap;
}

.cookie-btn-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  padding: 8px 20px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.cookie-btn-decline:hover,
.cookie-btn-decline:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: none;
}

/* Footer address style (resets italic from browser default) */
address { font-style: normal; }

/* ================================================
   FINAL CTA
   ================================================ */
.final-cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.final-cta-inner h2 { margin-bottom: 12px; }

.final-cta-inner p {
  font-size: 17px;
  margin-bottom: 32px;
}

/* ================================================
   FOOTER
   ================================================ */
#footer {
  background-color: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid var(--border);
}

#footer a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.15s;
}

#footer a:hover { color: var(--white); }

.footer-inner {
  display: grid;
  gap: 40px;
  padding-top: 56px;
  padding-bottom: 48px;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  max-width: 220px;
  margin-bottom: 8px;
}

.footer-local {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--accent-light);
}

.footer-local svg { width: 14px; height: 14px; }

#footer h4 { color: var(--accent-light); }

.footer-nav ul,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav li a,
.footer-contact a {
  font-size: 14px;
}

.footer-contact p { font-size: 14px; line-height: 1.6; }

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  transition: border-color 0.15s, background-color 0.15s;
}

.social-link:hover {
  border-color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
}

.social-link svg { width: 20px; height: 20px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a { font-size: 13px; }

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

  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

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