/* ========================================
   NEW CAR TRAVELS - STATIC WEBSITE CSS
   ======================================== */

/* CSS Variables / Design Tokens */
:root {
  /* Colors - Premium cream + gold + black palette */
  --background: #fbf9f4;
  --background-rgb: 251, 249, 244;
  --foreground: #1a1a1a;
  --foreground-rgb: 26, 26, 26;
  
  /* Gold palette */
  --gold: #c9a55c;
  --gold-rgb: 201, 165, 92;
  --gold-foreground: #0a0a0a;
  --gold-soft: #e8dcb5;
  
  /* Card and UI colors */
  --card: #ffffff;
  --card-foreground: #1a1a1a;
  --popover: #ffffff;
  --popover-foreground: #1a1a1a;
  --primary: #1a1a1a;
  --primary-foreground: #ffffff;
  --secondary: #f5f5f0;
  --secondary-foreground: #1a1a1a;
  --muted: #f5f5f0;
  --muted-foreground: #666666;
  --accent: #f5f5f0;
  --accent-foreground: #1a1a1a;
  --destructive: #dc2626;
  --destructive-foreground: #ffffff;
  --border: #e5e5dc;
  --input: #e5e5dc;
  --ring: #c9a55c;
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #d4b76a, #b8944f);
  --gradient-dark: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  
  /* Shadows */
  --shadow-gold: 0 20px 60px -20px rgba(184, 148, 79, 0.45);
  --shadow-elegant: 0 10px 40px -15px rgba(26, 26, 26, 0.25);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  
  /* Border radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.625rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;
  
  /* Typography */
  --font-display: "Playfair Display", serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  
  /* Layout */
  --container-max: 72rem;
  --header-height: 4rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.2;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2.5rem;
  }
}

.text-gold {
  color: var(--gold);
}

.hidden-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hidden-mobile {
    display: inline-flex;
  }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  border-radius: var(--radius-md);
  padding: 0.625rem 1rem;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* Gold Button */
.btn-gold {
  background: var(--gradient-gold);
  color: var(--gold-foreground);
  box-shadow: var(--shadow-gold);
  font-weight: 600;
  border: none;
}

.btn-gold:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 70px -20px rgba(184, 148, 79, 0.55);
}

/* Outline Gold Button */
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-weight: 600;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--gold-foreground);
}

/* Dark Button */
.btn-dark {
  background: var(--gradient-dark);
  color: var(--background);
  font-weight: 600;
}

.btn-dark:hover {
  background: rgba(26, 26, 26, 0.9);
}

/* WhatsApp Button */
.btn-whatsapp {
  background: #25d366;
  color: white;
  font-weight: 600;
}

.btn-whatsapp:hover {
  background: #1ebe5a;
}

/* Button Sizes */
.btn-sm {
  height: 2rem;
  padding: 0 0.75rem;
  font-size: 0.75rem;
}

.btn-xl {
  height: 3.5rem;
  padding: 0 2.5rem;
  font-size: 1rem;
  border-radius: var(--radius-full);
}

.btn-full {
  width: 100%;
}

.btn-flex {
  flex: 1;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(var(--background-rgb), 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.2);
}

.header-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo img {
  height: 3.5rem;
  width: auto;
}

@media (min-width: 768px) {
  .logo img {
    height: 4rem;
  }
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--foreground);
  transition: var(--transition-fast);
  border-radius: 2px;
}

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

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

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

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
  z-index: 40;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
  display: flex;
}

.mobile-nav-link {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--gold);
}

.mobile-call-btn {
  margin-top: 0.5rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  padding-top: var(--header-height);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 48rem;
  padding: 2rem 1.5rem;
  color: white;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-eyebrow {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 6rem;
  }
}

.hero-tagline {
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 0.5rem;
  opacity: 0.95;
}

@media (min-width: 768px) {
  .hero-tagline {
    font-size: 1.5rem;
  }
}

.hero-owner {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 5rem 0;
  scroll-margin-top: 6rem;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.section-alt {
  background: rgba(var(--gold-rgb), 0.08);
}

.section-dark {
  background: var(--foreground);
  color: var(--background);
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
  animation: fadeIn 1s ease-out;
}

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

.section-heading {
  font-size: 2.25rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 3rem;
  }
}

.section-heading-light {
  color: var(--background);
}

.section-divider {
  margin: 1.25rem auto 0;
  height: 2px;
  width: 5rem;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.image-card {
  background: var(--card);
  padding: 0.75rem;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-elegant);
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  animation: fadeIn 1s ease-out;
}

.image-card img {
  border-radius: var(--radius-2xl);
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-content {
  animation: fadeIn 1s ease-out 0.2s both;
}

.about-content h3 {
  font-size: 1.875rem;
  margin-bottom: 1.25rem;
}

.about-text {
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.about-text strong {
  color: var(--foreground);
  font-weight: 600;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1rem;
}

.stat-card {
  text-align: center;
  padding: 1rem;
  background: rgba(var(--gold-rgb), 0.15);
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: var(--radius-2xl);
}

.stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.stat-number svg {
  width: 1.25rem;
  height: 1.25rem;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

/* ========================================
   CARS/FLEET SECTION
   ======================================== */
.cars-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .cars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cars-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.car-card {
  background: var(--card);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
  border: 1px solid rgba(var(--gold-rgb), 0.1);
  transition: var(--transition-smooth);
  animation: fadeIn 1s ease-out both;
}

.car-card:nth-child(1) { animation-delay: 0ms; }
.car-card:nth-child(2) { animation-delay: 100ms; }
.car-card:nth-child(3) { animation-delay: 200ms; }
.car-card:nth-child(4) { animation-delay: 300ms; }

.car-card:hover {
  border-color: rgba(var(--gold-rgb), 0.4);
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-gold);
}

.car-image-wrapper {
  aspect-ratio: 4/3;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
}

.car-image-wrapper img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.7s ease;
}

.car-card:hover .car-image-wrapper img {
  transform: scale(1.05);
}

.car-content {
  padding: 1.5rem;
  text-align: center;
}

.car-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.car-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
  min-height: 2.5rem;
}

.car-availability {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  background: rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
  animation: fadeIn 1s ease-out both;
}

.service-card:nth-child(1) { animation-delay: 0ms; }
.service-card:nth-child(2) { animation-delay: 100ms; }
.service-card:nth-child(3) { animation-delay: 200ms; }
.service-card:nth-child(4) { animation-delay: 300ms; }

.service-card:hover {
  border-color: rgba(var(--gold-rgb), 0.6);
}

.service-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 1.5rem;
  text-align: center;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  box-shadow: var(--shadow-gold);
  color: var(--gold-foreground);
}

.service-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.service-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--background);
}

.service-text {
  font-size: 0.875rem;
  opacity: 0.7;
  color: var(--background);
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 1.75rem;
  background: var(--card);
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  border-radius: var(--radius-2xl);
  transition: var(--transition-smooth);
  animation: fadeIn 1s ease-out both;
}

.feature-card:nth-child(1) { animation-delay: 0ms; }
.feature-card:nth-child(2) { animation-delay: 80ms; }
.feature-card:nth-child(3) { animation-delay: 160ms; }
.feature-card:nth-child(4) { animation-delay: 240ms; }
.feature-card:nth-child(5) { animation-delay: 320ms; }
.feature-card:nth-child(6) { animation-delay: 400ms; }

.feature-card:hover {
  border-color: rgba(var(--gold-rgb), 0.5);
  box-shadow: var(--shadow-elegant);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-xl);
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-gold);
  color: var(--gold-foreground);
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  margin-top: -1.5rem;
  flex-wrap: wrap;
}

.rating-stars {
  display: flex;
  gap: 0.25rem;
}

.star-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
  fill: currentColor;
}

.rating-value {
  font-weight: 600;
  color: var(--foreground);
}

.rating-count {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  padding: 1.75rem;
  background: var(--card);
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  border-radius: var(--radius-2xl);
  transition: var(--transition-smooth);
  animation: fadeIn 1s ease-out both;
  display: flex;
  flex-direction: column;
}

.testimonial-card:nth-child(1) { animation-delay: 0ms; }
.testimonial-card:nth-child(2) { animation-delay: 80ms; }
.testimonial-card:nth-child(3) { animation-delay: 160ms; }
.testimonial-card:nth-child(4) { animation-delay: 240ms; }
.testimonial-card:nth-child(5) { animation-delay: 320ms; }
.testimonial-card:nth-child(6) { animation-delay: 400ms; }

.testimonial-card:hover {
  border-color: rgba(var(--gold-rgb), 0.5);
  box-shadow: var(--shadow-elegant);
}

.testimonial-stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 0.75rem;
}

.testimonial-stars .star-icon {
  width: 1rem;
  height: 1rem;
}

.testimonial-text {
  color: var(--muted-foreground);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.25rem;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(var(--gold-rgb), 0.1);
}

.author-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-full);
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--gold-foreground);
  box-shadow: var(--shadow-gold);
}

.author-name {
  font-weight: 600;
  color: var(--foreground);
}

.author-location {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ========================================
   BOOKING FORM SECTION
   ======================================== */
.booking-form {
  max-width: 48rem;
  margin: 0 auto;
  background: var(--card);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-elegant);
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  padding: 1.5rem;
  animation: fadeIn 1s ease-out;
}

@media (min-width: 768px) {
  .booking-form {
    padding: 2.5rem;
  }
}

.form-row {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: var(--foreground);
}

.required {
  color: var(--destructive);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--input);
  border-radius: var(--radius-lg);
  background: var(--background);
  color: var(--foreground);
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-foreground);
}

.form-input {
  height: 3rem;
}

.form-select {
  height: 3rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  min-height: 7rem;
  resize: vertical;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-card {
  background: var(--card);
  border-radius: var(--radius-3xl);
  padding: 2rem;
  box-shadow: var(--shadow-elegant);
  border: 1px solid rgba(var(--gold-rgb), 0.2);
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.contact-subtitle {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--foreground);
  transition: color 0.2s ease;
}

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

.contact-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.contact-item span {
  font-size: 0.875rem;
  line-height: 1.6;
}

.contact-buttons {
  display: flex;
  gap: 0.75rem;
}

.map-container {
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  height: 380px;
}

@media (min-width: 768px) {
  .map-container {
    height: 460px;
  }
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--foreground);
  color: rgba(var(--background-rgb), 0.8);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.footer-logo {
  background: white;
  border-radius: var(--radius-xl);
  padding: 0.75rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 3.5rem;
  width: auto;
}

.footer-text {
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-heading {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links li,
.footer-contact li {
  font-size: 0.875rem;
}

.footer-links a {
  transition: color 0.2s ease;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-contact svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ========================================
   FLOATING ACTION BUTTONS
   ======================================== */
.fab {
  position: fixed;
  right: 1.5rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-elegant);
  transition: transform 0.3s ease;
}

.fab:hover {
  transform: scale(1.1);
}

.fab svg {
  width: 1.5rem;
  height: 1.5rem;
}

.fab-call {
  bottom: 6rem;
  background: var(--foreground);
  color: var(--background);
}

.fab-whatsapp {
  bottom: 1.5rem;
  background: #25d366;
  color: white;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.animate-fade-in {
  animation: fadeIn 0.8s ease-out both;
}

/* Scroll-triggered animations */
@media (prefers-reduced-motion: no-preference) {
  .section-title,
  .about-grid,
  .car-card,
  .service-card,
  .feature-card,
  .testimonial-card,
  .booking-form,
  .contact-card {
    opacity: 0;
    transform: translateY(20px);
  }
  
  .section-title.visible,
  .about-grid.visible,
  .car-card.visible,
  .service-card.visible,
  .feature-card.visible,
  .testimonial-card.visible,
  .booking-form.visible,
  .contact-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 640px) {
  .section {
    padding: 3rem 0;
  }
  
  .section-heading {
    font-size: 1.875rem;
  }
  
  .hero-content {
    padding: 1.5rem;
  }
  
  .btn-xl {
    height: 3rem;
    padding: 0 1.5rem;
    font-size: 0.875rem;
  }
}

/* Print styles */
@media print {
  .header,
  .fab,
  .mobile-menu-btn {
    display: none;
  }
  
  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
  
  .hero-bg {
    display: none;
  }
  
  .hero-content {
    color: var(--foreground);
    text-shadow: none;
  }
}
