/* ============================================================
   Dinesh Sharma Driving School - Styles
   Color Scheme: Blue, White, Dark Grey
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #1e40af;
  --primary-dark: #1e3a8a;
  --primary-light: #dbeafe;
  --primary-glow: #3b82f6;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --text: #1f2937;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-dark: #111827;
  --border: #e5e7eb;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.1);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hidden { display: none !important; }
/* ---- Header ---- */
.header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
}

.logo small {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.nav a:hover { color: var(--primary); }

.nav-phone {
  color: var(--primary) !important;
  font-weight: 600 !important;
}

.btn-nav {
  background: var(--primary) !important;
  color: white !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
}

.btn-nav:hover { background: var(--primary-dark) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}
/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  gap: 8px;
}

.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(30,64,175,0.3);
}

.btn-accent {
  background: var(--accent);
  color: white;
}
.btn-accent:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.btn-white {
  background: white;
  color: var(--primary);
  font-weight: 700;
}
.btn-white:hover { background: var(--primary-light); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; }
.btn-full { width: 100%; }
/* ---- Hero Section ---- */
.hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #111827 0%, #1e3a8a 50%, #1e40af 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.8rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  opacity: 0.75;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image-placeholder, .image-placeholder {
  background: rgba(255,255,255,0.08);
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  width: 100%;
  max-width: 350px;
}

.image-placeholder.large {
  padding: 80px 40px;
  background: var(--bg-alt);
  border: 2px dashed var(--border);
}

.placeholder-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.hero-image-placeholder p, .image-placeholder p {
  font-size: 0.85rem;
  opacity: 0.7;
}
/* ---- Stats Section ---- */
.stats-section {
  background: var(--primary);
  padding: 36px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  color: white;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 4px;
}

/* ---- Sections ---- */
.section {
  padding: 80px 0;
}

.section-alt { background: var(--bg-alt); }

.section-dark {
  background: var(--bg-dark);
  color: white;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.section-title.text-left { text-align: left; }
.section-dark .section-title { color: white; }

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 48px;
  font-size: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-dark .section-subtitle { color: rgba(255,255,255,0.65); }
/* ---- Introduction ---- */
.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.intro-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.9rem;
}

.highlight-icon {
  color: var(--primary);
  font-weight: 700;
}

/* ---- Services ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 14px;
  line-height: 1.6;
}

.service-benefits {
  list-style: none;
  margin-bottom: 18px;
}

.service-benefits li {
  padding: 4px 0;
  font-size: 0.85rem;
  color: var(--text);
}

.service-benefits li::before {
  content: "•";
  color: var(--primary);
  margin-right: 8px;
  font-weight: 700;
}
/* ---- Pricing ---- */
.pricing-category {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 40px 0 20px;
  text-align: center;
  color: var(--text);
}

.pricing-singles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.price-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: box-shadow 0.2s;
}

.price-card:hover { box-shadow: var(--shadow-md); }

.price-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.price-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.price-card p { color: var(--text-muted); font-size: 0.9rem; }

/* Packages */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.package-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: all 0.2s;
}

.package-card:hover { box-shadow: var(--shadow-lg); }

.package-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-md);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.package-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.package-header h4 { font-size: 1.1rem; margin-bottom: 8px; }

.package-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
}

.package-detail {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.package-features {
  list-style: none;
  margin-bottom: 24px;
}

.package-features li {
  padding: 6px 0;
  font-size: 0.9rem;
}
/* Pricing Extras */
.pricing-extras {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.extra-card {
  background: var(--primary-light);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.extra-card h4 { font-size: 1.1rem; margin-bottom: 8px; }

.extra-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.gift-options {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

/* Promotions */
.promo-banner {
  background: linear-gradient(135deg, var(--primary-light), #eff6ff);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.promo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.promo-badge {
  background: var(--primary);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
}

.cancellation-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 16px;
  background: #fef3c7;
  border-radius: var(--radius-sm);
  border: 1px solid #fbbf24;
}
/* ---- Booking Form ---- */
.booking-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.booking-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.85rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: all 0.2s;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group textarea { resize: vertical; }

.form-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 12px;
}

.booking-success {
  text-align: center;
  padding: 48px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: 700;
}

.booking-success h3 { font-size: 1.4rem; margin-bottom: 10px; }
.booking-success p { color: var(--text-muted); margin-bottom: 20px; }
/* ---- About Section ---- */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.about-image-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.languages-card {
  background: var(--primary-light);
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}

.languages-card h4 {
  font-size: 0.85rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.language-tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.language-tags span {
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.about-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text:last-of-type {
  margin-bottom: 24px;
}

.about-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.detail-group h4 {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.detail-group ul {
  list-style: none;
}

.detail-group li {
  padding: 5px 0;
  font-size: 0.9rem;
  color: var(--text);
}
/* ---- Areas Section ---- */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: start;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tag {
  background: white;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
}

.area-tag:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

.map-note {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
}

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow 0.2s;
}

.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 6px;
}

.testimonial-badge {
  background: #dcfce7;
  color: #16a34a;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.success-story {
  background: var(--primary-light);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin-bottom: 32px;
}

.success-story h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.success-story blockquote {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
}

.google-reviews {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-stars { color: #f59e0b; font-size: 1.2rem; }
.google-score { font-size: 1.4rem; font-weight: 800; }
.google-text { color: var(--text-muted); font-size: 0.9rem; }
/* ---- FAQ Section ---- */
.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  background: white;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  font-family: inherit;
  transition: background 0.2s;
}

.faq-question:hover { background: var(--bg-alt); }

.faq-icon {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.3s;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 18px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
/* ---- Contact Section ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.contact-icon { font-size: 1.4rem; margin-bottom: 8px; }
.contact-card h4 { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 4px; }
.contact-value { font-weight: 600; font-size: 1rem; color: var(--text); display: block; margin-bottom: 8px; }
.contact-link { color: var(--primary); text-decoration: none; }
.contact-link:hover { text-decoration: underline; }

.hours-card .contact-icon { margin-bottom: 12px; }

.hours-list { margin-top: 8px; }

.hour-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.hour-row:last-child { border-bottom: none; }

.contact-form-area h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

/* ---- CTA Banner ---- */
.cta-banner {
  text-align: center;
  padding: 60px 40px;
}

.cta-banner h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
/* ---- Footer ---- */
.footer {
  background: var(--bg-dark);
  padding: 56px 0 28px;
  color: rgba(255,255,255,0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-logo { color: white; margin-bottom: 12px; }
.footer-logo small { color: rgba(255,255,255,0.6); }

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.75rem;
}

.footer-trust span {
  background: rgba(255,255,255,0.1);
  padding: 3px 10px;
  border-radius: 50px;
}

.footer-col h4 {
  color: white;
  margin-bottom: 14px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover { color: white; }

.footer-hours {
  font-size: 0.8rem;
  line-height: 1.6;
  margin-top: 12px;
  color: rgba(255,255,255,0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}
/* ---- Chat Widget ---- */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.chat-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s, background 0.2s;
}

.chat-toggle:hover {
  transform: scale(1.1);
  background: var(--primary-dark);
}

.chat-window {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
}

.chat-header {
  background: var(--primary);
  color: white;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h4 { font-size: 0.9rem; }

.chat-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
}

.chat-body { padding: 16px; }

.chat-message {
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.chat-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-option {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s;
}

.chat-option:hover {
  background: var(--primary);
  color: white;
}

.chat-response { padding: 16px; }

/* ---- Back to Top ---- */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 998;
}

.back-to-top:hover { transform: translateY(-2px); }
.back-to-top.visible { display: flex !important; align-items: center; justify-content: center; }
/* ---- Responsive ---- */
@media (max-width: 968px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 12px;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-title { font-size: 2.2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-image { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 640px) {
  .hero { padding: 60px 0 40px; }
  .hero-title { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; }
  .hero-trust { flex-direction: column; gap: 6px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-value { font-size: 1.5rem; }
  .section { padding: 56px 0; }
  .section-title { font-size: 1.6rem; }
  .services-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .pricing-singles { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .about-details { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .booking-form { padding: 24px 18px; }
  .promo-banner { grid-template-columns: 1fr; }
  .chat-window { width: 290px; right: -8px; }
  .cta-banner { padding: 40px 24px; }
  .cta-banner h2 { font-size: 1.5rem; }
}
