/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================
   HEADER
========================= */
header {
    position: relative;
    z-index: 1000;
    background: #0f1d44;
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Logo */
.logo img {
    height: 50px;
    width: auto;
    transition: 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Desktop Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #836fff;
}

/* Call Button */
.call-btn {
    background: #836fff;
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.call-btn:hover {
    background: #6a5af9;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #0f1d44;
    padding: 20px;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu a:hover {
    color: #836fff;
}

/* =========================
   HERO
========================= */
.hero {
    background: url('../images/hero.jpg') center/cover no-repeat;
    height: 550px;
    position: relative;
}

.overlay {
    background: rgba(0,0,0,0.6);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 44px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
}

.btn {
    background: linear-gradient(135deg, #6a5af9, #836fff);
    padding: 12px 28px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-top: 25px;
    border-radius: 30px;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
}

/* =========================
   SECTION TITLES
========================= */
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

/* =========================
   POPULAR ROUTES
========================= */
.popular-routes {
    padding: 80px 0;
    background: #f5f6ff;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.route-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.07);
    overflow: hidden;
    transition: 0.3s;
}

.route-card:hover {
    transform: translateY(-6px);
}

.route-top {
    background: linear-gradient(135deg, #6a5af9, #836fff);
    padding: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.route-top h3 {
    font-size: 16px;
    font-weight: 600;
}

.route-icon i {
    font-size: 18px;
}

.route-bottom {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.route-bottom small {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: #6a5af9;
}

.route-btn {
    background: #6a5af9;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.route-btn:hover {
    background: #5848d6;
}

/* =========================
   ABOUT
========================= */
.home-about {
    padding: 70px 0;
    text-align: center;
}

.home-about p {
    max-width: 800px;
    margin: auto;
    color: #555;
}
/* HOME CARS SECTION */
.home-cars {
    padding: 60px 0;
    background: #f9f9f9;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.car-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.car-card:hover {
    transform: translateY(-5px);
}

.car-card img {
    width: 100%;
    max-height: 160px;
    object-fit: contain;
    margin-bottom: 15px;
}

.car-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.car-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 14px;
    color: #555;
}

/* =========================
   TOUR CARDS
========================= */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 70px;
}

.card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.btn-small {
    background: #0f1d44;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 30px;
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    transition: 0.3s;
}

.btn-small:hover {
    background: #6a5af9;
}

/* =========================
   WHY CHOOSE
========================= */
.why-choose {
    padding: 80px 0;
    background: #f8f9ff;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.why-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-6px);
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, #6a5af9, #836fff);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    font-size: 26px;
    color: #fff;
}

/* =========================
   CTA
========================= */
.cta {
    background: linear-gradient(135deg, #6a5af9, #836fff);
    color: #fff;
    text-align: center;
    padding: 70px 0;
}

/* =========================
   FOOTER
========================= */
footer {
    background: #0f1d44;
    color: #fff;
    padding: 60px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.footer-col h3 {
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #836fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
/* =========================
   PREMIUM VIDEO SECTION
========================= */

/* =========================
   PREMIUM VIDEO SECTION
========================= */
.premium-videos {
    padding: 80px 0;
    background: #f8f9ff;
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-size: 16px;
}

/* SLIDER WRAPPER */
.video-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.video-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: max-content; /* Essential for duplication */
    will-change: transform;
}

.video-card {
    flex: 0 0 300px; /* Fixed width for consistent sliding */
    cursor: pointer;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.video-thumb {
    position: relative;
    height: 170px;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumb img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.play-btn {
    font-size: 48px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    filter: drop-shadow(0 0 5px #fff);
}

.youtube-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff0000;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.video-info {
    padding: 15px;
}

.video-info h4 {
    font-size: 16px;
    color: #222;
    margin: 0;
    font-weight: 600;
}

/* ARROWS */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #6a5af9, #836fff);
    color: #fff;
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(106, 90, 249, 0.4);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 30px rgba(106, 90, 249, 0.6);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* MODAL */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.video-modal-content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    width: 900px;
    height: 506px; /* 16:9 ratio */
}

.close-modal {
    position: absolute;
    top: -50px;
    right: 0;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: #836fff;
    transform: scale(1.2);
}

.video-modal iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .video-card { flex: 0 0 260px; }
}

@media (max-width: 768px) {
    .video-card { flex: 0 0 240px; }
    .slider-arrow { width: 48px; height: 48px; font-size: 18px; }
    .slider-arrow.prev { left: 10px; }
    .slider-arrow.next { right: 10px; }
    .video-modal-content { height: 60vh; }
}

@media (max-width: 480px) {
    .video-card { flex: 0 0 200px; }
    .premium-videos { padding: 50px 0; }
}



/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .hero {
        height: 450px;
    }

    .hero h1 {
        font-size: 28px;
    }

    nav ul {
        display: none;
    }

    .header-contact {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-menu.active {
        display: flex;
    }

    .logo img {
        height: 40px;
    }

    .nav-container {
        gap: 10px;
    }

    body {
        padding-bottom: 60px;
    }
}

/* =========================
   MOBILE BOTTOM BAR
========================= */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.mobile-bottom-bar a {
    width: 50%;
    text-align: center;
    padding: 14px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.bottom-call {
    background: #836fff;
}

.bottom-whatsapp {
    background: #25D366;
}

@media(max-width:768px){
    .mobile-bottom-bar {
        display: flex;
    }
}
