/* ====== Highlight Effect ====== */
@keyframes highlight-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px 10px rgba(197, 160, 89, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

.highlight-phone {
    animation: highlight-pulse 2s ease-in-out infinite;
    border: 2px solid #c5a059 !important;
    border-radius: 10px;
    background: rgba(197, 160, 89, 0.1) !important;
}

/* ====== Variables & Theme (Black, Gold, Dark Blue, White) ====== */
:root {
    /* Color Palette */
    --primary-black: #0a0a0a;
    --secondary-black: #111111;
    --primary-gold: #c5a059;
    --secondary-gold: #d4af37;
    --dark-blue: #0A192F;
    --primary-white: #ffffff;
    --text-muted: #a0a0a0;
    --bg-lite: rgba(255, 255, 255, 0.03);
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Fluid Font Sizes */
    --fs-h1: clamp(2.5rem, 8vw, 4rem);
    --fs-h2: clamp(2rem, 6vw, 2.5rem);
    --fs-h3: clamp(1.25rem, 4vw, 1.5rem);
    --fs-body: clamp(0.9rem, 2vw, 1rem);
    
    /* Spacing System */
    --space-xs: clamp(0.5rem, 1vw, 0.75rem);
    --space-sm: clamp(0.75rem, 2vw, 1rem);
    --space-md: clamp(1.25rem, 4vw, 2rem);
    --space-lg: clamp(2rem, 6vw, 4rem);
    --space-xl: clamp(4rem, 10vw, 8rem);

    /* UI Components */
    --container-max-width: 1200px;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);

    /* Touch Targets */
    --min-tap-target: 48px;
}

/* ====== Basic Reset ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-black);
    color: var(--primary-white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1; /* Pushes footer to the bottom */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-white);
}

a {
    text-decoration: none;
    color: var(--primary-white);
}

ul {
    list-style: none;
}

/* ====== Loading Animation ====== */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--primary-black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(197, 160, 89, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-gold);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ====== Typography Utilities ====== */
.gold-text {
    color: var(--primary-gold);
}

/* ====== Buttons ====== */
.btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-md);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
    min-height: var(--min-tap-target);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-black);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.6);
}

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

.btn-secondary:hover {
    background: rgba(197, 160, 89, 0.1);
    transform: translateY(-3px);
}

/* ====== Book Now Button Highlight ====== */
.btn-book-now {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-black) !important;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.4), 0 0 30px rgba(197, 160, 89, 0.2);
    animation: btn-glow 2s ease-in-out infinite;
}

.btn-book-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btn-shine 3s ease-in-out infinite;
}

.btn-book-now:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 0 25px rgba(197, 160, 89, 0.6), 0 0 50px rgba(197, 160, 89, 0.3);
    color: var(--primary-black) !important;
}

@keyframes btn-glow {
    0%, 100% { box-shadow: 0 0 15px rgba(197, 160, 89, 0.4), 0 0 30px rgba(197, 160, 89, 0.2); }
    50% { box-shadow: 0 0 25px rgba(197, 160, 89, 0.6), 0 0 50px rgba(197, 160, 89, 0.3); }
}

@keyframes btn-shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.lang-select {
    padding: 6px 15px;
    border-radius: 20px;
    border: 2px solid var(--primary-gold);
    background-color: var(--primary-black);
    color: var(--primary-white);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.lang-select:focus {
    outline: none;
    box-shadow: 0 0 5px var(--primary-gold);
}

/* ====== Navbar ====== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.sticky {
    padding: var(--space-sm) 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--space-md);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    z-index: 1001;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: 1001;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--primary-white);
    transition: var(--transition);
}

/* Mobile Navigation Drawer */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--secondary-black);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-md);
        padding: var(--space-lg);
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-link {
        font-size: 1.2rem;
    }
}

/* ====== Hero Section ====== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
}

.hero-car-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left:0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: var(--fs-h1);
    font-weight: 700;
    margin-bottom: var(--space-xs);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    background: linear-gradient(90deg, var(--primary-white), var(--primary-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease 0.5s both;
    line-height: 1.1;
}

.hero-tagline {
    font-size: var(--fs-h3);
    font-weight: 300;
    color: #e0e0e0;
    margin-bottom: var(--space-md);
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    animation: fadeInUp 1s ease 1.1s both;
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons .btn {
        width: 100%;
    }
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 2rem;
    color: var(--primary-gold);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

/* ====== Floating Elements ====== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.floating-phone {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    z-index: 900;
    transition: var(--transition);
    animation: phone-ring 2s ease-in-out infinite;
}

.floating-phone:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
}

@keyframes phone-ring {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(10deg); }
    20% { transform: rotate(-10deg); }
    30% { transform: rotate(5deg); }
    40% { transform: rotate(0deg); }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-gold);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-white);
    transform: translateY(-5px);
}

/* ====== Footer ====== */
.footer {
    background-color: #050505;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px 40px;
}

.footer-logo {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
}

.footer-links h3, .footer-contact h3 {
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ====== SEO Content Globals ====== */
.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.seo-card {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.seo-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.seo-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.seo-card strong {
    color: var(--primary-white);
}

.btn-link {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--primary-white);
    transform: translateX(5px);
}

/* ====== Section Globals ====== */
.section {
    padding: var(--space-xl) 0;
    position: relative;
}

.section-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: var(--space-lg);
}

.section-title {
    font-size: var(--fs-h2);
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: var(--fs-body);
    max-width: 700px;
    margin: 0 auto;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.relative { position: relative; }
.z-10 { z-index: 10; }

/* ====== Services Section ====== */
.services-section {
    background-color: var(--primary-black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.service-card {
    padding: var(--space-md);
    text-align: center;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-gold);
    background: rgba(197, 160, 89, 0.05);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
    display: inline-block;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--primary-white);
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.8);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ====== Experience Statistics Section ====== */
.experience-section {
    background: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?q=80&w=2070&auto=format&fit=crop') center/cover fixed;
    color: var(--primary-white);
}

.experience-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(10,10,10,0.95) 0%, rgba(10,25,47,0.85) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-md);
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-gold);
    display: inline-block;
    line-height: 1;
}

.stat-plus {
    font-size: 2.5rem;
    color: var(--primary-gold);
    display: inline-block;
    vertical-align: top;
    margin-top: 5px;
    font-weight: 700;
}

.stat-text {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 15px;
    font-weight: 500;
}

.stat-icon {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ====== Helper Classes ====== */
.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

/* ====== Travel Packages Section ====== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    overflow: hidden;
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.package-img {
    height: 200px;
    overflow: hidden;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.package-content {
    padding: 25px;
}

.package-content h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-details p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-muted);
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    padding-bottom: 5px;
}

.package-details p span {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.package-img {
    position: relative;
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-black);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.4);
}

.package-details {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.package-details li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-size: 0.95rem;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}

.package-details li:last-child {
    border-bottom: none;
}

.package-details li i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.price {
    display: flex;
    flex-direction: column;
}

.price-from {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.price .currency {
    font-size: 1rem;
    color: var(--primary-gold);
    font-weight: 600;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: var(--font-heading);
    line-height: 1;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.8rem;
}

.mt-4 {
    margin-top: 30px;
}

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

/* ====== Vehicles Fleet Section ====== */
#vehicles {
    background-color: var(--secondary-black);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.vehicle-card {
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 160, 89, 0.3);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.15);
}

.vehicle-img {
    height: 220px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.vehicle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.vehicle-card:hover .vehicle-img img {
    transform: scale(1.05);
    opacity: 1;
}

.vehicle-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.vehicle-info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.vehicle-features span {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.vehicle-price {
    margin-top: auto;
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.price-val {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-white);
}

.price-unit {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ====== Pricing Section ====== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.pricing-card {
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(197, 160, 89, 0.15);
    border-color: rgba(197, 160, 89, 0.4);
}

.pricing-header {
    background: linear-gradient(135deg, rgba(10,25,47,0.8), rgba(10,10,10,0.9));
    padding: 25px;
    border-radius: 20px 20px 0 0;
    border-bottom: 2px solid var(--primary-gold);
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.2rem;
    color: var(--primary-white);
    margin-bottom: 8px;
}

.pricing-header h3 i {
    color: var(--primary-gold);
    margin-right: 5px;
}

.distance {
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-body {
    padding: 30px 25px;
}

.pricing-list {
    margin-bottom: 25px;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-list li:last-child {
    border-bottom: none;
}

.v-type {
    color: var(--text-muted);
}

.v-price {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-white);
}

/* ====== One-Way Dropping Cards ====== */
.owd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    padding: 0.5rem 0;
    width: 100%;
}

@media (max-width: 480px) {
    .owd-grid {
        grid-template-columns: 1fr;
    }
}

.owd-grid.small-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

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

@media (max-width: 480px) {
    .owd-grid.small-grid {
        grid-template-columns: 1fr;
    }
}

.owd-grid.small-grid .owd-card {
    border-radius: 8px;
}

.owd-grid.small-grid .owd-image {
    height: 90px;
}

.owd-grid.small-grid .owd-badge {
    top: 6px;
    right: 6px;
    padding: 3px 8px;
    font-size: 0.6rem;
}

.owd-grid.small-grid .owd-content {
    padding: 0.75rem;
}

.owd-grid.small-grid .owd-content h3 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.owd-grid.small-grid .owd-price-box {
    margin: 0.2rem 0 0.5rem;
    padding: 0.5rem;
}

.owd-grid.small-grid .owd-price-box .price-val {
    font-size: 1.15rem;
}

.owd-grid.small-grid .btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
}

.owd-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(197, 160, 89, 0.1);
    position: relative;
    background: rgba(255, 255, 255, 0.02);
}

.owd-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(197, 160, 89, 0.15);
    border-color: rgba(197, 160, 89, 0.4);
}

.owd-image {
    position: relative;
    height: 130px;
    overflow: hidden;
    background: #000;
}

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

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

.owd-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--primary-gold), #b8860b);
    color: var(--primary-black);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
}

.owd-content {
    padding: 1rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.owd-content h3 {
    font-size: 1rem;
    color: var(--primary-gold);
    margin-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.owd-price-box {
    margin: 0.25rem 0 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
}

.owd-price-box .price-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-white);
    display: block;
}

.owd-card .btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
}

.owd-grid-responsive-fix {
    width: 100%;
}

@media (max-width: 768px) {
    .owd-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ====== Gallery Section ====== */
.masonry-grid {
    column-count: 3;
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 10, 10, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    color: var(--primary-white);
    font-size: 1.2rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-overlay span i {
    color: var(--primary-gold);
    margin-right: 8px;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* ====== Lightbox ====== */
.lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--primary-white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--primary-gold);
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(197, 160, 89, 0.2);
}


/* ====== Reviews Section ====== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    padding: 30px;
    border-top: 3px solid var(--primary-gold);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-gold);
}

.reviewer-info h4 {
    margin-bottom: 5px;
    color: var(--primary-white);
}

.stars {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.8;
}

/* ====== About Us Section ====== */
.about-section {
    background-color: var(--secondary-black);
}

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

.about-subtitle {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.about-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
}

.about-list li i {
    color: var(--primary-gold);
    margin-top: 5px;
}

.about-list li strong {
    color: var(--primary-white);
}

.about-image {
    position: relative;
}

.img-wrapper {
    padding: 15px;
    position: relative;
}

.img-wrapper img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-black);
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: float 3s ease-in-out infinite;
}

.floating-badge h3 {
    font-size: 2rem;
    color: var(--primary-black);
    margin-bottom: 5px;
}

.floating-badge p {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

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

/* ====== Contact Us Section ====== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info {
    padding: 30px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.1);
    color: var(--primary-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.contact-item:hover .icon-circle {
    background: var(--primary-gold);
    color: var(--primary-black);
}

.icon-circle.whatsapp {
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

.contact-item:hover .icon-circle.whatsapp {
    background: #25D366;
    color: white;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ====== Booking Form ====== */
.booking-form {
    padding: 35px;
}

.booking-form h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--primary-gold);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.half-width {
    width: 50%;
}

.form-control {
    width: 100%;
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--primary-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    min-height: var(--min-tap-target);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.08);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

select.form-control {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c5a059' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

select.form-control option {
    background: var(--secondary-black);
    color: var(--primary-white);
}

.form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    display: none;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    display: block;
    background: rgba(37, 211, 102, 0.2);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.form-message.error {
    display: block;
    background: rgba(255, 77, 77, 0.2);
    color: #ff4d4d;
    border: 1px solid rgba(255, 77, 77, 0.3);
}

/* ====== Loading Spinner for Button ====== */
.btn-loading {
    position: relative;
    pointer-events: none;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
    border: 2px solid rgba(0,0,0,0.2);
    border-top-color: var(--primary-black);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ====== Modal ====== */
.modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.modal-content {
    background: var(--secondary-black);
    padding: var(--space-md);
    width: 95%;
    max-width: 500px;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.4s ease;
    border-top: 3px solid var(--primary-gold);
    border-radius: var(--border-radius);
    overflow-y: auto;
    max-height: 90vh;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal h3 {
    margin-bottom: var(--space-sm);
    color: var(--primary-gold);
    font-size: var(--fs-h3);
    text-align: center;
}

.modal .form-group {
    margin-bottom: var(--space-sm);
}

.modal .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

@media (max-width: 480px) {
    .modal .form-row {
        grid-template-columns: 1fr;
    }
}

.close-modal {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary-gold);
}

.mb-2 {
    margin-bottom: 15px;
}

/* ====== Responsive UI Overrides ====== */
@media (max-width: 992px) {
    .nav-actions {
        order: 2;
    }

    .contact-grid, .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .about-image {
        order: -1;
    }

    .packages-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons,
    .footer-contact p {
        justify-content: center;
    }

    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .masonry-grid {
        column-count: 1;
    }
    
    .floating-whatsapp,
    .floating-phone {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
        left: 15px;
    }

    .floating-phone {
        bottom: 75px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }

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

    .package-footer {
        flex-direction: column;
        width: 100%;
    }

    .package-footer .btn {
        width: 100%;
    }
}
/* ====== Reviews Page Enhancements ====== */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 10px;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    font-size: 1.5rem;
    color: #444;
    cursor: pointer;
    transition: var(--transition);
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label {
    color: var(--primary-gold);
}

.review-form-container .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-white);
    padding: 12px;
    border-radius: 10px;
}

.review-form-container .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
    box-shadow: none;
    outline: none;
}

.reviewer-img-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: var(--primary-black);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 15px;
}

.loading-placeholder {
    text-align: center;
    padding: 50px;
    grid-column: 1 / -1;
}

/* ====== Popular Destinations SEO Section ====== */
.destinations-section {
    background: linear-gradient(135deg, #0d0d0d 0%, #111827 50%, #0d0d0d 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    position: relative;
    overflow: hidden;
}

.destinations-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197,160,89,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.destinations-header {
    margin-bottom: 44px;
}

.destinations-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-gold);
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 16px;
}

.destinations-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-white);
    margin-bottom: 14px;
    line-height: 1.2;
}

.destinations-title span {
    color: var(--primary-gold);
}

.destinations-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 720px;
    line-height: 1.7;
}

.destinations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 60px;
}

.destinations-col {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(197, 160, 89, 0.25);
}

.dest-link {
    display: block;
    padding: 12px 6px;
    font-size: 0.88rem;
    color: #bbb;
    text-decoration: none;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    transition: color 0.2s ease, padding-left 0.2s ease, background 0.2s ease;
    border-radius: 0 4px 4px 0;
}

.dest-link:hover {
    color: var(--primary-gold);
    padding-left: 14px;
    background: rgba(197, 160, 89, 0.06);
}

/* ====== Responsive Navbar Adjustments (Prevent Translation Wrap) ====== */
@media (max-width: 1250px) {
    .nav-menu {
        gap: 10px;
    }
    .nav-link {
        font-size: 0.8rem;
    }
    .btn-book-now {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    .lang-select {
        padding: 4px 10px;
        font-size: 0.8rem;
    }
}

@media (max-width: 900px) {
    .nav-logo {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    .nav-actions {
        order: 2;
        gap: 8px;
    }
    .lang-select {
        padding: 4px 8px;
        font-size: 0.75rem;
        border-radius: 15px;
    }
}

@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .destinations-title {
        font-size: 1.7rem;
    }
}

/* ====== Review Deletion ====== */
.review-card {
    position: relative;
}

.delete-review-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 77, 77, 0.1);
    color: #ff4d4d;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    z-index: 5;
}

.review-card:hover .delete-review-btn {
    opacity: 1;
}

.delete-review-btn:hover {
    background: #ff4d4d;
    color: white;
    transform: scale(1.1);
}

/* ====== Language Selector Force Clickable ====== */
.lang-select {
    position: relative;
    z-index: 10000;
    pointer-events: auto;
    padding: 6px 15px;
    border-radius: 20px;
    border: 2px solid var(--primary-gold);
    background-color: var(--primary-black);
    color: var(--primary-white);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    appearance: menulist;
}

.lang-select:focus {
    outline: none;
    border-color: var(--primary-white);
}

.lang-select option {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 10px;
}

/* ====== Vehicle Pricing Grid ====== */
.vehicles-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.vehicle-pricing-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    transition: var(--transition);
}

.vehicle-pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.vehicle-pricing-card .card-header {
    padding: 20px;
    background: rgba(197, 160, 89, 0.1);
    border-bottom: 2px solid var(--primary-gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vehicle-pricing-card h3 {
    margin: 0;
    font-size: 1.25rem;
    letter-spacing: 1px;
}

.vehicle-pricing-card .vehicle-icon {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.vehicle-pricing-card .price-sections {
    padding: 20px;
    flex-grow: 1;
    display: grid;
    gap: 20px;
}

.price-box h4 {
    font-size: 0.9rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    border-left: 3px solid var(--primary-gold);
    padding-left: 10px;
}

.price-box ul {
    padding: 0;
    margin: 0;
}

.price-box ul li {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: #ddd;
}

.price-box ul li strong {
    color: var(--primary-white);
}

/* ====== Sticky Mobile CTA ====== */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    padding: var(--space-sm) var(--space-md);
    z-index: 2000;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--glass-border);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-mobile-cta.visible {
    transform: translateY(0);
}

.sticky-mobile-cta .btn-book-now {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: var(--space-sm);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

@media (max-width: 992px) {
    .sticky-mobile-cta {
        display: block;
    }

    /* Push floating buttons above the sticky CTA */
    .floating-whatsapp {
        bottom: 80px;
    }

    .floating-phone {
        bottom: 140px;
    }

    /* Add padding at bottom of body so footer content isn't obscured */
    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {
    .vehicles-pricing-grid {
        grid-template-columns: 1fr;
    }
}
