/* CSS Variables for Theming */
:root {
    --primary: #c9933b; /* Premium Gold */
    --primary-dark: #a8792c;
    --secondary: #242424; /* Dark gray for text */
    --light: #f8f9fa;
    --dark: #111111; /* Very dark for background elements */
    --white: #ffffff;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--secondary);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: left;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(201, 147, 59, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 147, 59, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--dark);
}

/* Header & Nav */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    background: transparent;
}



.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    position: relative;
}

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

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

.nav-link.btn-primary::after {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
}

.header.scrolled .menu-toggle .bar {
    background-color: var(--dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('../assets/images/hero_dubai.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0% 50%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    animation: panBg 25s infinite alternate linear;
}

@keyframes panBg {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    text-align: left;
    animation: fadeInUp 1s ease forwards;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

/* Best Routes Section */
.routes-section {
    background-color: var(--light);
}

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

.route-card {
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.route-card:hover {
    transform: translateY(-10px);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 60%, transparent 100%);
    padding: 30px 20px;
    color: var(--white);
    transition: var(--transition);
}

.card-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary);
    text-shadow: 1px 2px 4px rgba(0,0,0,0.9);
}

.card-overlay p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.card-link {
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.card-link:hover {
    color: var(--primary);
}

/* Split Layout (About Snippet) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.split-content p {
    margin-bottom: 30px;
    color: #555;
    font-size: 1.1rem;
}

.split-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
}

.cta-container h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: #aaa;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    display: block;
    margin-bottom: 20px;
}

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

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

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

.footer-contact p {
    margin-bottom: 10px;
}

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

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

/* City Tour Section */
.city-tour-section {
    position: relative;
    background-image: url('../assets/images/hero_dubai.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
}

.city-tour-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0, 30, 30, 0.95), rgba(0, 150, 150, 0.85));
    z-index: 1;
}

.city-tour-text {
    padding-right: 40px;
}

.city-tour-text .section-title {
    margin-top: 20px;
    font-size: 2.5rem;
    line-height: 1.2;
}

.text-white {
    color: var(--white) !important;
}

.pill-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-cyan {
    background-color: var(--white);
    color: #00bcd4 !important;
    margin-top: 20px;
    font-size: 0.9rem;
    padding: 15px 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-cyan:hover {
    background-color: #00bcd4;
    color: var(--white) !important;
}

.city-tour-img {
    background-image: url('../assets/images/city_tour.webp');
    border-radius: 10px;
    height: 450px;
    box-shadow: var(--shadow);
}

/* Tours Page Expansions */
.deal-badge {
    position: absolute;
    top: 20px;
    right: -20px;
    background: #ff4757;
    color: white;
    padding: 10px 30px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    z-index: 10;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}
.feature-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}
.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
}
.price-tag small {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.tour-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.feature-box {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    transition: var(--transition);
}
.feature-box:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
}
.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}
.testimonial-card .stars {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.testimonial-card .quote {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}
.testimonial-card h4 {
    color: var(--dark);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
    .split-layout { grid-template-columns: 1fr; }
    .split-image { height: 400px; order: -1; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }

    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .nav-link { color: var(--dark); }
    .header .nav-link { color: var(--dark); } /* force dark links on mobile */

    .hero-title { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; }
    
    .cta-container h2 { font-size: 2rem; }
}

/* VIP Experiences Section */
.vip-section {
    position: relative;
    padding: 100px 0;
    background: url('../assets/images/hero_dubai.webp') center/cover fixed;
    color: var(--white);
    overflow: hidden;
}
.vip-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(17, 17, 17, 0.85);
    z-index: 1;
}
.vip-container {
    position: relative;
    z-index: 2;
}
.vip-header {
    text-align: center;
    margin-bottom: 60px;
}
.vip-header .section-title {
    color: var(--primary);
    font-size: 3rem;
}
.vip-header p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
}
.vip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.vip-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.vip-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(201,147,59,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}
.vip-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: rgba(201, 147, 59, 0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(201,147,59,0.2);
}
.vip-card:hover::before {
    opacity: 1;
}
.vip-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.5s ease;
}
.vip-card:hover .vip-icon {
    transform: rotateY(180deg);
}
.vip-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}
.vip-card p {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 25px;
}
.vip-card .btn-primary {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary) !important;
}
.vip-card:hover .btn-primary {
    background: var(--primary);
    color: var(--white) !important;
}

/* Fleet Supercar Section */
.supercar-section {
    background-color: var(--dark);
    color: var(--white);
    padding: 100px 0;
    margin-top: 80px;
}
.supercar-header {
    text-align: center;
    margin-bottom: 60px;
}
.supercar-header .section-title {
    color: var(--white);
    font-size: 3rem;
}
.supercar-header .section-title span {
    color: var(--primary);
}
.supercar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}
.supercar-card {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.supercar-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(201,147,59,0.1), transparent);
    transform: skewX(-25deg);
    transition: 0.7s;
}
.supercar-card:hover::before {
    left: 150%;
}
.supercar-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(201,147,59,0.2);
}
.supercar-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: transform 0.5s ease;
}
.supercar-card:hover .supercar-img {
    transform: scale(1.05);
}
.supercar-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}
.supercar-specs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
}
.spec-item {
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
}
.spec-item span {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.supercar-card .btn-primary {
    width: 100%;
    text-align: center;
}


.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px #999;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;
}


@media (min-width: 992px) {
    @keyframes panBg {
        0% { background-position: 0% 35%; }
        100% { background-position: 100% 35%; }
    }
}

@media (min-width: 992px) {
    .hero {
        height: 85vh;
    }
}
