/* ============================================================
   TARGET DRIVING SCHOOL — Main Stylesheet
   Colours: Green #5DB82E | Dark #1C1C1E | Red #D0021B | Grey #F5F5F5
   ============================================================ */

/* ---------- Google Fonts (loaded in HTML) ---------- */

/* ---------- CSS Variables ---------- */
:root {
  --green:      #5DB82E;
  --green-dark: #4a9424;
  --green-light:#e8f5d9;
  --red:        #D0021B;
  --dark:       #1C1C1E;
  --dark-2:     #2c2c2e;
  --white:      #ffffff;
  --grey-bg:    #F5F5F5;
  --grey-text:  #6b6b6b;
  --border:     #e0e0e0;
  --shadow:     0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.15);
  --radius:     12px;
  --radius-sm:  8px;
  --transition: 0.25s ease;
  --max-width:  1160px;
}

/* ---------- Reset & Base ---------- */
*, *::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(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-label {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}

/* ---------- Layout Utilities ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section--grey { background: var(--grey-bg); }
.section--dark { background: var(--dark); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { color: var(--grey-text); max-width: 600px; margin: 0.8rem auto 0; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(93,184,46,0.40); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--dark); transform: translateY(-2px); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover { background: #1da851; border-color: #1da851; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.40); }

.btn-messenger {
  background: #0084FF;
  color: var(--white);
  border-color: #0084FF;
}
.btn-messenger:hover { background: #006dd6; border-color: #006dd6; transform: translateY(-2px); }

.btn-call {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
}
.btn-call:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(93,184,46,0.40); }

/* ---------- HEADER / NAV ---------- */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(28, 28, 30, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
}

/* Text fallback if logo image not yet available */
.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.1;
  color: var(--white);
}
.logo-text span { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  color: rgba(255,255,255,0.80);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-phone {
  color: var(--green);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.header-phone:hover { color: #7cd94a; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.25rem;
}
.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.9rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  min-height: 48px;
  display: flex;
  align-items: center;
}
.mobile-nav.show { display: flex; }

/* ---------- HERO ---------- */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/car-hero.jpg');
  background-size: cover;
  background-position: center 60%;
  filter: brightness(0.35);
  transform: scale(1.05);
  transition: transform 8s ease;
}
#hero:hover .hero-bg { transform: scale(1.08); }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 4rem;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(93,184,46,0.2);
  border: 1px solid rgba(93,184,46,0.4);
  color: #9ee85a;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(93,184,46,0.6); }
  50%        { box-shadow: 0 0 0 6px rgba(93,184,46,0); }
}

#hero h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
#hero h1 em {
  font-style: normal;
  color: var(--green);
}

.hero-sub {
  color: rgba(255,255,255,0.80);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 2.2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-badge svg { color: var(--green); flex-shrink: 0; }

/* ---------- TRUST STRIP ---------- */
#trust-strip {
  background: var(--green);
  padding: 1.2rem 0;
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
}
.strip-item svg { opacity: 0.85; }

/* ---------- ABOUT ---------- */
#about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}
.about-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-accent .num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about-accent .label {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 0.2rem;
}

.about-text h2 { margin-bottom: 1rem; }
.about-text p  { color: var(--grey-text); margin-bottom: 1rem; }
.about-text p:last-of-type { margin-bottom: 1.5rem; }

.about-list {
  margin: 1.2rem 0 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--grey-text);
  font-size: 0.96rem;
}
.about-list li svg { color: var(--green); flex-shrink: 0; margin-top: 3px; }

/* ---------- SERVICES ---------- */
#services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--green);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleY(1); }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--green-dark);
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: var(--green); color: var(--white); }

.service-card h3 { margin-bottom: 0.6rem; }
.service-card p  { color: var(--grey-text); font-size: 0.94rem; }

/* ---------- AREAS ---------- */
#areas {
  background: var(--dark);
  color: var(--white);
}
#areas h2 { color: var(--white); }
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.areas-text p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }
.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.area-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
}
.area-item svg { color: var(--green); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-embed iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* ---------- PASS PHOTOS ---------- */
#passes .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.pass-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pass-card:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.pass-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.pass-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  padding: 1.5rem 1rem 0.9rem;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.pass-overlay svg { color: var(--green); }

/* ---------- TESTIMONIALS ---------- */
#testimonials { background: var(--grey-bg); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: 5rem;
  color: var(--green-light);
  font-family: Georgia, serif;
  line-height: 1;
}
.stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 0.9rem;
}
.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark-2);
  margin-bottom: 1.2rem;
  font-style: italic;
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.testimonial-card cite::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

/* ---------- FAQ ---------- */
#faq .faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item.open { box-shadow: var(--shadow); border-color: var(--green); }

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-item.open .faq-question { color: var(--green-dark); }

.faq-icon {
  width: 24px;
  height: 24px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-dark);
  transition: all var(--transition);
}
.faq-item.open .faq-icon { background: var(--green); color: var(--white); transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer p {
  padding: 0 1.5rem 1.2rem;
  color: var(--grey-text);
  font-size: 0.95rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ---------- CONTACT ---------- */
#contact {
  background: var(--dark);
}
#contact h2, #contact h3 { color: var(--white); }
#contact .section-header p { color: rgba(255,255,255,0.65); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.contact-cta-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
}
.contact-cta-card:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); transform: translateY(-2px); }
.contact-cta-card .cta-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-icon.green  { background: var(--green); }
.cta-icon.wa     { background: #25D366; }
.cta-icon.fb     { background: #0084FF; }
.cta-icon.ig     { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); }
.cta-icon img    { width: 24px; height: 24px; object-fit: contain; display: block; }

.contact-info {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.info-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
}
.info-row svg { color: var(--green); flex-shrink: 0; }

/* ---------- FORM ---------- */
.callback-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem;
}
.callback-form h3 { margin-bottom: 0.4rem; }
.callback-form .form-sub {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.30); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: rgba(255,255,255,0.10);
}
.form-group select option { background: var(--dark-2); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 90px; }

.form-success {
  display: none;
  background: rgba(93,184,46,0.15);
  border: 1px solid rgba(93,184,46,0.4);
  border-radius: var(--radius-sm);
  padding: 1rem;
  color: #9ee85a;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  margin-top: 1rem;
}

/* ---------- FOOTER ---------- */
#footer {
  background: #111113;
  padding: 3rem 0 1.5rem;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}
.footer-brand .logo-wrap { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--green); }

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
  overflow: hidden;
}
.social-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition);
}
.social-link:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.social-link:hover img { transform: scale(1.1); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: var(--green); }
.footer-bottom a:hover { text-decoration: underline; }

/* ---------- Scroll Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---------- Floating CTA bar (mobile) ---------- */
.float-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.75rem 1rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
  gap: 0.6rem;
  justify-content: center;
}
.float-cta a {
  flex: 1;
  max-width: 140px;
  text-align: center;
  padding: 0.7rem 0.5rem;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.float-cta .fc-call { background: var(--green); color: var(--white); }
.float-cta .fc-wa   { background: #25D366; color: var(--white); }
.float-cta .fc-book { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }

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

/* ── Tablet (≤1024px) ───────────────────────────────── */
@media (max-width: 1024px) {
  /* Nav */
  .nav-links            { display: none; }
  .hamburger            { display: flex; }
  .header-phone .phone-text { display: none; }

  /* About */
  #about .about-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap       { max-width: 480px; margin: 0 auto; }
  .about-accent         { right: 0; }

  /* Areas */
  .areas-grid           { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Contact */
  .contact-grid         { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Footer */
  .footer-grid          { grid-template-columns: 1fr 1fr; }

  /* Services — 2 col on tablet */
  #services .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile landscape / large phones (≤768px) ────────── */
@media (max-width: 768px) {
  /* Spacing */
  .section              { padding: 3rem 0; }
  .container            { padding: 0 1.1rem; }
  .section-header       { margin-bottom: 2rem; }
  .section-header p     { font-size: 0.95rem; }

  /* Header — hide Book button, keep phone icon + hamburger */
  .header-cta .btn      { display: none; }
  .header-inner         { height: 64px; }
  .logo-img             { height: 40px; }
  .logo-text            { font-size: 0.95rem; }

  /* Hero */
  .hero-content         { padding: 5.5rem 0 3rem; }
  #hero h1              { margin-bottom: 1rem; }
  .hero-sub             { font-size: 1rem; margin-bottom: 1.8rem; }
  .hero-cta             {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    margin-bottom: 2rem;
  }
  .hero-cta .btn        { justify-content: center; width: 100%; font-size: 1rem; padding: 1rem; }
  .hero-trust           { gap: 0.65rem; }
  .trust-badge          { font-size: 0.82rem; }

  /* Trust strip — 2 per row */
  .trust-strip-inner    { gap: 0.6rem 1.5rem; }
  .strip-item           { font-size: 0.8rem; }

  /* Services — single column on phones */
  #services .services-grid { grid-template-columns: 1fr; }
  .service-card         { padding: 1.5rem; }

  /* Pass photos — 2 columns, shorter */
  #passes .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .pass-card img        { height: 240px; }

  /* Areas */
  .areas-list           { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .map-embed iframe     { height: 220px; }

  /* Contact — keep 2×2, don't collapse to 1 col */
  .contact-btn-row      { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .contact-cta-card     { padding: 1rem; font-size: 0.88rem; }
  .contact-info         { margin-top: 1rem; }

  /* Form */
  .form-row             { grid-template-columns: 1fr; }
  .callback-form        { padding: 1.5rem 1.25rem; }

  /* FAQ */
  .faq-question         { font-size: 0.88rem; padding: 1rem 1.25rem; }
  .faq-answer p         { padding: 0 1.25rem 1rem; font-size: 0.9rem; }

  /* Testimonials */
  .testimonial-card     { padding: 1.5rem; }

  /* Footer */
  .footer-grid          { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom        { flex-direction: column; text-align: center; gap: 0.3rem; }

  /* Float CTA */
  .float-cta            { display: flex; }
  #contact              { padding-bottom: 5.5rem; }
}

/* ── Small phones (≤480px) ──────────────────────────── */
@media (max-width: 480px) {
  .container            { padding: 0 1rem; }

  /* Header */
  .logo-text            { font-size: 0.88rem; }

  /* Hero */
  .hero-content         { padding: 5rem 0 2.5rem; }
  .hero-badge           { font-size: 0.72rem; padding: 0.3rem 0.8rem; }
  .hero-trust           { gap: 0.5rem; }
  .trust-badge          { font-size: 0.78rem; }

  /* Trust strip */
  .trust-strip-inner    { gap: 0.5rem 1rem; }
  .strip-item           { font-size: 0.76rem; gap: 0.35rem; }

  /* About accent — keep inside card on tiny screens */
  .about-accent         { right: 0; bottom: -0.75rem; padding: 0.85rem 1rem; }
  .about-accent .num    { font-size: 1.6rem; }

  /* Pass photos */
  .pass-card img        { height: 200px; }

  /* Areas list */
  .areas-list           { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-cta-card     { padding: 0.85rem 0.75rem; gap: 0.6rem; }
  .cta-icon             { width: 38px; height: 38px; }

  /* Float CTA */
  .float-cta a          { font-size: 0.78rem; padding: 0.65rem 0.35rem; gap: 0.3rem; }
  .float-cta a svg      { width: 15px; height: 15px; }

  /* Section header */
  .section              { padding: 2.5rem 0; }
}
