/*
Theme Name: Prime Self Drive Goa
Theme URI: https://primeselfdrivegoarrental.com/
Author: Antigravity AI
Description: A premium, SEO-friendly WordPress theme for car rental services in Goa.
Version: 1.0.0
Text Domain: prime-selfdrive
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink: #111827;
  --cream: #FFFFFF;
  --gold: #D4A537;
  --gold-light: #F3C969;
  --gold-dark: #B48A1D;
  --teal: #0F7F8C;
  --teal-light: #39B7C4;
  --teal-dark: #073B4C;
  --accent: #E86A2F;
  --white: #FFFFFF;
  --grey: #4B5563;
  --light: #F3F4F6;
  --shadow: 0 4px 12px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
  --radius: 8px;
  --radius-lg: 12px;
  --font-display: 'Merriweather', serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
html, body{
overflow-x:hidden;
width:100%;
}

img{
max-width:100%;
height:auto;
}
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── NAV ── */
#navbar{
display:flex;
align-items:center;
justify-content:space-between;
padding:0px 40px;
background:#fff;
position:sticky;
top:0;
z-index:999;
}
/* ── HERO ── */
.hero {
  min-height: 90vh;
  padding: 120px 5% 60px;
  position: relative; overflow: hidden;
  background-color: var(--ink);
}

/* Aurora Background Layers */
.aurora-bg {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1;
    overflow: hidden; pointer-events: none; opacity: 0.5;
}
.aurora-blob {
    position: absolute; filter: blur(100px); border-radius: 50%; opacity: 0.4;
    animation: auroraFloat 15s infinite alternate ease-in-out;
}
.blob-1 { width: 600px; height: 600px; background: rgba(212, 165, 55, 0.4); top: -10%; left: -10%; animation-duration: 20s; }
.blob-2 { width: 500px; height: 500px; background: rgba(15, 127, 140, 0.3); bottom: -10%; right: -10%; animation-duration: 25s; animation-delay: -5s; }
.blob-3 { width: 400px; height: 400px; background: rgba(255, 255, 255, 0.1); top: 30%; left: 40%; animation-duration: 30s; }

@keyframes auroraFloat {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    100% { transform: translate(60px, 120px) rotate(45deg) scale(1.15); }
}

.hero-grid { position: relative; z-index: 5; }
.hero-grid {
display:grid;
grid-template-columns:1fr 420px;
gap:40px;
max-width:1280px;
margin:0 auto;
width:100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,168,56,0.2); border: 1px solid rgba(232,168,56,0.5);
  color: var(--gold); padding: 8px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before { content: '✈'; font-size: 1rem; }
.hero-headline {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700; color: var(--white);
  line-height: 1.2; margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero-headline { font-size: 1.8rem; }
    .section-title { font-size: 1.6rem !important; }
}

.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.9); max-width: 600px;
  margin-bottom: 30px; font-weight: 400; line-height: 1.6;
}
.hero-trust {
  display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 36px;
  animation: fadeUp 0.7s ease 0.3s both;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.9); font-size: 0.85rem; font-weight: 500;
}
.hero-trust-item .icon {
  width: 32px; height: 32px; background: rgba(232,168,56,0.25);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}

/* ── BOOKING FORM ── */
/* ── GLASSMORPHISM BOOKING CARD ── */
.booking-card {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.15) !important;
  animation: fadeLeft 0.8s ease 0.2s both;
  position: relative; z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}
.booking-card-head {
  background: var(--teal); border-radius: 12px; padding: 16px 20px;
  margin-bottom: 24px; text-align: center;
}
.booking-card-head h3 { font-family: var(--font-display); color: white; font-size: 1.1rem; font-weight: 700; }
.booking-card-head p { color: var(--gold); font-size: 0.78rem; margin-top: 4px; letter-spacing: 0.05em; text-transform: uppercase; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--grey); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.form-group input, .form-group select {
  width: 100%; padding: 12px 16px;
  border: 2px solid #E5E7EB; border-radius: 10px;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--ink);
  background: var(--light); outline: none; transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus, .form-group select:focus { border-color: var(--teal); background: white; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-book {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--ink); font-family: var(--font-display);
  font-weight: 700; font-size: 1rem; border: none;
  border-radius: 12px; cursor: pointer;
  transition: all 0.25s; margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-book:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(232,168,56,0.5); }
.btn-book-wa {
  width: 100%; padding: 13px;
  background: #25D366; color: white;
  font-weight: 600; font-size: 0.9rem; border: none;
  border-radius: 12px; cursor: pointer;
  transition: all 0.25s; margin-top: 10px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none;
}
.btn-book-wa:hover { background: #1da850; transform: translateY(-1px); }
.booking-note { text-align: center; font-size: 0.75rem; color: var(--grey); margin-top: 12px; }

/* ── SECTION UTILS ── */
section { padding: 50px 5%; }
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--teal);
  background: rgba(10,79,110,0.08); border-radius: 50px; padding: 6px 14px;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 2rem; line-height: 1.2;
  margin-bottom: 12px; color: var(--ink);
}
.section-sub { font-size: 1rem; color: var(--grey); max-width: 600px; line-height: 1.6; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.container { max-width: 1280px; margin: 0 auto; }

/* ── WHY SELF DRIVE ── */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6%; align-items: center; margin-top: 60px; }
.why-image-wrap { position: relative; }
.why-image {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex; align-items: center; justify-content: center;
}
.why-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.why-badge-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); border-radius: var(--radius); padding: 20px 24px;
  box-shadow: var(--shadow); text-align: center;
}
.why-badge-float .num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--ink); line-height: 1; }
.why-badge-float .lbl { font-size: 0.75rem; font-weight: 600; color: var(--ink); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }
.why-benefits { list-style: none; margin-top: 28px; }
.why-benefits li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.why-benefits li:last-child { border: none; }
.why-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.why-benefits h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.why-benefits p { font-size: 0.875rem; color: var(--grey); line-height: 1.55; }

/* ── STATS BAR ── */
.stats-bar {
  background: linear-gradient(135deg, var(--teal), var(--ink));
  padding: 30px 5%;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1280px; margin: 0 auto; text-align: center; }
.stat-num {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-top: 6px; font-weight: 500; }

/* ── FLEET ── */
.fleet-section { background: var(--cream); }
.fleet-tabs {
  display: flex; gap: 10px; margin: 40px 0 32px; flex-wrap: wrap;
}
.fleet-tab {
  padding: 10px 22px; border-radius: 50px; border: 2px solid #E5E7EB;
  font-weight: 600; font-size: 0.875rem; cursor: pointer; transition: all 0.2s;
  background: white; color: var(--grey);
}
.fleet-tab.active, .fleet-tab:hover {
  background: var(--teal); border-color: var(--teal); color: white;
}
/* ── PREMIUM FLEET CARDS ── */
.fleet-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}
.fleet-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

.fleet-img {
  background: #f9fafb;
  height: 220px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 20px;
}
.fleet-img img {
  width: 100%; height: 100%; object-fit: contain !important;
  transition: 0.3s;
}
.fleet-card:hover .fleet-img img { transform: scale(1.03); }

.fleet-body { padding: 20px; }
.fleet-name { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; margin-bottom: 10px; color: var(--ink); }
.fleet-specs { display: flex; gap: 8px; margin-bottom: 15px; flex-wrap: wrap; }
.fleet-spec { font-size: 0.85rem; color: var(--grey); background: #f3f4f6; padding: 4px 10px; border-radius: 6px; }

.fleet-price { margin-bottom: 15px; }
.fleet-price-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--teal); }
.fleet-price-unit { font-size: 0.9rem; color: var(--grey); }

.btn-fleet {
  display: block; text-align: center;
  background: var(--teal); color: white; padding: 12px;
  border-radius: 8px; font-weight: 600; font-size: 0.95rem; text-decoration: none;
  transition: 0.2s;
}
.btn-fleet:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* ── AIRPORT SECTION ── */
.airport-section {
  background: linear-gradient(135deg, var(--teal) 0%, #0D2E3E 100%);
  padding: 80px 5%; position: relative; overflow: hidden;
}
.airport-section::before {
  content: '✈';
  position: absolute; right: -2%; top: 50%; transform: translateY(-50%);
  font-size: 20rem; opacity: 0.05; line-height: 1;
}
.airport-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8%; align-items: center; max-width: 1280px; margin: 0 auto; }
.airport-content .section-label { background: rgba(232,168,56,0.2); color: var(--gold); }
.airport-content .section-title { color: white; }
.airport-content .section-sub { color: rgba(255,255,255,0.7); }
.airport-steps { margin-top: 36px; }
.airport-step {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.airport-step:last-child { border: none; }
.step-num {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--gold); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--ink);
}
.airport-step h4 { font-family: var(--font-display); font-weight: 700; color: white; margin-bottom: 4px; }
.airport-step p { font-size: 0.875rem; color: rgba(255,255,255,0.65); }
.airport-highlights {
  background: rgba(255,255,255,0.08); border-radius: var(--radius-lg);
  padding: 36px; backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
}
.airport-highlights h3 { font-family: var(--font-display); color: var(--gold); font-size: 1.3rem; margin-bottom: 24px; }
.highlight-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500;
}
.highlight-item:last-child { border: none; }
.highlight-check { color: var(--gold); font-size: 1rem; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card {
  background: var(--cream); border-radius: var(--radius-lg); padding: 20px;
  border: 2px solid transparent; transition: all 0.3s; position: relative;
}
.testimonial-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: #444; line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: white; font-size: 1rem;
}
.author-name { font-weight: 700; font-size: 0.9rem; }
.author-from { font-size: 0.78rem; color: var(--grey); }
.google-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 2px solid #E5E7EB; border-radius: 50px;
  padding: 10px 20px; margin-top: 40px; text-decoration: none;
  font-weight: 600; font-size: 0.875rem; color: var(--ink);
  transition: all 0.2s;
}
.google-badge:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow); }
.google-stars { color: var(--gold); }

/* ── WHY CHOOSE ── */
.why-choose { background: var(--cream); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.feature-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 20px;
  text-align: center; transition: all 0.3s;
  border: 2px solid transparent; position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(10,79,110,0.1); }
.feature-icon {
  width: 64px; height: 64px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 20px;
}
.feature-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.875rem; color: var(--grey); line-height: 1.65; }

/* ── PRICING ── */
.pricing-section { background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.pricing-card {
  border-radius: var(--radius-lg); border: 2px solid #E5E7EB; overflow: hidden;
  transition: all 0.3s; text-align: center; position: relative;
}
.pricing-card.featured {
  border-color: var(--teal);
  transform: scale(1.03);
  box-shadow: var(--shadow);
}
.featured-badge {
  background: var(--teal); color: white; font-size: 0.75rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 8px; text-align: center;
}
.pricing-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow); border-color: var(--teal); }
.pricing-card.featured:hover { transform: scale(1.05); }
.pricing-head { padding: 28px 20px 18px; background: var(--light); }
.pricing-category { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--grey); font-weight: 600; margin-bottom: 8px; }
.pricing-car { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; }
.pricing-amount { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--teal); }
.pricing-per { font-size: 0.8rem; color: var(--grey); }
.pricing-body { padding: 20px; }
.pricing-feature { font-size: 0.82rem; color: #555; padding: 7px 0; border-bottom: 1px solid #F3F4F6; display: flex; gap: 8px; align-items: center; text-align: left; }
.pricing-feature:last-child { border: none; }
.check { color: #22C55E; font-weight: 700; }

/* ── FAQ ── */
.faq-section { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3%; margin-top: 48px; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  padding: 22px 24px; margin-bottom: 16px; cursor: pointer;
  border: 2px solid transparent; transition: all 0.2s;
}
.faq-item:hover { border-color: var(--teal); }
.faq-question {
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-toggle { font-size: 1.2rem; color: var(--teal); flex-shrink: 0; transition: transform 0.2s; }
.faq-answer { font-size: 0.875rem; color: var(--grey); line-height: 1.65; margin-top: 12px; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-item.open { border-color: var(--teal); background: rgba(10,79,110,0.03); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 40px 5%; text-align: center;
}
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.cta-band p { font-size: 1.05rem; color: rgba(13,13,13,0.75); margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--ink); color: white; padding: 16px 36px;
  border-radius: 50px; font-weight: 700; font-size: 1rem;
  text-decoration: none; transition: all 0.25s; display: flex; align-items: center; gap: 10px;
}
.btn-primary:hover { background: var(--teal); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
.btn-wa {
  background: #25D366; color: white; padding: 16px 36px;
  border-radius: 50px; font-weight: 700; font-size: 1rem;
  text-decoration: none; transition: all 0.25s; display: flex; align-items: center; gap: 10px;
}
.btn-wa:hover { background: #1da850; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,211,102,0.4); }

/* ── PAGES SECTION ── */
.pages-section { background: var(--white); }
.pages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.page-card {
  background: var(--cream); border-radius: var(--radius); padding: 24px;
  text-align: center; transition: all 0.2s;
  border: 2px solid transparent; text-decoration: none; color: var(--ink);
}
.page-card:hover { border-color: var(--teal); transform: translateY(-4px); background: white; box-shadow: var(--shadow); }
.page-icon { font-size: 2rem; margin-bottom: 12px; }
.page-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; }
.page-card p { font-size: 0.78rem; color: var(--grey); line-height: 1.5; }

/* ── FOOTER LOCATIONS BAND ── */
.footer-locations-band {
  background: #e8f5e9;
  padding: 28px 5%;
  border-top: 1px solid #c8e6c9;
}
.footer-locations-inner { max-width: 1280px; margin: 0 auto; }
.footer-locations-heading {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
}
.footer-locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px 16px;
}
.footer-loc-link {
  color: #1a237e;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.footer-loc-link:hover { color: var(--teal); }
.footer-loc-arrow { color: var(--teal); font-weight: 700; flex-shrink: 0; }
/* ── MAIN FOOTER ── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 48px 5% 20px;
}
.footer-main-grid {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr 1fr 1fr;
  gap: 4%;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: start;
}

/* About column */
.footer-logo-link { display: inline-block; margin-bottom: 16px; }
.footer-logo-img { height: 55px; width: auto;  object-fit: contain; }
.footer-logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: white; }
.footer-about-text { font-size: 0.855rem; line-height: 1.75; color: rgba(255,255,255,0.65); margin-bottom: 20px; max-width: 270px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  color: white;
}
.footer-social-icon:hover { background: var(--teal); }
.footer-social-icon svg { width: 16px; height: 16px; fill: currentColor; }

/* Contact column */
.footer-col-heading {
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  font-size: 1rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--teal);
  display: inline-block;
}
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.845rem; }
.fci {
  width: 30px; height: 30px; flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
}
.fci svg { width: 13px; height: 13px; fill: var(--gold); }
.footer-contact-list a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--gold); }
.footer-contact-list span { color: rgba(255,255,255,0.65); line-height: 1.5; }

/* Quick Links column */
.footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-list a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.865rem;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.footer-links-list a:hover { color: var(--gold); }
.fli { font-size: 0.85rem; }

/* Map column */
.footer-map-wrap { border-radius: 10px; overflow: hidden; border: 2px solid rgba(255,255,255,0.1); }

/* Bottom bar */
.footer-bottom {
  max-width: 1280px;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ── STICKY ELEMENTS ── */
.sticky-cta {
  position: fixed; bottom: 100px; right: 24px; z-index: 900;
  background: var(--teal); color: white;
  padding: 13px 22px; border-radius: 50px;
  font-weight: 700; font-size: 0.85rem; text-decoration: none;
  box-shadow: 0 8px 24px rgba(10,79,110,0.45); display: flex; align-items: center; gap: 8px;
  transition: all 0.25s; white-space: nowrap;
}
.sticky-cta:hover { background: var(--teal-light); transform: translateY(-2px); }
.whatsapp-float {
  position: fixed; bottom: 28px; right: 24px; z-index: 900;
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
  transition: all 0.25s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,0.6); }
.whatsapp-float svg { width: 32px; height: 32px; vertical-align: middle; }
.whatsapp-float::before {
  content: 'Chat Now'; position: absolute; right: 68px;
  background: #25D366; color: white; padding: 6px 12px;
  border-radius: 8px; font-size: 0.78rem; font-weight: 600;
  white-space: nowrap; opacity: 0; transition: opacity 0.2s;
  font-family: var(--font-body);
}
.whatsapp-float:hover::before { opacity: 1; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ── RESPONSIVE BREAKPOINTS ── */

/* Tablet landscape (≤1024px) */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-locations-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Tablet portrait (≤900px) */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .booking-card { max-width: 520px; margin: 0 auto; width: 100%; }
  .why-grid { grid-template-columns: 1fr; }
  .why-badge-float { bottom: -10px; right: 10px; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .airport-grid { grid-template-columns: 1fr; }
  .airport-highlights { margin-top: 32px; }
  .faq-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-locations-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 2.2rem; }
}

@media (max-width: 640px) {
  /* Floating elements adjustment */
  .joinchat, .whatsapp-float, .joinchat--mobile, #joinchat {
      bottom: 110px !important;
      z-index: 1000 !important;
  }

  nav { padding: 0 5%; }
  section { padding: 35px 5%; }

  /* Hero */
  .hero {
    padding-top: 80px;
    padding-bottom: 30px;
    min-height: auto;
    /* Disable fixed bg attachment on mobile (iOS/Android bug) */
    background-attachment: scroll !important;
  }
  .hero-headline { font-size: 2rem; line-height: 1.2; }
  .hero-sub { font-size: 1rem; }
  .booking-card { max-width: 100%; width: 100%; }
  .form-row { grid-template-columns: 1fr; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 2rem; }

  /* Why section badge */
  .why-badge-float { bottom: -8px; right: 8px; padding: 14px 18px; }
  .why-badge-float .num { font-size: 1.5rem; }

  /* Fleet — mobile single column, taller image box so full car shows */
  .fleet-section { padding-left: 5%; padding-right: 5%; }
  .fleet-grid { grid-template-columns: 1fr; gap: 20px; }
  .fleet-body { padding: 20px 20px 24px; }
  .fleet-img { height: 210px; padding: 12px; }
  .fleet-img img { object-fit: contain !important; object-position: center center !important; }
  .fleet-tabs { justify-content: flex-start; gap: 8px; margin-bottom: 25px; }

  /* Features / Why Choose */
  .features-grid { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }

  /* Pages */
  .pages-grid { grid-template-columns: repeat(2, 1fr); }

  /* CTA */
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-wa { justify-content: center; }

  /* Footer */
  .footer-main-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 24px; }
  .footer-locations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-about-text { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  footer { padding: 40px 5% 80px; }

  /* Sticky */
  .sticky-cta { display: none; }
  .whatsapp-float { width: 55px; height: 55px; bottom: 100px; right: 20px; font-size: 1.5rem; z-index: 1000; }
  .whatsapp-float::before { display: none; }

  /* Google badge */
  .google-badge { flex-wrap: wrap; justify-content: center; gap: 4px; }
}

/* Mobile small (≤480px) */
@media (max-width: 480px) {
  .hero-headline { font-size: 1.85rem; }
  .section-title { font-size: 1.65rem; }
  .pages-grid { grid-template-columns: 1fr 1fr; }
  .fleet-card { border-radius: 12px; }
  .airport-highlights { padding: 24px 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-num { font-size: 1.8rem; }
  .stat-label { font-size: 0.78rem; }
  .hero-trust { gap: 12px; }
  .booking-card { padding: 24px 18px; }
  .footer-locations-grid { grid-template-columns: 1fr 1fr; }
  .section-sub { font-size: 0.95rem; }
  .cta-band h2 { font-size: 1.6rem; }
}



/* ── BLOG & 404 DESIGN ── */
.blog-hero { padding: 100px 5% 60px; text-align: center; color: #fff; background: var(--teal); }
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .fleet-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .fleet-grid { grid-template-columns: 1fr; }
}
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; margin-bottom: 50px; }
.blog-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: all 0.3s; border: 1px solid rgba(0,0,0,0.05); }
.blog-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: var(--gold); }
.blog-card-img { width: 100%; height: 220px; object-fit: cover; }
.blog-card-body { padding: 25px; }
.blog-card-date { font-size: 0.85rem; color: var(--gold); font-weight: 600; text-transform: uppercase; margin-bottom: 10px; display: block; }
.blog-card-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; line-height: 1.3; }
.blog-card-title a { text-decoration: none; color: var(--ink); transition: color 0.3s; }
.blog-card-title a:hover { color: var(--teal); }

.blog-sidebar-box { background: #fff; padding: 25px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin-bottom: 30px; }
.sidebar-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 20px; border-left: 4px solid var(--gold); padding-left: 15px; }
.recent-post-link { display: flex; gap: 12px; margin-bottom: 15px; text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.95rem; line-height: 1.4; }
.recent-post-link:hover { color: var(--gold); }

.single-article { background: #fff; padding: 40px; border-radius: 20px; box-shadow: 0 10px 50px rgba(0,0,0,0.05); margin-bottom: 40px; }
.article-content { font-size: 1.15rem; line-height: 1.9; color: #444; }
.article-content h2, .article-content h3 { margin-top: 40px; margin-bottom: 20px; color: var(--ink); }

.related-section { margin-top: 60px; padding-top: 40px; border-top: 2px solid #eee; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }

.error-404-container { padding: 120px 20px; text-align: center; background: var(--cream); min-height: 70vh; display: flex; align-items: center; justify-content: center; }
.error-404-box { max-width: 600px; }
.error-404-code { font-size: 8rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 20px; }
.error-404-title { font-size: 2.5rem; color: var(--ink); margin-bottom: 20px; }
.btn-home { display: inline-block; background: var(--teal); color: #fff; padding: 15px 40px; border-radius: 50px; text-decoration: none; font-weight: 700; margin-top: 30px; transition: all 0.3s; }
.btn-home:hover { background: var(--ink); transform: scale(1.05); }

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .single-article { padding: 25px 20px; }
    .error-404-code { font-size: 5rem; }
}

/* Easy FAQ for Blog Posts */
.article-faq { background: #fdfaf3; border: 2px solid var(--gold); border-radius: 12px; padding: 25px; margin: 40px 0; }
.article-faq-h { font-size: 1.2rem; font-weight: 800; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; color: var(--ink); border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 10px; }
.article-faq-h i { color: var(--gold); }
.article-faq p:last-child { margin-bottom: 0; }
/* ── SINGLE CAR MOBILE STICKY FOOTER ── */
.p-m-sticky {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: #fff; padding: 12px 18px;
    box-shadow: 0 -8px 25px rgba(0,0,0,0.1);
    display: none; align-items: center; justify-content: space-between;
    z-index: 2000; border-top: 1px solid #eee; gap: 10px;
}
@media (max-width: 768px) { .p-m-sticky { display: flex; } }

.p-m-info { display: flex; flex-direction: column; min-width: 90px; }
.p-m-info .lbl { font-size: 10px; font-weight: 700; color: #777; letter-spacing: 0.5px; }
.p-m-info .val { font-size: 1.2rem; font-weight: 800; color: var(--ink); font-family: var(--font-display); line-height: 1.1; }

.p-m-btns { display: flex; gap: 6px; flex: 1.5; justify-content: flex-end; }
.p-m-btn {
    padding: 10px 6px; border-radius: 6px; font-weight: 700; font-size: 13px;
    text-decoration: none; display: flex !important; align-items: center; justify-content: center; gap: 4px; flex: 1; min-width: 0;
    text-transform: uppercase; white-space: nowrap;
}
.p-m-btn i { font-size: 14px; }
.p-m-btn.wa {
    background: #25D366 !important;
    color: #fff !important;
}
.p-m-btn.call {
    background: #0F7F8C !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(15, 127, 140, 0.3) !important;
}
.p-m-btn i { margin-right: 4px; font-size: 14px; }