/* ===========================
   CLARITY HEADLIGHTS — style.css
   =========================== */

:root {
  --navy: #0c1825;
  --navy-mid: #0f2035;
  --navy-light: #1a3555;
  --accent: #5b9fd6;
  --accent-bright: #7abce8;
  --accent-dim: #3a7aaa;
  --white: #e8f2f9;
  --gray: #7a96b0;
  --gray-light: #b8cfde;
  --card-bg: #112030;
  --card-border: rgba(91,159,214,0.18);
  --radius: 10px;
  --transition: 0.25s ease;
  --max-width: 1140px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

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

/* ===========================
   TYPOGRAPHY
   =========================== */

h1, h2, h3 {
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

em { font-family: 'Lora', serif; font-style: italic; }

.section-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

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

.section-header h2 {
  font-size: clamp(36px, 5vw, 52px);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto;
  font-size: 17px;
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--navy);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91,159,214,0.35);
}

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

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

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

.btn-outline:hover {
  background: var(--accent);
  color: var(--navy);
}

.btn-full { width: 100%; }

/* ===========================
   ANIMATIONS
   =========================== */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes beamPulse {
  0%, 100% { opacity: 0.15; }
  50%       { opacity: 0.3; }
}

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

.reveal {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.reveal-delay-1 { animation-delay: 0.15s; }
.reveal-delay-2 { animation-delay: 0.3s; }
.reveal-delay-3 { animation-delay: 0.45s; }
.reveal-delay-4 { animation-delay: 0.6s; }

.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===========================
   NAV
   =========================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(11, 18, 32, 0.97);
  box-shadow: 0 1px 0 rgba(91,159,214,0.15), 0 4px 24px rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--navy);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo-sm .logo-mark { width: 28px; height: 28px; font-size: 18px; }
.logo-sm .logo-text { font-size: 17px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--gray-light);
  transition: color var(--transition);
}

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

.nav-cta {
  background: var(--accent) !important;
  color: var(--navy) !important;
  padding: 9px 20px;
  border-radius: 5px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition) !important;
}

.nav-cta:hover {
  background: var(--accent-bright) !important;
  transform: translateY(-1px);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(11,18,32,0.98);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(91,159,214,0.15);
}

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

.mm-link {
  padding: 14px 0;
  font-size: 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-light);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}

.mm-link:hover { color: var(--white); }

.mm-cta {
  margin-top: 12px;
  background: var(--accent);
  color: var(--navy);
  text-align: center;
  padding: 14px;
  border-radius: 6px;
  border-bottom: none;
}

/* ===========================
   HERO
   =========================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 55% 50%, #1a3a5c 0%, #0c1825 70%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91,159,214,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,159,214,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-beam {
  position: absolute;
  top: 50%;
  transform-origin: left center;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: beamPulse 4s ease-in-out infinite;
}

.hero-beam-1 {
  left: 55%;
  width: 45%;
  transform: translateY(-80px) rotate(-8deg);
  animation-delay: 0s;
}

.hero-beam-2 {
  left: 55%;
  width: 40%;
  transform: translateY(60px) rotate(5deg);
  animation-delay: 2s;
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(91,159,214,0.12);
  border: 1px solid rgba(91,159,214,0.3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: beamPulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(56px, 9vw, 100px);
  font-weight: 800;
  line-height: 1.0;
  margin-bottom: 24px;
  max-width: 700px;
}

.hero-title em {
  color: var(--accent);
  font-size: 0.9em;
}

.hero-sub {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--gray-light);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.65;
  font-weight: 300;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  max-width: 600px;
}

.stat {
  display: flex;
  flex-direction: column;
  padding-right: 32px;
}

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.5px;
  margin-top: 3px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  margin-right: 32px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: fadeUp 2s ease-in-out infinite;
}

/* ===========================
   WHY SECTION
   =========================== */

.why {
  padding: 80px 0;
  background: var(--navy-mid);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(91,159,214,0.4);
}

.why-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.why-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
}

/* ===========================
   SERVICES
   =========================== */

.services {
  padding: 100px 0;
  background: var(--navy);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(91,159,214,0.35);
}

.service-card--featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, #1a2d48 0%, #132035 100%);
}

.service-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--accent);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 0 0 6px 6px;
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.service-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
  white-space: nowrap;
}

.service-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  font-size: 14px;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.service-note {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--gray);
}

/* ===========================
   GALLERY / BEFORE-AFTER
   =========================== */

.gallery {
  padding: 100px 0;
  background: var(--navy-mid);
}

.sliders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 24px;
}

.ba-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ba-slider {
  position: relative;
  height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
}

.ba-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ba-after, .ba-before {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ba-after-fill, .ba-before-fill {
  position: absolute;
  inset: 0;
}

.ba-before {
  right: auto;
  width: 50%;
}

/* Simulated car shape */
.ba-car-shape {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 55px;
  border-radius: 20px 20px 8px 8px;
  border: 2px solid rgba(255,255,255,0.15);
}

.ba-car-after { border-color: rgba(100,180,255,0.4); }
.ba-car-before { border-color: rgba(180,150,80,0.3); }

.ba-headlight {
  position: absolute;
  bottom: 52px;
  left: 22%;
  width: 18%;
  height: 16px;
  border-radius: 8px;
}

.ba-headlight-after {
  background: radial-gradient(ellipse, #fff8e0 0%, #ffd040 40%, transparent 100%);
  box-shadow: 0 0 18px 6px rgba(255,210,60,0.5);
}

.ba-headlight-before {
  background: radial-gradient(ellipse, #c8b880 0%, #8a7040 40%, transparent 100%);
  box-shadow: 0 0 8px 2px rgba(120,90,30,0.3);
}

.ba-label {
  position: absolute;
  bottom: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
}

.ba-label-after {
  right: 10px;
  background: rgba(91,159,214,0.2);
  color: var(--accent);
}

.ba-label-before {
  left: 10px;
  background: rgba(0,0,0,0.3);
  color: var(--gray-light);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}

.ba-handle-line {
  flex: 1;
  width: 2px;
  background: var(--accent);
}

.ba-handle-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(91,159,214,0.5);
}

.ba-caption {
  font-size: 12px;
  color: var(--gray);
  text-align: center;
  letter-spacing: 0.5px;
}

.gallery-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray);
  font-style: italic;
  border: 1px dashed rgba(91,159,214,0.2);
  padding: 14px;
  border-radius: 6px;
  background: rgba(91,159,214,0.03);
}

/* ===========================
   ABOUT
   =========================== */

.about {
  padding: 100px 0;
  background: var(--navy);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.about-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
}

.about-icon-big { font-size: 40px; margin-bottom: 12px; }

.about-card-stat {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.about-card-label {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.5px;
}

.about-card-sm {
  padding: 18px 24px;
}

.about-card-sm .about-card-stat {
  font-size: 20px;
  color: var(--white);
}

.about-tagline {
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.about-content h2 {
  font-size: clamp(32px, 4vw, 46px);
  margin: 8px 0 20px;
}

.about-content p {
  color: var(--gray-light);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

.about-content p strong { color: var(--white); }

.about-values {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.value-item {
  font-size: 15px;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===========================
   TESTIMONIALS
   =========================== */

.testimonials {
  padding: 100px 0;
  background: var(--navy-mid);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-stars {
  color: var(--accent);
  font-size: 17px;
  letter-spacing: 2px;
}

.review-text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.7;
  flex: 1;
}

.review-author {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}

.reviews-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray);
  font-style: italic;
}

/* ===========================
   BOOKING
   =========================== */

.booking {
  padding: 100px 0;
  background: var(--navy);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.booking-info h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin: 8px 0 16px;
}

.booking-info > p {
  color: var(--gray);
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.65;
}

.booking-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.bd-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }

.booking-detail strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.booking-detail span {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* FORM */
.booking-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

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

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gray-light);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(138,151,168,0.5);
}

.form-group select option { background: var(--navy-mid); color: var(--white); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(91,159,214,0.04);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e05555;
}

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

.btn-submit { gap: 0; }

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray);
}

.form-success {
  text-align: center;
  padding: 24px;
  background: rgba(100,200,120,0.08);
  border: 1px solid rgba(100,200,120,0.25);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.success-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(100,200,120,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #6EC87A;
  font-weight: 700;
}

.form-success strong { font-size: 17px; }
.form-success p { font-size: 14px; color: var(--gray); }

/* ===========================
   FAQ
   =========================== */

.faq {
  padding: 100px 0;
  background: var(--navy-mid);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  background: var(--card-bg);
  border: none;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition), color var(--transition);
  letter-spacing: 0.2px;
}

.faq-q::after {
  content: '+';
  font-size: 22px;
  color: var(--accent);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-q[aria-expanded="true"] { color: var(--accent); background: rgba(91,159,214,0.06); }
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 24px 22px;
  background: rgba(91,159,214,0.03);
}

.faq-a.open { display: block; }

.faq-a p {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.7;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  background: #080f1a;
  padding: 64px 0 0;
  border-top: 1px solid rgba(91,159,214,0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray);
  margin: 14px 0 16px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(91,159,214,0.25);
  padding: 4px 10px;
  border-radius: 3px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-links a,
.footer-links span {
  font-size: 14px;
  color: var(--gray);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 12px;
  color: #4a5568;
  flex-wrap: wrap;
  gap: 8px;
}

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

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .sliders-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { flex-direction: row; flex-wrap: wrap; }
  .about-card { flex: 1; min-width: 160px; }
  .about-tagline { width: 100%; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .booking-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: clamp(44px, 12vw, 72px); }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .stat { padding-right: 0; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-beam-1, .hero-beam-2 { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 20px 60px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .container { padding: 0 16px; }
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.logo-img-sm {
  height: 32px;
}
