/* ============================================================
   CHARLTON MOTORS — Premium Stylesheet
   Brand:  Dark #3d3e42  |  Blue #2b75d4
   Inspired by clean, confident automotive design
   ============================================================ */

:root {
  --dark:      #3d3e42;
  --dark-deep: #25262a;
  --blue:      #2b75d4;
  --blue-dark: #1a5cb0;
  --light:     #f5f6f8;
  --white:     #ffffff;
  --grey:      #6b7280;
  --grey-lt:   #9ca3af;
  --border:    #e2e4e8;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow:    0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.13);
  --radius:    10px;
  --transition: all 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ── PHOTO PLACEHOLDERS ───────────────────────────────────── */
/* Used throughout the site until real photos are added.
   Replace <div class="photo-ph"> with <img src="..."> when ready. */
.photo-ph {
  background: linear-gradient(135deg, #e8eaed 0%, #d4d7dc 100%);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #8a909a;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border: 2px dashed #c4c8d0;
  text-align: center;
  padding: 24px;
}

.photo-ph .ph-icon {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.55;
}
.photo-ph .ph-label { line-height: 1.4; max-width: 180px; }

.photo-ph-hero {
  background: linear-gradient(135deg, #1e2026 0%, #2c2e34 100%);
  color: rgba(255,255,255,0.3);
  border-color: rgba(255,255,255,0.1);
}
.photo-ph-hero .ph-icon {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.35;
}

/* ── HEADER ───────────────────────────────────────────────── */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(37,38,42,0.08);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 0;
}

.logo img {
  height: 58px;
  width: auto;
  border-radius: 0;
  background: transparent;
  padding: 4px 0;
  object-fit: contain;
}

nav {
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  flex: 1;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2px;
  align-items: center;
  margin-left: auto;
}

nav ul li a {
  color: rgba(37,38,42,0.78);
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--dark-deep);
  background: rgba(37,38,42,0.08);
  text-decoration: none;
}

.nav-book a {
  background: var(--blue) !important;
  color: var(--white) !important;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 8px 12px !important;
}

.nav-book a:hover {
  background: var(--blue-dark) !important;
}

@media (max-width: 1180px) {
  nav ul {
    gap: 1px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  nav ul::-webkit-scrollbar { display: none; }

  nav ul li a {
    padding: 7px 10px;
    font-size: 0.8rem;
  }

  .nav-book a {
    padding: 8px 12px !important;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark-deep);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO — full-screen ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center 58%;
  width: 100%;
  height: 100%;
  opacity: 0.62;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(25,26,30,0.90) 0%,
    rgba(25,26,30,0.70) 46%,
    rgba(25,26,30,0.28) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(43,117,212,0.18);
  border: 1px solid rgba(43,117,212,0.35);
  color: #7cb4f5;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 22px;
  max-width: 680px;
}

.hero h1 em {
  font-style: normal;
  color: var(--blue);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.62);
  max-width: 500px;
  margin-bottom: 38px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── TRUST BAR ────────────────────────────────────────────── */
.trust-bar {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: stretch;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 32px;
  border-right: 1px solid rgba(255,255,255,0.07);
  flex: 1;
}

.trust-item:first-child { padding-left: 0; }
.trust-item:last-child  { border-right: none; }

.trust-icon {
  min-width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(43,117,212,0.16);
  border: 1px solid rgba(43,117,212,0.3);
  color: #d8e9ff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.trust-text strong {
  display: block;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.trust-text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.42);
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 7px;
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(43,117,212,0.35);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-white:hover {
  background: rgba(255,255,255,0.9);
  color: var(--dark);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn-dark:hover {
  background: var(--dark-deep);
  color: var(--white);
  text-decoration: none;
}

/* ── SECTION WRAPPER ──────────────────────────────────────── */
.section {
  padding: 90px 32px;
}

.section-sm { padding: 60px 32px; }

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.centered { text-align: center; }
.section-header.centered .divider { margin: 14px auto 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue);
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--dark-deep);
}

.section-header h2 em {
  font-style: normal;
  color: var(--blue);
}

.section-header p {
  color: var(--grey);
  font-size: 1.05rem;
  max-width: 560px;
  margin-top: 14px;
  line-height: 1.7;
}

.section-header.centered p { margin-left: auto; margin-right: auto; }

.divider {
  width: 44px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin-top: 14px;
}

/* ── SERVICE CARDS — VW style ─────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(43,117,212,0.2);
}

.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.card-img-ph {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #e8eaed 0%, #d4d7dc 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #9ca3af;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-bottom: 1px solid var(--border);
}

.card-img-ph .ph-icon {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.55;
}

.card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--dark-deep);
}

.card-body p {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.65;
  flex: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue);
  margin-top: 16px;
  transition: gap 0.2s;
}

.card-link:hover { gap: 10px; text-decoration: none; }

/* ── SPLIT LAYOUT ─────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--dark-deep);
}

.split-text h2 em { font-style: normal; color: var(--blue); }

.split-text p {
  color: var(--grey);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.split-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-img-ph {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e8eaed 0%, #d4d7dc 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #9ca3af;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border: 2px dashed #c4c8d0;
  text-align: center;
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.split-img-ph .ph-icon {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* ── CHECKLIST ────────────────────────────────────────────── */
.checklist {
  list-style: none;
  margin: 16px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.checklist li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.93rem;
  color: var(--grey);
}

.checklist li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ── TEAM SECTION ─────────────────────────────────────────── */
.team-section { background: var(--light); }

.team-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}

.team-img-wrap {
  position: relative;
}

.team-photo {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 5/4;
  box-shadow: var(--shadow-lg);
}

.team-photo-ph {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 5/4;
  background: linear-gradient(135deg, #d4d7dc 0%, #c8cbd1 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #8a909a;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border: 2px dashed #b8bcc4;
  text-align: center;
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.team-photo-ph .ph-icon {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.55;
}

.team-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  text-align: center;
}

.team-badge .num {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.team-badge .lbl {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
  margin-top: 2px;
}

.team-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--dark-deep);
}

.team-text h2 em { font-style: normal; color: var(--blue); }

.team-text p {
  color: var(--grey);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.team-members {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.team-member {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 18px;
  box-shadow: var(--shadow-sm);
}

.team-member-info strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--dark-deep);
}

.team-member-info span {
  font-size: 0.75rem;
  color: var(--grey);
}

/* ── STAT STRIP ───────────────────────────────────────────── */
.stat-strip {
  background: var(--dark-deep);
  padding: 0 32px;
}

.stat-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,0.06);
}

.stat-item {
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-num em { font-style: normal; color: var(--blue); }

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
  font-weight: 600;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section { background: var(--light); }

.review-carousel {
  max-width: 900px;
  margin: 0 auto;
  --reviews-per-view: 3;
}

.review-carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius);
}

.review-carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.review-slide {
  flex: 0 0 calc(100% / var(--reviews-per-view));
  padding: 0 6px;
  box-sizing: border-box;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  min-height: 240px;
}

.review-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.review-text {
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.review-meta {
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-lt);
}

.review-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.review-carousel-btn {
  appearance: none;
  border: 1px solid rgba(43,117,212,0.22);
  background: var(--white);
  color: var(--blue);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.review-carousel-btn:hover {
  transform: translateY(-1px);
  background: var(--blue);
  color: var(--white);
}

.review-carousel-counter {
  min-width: 88px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-lt);
}

@media (max-width: 1100px) {
  .review-carousel { --reviews-per-view: 2; }
}

@media (max-width: 700px) {
  .review-carousel { --reviews-per-view: 1; }
}

/* ── CTA BANNER — full bleed ──────────────────────────────── */
.cta-section {
  position: relative;
  background: var(--dark-deep);
  padding: 90px 32px;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 100%, rgba(43,117,212,0.18) 0%, transparent 70%);
}

.cta-section > * { position: relative; z-index: 1; }

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-section h2 em { font-style: normal; color: var(--blue); }

.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--dark-deep);
  padding: 70px 32px 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 10% 50%, rgba(43,117,212,0.12) 0%, transparent 70%);
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 12px;
}

.page-hero h1 em { font-style: normal; color: var(--blue); }

.page-hero p { color: rgba(255,255,255,0.5); font-size: 1rem; max-width: 500px; }

.page-hero-breadcrumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.page-hero-breadcrumb a { color: rgba(255,255,255,0.4); }
.page-hero-breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.page-hero-breadcrumb span { color: var(--blue); }

/* ── PRICE TABLE ──────────────────────────────────────────── */
.price-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.price-table thead tr { background: var(--dark-deep); }

.price-table th {
  color: var(--white);
  padding: 15px 22px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-table td {
  padding: 15px 22px;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  vertical-align: middle;
}

.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--light); }
.price-table .price { font-weight: 800; color: var(--blue); white-space: nowrap; }

/* ── BOOKING FORM ─────────────────────────────────────────── */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

.booking-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 44px;
  box-shadow: var(--shadow);
}

.booking-sidebar {
  background: var(--dark-deep);
  border-radius: 14px;
  padding: 32px;
  color: var(--white);
  position: sticky;
  top: 90px;
}

.booking-sidebar h3 {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 22px;
}

.sidebar-item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.sidebar-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.sidebar-icon {
  min-width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex-shrink: 0;
  margin-top: 1px;
}

.sidebar-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  color: currentColor;
}

.sidebar-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}

.sidebar-item p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* Steps */
.booking-steps {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  position: relative;
}

.booking-steps::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step { flex: 1; text-align: center; position: relative; z-index: 1; }

.step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--light);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  margin: 0 auto 8px;
  color: var(--grey);
  transition: var(--transition);
}

.step.active .step-num { background: var(--blue); border-color: var(--blue); color: var(--white); }
.step.done .step-num   { background: #16a34a; border-color: #16a34a; color: var(--white); }

.step-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--grey-lt);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.step.active .step-label { color: var(--blue); }
.step.done .step-label   { color: #16a34a; }

/* Form fields */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(43,117,212,0.12);
}

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

/* Date availability */
.availability-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.legend-item,
.date-slot {
  border-radius: 10px;
  font-weight: 800;
  transition: var(--transition);
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legend-available { background: rgba(22,163,74,0.10); color: #166534; }
.legend-limited   { background: rgba(245,158,11,0.12); color: #92400e; }
.legend-full      { background: rgba(220,38,38,0.10); color: #991b1b; }

.booking-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.availability-status {
  font-size: 0.84rem;
  color: var(--grey);
  font-weight: 600;
}

.btn-small {
  padding: 9px 12px !important;
  font-size: 0.8rem !important;
}

.selected-date-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(43,117,212,0.16);
  background: rgba(43,117,212,0.06);
  border-radius: 12px;
  margin: 18px 0 16px;
}

.selected-date-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 4px;
}

.selected-date-text {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--dark-deep);
}

.time-slots-section {
  margin-top: 18px;
}

.date-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.date-slot {
  padding: 14px 12px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 1px 2px rgba(15,23,42,0.04);
}

.date-slot:hover:not(.full):not(.selected) {
  transform: translateY(-1px);
  border-color: var(--blue);
}

.date-slot .date-day {
  display: block;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  color: inherit;
  opacity: 0.9;
}

.date-slot .date-label {
  display: block;
  font-size: 0.98rem;
  line-height: 1.2;
}

.date-slot .date-meta {
  display: block;
  margin-top: 6px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.date-slot.available { background: rgba(22,163,74,0.10); border-color: rgba(22,163,74,0.22); color: #166534; }
.date-slot.limited   { background: rgba(245,158,11,0.10); border-color: rgba(245,158,11,0.24); color: #92400e; }
.date-slot.full      { background: rgba(220,38,38,0.10); border-color: rgba(220,38,38,0.24); color: #991b1b; opacity: 0.75; cursor: not-allowed; }
.date-slot.selected   { background: var(--blue); border-color: var(--blue); color: var(--white); box-shadow: 0 2px 10px rgba(43,117,212,0.25); }

/* Time slots */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(86px, 1fr));
  gap: 9px;
  margin-top: 10px;
}

.time-slot {
  padding: 10px 6px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--grey);
  background: var(--white);
  transition: var(--transition);
  user-select: none;
}

.time-slot:hover:not(.booked) { border-color: var(--blue); color: var(--blue); }

.time-slot.available {
  background: rgba(22,163,74,0.08);
  border-color: rgba(22,163,74,0.22);
  color: #166534;
}

.time-slot.booked {
  background: rgba(220,38,38,0.08);
  border-color: rgba(220,38,38,0.22);
  color: #991b1b;
  cursor: not-allowed;
  text-decoration: line-through;
  opacity: 0.85;
}

.time-slot.selected {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(43,117,212,0.3);
}

.availability-loading {
  padding: 14px 0;
  color: var(--grey);
  font-size: 0.9rem;
}

/* Success */
.success-box {
  text-align: center;
  padding: 40px 24px;
  display: none;
}

.success-box .success-icon {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(22,163,74,0.1);
  border: 1px solid rgba(22,163,74,0.22);
  color: #16a34a;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.success-box h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark-deep);
  margin-bottom: 12px;
}

.success-box p { color: var(--grey); margin-bottom: 8px; font-size: 0.95rem; }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  background: var(--dark-deep);
  border-radius: 14px;
  padding: 40px;
  color: var(--white);
  position: sticky;
  top: 90px;
}

.contact-info h3 {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: flex-start;
}

.contact-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-icon {
  min-width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.contact-item a:hover { color: var(--blue); text-decoration: none; }

.hours-table { width: 100%; }

.hours-table td {
  padding: 4px 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}

.hours-table td:first-child {
  font-weight: 700;
  color: var(--white);
  width: 55%;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--dark-deep);
}

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  height: 380px;
  margin-top: 40px;
  box-shadow: var(--shadow);
}

.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--dark-deep);
  color: rgba(255,255,255,0.45);
  padding: 64px 32px 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner { max-width: 1280px; margin: 0 auto; }

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

.footer-brand .name {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 3px;
}

.footer-brand .name em { font-style: normal; color: var(--blue); }

.footer-brand .tag {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}

.footer-brand p { font-size: 0.85rem; line-height: 1.65; max-width: 320px; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); text-decoration: none; }

.footer-col p { font-size: 0.85rem; margin-bottom: 8px; }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
}

/* ── LIGHT BG VARIANT ─────────────────────────────────────── */
.bg-light { background: var(--light); }
.bg-dark  { background: var(--dark-deep); }

/* ── UTILITY ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .cards-grid   { grid-template-columns: repeat(2, 1fr) !important; }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .stat-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { position: static; }
}

@media (max-width: 800px) {
  .split, .team-inner { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse { direction: ltr; }
  .header-inner { padding: 0 20px; }
  .section { padding: 60px 20px; }
  nav ul { display: none; }
  nav ul.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: rgba(37,38,42,0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 16px 16px calc(20px + env(safe-area-inset-bottom));
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 34px rgba(0,0,0,0.28);
    z-index: 1001;
    height: calc(100dvh - 78px);
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    align-items: stretch;
  }
  nav ul.open li { width: 100%; }
  nav ul.open li a {
    display: block;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    text-align: center;
    color: var(--white);
    background: rgba(255,255,255,0.04);
  }
  nav ul.open li a:hover,
  nav ul.open li a.active {
    color: var(--white);
    background: rgba(255,255,255,0.12);
  }
  nav ul.open .nav-book a {
    padding: 13px 16px !important;
    text-align: center;
    background: var(--blue);
  }
  .hamburger { display: flex; }
  .hero {
    min-height: auto;
    padding: 88px 0 56px;
  }
  .hero-content { padding: 0 20px; }
  .hero h1 { font-size: clamp(2.1rem, 11vw, 2.85rem); max-width: 12ch; }
  .hero-sub { font-size: 0.98rem; margin-bottom: 28px; }
  .hero-btns { gap: 12px; }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-scroll { display: none; }
  .trust-bar-inner { flex-wrap: wrap; }
  .trust-item {
    flex: 0 0 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 16px 0;
  }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .card-body { padding: 22px !important; }
  .booking-card,
  .contact-form,
  .contact-info,
  .booking-sidebar {
    padding: 22px;
    border-radius: 12px;
  }
  .team-badge { right: 0; bottom: -14px; }
  .section-header { margin-bottom: 34px; }
  .section-header p,
  .split-text p,
  .team-text p,
  .cta-section p {
    font-size: 0.96rem;
  }
  .cards-grid,
  .cards-grid-4,
  .reviews-grid,
  .footer-grid,
  .stat-strip-inner,
  .booking-layout,
  .contact-layout,
  .split,
  .team-inner {
    gap: 18px;
  }
  .stat-strip { padding: 0 20px; }
  .stat-strip-inner {
    grid-template-columns: 1fr;
    border-left: none;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 24px 16px;
  }
  .stat-item:last-child { border-bottom: none; }
  .booking-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 28px;
  }
  .booking-steps::before { display: none; }
  .step-label { line-height: 1.2; }
  .booking-toolbar,
  .selected-date-panel {
    align-items: stretch;
  }
  .booking-toolbar .btn,
  .selected-date-panel .btn {
    width: 100%;
    justify-content: center;
  }
  .date-picker-grid { grid-template-columns: repeat(auto-fill, minmax(142px, 1fr)); }
  .time-slots-grid { grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); }
  .price-table {
    display: block;
    overflow: hidden;
  }
  .price-table thead { display: none; }
  .price-table tbody,
  .price-table tr,
  .price-table td { display: block; width: 100%; }
  .price-table tr {
    margin-bottom: 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  .price-table td {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    background: var(--white) !important;
  }
  .price-table td:last-child { border-bottom: none; }
  .price-table td::before {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--grey-lt);
    flex-shrink: 0;
  }
  .price-table td:nth-child(1)::before { content: 'Service'; }
  .price-table td:nth-child(2)::before { content: 'Details'; }
  .price-table td:nth-child(3)::before { content: 'Price'; }
  .price-table .price { white-space: normal; text-align: right; }
  .hours-table td {
    display: block;
    padding: 2px 0;
  }
  .hours-table tr {
    display: block;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .hours-table tr:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
  .hours-table td:first-child {
    width: auto;
    color: rgba(255,255,255,0.78);
  }
  .hours-table td:last-child {
    color: rgba(255,255,255,0.92);
    font-weight: 700;
  }
  #gallery.section,
  #about.section {
    padding: 56px 20px !important;
  }
  #about > .section-inner > div {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

@media (max-width: 500px) {
  .cards-grid,
  .cards-grid-4 {
    grid-template-columns: 1fr !important;
  }
  .stat-strip-inner { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }
  .section { padding: 48px 16px; }
  .section-sm { padding: 40px 16px; }
  .page-hero { padding: 54px 16px 46px; }
  .page-hero h1 { font-size: clamp(1.8rem, 8vw, 2.35rem); }
  .page-hero p { font-size: 0.95rem; max-width: none; }
  .page-hero-breadcrumb {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    flex-wrap: wrap;
    gap: 6px;
  }
  .section-header h2,
  .split-text h2,
  .team-text h2,
  .cta-section h2 {
    font-size: clamp(1.6rem, 7vw, 2.15rem);
  }
  nav ul.open {
    top: 76px;
    height: calc(100dvh - 76px);
    max-height: calc(100dvh - 76px);
    padding: 14px 14px calc(18px + env(safe-area-inset-bottom));
    gap: 6px;
  }
  nav ul.open li a {
    padding: 12px 14px;
    font-size: 0.92rem;
  }
  .card-body,
  .review-card {
    padding: 18px !important;
  }
  .card-body p,
  .review-text {
    font-size: 0.88rem;
  }
  .team-members {
    gap: 10px;
  }
  .team-member {
    width: 100%;
    border-radius: 14px;
  }
  .btn {
    width: 100%;
    justify-content: center;
    padding-left: 18px;
    padding-right: 18px;
  }
  .booking-steps {
    gap: 6px;
  }
  .step-num {
    width: 26px;
    height: 26px;
    font-size: 0.75rem;
    margin-bottom: 6px;
  }
  .step-label {
    font-size: 0.64rem;
    letter-spacing: 0.05em;
  }
  .date-picker-grid {
    grid-template-columns: 1fr;
  }
  .time-slots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .price-table td {
    flex-direction: column;
    gap: 6px;
  }
  .price-table td::before {
    margin-bottom: 2px;
  }
  .price-table .price {
    text-align: left;
  }
  #gallery.section,
  #about.section {
    padding: 48px 16px !important;
  }
}

@media (max-width: 640px) {
  .selected-date-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}
