/* =====================================================
   MURAD DRIVING SCHOOL — stylesheet
   ===================================================== */

:root {
  --navy: #0a1628;
  --navy-2: #11203a;
  --royal: #1e3a8a;
  --blue: #2563eb;
  --blue-light: #60a5fa;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --cream: #fefdf8;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.15);
  --shadow-blue: 0 12px 30px rgba(37, 99, 235, 0.28);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

/* -------- Typography -------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--navy); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }
p { color: var(--gray-700); }

h2 em, h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue) 0%, var(--royal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--blue);
  margin-bottom: 18px;
}
.eyebrow .dash {
  width: 28px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--amber) 0, var(--amber) 6px, transparent 6px, transparent 10px);
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-head .eyebrow { justify-content: center; }
.section-head p { margin-top: 12px; color: var(--gray-500); font-size: 1.05rem; }

.lead { font-size: 1.1rem; color: var(--gray-700); }

/* -------- Layout -------- */
.container { max-width: var(--container); padding: 0 24px; margin: 0 auto; width: 100%; }
section { padding: 100px 0; position: relative; }
.section-shaded { background: var(--gray-50); }

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--royal) 100%);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(37, 99, 235, 0.4); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.22); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--royal);
  border: 1.5px solid var(--gray-200);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn-block { width: 100%; padding: 18px; font-size: 1rem; }

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.nav-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--display);
  font-weight: 800;
  color: var(--white);
  transition: color 0.3s;
}
.site-header.scrolled .brand { color: var(--navy); }
.brand-logo {
  width: 82px; height: 82px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
  padding: 4px;
  box-shadow: 0 6px 20px rgba(10, 22, 40, 0.28);
  transition: width 0.35s var(--ease), height 0.35s var(--ease);
}
.site-header.scrolled .brand-logo { width: 54px; height: 54px; }
.brand-text {
  font-size: 0.8rem; line-height: 1.1;
  display: flex; align-items: center; gap: 6px;
  text-transform: uppercase; letter-spacing: 0.14em;
}
.brand-text span { font-size: 0.8rem; font-weight: 500; opacity: 0.85; }
.site-header.scrolled .brand-text { font-size: 0.72rem; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav ul { display: flex; gap: 28px; }
.main-nav a {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white);
  transition: color 0.3s;
  padding: 4px 0;
}
.site-header.scrolled .main-nav a { color: var(--navy); }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--amber);
  transition: width 0.3s var(--ease);
}
.main-nav a:hover::after { width: 100%; }
.main-nav a.active::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--amber);
  color: var(--navy) !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--amber-dark); color: var(--white) !important; transform: translateY(-2px); }
.nav-cta::after { display: none; }

.hamburger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; padding: 10px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.site-header.scrolled .hamburger span { background: var(--navy); }

.nav-close { display: none; }

/* =====================================================
   HERO SLIDER
   ===================================================== */
.hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; }
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s var(--ease), transform 6s var(--ease);
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(30, 58, 138, 0.65) 50%, rgba(10, 22, 40, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 760px;
  padding-top: 80px;
}
.hero-content .eyebrow { color: var(--amber); }
.hero-content .eyebrow .dash {
  background: repeating-linear-gradient(90deg, var(--amber) 0, var(--amber) 6px, transparent 6px, transparent 10px);
}
.hero-slide.active .hero-content > * { animation: heroIn 0.9s var(--ease) backwards; }
.hero-slide.active .hero-content > *:nth-child(1) { animation-delay: 0.15s; }
.hero-slide.active .hero-content > *:nth-child(2) { animation-delay: 0.3s; }
.hero-slide.active .hero-content > *:nth-child(3) { animation-delay: 0.45s; }
.hero-slide.active .hero-content > *:nth-child(4) { animation-delay: 0.6s; }

.hero-title {
  color: var(--white);
  font-size: clamp(1.7rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--amber) 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}
.hero-title em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.05em;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--amber) 0, var(--amber) 12px, transparent 12px, transparent 20px);
  opacity: 0.7;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
  max-width: 580px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Slider controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-size: 1.1rem;
  z-index: 3;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  display: grid; place-items: center;
}
.slider-arrow:hover { background: var(--amber); border-color: var(--amber); color: var(--navy); }
.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

.slider-dots {
  position: absolute;
  bottom: 40px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 3;
}
.slider-dots button {
  width: 36px; height: 4px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  transition: all 0.3s;
}
.slider-dots button.active { background: var(--amber); width: 56px; }

/* =====================================================
   BOOKING FORM (glass)
   ===================================================== */
.booking-section { padding: 80px 0; margin-top: -120px; position: relative; z-index: 5; }
.booking-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.booking-head { text-align: center; margin-bottom: 36px; }
.booking-head h2 { margin-bottom: 8px; }
.booking-head p { color: var(--gray-500); }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
  margin-bottom: 28px;
}
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.field label span { color: var(--amber-dark); }
.field input,
.field select,
.field textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: all 0.25s;
  outline: none;
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
.field.error input,
.field.error select,
.field.error textarea {
  border-color: #dc2626;
  background: #fef2f2;
}
.field .err {
  display: none;
  margin-top: 6px;
  color: #dc2626;
  font-size: 0.8rem;
  font-weight: 500;
}
.field.error .err { display: block; }

.form-success {
  display: none;
  align-items: flex-start;
  gap: 14px;
  margin-top: 20px;
  padding: 18px 22px;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid #6ee7b7;
  border-radius: var(--radius-md);
  color: #065f46;
}
.form-success.show { display: flex; }
.form-success i { font-size: 1.4rem; color: #10b981; margin-top: 2px; }
.form-success strong { display: block; margin-bottom: 2px; }
.form-success span { font-size: 0.9rem; opacity: 0.9; }

/* =====================================================
   ABOUT
   ===================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.about-stat {
  position: absolute;
  bottom: -30px; right: -20px;
  background: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 4px solid var(--amber);
}
.about-stat strong {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--royal);
  line-height: 1;
}
.about-stat span { font-size: 0.85rem; color: var(--gray-500); margin-top: 4px; }

.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; }
.about-points {
  margin: 28px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
}
.about-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-700);
  font-weight: 500;
}
.about-points i {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
  color: var(--blue);
  display: grid; place-items: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* =====================================================
   LESSONS / SERVICES
   ===================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.lesson-card {
  background: var(--white);
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.lesson-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--royal) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}
.lesson-card > * { position: relative; z-index: 1; }
.lesson-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.lesson-card:hover::before { opacity: 1; }
.lesson-card:hover h3,
.lesson-card:hover p { color: var(--white); }
.lesson-card:hover .lesson-icon {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.lesson-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue);
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all 0.4s;
}
.lesson-card h3 { margin-bottom: 10px; transition: color 0.4s; }
.lesson-card p { font-size: 0.92rem; transition: color 0.4s; }

/* =====================================================
   INSTRUCTORS
   ===================================================== */
.instructor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.instructor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  border: 1px solid var(--gray-100);
}
.instructor-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.instructor-photo { aspect-ratio: 4 / 5; overflow: hidden; }
.instructor-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.instructor-card:hover .instructor-photo img { transform: scale(1.08); }
.instructor-body { padding: 22px; }
.instructor-body h3 { margin-bottom: 4px; }
.qual { color: var(--blue); font-weight: 600; font-size: 0.85rem; margin-bottom: 10px; }
.instructor-body > p { font-size: 0.9rem; margin-bottom: 14px; }

.stars { display: flex; align-items: center; gap: 4px; color: var(--amber); font-size: 0.9rem; }
.stars span { margin-left: 8px; color: var(--gray-500); font-weight: 600; font-size: 0.85rem; }

/* =====================================================
   PRICING
   ===================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin-inline: auto;
}
.price-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200);
  transition: all 0.4s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.popular {
  background: linear-gradient(160deg, var(--navy) 0%, var(--royal) 100%);
  border-color: var(--royal);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.price-card.popular h3,
.price-card.popular .price { color: var(--white); }
.price-card.popular li { color: rgba(255, 255, 255, 0.9); }
.price-card.popular li i { color: var(--amber); }
.price-card.popular .ribbon {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--amber);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 999px;
}
.price-card h3 { margin-bottom: 14px; }
.price {
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price .cur { font-size: 1.3rem; font-weight: 600; }
.price .per { font-size: 0.85rem; font-weight: 500; color: var(--gray-500); margin-left: 4px; }
.price-card.popular .per { color: rgba(255, 255, 255, 0.7); }

.price-card ul { margin-bottom: 28px; flex: 1; }
.price-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--gray-700);
  font-size: 0.92rem;
}
.price-card li i {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
  color: var(--blue);
  display: grid; place-items: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonial-slider { position: relative; max-width: 820px; margin: 0 auto; }
.testimonial-track {
  display: flex;
  transition: transform 0.6s var(--ease);
}
.testimonial {
  flex: 0 0 100%;
  padding: 0 60px;
}
.testimonial .stars { justify-content: center; margin-bottom: 22px; font-size: 1.1rem; }
.testimonial .stars span { display: none; }
.testimonial .quote {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  line-height: 1.5;
  color: var(--navy);
  font-weight: 500;
  text-align: center;
  margin-bottom: 28px;
  position: relative;
}
.testimonial .quote::before {
  content: '\201C';
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  font-size: 6rem;
  color: var(--gray-200);
  font-family: Georgia, serif;
  line-height: 1;
  z-index: -1;
}

.who { display: flex; align-items: center; justify-content: center; gap: 12px; }
.who .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--royal) 100%);
  display: grid; place-items: center;
  color: var(--white);
}
.who strong { display: block; color: var(--navy); }
.who span { font-size: 0.85rem; color: var(--gray-500); }

.testimonials-section .slider-arrow {
  background: var(--white);
  border-color: var(--gray-200);
  color: var(--navy);
  width: 46px; height: 46px;
}
.testimonials-section .slider-arrow:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.testimonials-section .slider-arrow.prev { left: -20px; }
.testimonials-section .slider-arrow.next { right: -20px; }

.testimonials-section .slider-dots { position: static; margin-top: 36px; }
.testimonials-section .slider-dots button { background: var(--gray-200); width: 28px; }
.testimonials-section .slider-dots button.active { background: var(--blue); width: 48px; }

/* =====================================================
   GOOGLE REVIEWS
   ===================================================== */
.google-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto 44px;
  padding: 22px 30px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.gs-brand { display: flex; align-items: center; gap: 14px; }
.gs-brand strong { display: block; color: var(--navy); font-family: var(--display); font-size: 1.05rem; }
.gs-sub { font-size: 0.82rem; color: var(--gray-500); }
.gs-rating { display: flex; align-items: center; gap: 12px; }
.gs-score { font-family: var(--display); font-weight: 800; font-size: 2.4rem; color: var(--navy); line-height: 1; }
.gs-stars { color: #fbbc05; font-size: 1rem; letter-spacing: 2px; }
.gs-count { font-size: 0.82rem; color: var(--gray-500); }
.gs-btn { padding: 12px 20px; font-size: 0.9rem; white-space: nowrap; }
.gs-btn .fa-google { margin-right: 6px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.rc-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.rc-avatar {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--rc, var(--blue));
  color: var(--white);
  font-family: var(--display); font-weight: 700; font-size: 1.15rem;
  display: grid; place-items: center;
}
.rc-meta { flex: 1; line-height: 1.3; }
.rc-meta strong { display: block; color: var(--navy); font-size: 0.98rem; }
.rc-meta span { font-size: 0.8rem; color: var(--gray-500); }
.rc-g { color: #4285F4; font-size: 1.15rem; }
.rc-stars { color: #fbbc05; font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 12px; }
.rc-text { color: var(--gray-700); font-size: 0.97rem; line-height: 1.7; }

/* =====================================================
   GALLERY
   ===================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 3 / 4;
  background: var(--gray-100);
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.45), rgba(10, 22, 40, 0) 45%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }
.gallery-zoom {
  position: absolute;
  bottom: 12px; right: 12px;
  z-index: 2;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.35s var(--ease);
}
.gallery-item:hover .gallery-zoom { transform: translateY(0); opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(6, 12, 24, 0.92);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-stage { max-width: min(760px, 92vw); text-align: center; }
.lb-stage img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  margin: 0 auto;
}
.lb-stage figcaption { color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; margin-top: 14px; }
.lb-close {
  position: absolute;
  top: 22px; right: 26px;
  width: 48px; height: 48px;
  font-size: 2rem; line-height: 1;
  color: var(--white);
  border-radius: 50%;
  transition: background 0.25s;
}
.lb-close:hover { background: rgba(255, 255, 255, 0.15); }
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.2rem;
  transition: background 0.25s;
}
.lb-nav:hover { background: rgba(255, 255, 255, 0.28); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--blue), var(--royal));
  opacity: 0;
  transition: opacity 0.3s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.why-card:hover::after { opacity: 1; }

.why-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(245, 158, 11, 0.12));
  color: var(--royal);
  display: grid; place-items: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.why-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.why-card p { font-size: 0.94rem; }

/* =====================================================
   CONTACT
   ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.contact-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--blue), var(--royal));
  color: var(--white);
  display: grid; place-items: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-blue);
}
.contact-item strong { display: block; color: var(--navy); margin-bottom: 4px; font-family: var(--display); font-weight: 600; }
.contact-item a,
.contact-item span { color: var(--gray-700); transition: color 0.3s; }
.contact-item a:hover { color: var(--blue); }

.socials { display: flex; gap: 12px; margin-top: 12px; }
.socials a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--navy);
  display: grid; place-items: center;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.socials a:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 420px;
  border: 1px solid var(--gray-200);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer { background: var(--navy); color: rgba(255, 255, 255, 0.78); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.site-footer .brand { color: var(--white); margin-bottom: 18px; }
.footer-brand { flex-direction: row; align-items: center; gap: 12px; }
.footer-logo { width: 58px; height: 58px; border-radius: 50%; background: var(--white); padding: 3px; }
.footer-brand .brand-text { letter-spacing: 0.1em; }
.footer-blurb { font-size: 0.92rem; line-height: 1.7; }
.site-footer h4 { color: var(--white); margin-bottom: 18px; font-size: 1rem; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a { font-size: 0.93rem; transition: color 0.3s; }
.site-footer ul a:hover { color: var(--amber); }
.site-footer p { color: rgba(255, 255, 255, 0.78); margin-bottom: 10px; font-size: 0.92rem; }
.site-footer p i { color: var(--amber); margin-right: 8px; width: 16px; }
.site-footer .socials a { background: rgba(255, 255, 255, 0.08); color: var(--white); }
.site-footer .socials a:hover { background: var(--amber); color: var(--navy); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.85rem; margin: 0; }
.footer-bottom a:hover { color: var(--amber); }

/* =====================================================
   BACK TO TOP
   ===================================================== */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--royal));
  color: var(--white);
  display: grid; place-items: center;
  font-size: 1rem;
  box-shadow: var(--shadow-blue);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s var(--ease);
  z-index: 50;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* =====================================================
   ANIMATIONS / REVEAL ON SCROLL
   ===================================================== */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .instructor-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.popular { transform: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-media img { height: 440px; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .container { padding: 0 20px; }

  /* Nav */
  .hamburger {
    display: flex;
    position: absolute;
    top: 50%; right: 4px;
    transform: translateY(-50%);
  }
  .brand-logo { width: 62px; height: 62px; }
  .site-header.scrolled .brand-logo { width: 48px; height: 48px; }
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 80px 32px 32px;
    gap: 0;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.15);
    transition: right 0.4s var(--ease);
    z-index: 110;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 0; width: 100%; }
  .main-nav ul li { border-bottom: 1px solid var(--gray-100); }
  .main-nav a { color: var(--navy); display: block; padding: 16px 0; font-size: 1rem; }
  .main-nav a::after { display: none; }
  .nav-cta { margin-top: 20px; align-self: flex-start; }
  .nav-close {
    display: block;
    position: absolute;
    top: 20px; right: 20px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--navy);
    font-size: 1rem;
  }

  /* Hero */
  .hero { min-height: 560px; height: 100vh; }
  .hero-slide { align-items: flex-start; }
  .hero-content { padding-top: 110px; }
  .hero-desc { font-size: 1rem; margin-bottom: 28px; }
  .hero-title em::after { height: 3px; bottom: 0.02em; }
  .slider-arrow {
    width: 40px; height: 40px;
    top: auto;
    bottom: 26px;
    transform: none;
  }
  .slider-arrow.prev { left: 18px; }
  .slider-arrow.next { right: 18px; }
  .slider-dots { bottom: 36px; }
  .slider-dots button { width: 24px; height: 3px; }
  .slider-dots button.active { width: 36px; }

  /* Booking */
  .booking-section { margin-top: -60px; padding: 60px 0; }
  .booking-card { padding: 28px 22px; border-radius: var(--radius-lg); }
  .form-grid { grid-template-columns: 1fr; gap: 16px; }
  .field-full { grid-column: 1; }

  /* About */
  .about-points { grid-template-columns: 1fr; }
  .about-stat { bottom: -20px; right: 16px; padding: 18px 22px; }
  .about-stat strong { font-size: 1.8rem; }
  .about-media img { height: 360px; }

  /* Grids */
  .card-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .instructor-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; gap: 18px; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }
  .google-summary { justify-content: center; text-align: center; padding: 24px 20px; }
  .gs-btn { width: 100%; justify-content: center; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .lightbox { padding: 20px; }
  .lb-nav { width: 44px; height: 44px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .lb-close { top: 14px; right: 16px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
  .footer-bottom .container { justify-content: center; text-align: center; }

  .section-head { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .card-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1; min-width: 0; padding: 14px 18px; font-size: 0.9rem; }
  .booking-card { padding: 22px 16px; }
  .lesson-card, .why-card, .price-card { padding: 24px 20px; }
}
