/* Velvet Lane - WordPress Theme Styles */
/* COMPLETE FIX: Matches original HTML exactly + mobile responsive */
/* Version: 2.0.0 | Fixed: 2026-02-16 */

/* =============== FONTS =============== */
@font-face {
  font-family: 'Zenitha Classic';
  src: url('../fonts/ZenithaClassic_PERSONAL_USE_ONLY.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* =============== CSS VARIABLES =============== */
:root {
  --black: #000000;
  --charcoal: #1a1a1a;
  --gold: #dbae75;
  --gold-dark: #c69a5e;
  --gold-light: #e8c99b;
  --cream: #efeae4;
  --cream-dark: #e5ddd4;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --text-dark: #1a1a1a;
  --text-light: rgba(255, 255, 255, 0.85);
  --text-muted: rgba(0, 0, 0, 0.6);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 10px 40px rgba(219, 174, 117, 0.3);
}

/* =============== RESET & BASE =============== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Zenitha Classic', Georgia, serif;
  font-weight: normal;
  line-height: 1.2;
  color: var(--text-dark);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

/* =============== ANIMATIONS =============== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes goldShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Stagger children animations */
.stagger-children > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.6s; }

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =============== HEADER =============== */
.header,
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.header.scrolled,
.site-header.scrolled {
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.75rem 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Homepage transparent header */
.header-transparent,
.home .site-header {
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 100%);
  box-shadow: none;
}

.header-transparent.scrolled,
.home .site-header.scrolled {
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Logo - CRITICAL: 90px centered */
.logo,
.site-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
}

.logo img,
.site-logo img,
.custom-logo {
  height: 90px;
  width: auto;
  transition: var(--transition);
}

.logo:hover img {
  transform: scale(1.05);
}

.header.scrolled .logo img,
.site-header.scrolled .site-logo img,
.site-header.scrolled .custom-logo {
  height: 70px;
}

/* Navigation */
.nav,
.main-navigation {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  justify-content: space-between;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav a,
.main-navigation a,
.wp-block-navigation-item a {
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  font-weight: 500;
  padding: 0.5rem 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav a:hover,
.nav a.active,
.main-navigation a:hover,
.main-navigation a.current {
  color: var(--gold);
}

.nav a::after,
.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after,
.main-navigation a:hover::after,
.main-navigation a.current::after {
  width: 100%;
}

/* CTA Button */
.cta-button,
.wp-block-button__link.cta-button {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.85rem 1.75rem !important;
  border-radius: 0 !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--gold) !important;
  min-height: 44px;
  min-width: 44px;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: var(--transition);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: var(--gold-dark) !important;
  border-color: var(--gold-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  display: block;
}

.header-transparent .menu-toggle span {
  background: var(--white);
}

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

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

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

/* =============== HERO SECTION (Home Page) =============== */
.hero,
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video,
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 950px;
  padding: 0 2rem;
  animation: fadeInUp 1s ease-out forwards;
}

.hero-tagline {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero h1,
.hero-content h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--white);
  margin-bottom: 1.75rem;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  line-height: 1.1;
}

.hero p,
.hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

/* Page Hero */
.page-hero {
  height: 55vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out forwards;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

/* Page-specific hero backgrounds */
.page-hero-services {
  background-image: url('../images/benz-hero.webp');
}

.page-hero-booking {
  background-image: url('../images/hero-bg.webp');
}

.page-hero-about {
  background-image: url('../images/range-rover.webp');
}

.page-hero-contact {
  background-image: url('../images/defender.webp');
}

/* =============== BUTTONS =============== */
.btn,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  font-weight: 600;
  min-height: 44px;
  min-width: 44px;
  text-decoration: none;
}

.btn-primary,
.wp-block-button__link {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover,
.wp-block-button__link:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
}

.btn-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* =============== SECTIONS BASE =============== */
section,
.wp-block-group.section {
  padding: 100px 2rem;
}

.container,
.wp-block-group__inner-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-header p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.gold-line {
  width: 70px;
  height: 3px;
  background: var(--gold);
  margin: 1.75rem auto 0;
  position: relative;
  overflow: hidden;
}

.gold-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  animation: goldShimmer 3s infinite;
}

/* =============== SECTION BACKGROUNDS =============== */
/* CREAM Background */
.section-cream,
.has-cream-background-color {
  background: var(--cream);
}

.section-cream .section-header h2 {
  color: var(--text-dark);
}

.section-cream .section-header p {
  color: var(--text-muted);
}

/* WHITE Background */
.section-white,
.has-white-background-color {
  background: var(--white);
}

.section-white .section-header h2 {
  color: var(--text-dark);
}

.section-white .section-header p {
  color: var(--text-muted);
}

/* LIGHT GRAY Background */
.section-gray,
.has-light-gray-background-color {
  background: var(--light-gray);
}

.section-gray .section-header h2 {
  color: var(--text-dark);
}

.section-gray .section-header p {
  color: var(--text-muted);
}

/* BLACK Background (sparingly) */
.section-dark,
.has-black-background-color {
  background: var(--black);
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

/* =============== WHY VELVET LANE =============== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.why-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 2rem;
  background: rgba(219, 174, 117, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.why-card:hover .why-card-icon {
  transform: scale(1.1);
  background: var(--gold);
  color: var(--white);
}

.why-card h3 {
  color: var(--text-dark);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =============== FLEET SECTION =============== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.fleet-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.fleet-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--gold);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.fleet-card:hover::after {
  opacity: 1;
}

.fleet-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.fleet-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--light-gray);
}

.fleet-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fleet-card:hover .fleet-card-image img {
  transform: scale(1.08);
}

.fleet-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
  opacity: 0;
  transition: var(--transition);
}

.fleet-card:hover .fleet-card-overlay {
  opacity: 1;
}

.fleet-card-content {
  padding: 1.75rem;
  background: var(--white);
}

.fleet-card h3 {
  color: var(--text-dark);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.fleet-card-type {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
}

.fleet-card-price {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.fleet-card-price span {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 400;
}

.fleet-card .btn {
  width: 100%;
  text-align: center;
}

/* =============== SERVICES CARDS =============== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card {
  background: var(--white);
  padding: 2.75rem 2.25rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: var(--transition);
}

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

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
}

.service-card h3 {
  color: var(--text-dark);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.8;
  flex-grow: 1;
}

.service-card .btn {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  align-self: flex-start;
}

.service-card .btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* =============== TESTIMONIALS =============== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(219, 174, 117, 0.15);
  line-height: 1;
}

.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.testimonial-rating {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  letter-spacing: 3px;
}

.testimonial-card blockquote {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.75rem;
  font-style: italic;
}

.testimonial-author {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.1rem;
}

.testimonial-role {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* =============== CTA SECTION =============== */
.cta-section {
  background: var(--black);
  text-align: center;
  padding: 100px 2rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(219, 174, 117, 0.08) 0%, transparent 70%);
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  margin-bottom: 1.25rem;
  position: relative;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.15rem;
  position: relative;
  line-height: 1.8;
}

.cta-section .btn {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
  position: relative;
}

.cta-section .btn:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* =============== FORMS =============== */
.booking-section {
  background: var(--charcoal);
}

.booking-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
  min-height: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(219, 174, 117, 0.08);
  box-shadow: 0 0 25px rgba(219, 174, 117, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

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

/* =============== MODAL =============== */
.modal-overlay,
.booking-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 2rem;
}

.modal-overlay.active,
.booking-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal,
.modal-content {
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition);
}

.modal-overlay.active .modal,
.booking-modal.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-header {
  padding: 2rem 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  color: var(--white);
  font-size: 1.6rem;
}

.modal-close {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.modal-body {
  padding: 2.5rem;
}

/* =============== FOOTER =============== */
.footer,
.site-footer {
  background: var(--charcoal);
  padding: 5rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-about img,
.footer-logo {
  height: 80px;
  margin-bottom: 1.75rem;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.9;
}

.footer-column h4 {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.85rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0;
  min-height: 44px;
}

.footer-column a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

/* =============== RESPONSIVE - COMPREHENSIVE MOBILE FIX =============== */

/* Extra small devices (320px) */
@media (max-width: 374px) {
  body {
    font-size: 14px;
  }
  
  .hero h1,
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  section {
    padding: 50px 1rem;
  }
  
  .why-grid,
  .services-grid,
  .fleet-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .why-card,
  .service-card,
  .fleet-card,
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .booking-form {
    padding: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    padding: 1rem 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .footer-about img {
    margin: 0 auto 1rem;
    height: 60px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Small devices (375px - 599px) */
@media (min-width: 375px) and (max-width: 599px) {
  body {
    font-size: 15px;
  }
  
  .hero h1,
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  section {
    padding: 60px 1.25rem;
  }
  
  .why-grid,
  .services-grid,
  .fleet-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .footer-about img {
    margin: 0 auto 1.5rem;
    height: 65px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Medium devices (600px - 767px) */
@media (min-width: 600px) and (max-width: 767px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Tablets (768px) */
@media (max-width: 768px) {
  section {
    padding: 70px 1.5rem;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .logo,
  .site-logo {
    position: relative;
    left: auto;
    transform: none;
    order: 1;
  }
  
  .logo img,
  .site-logo img {
    height: 50px;
  }
  
  .nav,
  .main-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--charcoal);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: var(--transition);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
  }
  
  .nav.active,
  .main-navigation.active {
    right: 0;
  }
  
  .nav-left,
  .nav-right {
    flex-direction: column;
    gap: 2rem;
  }
  
  .nav a,
  .main-navigation a {
    font-size: 1.2rem;
    color: var(--white);
  }
  
  .hero h1,
  .hero-content h1 {
    font-size: 2.75rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-form {
    padding: 2rem;
  }
  
  .fleet-card-image {
    height: 200px;
  }
}

/* Landscape tablets (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large desktops (1440px+) */
@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }
  
  section {
    padding: 120px 2rem;
  }
}

/* =============== UTILITIES =============== */
.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-center { text-align: center; }
.bg-gold { background: var(--gold); }
.bg-cream { background: var(--cream); }
.bg-black { background: var(--black); }

/* Loading animation for images */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s ease;
}

img[loading="lazy"].loaded,
img:not([loading="lazy"]) {
  opacity: 1;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* =============== WORDPRESS BLOCK OVERRIDES =============== */
/* Ensure WordPress blocks don't break layout */
.wp-block-group {
  box-sizing: border-box;
}

.wp-block-group.section-cream,
.wp-block-group.section-white,
.wp-block-group.section-gray {
  padding: 100px 2rem;
}

@media (max-width: 768px) {
  .wp-block-group.section-cream,
  .wp-block-group.section-white,
  .wp-block-group.section-gray {
    padding: 70px 1.5rem;
  }
}

@media (max-width: 599px) {
  .wp-block-group.section-cream,
  .wp-block-group.section-white,
  .wp-block-group.section-gray {
    padding: 60px 1.25rem;
  }
}

/* WordPress navigation fixes */
.wp-block-navigation__responsive-container.is-menu-open {
  background: var(--charcoal);
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item a {
  color: var(--white);
  padding: 1rem 0;
}

/* WordPress button fixes */
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--white);
  color: var(--black);
}
/* =============== MOBILE RESPONSIVE FIXES =============== */
/* Critical fixes for mobile layout issues */

@media (max-width: 768px) {
  /* CRITICAL: Hide desktop navigation on mobile */
  .nav-left,
  .nav-right,
  .wp-block-group.nav-left,
  .wp-block-group.nav-right {
    display: none !important;
  }
  
  /* Header adjustments for mobile */
  .header,
  .site-header {
    padding: 0.75rem 1rem;
  }
  
  .header-inner,
  .wp-block-group.header-inner {
    justify-content: space-between;
    padding: 0;
  }
  
  /* Logo positioning for mobile */
  .logo,
  .site-logo,
  .wp-block-group.site-logo {
    position: static !important;
    left: auto !important;
    transform: none !important;
    order: 2;
    margin: 0 auto;
  }
  
  .logo img,
  .site-logo img,
  .site-logo .custom-logo {
    height: 45px !important;
    width: auto;
  }
  
  /* Menu toggle positioning */
  .menu-toggle {
    display: flex !important;
    order: 3;
    margin-left: auto;
  }
  
  /* Mobile navigation menu (slide-in from right) */
  .nav,
  .main-navigation,
  #mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--charcoal);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    padding: 5rem 2rem 2rem;
    transition: var(--transition);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9999;
    overflow-y: auto;
  }
  
  .nav.active,
  .main-navigation.active,
  #mobile-menu.active {
    right: 0;
  }
  
  /* Show nav items inside mobile menu */
  .nav.active .nav-left,
  .nav.active .nav-right,
  .main-navigation.active .nav-left,
  .main-navigation.active .nav-right,
  #mobile-menu.active .nav-left,
  #mobile-menu.active .nav-right {
    display: flex !important;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  /* Mobile navigation links */
  .nav a,
  .main-navigation a,
  #mobile-menu a,
  .wp-block-navigation-item a {
    font-size: 1.1rem !important;
    color: var(--white) !important;
    padding: 0.75rem 0 !important;
  }
  
  /* CTA button in header - hide on mobile */
  .header .cta-button,
  .site-header .cta-button,
  .header-inner .cta-button,
  .header-inner .wp-block-button {
    display: none !important;
  }
  
  /* Hero section adjustments */
  .hero,
  .hero-section {
    min-height: 600px;
    height: 100vh;
  }
  
  .hero-content {
    padding: 2rem 1.5rem;
    text-align: center;
  }
  
  .hero h1,
  .hero-content h1 {
    font-size: 2.5rem !important;
    line-height: 1.15;
    margin-bottom: 1rem;
  }
  
  .hero-tagline,
  .hero-content .hero-tagline {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .hero p,
  .hero-content p:not(.hero-tagline) {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 100%;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  /* Sections padding */
  section {
    padding: 60px 1.5rem !important;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-header p {
    font-size: 0.95rem;
  }
  
  /* Grid layouts */
  .why-grid,
  .services-grid,
  .fleet-grid,
  .testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  
  /* Cards adjustments */
  .why-card,
  .service-card,
  .fleet-card,
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  
  .fleet-card-image {
    height: 220px;
  }
  
  /* Forms */
  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }
  
  .booking-form {
    padding: 2rem 1.5rem;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 2.5rem;
  }
  
  .footer-about img {
    margin: 0 auto 1.5rem;
    height: 65px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  /* Buttons */
  .btn {
    width: 100%;
    max-width: 300px;
    padding: 1rem 2rem;
    font-size: 0.85rem;
  }
}

/* Extra small devices (max-width: 374px) */
@media (max-width: 374px) {
  .logo img,
  .site-logo img,
  .site-logo .custom-logo {
    height: 40px !important;
  }
  
  .hero h1,
  .hero-content h1 {
    font-size: 2rem !important;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  section {
    padding: 50px 1rem !important;
  }
  
  .btn {
    max-width: 280px;
    padding: 0.9rem 1.75rem;
    font-size: 0.8rem;
  }
}

/* Small devices (375px - 599px) */
@media (min-width: 375px) and (max-width: 599px) {
  .hero h1,
  .hero-content h1 {
    font-size: 2.35rem !important;
  }
  
  section {
    padding: 60px 1.25rem !important;
  }
}

/* Booking modal fixes */
.booking-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1.5rem;
}

.booking-modal.active {
  opacity: 1;
  visibility: visible;
}

/* Modal responsive */
@media (max-width: 768px) {
  .modal-content {
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem 1.5rem;
  }
  
  .modal-header h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 374px) {
  .modal-content {
    padding: 1.75rem 1.25rem;
  }
  
  .modal-header h2 {
    font-size: 1.5rem;
  }
}
