/* =========================================================
   QuickLearn Driving School – Global Design System
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;600;700;800&display=swap');

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --primary:      #f97316;   /* Orange */
  --primary-dark: #c2410c;
  --primary-light:#fff7ed;
  --secondary:    #1e3a5f;   /* Navy */
  --secondary-dark:#0f2240;
  --accent:       #22c55e;   /* Green (WhatsApp / CTA) */
  --accent-dark:  #16a34a;
  --text:         #1a1a2e;
  --text-muted:   #64748b;
  --text-light:   #94a3b8;
  --bg:           #ffffff;
  --bg-soft:      #f8fafc;
  --bg-dark:      #0f172a;
  --border:       #e2e8f0;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.06);
  --shadow:       0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.15);
  --radius:       12px;
  --radius-lg:    20px;
  --radius-full:  999px;
  --transition:   .3s ease;
  --max-w:        1200px;
  --nav-h:        72px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }

/* ── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-muted); line-height: 1.8; }

/* ── Layout ─────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }
.section-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { max-width: 600px; margin: 12px auto 0; font-size: 1.05rem; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--radius-full);
  font-weight: 600; font-size: .95rem;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; box-shadow: 0 4px 20px rgba(249,115,22,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(249,115,22,.45); }
.btn-secondary {
  background: transparent; border: 2px solid var(--primary); color: var(--primary);
}
.btn-secondary:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--primary); font-weight: 700; }
.btn-white:hover { background: var(--primary-light); }
.btn-green {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff; box-shadow: 0 4px 20px rgba(34,197,94,.35);
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(34,197,94,.45); }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: .85rem; }

/* ── Navigation ─────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: 1.25rem; color: var(--secondary);
}
.nav-logo span { color: var(--primary); }
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px; border-radius: 8px;
  font-size: .875rem; font-weight: 500; color: var(--text);
  transition: var(--transition); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: var(--primary-light); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: .7rem; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow);
  min-width: 220px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: var(--transition); z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 14px; border-radius: 8px; font-size: .875rem; }
.dropdown-menu a:hover { background: var(--primary-light); color: var(--primary); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-call {
  display: flex; align-items: center; gap: 6px;
  background: var(--secondary); color: #fff;
  padding: 8px 18px; border-radius: var(--radius-full);
  font-size: .85rem; font-weight: 600;
  transition: var(--transition);
}
.nav-call:hover { background: var(--primary); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 4px; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none; position: fixed; inset: 0; top: var(--nav-h);
  background: #fff; z-index: 999; padding: 24px 20px;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500; font-size: 1rem;
}
.mobile-menu .mobile-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.mobile-menu .btn { justify-content: center; }

/* ── Anti-Scam Banner ───────────────────────────────────── */
.scam-bar {
  background: linear-gradient(135deg, #dc2626, #991b1b);
  color: #fff; text-align: center;
  padding: 10px 20px; font-size: .875rem; font-weight: 600;
  position: relative; z-index: 999;
}
.scam-bar a { color: #fde68a; text-decoration: underline; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 60%, #1e4d8c 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
  padding-top: var(--nav-h);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,.2); color: var(--primary);
  border: 1px solid rgba(249,115,22,.3);
  padding: 8px 18px; border-radius: var(--radius-full);
  font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 span { color: var(--primary); }
.hero p { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 36px; max-width: 520px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 32px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: #fff; }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }
.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 40px; text-align: center; color: #fff;
}
.hero-card .big-icon { font-size: 5rem; margin-bottom: 20px; display: block; }
.hero-card h3 { color: #fff; margin-bottom: 12px; }
.hero-card p { color: rgba(255,255,255,.7); margin-bottom: 24px; }
.review-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-full); padding: 10px 20px;
  font-size: .875rem; margin-top: 20px;
}
.stars { color: #f59e0b; letter-spacing: 2px; }

/* ── Trust Bar ───────────────────────────────────────────── */
.trust-bar {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.trust-bar-inner { display: flex; justify-content: center; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 12px;
  padding: 24px 40px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1.8rem; }
.trust-label { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }
.trust-value { font-weight: 700; font-size: 1rem; color: var(--text); }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.card-icon {
  width: 60px; height: 60px; border-radius: var(--radius);
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
}
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }

/* ── Pricing ─────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.pricing-card {
  background: #fff; border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 36px;
  text-align: center; position: relative; transition: var(--transition);
}
.pricing-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.pricing-card.featured { border-color: var(--primary); box-shadow: 0 8px 40px rgba(249,115,22,.2); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff;
  padding: 4px 20px; border-radius: var(--radius-full);
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
}
.pricing-icon { font-size: 2.5rem; margin-bottom: 16px; }
.pricing-name { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.pricing-price { font-family: 'Poppins', sans-serif; font-size: 3rem; font-weight: 800; color: var(--primary); }
.pricing-per { font-size: .85rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 32px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: .9rem; color: var(--text-muted);
  border-bottom: 1px solid var(--bg-soft);
}
.pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 700; margin-top: 2px; }

/* ── Steps ───────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.step { text-align: center; padding: 24px; }
.step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.2rem;
  margin: 0 auto 20px;
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-sm);
}
.tc-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 16px; }
.tc-text { font-style: italic; color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; }
.tc-author { display: flex; align-items: center; gap: 14px; }
.tc-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1.1rem;
}
.tc-name { font-weight: 600; font-size: .95rem; }
.tc-sub  { font-size: .8rem; color: var(--text-muted); }

/* ── Dark Section ────────────────────────────────────────── */
.dark-section {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
  color: #fff;
}
.dark-section h2, .dark-section h3 { color: #fff; }
.dark-section p { color: rgba(255,255,255,.75); }
.dark-section .section-label { background: rgba(249,115,22,.2); color: var(--primary); }

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 80px 0; text-align: center;
}
.cta-section h2, .cta-section p { color: #fff; }
.cta-section p { opacity: .85; max-width: 600px; margin: 12px auto 36px; font-size: 1.05rem; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── Form ────────────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: inherit; font-size: .95rem;
  color: var(--text); background: #fff;
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-full { grid-column: 1 / -1; }
.form-submit { text-align: center; margin-top: 8px; }

/* ── Booking Box ─────────────────────────────────────────── */
.booking-box {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 48px;
  border: 1px solid var(--border);
}
.booking-box h3 { margin-bottom: 8px; }
.booking-box > p { margin-bottom: 32px; color: var(--text-muted); }

/* ── Location Page Hero ─────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
  padding: 140px 0 80px; color: #fff; text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 700px; margin: 0 auto 32px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: .875rem; color: rgba(255,255,255,.6); margin-bottom: 24px; }
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: var(--primary); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 12px;
}
.faq-q {
  width: 100%; background: #fff; text-align: left;
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: .95rem; cursor: pointer; transition: var(--transition);
}
.faq-q:hover { background: var(--bg-soft); }
.faq-q .faq-icon { font-size: 1.2rem; color: var(--primary); transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 20px; color: var(--text-muted); font-size: .9rem; line-height: 1.8; }
.faq-item.open .faq-a { display: block; }

/* ── Blog ────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.blog-thumb { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.blog-body { padding: 28px; }
.blog-tag {
  display: inline-block; background: var(--primary-light); color: var(--primary);
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  padding: 4px 12px; border-radius: var(--radius-full); margin-bottom: 12px;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-card p { font-size: .875rem; margin-bottom: 16px; }
.blog-meta { font-size: .8rem; color: var(--text-light); }

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--bg-dark); color: rgba(255,255,255,.7);
  padding: 72px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand p { margin-top: 16px; font-size: .875rem; line-height: 1.8; max-width: 280px; }
.footer-nav h4 { color: #fff; margin-bottom: 20px; font-size: .95rem; }
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: .875rem; transition: var(--transition); }
.footer-nav a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: .875rem; }
.footer-contact-item .icon { color: var(--primary); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: gap; font-size: .8rem;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom a:hover { color: var(--primary); }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.1rem; color: #fff; margin-bottom: 16px; }

/* ── WhatsApp Float ──────────────────────────────────────── */
#whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 998;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  text-decoration: none; font-size: 1.8rem;
  animation: pulse-green 2s infinite;
}
#whatsapp-btn:hover { transform: scale(1.1); }
@keyframes pulse-green {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 4px 40px rgba(37,211,102,.8); }
}

/* ── Sticky Bottom CTA (mobile) ──────────────────────────── */
#sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 997;
  background: #fff; border-top: 1px solid var(--border);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  gap: 10px;
}
#sticky-cta a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 8px; border-radius: var(--radius);
  font-weight: 600; font-size: .85rem;
}
#sticky-cta .cta-call { background: var(--secondary); color: #fff; }
#sticky-cta .cta-wa   { background: #25d366; color: #fff; }
#sticky-cta .cta-book { background: var(--primary); color: #fff; }

/* ── Utilities ───────────────────────────────────────────── */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-white { color: #fff; }
.bg-soft { background: var(--bg-soft); }
.pb-0 { padding-bottom: 0; }
.pt-0 { padding-top: 0; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.mt-8 { margin-top: 32px; }
.highlight { color: var(--primary); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.icon-list { display: flex; flex-direction: column; gap: 16px; }
.icon-list li { display: flex; align-items: flex-start; gap: 14px; }
.icon-list .icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.location-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.location-pill {
  display: block; text-align: center;
  background: var(--bg-soft); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 14px 12px;
  font-weight: 600; font-size: .875rem; transition: var(--transition);
  color: var(--text);
}
.location-pill:hover { border-color: var(--primary); background: var(--primary-light); color: var(--primary); }

/* ── Alert / Notice Box ──────────────────────────────────── */
.notice-box {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fef2f2; border: 1.5px solid #fca5a5;
  border-radius: var(--radius); padding: 20px 24px;
  margin-bottom: 32px;
}
.notice-box .notice-icon { font-size: 1.5rem; flex-shrink: 0; }
.notice-box strong { color: #b91c1c; display: block; margin-bottom: 4px; }
.notice-box p { color: #7f1d1d; font-size: .875rem; margin: 0; }

/* ── Page Content ────────────────────────────────────────── */
.content-section { max-width: 860px; margin: 0 auto; }
.content-section h2 { margin: 40px 0 16px; }
.content-section h3 { margin: 28px 0 10px; color: var(--secondary); }
.content-section p  { margin-bottom: 16px; }
.content-section ul { margin: 12px 0 20px 20px; list-style: disc; color: var(--text-muted); line-height: 2; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 16px 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #sticky-cta { display: flex; }
  body { padding-bottom: 72px; }
  #whatsapp-btn { bottom: 90px; }
  .booking-box { padding: 28px 20px; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .trust-bar-inner { flex-direction: column; }
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.fade-up { animation: fadeUp .6s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
