/* ============================================
   A Chauffeur 4 U — Stylesheet
   ============================================ */

/* --- Custom Properties --- */
:root {
  --gold: #c8a862;
  --gold-light: #ddc68e;
  --gold-dark: #a8893f;
  --navy: #0a1628;
  --navy-light: #111f38;
  --navy-lighter: #162744;
  --charcoal: #1a1a2e;
  --slate: #8892a4;
  --silver: #c5cad3;
  --off-white: #f4f2ee;
  --white: #ffffff;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--silver);
  background-color: var(--navy);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

a:hover {
  color: var(--gold-light);
}

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-weight: 500;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1rem; letter-spacing: 0.05em; text-transform: uppercase; }

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 168, 98, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(10, 22, 40, 0.2);
}

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

.btn-full {
  width: 100%;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 80px;
  width: auto;
  transition: height 0.4s var(--ease);
}

.nav.scrolled .nav-logo img {
  height: 60px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s var(--ease);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--charcoal) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200, 168, 98, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200, 168, 98, 0.05) 0%, transparent 50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.01) 2px,
      rgba(255, 255, 255, 0.01) 4px
    );
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-tagline {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--slate);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--slate);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--slate);
  line-height: 1.8;
}

/* ============================================
   Services
   ============================================ */
.services {
  background: var(--navy);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px 32px;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease);
}

.service-card:hover {
  border-color: rgba(200, 168, 98, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 28px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--slate);
  margin-bottom: 24px;
  line-height: 1.7;
}

.service-rate {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--gold);
  font-style: italic;
}

/* ============================================
   About
   ============================================ */
.about {
  background: var(--navy-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-inner {
  aspect-ratio: 4/5;
  background:
    linear-gradient(135deg, var(--navy-lighter) 0%, var(--navy) 100%);
  border: 1px solid rgba(200, 168, 98, 0.15);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 32px;
}

.about-image-inner::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(200, 168, 98, 0.1);
}

.about-image-badge {
  background: var(--gold);
  color: var(--navy);
  padding: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}

.badge-text {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1.4;
}

.about-content .section-label {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 28px;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--slate);
}

.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold);
  font-weight: 500;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 4px;
}

/* ============================================
   Pricing
   ============================================ */
.pricing {
  background: var(--off-white);
}

.pricing .section-label { color: var(--gold-dark); }
.pricing .section-title { color: var(--navy); }
.pricing .section-desc { color: var(--slate); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--white);
  padding: 48px 36px;
  border: 1px solid rgba(10, 22, 40, 0.08);
  transition: all 0.4s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.1);
}

.pricing-card.featured {
  background: var(--navy);
  border-color: rgba(200, 168, 98, 0.3);
  transform: scale(1.04);
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 30px 80px rgba(10, 22, 40, 0.3);
}

.pricing-badge {
  position: absolute;
  top: 0;
  right: 32px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
}

.pricing-header {
  margin-bottom: 32px;
}

.pricing-header h3 {
  font-size: 1.125rem;
  margin-bottom: 16px;
}

.pricing-card:not(.featured) .pricing-header h3 {
  color: var(--navy);
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}

.pricing-card:not(.featured) .price {
  color: var(--navy);
}

.pricing-card.featured .price {
  color: var(--gold);
}

.price-unit {
  font-size: 1rem;
  color: var(--slate);
}

.pricing-features {
  flex: 1;
  margin-bottom: 36px;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 0.9375rem;
  border-bottom: 1px solid rgba(10, 22, 40, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-card.featured .pricing-features li {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  color: var(--silver);
}

.pricing-card:not(.featured) .pricing-features li {
  color: #555;
}

.pricing-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--slate);
}

.pricing-note a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   Service Areas
   ============================================ */
.areas {
  background: var(--navy);
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.areas-content .section-label { text-align: left; }
.areas-content .section-title { text-align: left; margin-bottom: 20px; }

.areas-content > p {
  color: var(--slate);
  margin-bottom: 40px;
  font-size: 1rem;
}

.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.areas-list h4 {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 0.8125rem;
}

.areas-list ul li {
  padding: 6px 0;
  font-size: 0.9375rem;
  color: var(--silver);
  position: relative;
  padding-left: 16px;
}

.areas-list ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

.areas-airports {
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px;
}

.areas-airports h3 {
  font-size: 1.25rem;
  margin-bottom: 28px;
}

.airport-tags {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.airport-tag {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s var(--ease);
}

.airport-tag:hover {
  border-color: rgba(200, 168, 98, 0.2);
}

.tag-code {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  min-width: 48px;
}

.tag-name {
  font-size: 0.875rem;
  color: var(--silver);
}

.areas-note {
  margin-top: 20px;
  font-size: 0.8125rem;
  color: var(--slate);
  font-style: italic;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
  background: var(--navy-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px 36px;
  transition: all 0.4s var(--ease);
}

.testimonial-card:hover {
  border-color: rgba(200, 168, 98, 0.15);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9375rem;
}

.author-detail {
  font-size: 0.8125rem;
  color: var(--slate);
}

/* ============================================
   Reservation
   ============================================ */
.reserve {
  background: var(--navy);
}

.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.reserve-info .section-label { text-align: left; }
.reserve-info .section-title { text-align: left; margin-bottom: 20px; }

.reserve-info > p {
  color: var(--slate);
  margin-bottom: 40px;
  font-size: 1rem;
}

.reserve-contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item strong {
  color: var(--white);
  font-size: 0.9375rem;
}

.contact-item span,
.contact-item a {
  font-size: 0.875rem;
  color: var(--slate);
}

.contact-item a:hover {
  color: var(--gold);
}

/* --- Form --- */
.reserve-form-wrap {
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px;
}

.reserve-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--silver);
  letter-spacing: 0.03em;
}

.required { color: var(--gold); }
.optional { color: var(--slate); font-weight: 400; }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color 0.3s var(--ease);
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--slate);
  opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238892a4' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.recaptcha-notice {
  font-size: 0.75rem;
  color: var(--slate);
  text-align: center;
  margin-top: 8px;
  line-height: 1.6;
}

.recaptcha-notice a {
  color: var(--slate);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.recaptcha-notice a:hover {
  color: var(--gold);
}

/* Hide the reCAPTCHA badge */
.grecaptcha-badge {
  visibility: hidden !important;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--charcoal);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-logo {
  height: 72px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9375rem;
  color: var(--slate);
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 0.75rem;
}

.footer-links li,
.footer-contact li {
  padding: 4px 0;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--slate);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact li {
  font-size: 0.875rem;
  color: var(--slate);
}

.footer-contact a {
  color: var(--slate);
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--slate);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 48px;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }

  .areas-grid {
    gap: 48px;
  }
}

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

  .section-header {
    margin-bottom: 48px;
  }

  /* Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 36px 36px;
    gap: 0;
    transition: right 0.4s var(--ease-out);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 16px;
    text-align: center !important;
    border: 1px solid var(--gold) !important;
    padding: 14px 24px !important;
  }

  /* Hero */
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-scroll {
    display: none;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .about-image-inner {
    aspect-ratio: 16/9;
  }

  .about-stats {
    gap: 32px;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

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

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Reservation */
  .reserve-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .reserve-form-wrap {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }

  .service-card {
    padding: 36px 24px;
  }

  .pricing-card {
    padding: 36px 28px;
  }

  .areas-airports {
    padding: 32px 24px;
  }

  .testimonial-card {
    padding: 36px 28px;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

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