
.vehicle-gallery {
  width: 100%;
}

.gallery-main img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 18px;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
}

.gallery-thumbs img {
  width: 90px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
}

.gallery-thumbs img:hover {
  opacity: 1;
  transform: scale(1.05);
}


/* ===============================
   MAP SECTION
================================ */
.map-section {
  width: 100%;
  height: 420px;
  margin-bottom: 80px;   /* ⬅️ creates separation */
  position: relative;
  z-index: 1;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 24px;
}

/* Mobile adjustment */
@media (max-width: 600px) {
    .map-section {
        height: 260px;
    }
}


.whatsapp-float {
    position: fixed;
    right: 16px;
    bottom: 20px;
    z-index: 99999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
}



:root {
    --primary: #274690; /* Muted blue */
    --secondary: #6c8cd5; /* Soft blue */
    --accent: #fbbf24; /* Soft yellow */
    --tertiary: #a7c7e7; /* Pale blue */
    --light-blue: #eaf1fb; /* Very light blue */
    --light-teal: #e0f7fa; /* Very light teal */
    --orange-yellow: #ffe9b0; /* Soft yellow */
    --dark-accent: #1e293b;
    --foreground: #1a1a1a;
    --background: #ffffff;
    --muted: #f8f9fa;
    --muted-foreground: #6c757d;
    --border: rgba(0, 0, 0, 0.07);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--foreground);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.nav-container {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

.brand-icon svg {
    color: white;
}

.brand-text h3 {
    font-weight: 700;
    font-size: 16px;
    color: var(--foreground);
    line-height: 1.2;
}

.brand-text p {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    line-height: 1.2;
}

.menu-toggle {
    background: none;
    border: none;
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: background 0.3s;
}

.menu-toggle:hover {
    background: rgba(255, 107, 53, 0.1);
}

.hamburger {
    width: 24px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: block;
}

.menu-item {
    display: block;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    transition: all 0.3s;
    margin-bottom: 8px;
}

.menu-item:hover {
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.1), rgba(78, 205, 196, 0.1));
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--light-blue);
}

.hero-image {
    position: absolute;
    inset: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(39, 70, 144, 0.25), rgba(255,255,255,0.1));
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 24px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 80px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--light-blue);
    color: var(--primary);
    border-radius: 100px;
    width: fit-content;
    margin-bottom: 24px;
    box-shadow: none;
}

.hero-badge svg {
    width: 20px;
    height: 20px;
}

.hero-badge span {
    font-weight: 700;
    font-size: 14px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.7;
    text-align: center;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: none;
    border: none;
}

.btn-primary:hover {
    background: var(--secondary);
    color: #fff;
    box-shadow: none;
    transform: scale(1.03);
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-primary .arrow {
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.3s;
}

.btn-primary:hover .arrow {
    transform: translateX(4px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: var(--foreground);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: white;
    transform: scale(1.05);
}

.btn-secondary:active {
    transform: scale(0.95);
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.pill {
    padding: 8px 16px;
    background: var(--light-blue);
    color: var(--primary);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pill svg {
    color: var(--secondary);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-border {
    width: 32px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    padding: 8px;
}

.scroll-dot {
    width: 8px;
    height: 12px;
    background: var(--accent);
    border-radius: 100px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--muted);
    position: relative;
    overflow: hidden;
}

.decorative-blur {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.blur-top-right {
    top: 0;
    right: 0;
    background: rgba(255, 107, 53, 0.05);
}

.blur-bottom-left {
    bottom: 0;
    left: 0;
    background: rgba(78, 205, 196, 0.05);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 16px;
    background: var(--light-blue);
    color: var(--primary);
}

.badge-primary,
.badge-secondary,
.badge-accent {
    background: var(--light-blue) !important;
    color: var(--primary) !important;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-description {
    color: var(--muted-foreground);
    font-size: 18px;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
    text-align: center;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 280px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-blue);
    padding: 12px 0;
}

.service-image img {
    width: 120%;
    height: 130%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    background: #fff;
    transition: transform 0.7s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.service-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.service-icon-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.service-icon-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.service-icon svg {
    color: white;
}

.service-badge-overlay,
.badge-secondary {
    background: var(--secondary);
    color: #fff;
    box-shadow: none;
}

.service-content {
    padding: 32px;
}

.service-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.gradient-text-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-description {
    color: var(--muted-foreground);
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px; /* reduced from 16px */
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 6px; /* reduced from 12px */
    padding-bottom: 4px; /* add slight padding for separation */
}

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.dot-primary {
    background: var(--primary);
}

.dot-secondary {
    background: var(--secondary);
}

.feature-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.feature-subtitle {
    font-size: 12px;
    color: var(--muted-foreground);
}

.airport-highlight {
    background: var(--light-blue);
    border: 1px solid var(--border);
}

.airport-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.airport-icon svg {
    color: white;
}

.airport-content {
    flex: 1;
}

.airport-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
}

.airport-description {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 12px;
}

.airport-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 4px 12px;
    background: white;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.btn-service-primary,
.btn-service-secondary,
.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: none;
    border: none;
}

.btn-service-primary:hover,
.btn-service-secondary:hover,
.btn-primary:hover {
    background: var(--secondary);
    color: #fff;
    box-shadow: none;
    transform: scale(1.03);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

@media (max-width: 600px) {
    .stats-grid {
        display: flex;
        flex-direction: row;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }
    .stat-card {
        min-width: 180px;
        flex: 0 0 auto;
        scroll-snap-align: start;
    }
    .stats-grid::-webkit-scrollbar {
        display: none;
    }
}

.stat-card {
    text-align: center;
    padding: 24px;
    background: var(--light-blue);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-accent {
    color: var(--accent);
}

.stat-label {
    font-size: 12px;
    color: var(--muted-foreground);
    font-weight: 500;
}

/* Destinations Section */
.destinations-section {
    padding: 40px 0 80px 0;
    background: white;
}

.destinations-grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    width: max-content;
}

.destinations-section .container {
    overflow-x: auto;
}

.destinations-section .container::-webkit-scrollbar {
    display: none;
}

.destinations-section .container {
    overflow-x: auto;
}

.destinations-section .container::-webkit-scrollbar {
    display: none;
}



.destination-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.5s;
}

.destination-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    transform: scale(1.03);
}

.destination-card:active {
    transform: scale(0.95);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s;
}

.destination-card:hover img {
    transform: scale(1.25);
}

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3), transparent);
}

.destination-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), transparent, rgba(78, 205, 196, 0.2));
    mix-blend-mode: overlay;
    opacity: 0;
    transition: opacity 0.5s;
}

.destination-card:hover .destination-gradient {
    opacity: 1;
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    transform: translateY(0);
    transition: transform 0.5s;
}

.destination-card:hover .destination-content {
    transform: translateY(-4px);
}

.destination-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.destination-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(78, 205, 196, 0.05), rgba(255, 211, 61, 0.05));
    position: relative;
    overflow: hidden;
}

.testimonials-blur {
    position: absolute;
    width: 288px;
    height: 288px;
    border-radius: 50%;
    filter: blur(100px);
}

.blur-left {
    top: 80px;
    left: 0;
    background: rgba(255, 107, 53, 0.1);
}

.blur-right {
    bottom: 80px;
    right: 0;
    background: rgba(78, 205, 196, 0.1);
}

.testimonials-grid {
    display: flex;
    flex-direction: row;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.testimonials-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonial-card {
    min-width: 320px;
    max-width: 340px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}

.stars {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}

.stars svg {
    color: var(--accent);
}

.quote-icon {
    color: rgba(255, 107, 53, 0.2);
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--foreground);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.author-name {
    font-weight: 700;
    font-size: 16px;
}

.author-location {
    font-size: 12px;
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
    gap: 4px;
}

.author-location svg {
    width: 12px;
    height: 12px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.contact-card-primary {
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05), transparent);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.contact-card-secondary {
    background: linear-gradient(90deg, rgba(78, 205, 196, 0.1), rgba(78, 205, 196, 0.05), transparent);
    border: 1px solid rgba(78, 205, 196, 0.2);
}

.contact-card-accent {
    background: linear-gradient(90deg, rgba(255, 211, 61, 0.1), rgba(255, 211, 61, 0.05), transparent);
    border: 1px solid rgba(255, 211, 61, 0.2);
}

.contact-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.contact-icon-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.contact-icon-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.contact-icon-accent {
    background: linear-gradient(135deg, var(--accent), rgba(255, 211, 61, 0.8));
}

.contact-icon svg {
    color: white;
}

.contact-icon-accent svg {
    color: var(--foreground);
}

.contact-info {
    text-align: left;
}

.contact-label {
    font-size: 14px;
    color: var(--muted-foreground);
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-value {
    font-weight: 700;
    font-size: 18px;
    color: var(--foreground);
}

.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.6), rgba(248, 249, 250, 0.4));
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: white;
    border: 2px solid transparent;
    border-radius: 16px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-textarea {
    resize: none;
}

.btn-form {
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 100%;
    background-position: left;
    color: white;
    padding: 20px 40px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
}

.btn-form:hover {
    background-position: right;
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.4);
    transform: scale(1.02);
}

.btn-form:active {
    transform: scale(0.95);
}

/* Footer */
.footer {
    background: var(--primary);
    color: #fff;
    padding: 64px 24px;
    position: relative;
    overflow: hidden;
}

.footer-blur {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(100px);
}

.blur-top-right-footer {
    top: 0;
    right: 0;
    background: rgba(255, 107, 53, 0.1);
}

.blur-bottom-left-footer {
    bottom: 0;
    left: 0;
    background: rgba(78, 205, 196, 0.1);
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.footer-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

.footer-icon svg {
    color: white;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
}

.footer-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 600px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    margin: 4px 0;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Responsive */
@media (min-width: 768px) {
    .hero-title {
        font-size: 72px;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .section-title {
        font-size: 48px;
    }

    .services-grid {
        gap: 40px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0 40px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.pricing-scroll-wrapper {
    position: relative;
    margin-top: 40px;
}

.pricing-scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 20px 20px 24px;
    margin: 0 -24px;
    -webkit-overflow-scrolling: touch;
}

.pricing-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.pricing-scroll-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.pricing-scroll-container::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

.pricing-card {
    min-width: 240px;
    max-width: 240px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.pricing-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.pricing-card.featured-card {
    border: 2px solid var(--primary);
}

.featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.pricing-card-image {
    flex: 1 1 auto;
    height: 200px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.pricing-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.pricing-card:hover .pricing-card-image img {
    transform: scale(1.1);
}

.vehicle-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pricing-card-content {
    padding: 20px;
}

.vehicle-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    padding: 12px 0 8px 0;
    text-align: center;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    margin: 0;
}

.seating-info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--muted-foreground);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
}

.seating-info svg {
    color: var(--primary);
}

.starting-price {
    margin-bottom: 8px;
}

.price-label {
    display: block;
    font-size: 11px;
    color: var(--muted-foreground);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.price-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-subtitle {
    font-size: 12px;
    color: var(--muted-foreground);
    margin-bottom: 16px;
}

.expand-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.1), rgba(78, 205, 196, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s;
}

.expand-btn:hover {
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.15), rgba(78, 205, 196, 0.15));
    transform: scale(1.02);
}

.expand-btn:active {
    transform: scale(0.98);
}

.pricing-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 20px;
}

.pricing-card.expanded .pricing-details {
    max-height: 500px;
    padding: 20px;
}

.pricing-card.expanded .expand-btn {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    border-color: transparent;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.detail-row:last-of-type {
    border-bottom: none;
}

.detail-label {
    font-size: 13px;
    color: var(--muted-foreground);
    font-weight: 500;
    flex: 1;
}

.detail-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--foreground);
    text-align: right;
}

.cta-buttons {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.btn-cta {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-book {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-book:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    transform: scale(1.05);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transform: scale(1.05);
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.scroll-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.3);
}

.scroll-arrow:hover svg {
    color: white;
}

.scroll-arrow svg {
    color: var(--primary);
}

.scroll-left {
    left: -20px;
}

.scroll-right {
    right: -20px;
}

/* Show scroll arrows on desktop */
@media (min-width: 768px) {
    .scroll-arrow {
        display: flex;
    }
    
    .pricing-scroll-container {
        padding: 20px 60px;
        margin: 0 -60px;
    }
    
    .pricing-card {
        min-width: 300px;
        max-width: 300px;
    }
}

@media (min-width: 1024px) {
    .pricing-slider {
        gap: 20px;
    }

    .pricing-card {
        min-width: 260px;
        max-width: 260px;
    }
}
/* ========================================= */
/* MODERN PRICING CARD DESIGN */
/* ========================================= */

.pricing-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #1f2937;
}

/* Remove old dark gradients */
.pricing-card * {
  background-color: transparent;
}

/* ================= HEADER IMAGE ================= */

.pricing-header {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--tertiary) 100%);
  border-radius: 12px;
  overflow: hidden;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-header img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

/* Hide broken image icon */
.pricing-header img:not([src]),
.pricing-header img[src=""] {
  display: none;
}

/* Clean overlay */
.pricing-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(31,41,51,0.85),
    rgba(31,41,51,0.35),
    rgba(31,41,51,0.1)
  );
}

/* Header text */
.pricing-header h3,
.pricing-header .tap-text {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  width: 100%;
}

.pricing-header h3 {
  bottom: 24px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.025em;
}

.pricing-header .tap-text {
  bottom: 14px;
  font-size: 0.8rem;
  color: #e5e7eb;
}

/* ================= PRICING BODY ================= */

.pricing-body {
  background: #ffffff;
  padding: 12px 16px;
}

.pricing-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-body li {
  padding: 4px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
  line-height: 1.4;
  text-align: center;
}

.pricing-body li:last-child {
  border-bottom: none;
}

.price {
  color: #059669 !important;
  font-weight: 600;
  font-size: 14px;
}

.pricing-body li {
  list-style: none;
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  color: #1f2933;
}

/* Bullet */
.pricing-body li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #b45309;
  font-size: 1.4rem;
}

/* Price highlight */
.price {
  color: #059669 !important;
  font-weight: 600;
  font-size: 15px;
}

/* ================= COLLAPSE BEHAVIOR ================= */

/* Removed: pricing is now always visible */
/* .pricing-card:not(.active) .pricing-body {
  display: none;
} */
/* ================================ */
/* PRICING HORIZONTAL SCROLL */
/* ================================ */

.pricing-slider {
  display: flex;
  flex-direction: row;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 16px 0 24px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.pricing-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.pricing-card {
  /* Horizontal scroll layout */
}
/* =========================================================
GAHAN KRISHNA TOURS & TRAVEL – MASTER STYLESHEET
Includes: Hero, Services, Pricing, Trekking Packages (2-row scroll), Modal
========================================================= */

:root {
--primary: #274690;
--secondary: #6c8cd5;
--accent: #fbbf24;
--tertiary: #a7c7e7;
--light-blue: #eaf1fb;
--foreground: #1a1a1a;
--background: #ffffff;
--muted: #f8f9fa;
--muted-foreground: #6c757d;
--border: rgba(0,0,0,0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  }

body {
font-family: 'Poppins', sans-serif;
background: var(--background);
color: var(--foreground);
line-height: 1.6;
overflow-x: hidden;
}

h1,h2,h3 {
font-family: 'Playfair Display', serif;
}

.container {
max-width: 1200px;
margin: auto;
padding: 0 24px;
}

/* =========================================================
HERO
========================================================= */
.hero-section {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
padding-top: 80px;
}

.hero-image {
position: absolute;
inset: 0;
}

.hero-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.hero-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.2), transparent);
}

.hero-content {
position: relative;
z-index: 2;
color: white;
padding-bottom: 64px;
}

.hero-title {
font-size: clamp(2.6rem, 5vw, 4.5rem);
margin-bottom: 24px;
}

.gradient-text {
background: linear-gradient(135deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.hero-description {
max-width: 520px;
font-size: 1.05rem;
margin-bottom: 32px;
}

.hero-buttons {
display: flex;
gap: 16px;
flex-wrap: wrap;
}

.btn {
padding: 16px 36px;
border-radius: 16px;
font-weight: 700;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
}

.btn-primary {
background: var(--primary);
color: white;
}

.btn-secondary {
background: white;
color: var(--foreground);
}

/* =========================================================
TREKKING PACKAGES (REPLACED DESTINATIONS)
========================================================= */
.destinations-section {
padding: 40px 0 80px;
background: white;
}

.trek-scroll {
overflow-x: auto;
padding-bottom: 16px;
}

.trek-scroll::-webkit-scrollbar {
display: none;
}

.trek-grid {
display: grid;
grid-auto-flow: column;
grid-template-rows: repeat(2, 1fr);
gap: 20px;
width: max-content;
}

.trek-card {
width: 260px;
height: 260px;
}

.destination-card {
position: relative;
border-radius: 24px;
overflow: hidden;
cursor: pointer;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
transition: transform .4s, box-shadow .4s;
}

.destination-card:hover {
transform: scale(1.05);
box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.destination-card img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 1s;
}

.destination-card:hover img {
transform: scale(1.25);
}

.destination-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3), transparent);
}

.destination-content {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 20px;
color: white;
}

.destination-content h3 {
font-size: 1.2rem;
}

.destination-content p {
font-size: .95rem;
opacity: .9;
}

/* =========================================================
MODAL (TREK POPUP)
========================================================= */
.modal {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.6);
display: none;
align-items: center;
justify-content: center;
z-index: 9999;
}

.modal.active {
display: flex;
}

.modal-content {
background: white;
border-radius: 24px;
padding: 32px;
max-width: 520px;
width: 90%;
animation: scaleIn .4s ease;
}

.modal-close {
position: absolute;
top: 20px;
right: 24px;
font-size: 1.6rem;
cursor: pointer;
}

@keyframes scaleIn {
from {transform: scale(.9); opacity: 0;}
to {transform: scale(1); opacity: 1;}
}

/* =========================================================
RESPONSIVE
========================================================= */
@media (max-width: 768px) {
.hero-buttons {flex-direction: column;}
.trek-card {width: 220px; height: 220px;}
}
/* ===============================
   URBANIA IMAGE GALLERY
================================ */

.vehicle-gallery {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vehicle-gallery {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* MAIN IMAGE */
.vehicle-main img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* THUMBNAILS */
.vehicle-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.vehicle-thumbs img {
  height: 80px;
  min-width: 120px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.vehicle-thumbs img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.vehicle-thumbs img.active {
  opacity: 1;
  border-color: var(--primary);
}

/* MOBILE */
@media (max-width: 768px) {
  .vehicle-main img {
    height: 260px;
  }

  .vehicle-thumbs img {
    height: 64px;
    min-width: 96px;
  }
}
.vehicle-main {
  width: 100%;
  overflow: hidden;
}
/* Urbania Models */
.urbania-models {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 24px 0 32px;
}

.urbania-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.urbania-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.urbania-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.urbania-sub {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.urbania-card ul {
  padding-left: 0;
  list-style: none;
  font-size: 14px;
  color: #333;
}

.urbania-card ul li {
  margin-bottom: 6px;
}

/* Tags */
.urbania-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #2b4fa1;
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.urbania-tag.elite {
  background: linear-gradient(135deg, #c9a24d, #f2d27c);
  color: #3b2b00;
}

/* Maharaja Highlight */
.urbania-maharaja {
  border: 2px solid rgba(201,162,77,0.6);
  background: linear-gradient(180deg, #fffdf7, #ffffff);
}

/* Mobile spacing */
@media (max-width: 768px) {
  .urbania-models {
    grid-template-columns: 1fr;
  }
}
.price-note {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #666;
  text-align: center;
  margin: 20px auto 0;
  max-width: 900px;
}
@media (max-width: 600px) {
  .contact-card .contact-value {
    font-size: 15px;
  }
}
/* Small Book Now Button */
.book-btn {
  display: inline-block;
  margin: 12px auto 0;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #0a58ea, #3b59bd);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(56, 88, 218, 0.862);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.book-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 7px 12px rgba(37, 37, 183, 0.952);
.book-btn:active {
  transform: scale(0.95);
}

.contact-card .contact-info {
  min-width: 0;
}
/* Allow flex/grid children to shrink properly */
.contact-info,
.footer-column,
.footer-links {
  min-width: 0;
}
.footer a,
.footer p {
  max-width: 100%;
  overflow-wrap: anywhere;
}
a[href^="mailto"] {
  display: inline-block;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
}


}
.vehicle-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  max-width: 100%;
}

/* Image */
.vehicle-image {
  position: relative;
}

.vehicle-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* Badge */
.vehicle-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #2563eb;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* Body */
.vehicle-body {
  padding: 22px;
}

.vehicle-body h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
}

.vehicle-sub {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 14px;
}

/* Features */
.vehicle-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.vehicle-features li {
  margin-bottom: 8px;
  padding-left: 26px;
  position: relative;
  font-size: 14px;
}

.vehicle-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: bold;
}

/* Pricing Box */
.vehicle-pricing {
  background: #f1f7fd;
  border-radius: 14px;
  padding: 16px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
}

.price-row:last-child {
  margin-bottom: 0;
}

.price-row strong {
  font-weight: 600;
}

.price-row .green {
  color: #16a34a;
}

/* Book Button */
.vehicle-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(135deg, #2563eb, #1e40af);
}
/* Elite Card Border Accent */
.elite-card {
  border-top: 3px solid #facc15;
}

/* Elite Badge */
.vehicle-badge.elite {
  background: linear-gradient(135deg, #facc15, #eab308);
  color: #111827;
}

/* Elite Button */
.elite-btn {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.45);
}

/* Optional: richer pricing highlight */
.elite-card .vehicle-pricing {
  background: #f8fbff;
}
.vehicle-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  max-width: 100%;
}

.vehicle-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.vehicle-body {
  padding: 22px;
}

.vehicle-body h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
}

.vehicle-sub {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 14px;
}

.vehicle-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.vehicle-features li {
  margin-bottom: 8px;
  padding-left: 26px;
  position: relative;
  font-size: 14px;
}

.vehicle-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: bold;
}

.vehicle-pricing {
  background: #f1f7fd;
  border-radius: 14px;
  padding: 16px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
}

.price-row:last-child {
  margin-bottom: 0;
}

.price-row .green {
  color: #16a34a;
  font-weight: 600;
}

.vehicle-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(135deg, #2563eb, #1e40af);
}
