/* ============================================================
   Komfort Kings Heating & Air Conditioning
   Static Demo Stylesheet — Custom Royal-But-Premium Theme
   No external assets. No CDNs. No fonts.
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  background: #f8f9fa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- FOCUS ---------- */
:focus-visible {
  outline: 2px solid #c8963e;
  outline-offset: 2px;
}

/* ---------- UTILITY ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- COLOR TOKENS ---------- */
:root {
  --crown-gold: #c8963e;
  --crown-gold-light: #e0b864;
  --crown-gold-dark: #a07628;
  --navy: #0f1a2e;
  --navy-light: #162544;
  --cream: #fdfaf3;
  --white: #ffffff;
  --gray-100: #f1f3f5;
  --gray-200: #e2e6ea;
  --gray-300: #ced4da;
  --gray-500: #6c757d;
  --gray-700: #343a40;
  --gray-900: #1a1a2e;
  --red-emergency: #c0392b;
  --red-emergency-light: #e74c3c;
  --green: #27ae60;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.25s ease;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--crown-gold);
  color: #fff;
  box-shadow: 0 2px 8px rgba(200, 150, 62, 0.35);
}

.btn-primary:hover {
  background: var(--crown-gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 150, 62, 0.45);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-1px);
}

.btn-header-book {
  background: var(--crown-gold);
  color: #fff;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 6px rgba(200, 150, 62, 0.3);
}

.btn-header-book:hover {
  background: var(--crown-gold-dark);
}

.btn-header-call {
  color: #fff;
  font-size: 0.85rem;
  padding: 8px 12px;
  gap: 6px;
}

.btn-header-call:hover {
  color: var(--crown-gold-light);
}

.icon-phone {
  flex-shrink: 0;
}

/* ---------- SECTION HEADER ---------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--crown-gold);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(15, 26, 46, 0.97);
  box-shadow: var(--shadow-md);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 32px;
  line-height: 1;
}

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

.logo-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}

.logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--crown-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--radius-sm);
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ========== MOBILE STICKY BAR ========== */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--navy);
  padding: 10px 16px;
  gap: 10px;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
}

.sticky-btn {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
  color: #fff;
}

.sticky-book {
  background: var(--crown-gold);
}

.sticky-book:hover {
  background: var(--crown-gold-dark);
}

.sticky-call {
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.sticky-call:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ========== HERO ========== */
.hero {
  min-height: 760px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding: 140px 20px 80px;
  position: relative;
  background:
    linear-gradient(135deg, rgba(15, 26, 46, 0.88) 0%, rgba(22, 37, 68, 0.82) 40%, rgba(15, 26, 46, 0.9) 100%),
    linear-gradient(180deg, rgba(200, 150, 62, 0.08) 0%, transparent 50%);
  /* No external images — we use a deep navy gradient with gold accent instead of a photo */
  overflow: hidden;
}

/* Decorative background shapes */
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 150, 62, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 150, 62, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200, 150, 62, 0.15);
  border: 1px solid rgba(200, 150, 62, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--crown-gold-light);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero-title em {
  font-style: normal;
  color: var(--crown-gold-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 24px 20px;
}

.trust-list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
}

.trust-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.trust-stars {
  color: var(--crown-gold);
  letter-spacing: 2px;
}

/* ========== SERVICES ========== */
.services {
  padding: 80px 20px;
  background: var(--cream);
}

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--crown-gold-light);
}

.service-card--emergency {
  border-color: rgba(192, 57, 43, 0.3);
  background: linear-gradient(135deg, #fff 0%, #fef5f5 100%);
}

.service-card--emergency:hover {
  border-color: var(--red-emergency);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(200, 150, 62, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--crown-gold);
}

.service-card--emergency .service-icon {
  background: rgba(192, 57, 43, 0.08);
  color: var(--red-emergency);
}

.service-name {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 16px;
  flex: 1;
}

.service-link {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--crown-gold-dark);
  transition: color var(--transition);
}

.service-link:hover {
  color: var(--crown-gold);
}

.emergency-link {
  color: var(--red-emergency);
}

.emergency-link:hover {
  color: var(--red-emergency-light);
}

/* ========== SERVICE AREAS ========== */
.service-areas {
  padding: 80px 20px;
  background: var(--white);
}

.areas-layout {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.areas-map-visual {
  background: linear-gradient(135deg, var(--cream) 0%, #f0ead6 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  border: 2px dashed var(--gray-300);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.areas-map-visual svg {
  max-width: 250px;
  opacity: 0.5;
}

.area-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: background var(--transition);
}

.area-item:hover {
  background: rgba(200, 150, 62, 0.08);
}

.area-marker {
  font-size: 16px;
  flex-shrink: 0;
}

.area-note {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--gray-500);
  font-style: italic;
}

/* ========== WHY CHOOSE US ========== */
.why-us {
  padding: 80px 20px;
  background: var(--cream);
}

.why-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  text-align: center;
}

.why-icon {
  font-size: 40px;
  margin-bottom: 12px;
  line-height: 1;
}

.why-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 80px 20px;
  background: var(--white);
}

.testimonial-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.testimonial-rating-summary .stars {
  color: var(--crown-gold);
  font-size: 1.2rem;
  letter-spacing: 3px;
}

.testimonial-rating-summary span {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.testimonial-carousel {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.4s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 32px 40px;
  text-align: center;
}

.testimonial-stars {
  color: var(--crown-gold);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 1.08rem;
  color: var(--gray-700);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-card blockquote::before {
  content: "\201C";
  font-size: 4rem;
  color: rgba(200, 150, 62, 0.15);
  position: absolute;
  top: -30px;
  left: -12px;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}

.testimonial-card cite strong {
  color: var(--navy);
  font-size: 0.95rem;
}

.testimonial-card cite span {
  color: var(--gray-500);
  font-size: 0.82rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  font-size: 1.4rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all var(--transition);
}

.carousel-btn:hover {
  background: var(--crown-gold);
  color: #fff;
  border-color: var(--crown-gold);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  padding: 0;
  transition: background var(--transition);
}

.carousel-dot.active {
  background: var(--crown-gold);
}

/* ========== FAQ ========== */
.faq {
  padding: 80px 20px;
  background: var(--cream);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover {
  background: rgba(200, 150, 62, 0.04);
}

.faq-chevron {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--crown-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer p {
  padding: 0 20px 16px;
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 300px;
}

/* ========== BOOKING / CTA ========== */
.booking {
  padding: 80px 20px;
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
}

.booking .section-label {
  color: var(--crown-gold-light);
}

.booking .section-title {
  color: #fff;
}

.booking .section-desc {
  color: rgba(255, 255, 255, 0.65);
}

.booking-layout {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.booking-info h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #fff;
}

.booking-info > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.booking-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.booking-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.booking-contact-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.booking-emergency-box {
  background: rgba(192, 57, 43, 0.15);
  border: 1px solid rgba(192, 57, 43, 0.35);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.booking-emergency-box h4 {
  color: var(--red-emergency-light);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.booking-emergency-box p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.booking-emergency-box .btn {
  background: var(--red-emergency);
  color: #fff;
  font-size: 0.85rem;
  padding: 10px 20px;
}

.booking-emergency-box .btn:hover {
  background: var(--red-emergency-light);
}

/* Form */
.booking-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

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

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

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--crown-gold);
  box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-submit {
  width: 100%;
  padding: 14px 24px;
  background: var(--crown-gold);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 4px;
}

.form-submit:hover {
  background: var(--crown-gold-dark);
  box-shadow: 0 4px 16px rgba(200, 150, 62, 0.4);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  font-size: 56px;
  margin-bottom: 12px;
}

.form-success h3 {
  color: var(--navy);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--gray-500);
  font-size: 0.92rem;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 20px 28px;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-col p,
.footer-col li {
  font-size: 0.88rem;
  margin-bottom: 8px;
  line-height: 1.65;
}

.footer-col a {
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--crown-gold-light);
}

.footer-license {
  font-family: monospace;
  font-size: 0.82rem;
  opacity: 0.6;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
}

.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom a:hover {
  color: var(--crown-gold-light);
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }

  /* Header */
  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 12px 20px 20px;
    gap: 2px;
    transform: translateY(-110%);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 998;
  }

  .nav-list.show {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-link {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .btn-header-book,
  .btn-header-call {
    display: none;
  }

  /* Sticky mobile bar */
  .sticky-mobile-cta {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 120px 20px 80px;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* Trust */
  .trust-list {
    gap: 16px;
  }

  .trust-item {
    font-size: 0.8rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Areas */
  .areas-layout {
    grid-template-columns: 1fr;
  }

  .areas-map-visual {
    min-height: 180px;
  }

  /* Booking */
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 24px 20px;
  }

  .carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }

  .carousel-prev {
    left: -8px;
  }

  .carousel-next {
    right: -8px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Small phone */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .booking-form {
    padding: 20px;
  }

  .sticky-mobile-cta {
    padding: 8px 10px;
  }

  .sticky-btn {
    padding: 10px 12px;
    font-size: 0.82rem;
  }
}

/* ========== HTML/CSS compatibility pass ========== */
/* The DeepSeek build uses a few HTML class names that differ from the first CSS draft.
   These aliases keep the launched page polished without changing the generated markup. */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-sticky-bar {
  display: none;
}

.hero-overlay,
.hero-shape {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.hero-headline {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.02;
  color: #ffffff;
  letter-spacing: -0.045em;
  margin: 0 0 20px;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.hero-subhead {
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  max-width: 680px;
  margin: 0 auto 34px;
}

.hero-review-preview {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
}

.stars {
  color: var(--crown-gold-light);
  letter-spacing: 2px;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 18px;
}

.trust-bar-inner .trust-item {
  align-items: flex-start;
  flex-direction: column;
  gap: 4px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--cream);
  box-shadow: var(--shadow-sm);
}

.trust-label {
  color: var(--navy);
  font-weight: 800;
}

.trust-sub {
  color: var(--gray-600);
  font-size: 0.82rem;
  font-weight: 600;
}

.booking-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.map-visual {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 50%, rgba(200, 150, 62, 0.28), transparent 38%),
    linear-gradient(135deg, var(--navy), var(--navy-light));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.area-map {
  position: relative;
}

.map-svg-overlay {
  position: absolute;
  inset: 0;
}

.area-ul {
  margin: 0;
  padding-left: 18px;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--crown-gold-light);
  box-shadow: 0 0 0 8px rgba(200, 150, 62, 0.16);
}

.map-pin--hub {
  width: 18px;
  height: 18px;
  background: #ffffff;
}

.map-label {
  position: absolute;
  transform: translate(-50%, calc(-100% - 12px));
  padding: 6px 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.map-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: 999px;
  background: var(--crown-gold);
}

@media (max-width: 900px) {
  .header-cta {
    display: none;
  }

  .mobile-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 14px max(10px, env(safe-area-inset-bottom));
    background: rgba(15, 26, 46, 0.96);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
  }

  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: 680px;
    padding-top: 118px;
  }
}

@media (max-width: 560px) {
  .hero-headline {
    font-size: 2.45rem;
  }

  .hero-review-preview {
    border-radius: var(--radius-md);
  }

  .trust-bar-inner {
    grid-template-columns: 1fr;
  }
}

