﻿body {
}

.hero-section {
    padding: 80px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(37,99,235,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(37,99,235,0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    margin-bottom: 50px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 20%, #06B6D4 60%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CAROUSEL ===== */
.search-box {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 30px 20px;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.carousel-arrow {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    color: white;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: static;
}

.carousel-track-outer {
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
    border-radius: 16px;
}

.carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
    will-change: transform;
}

.booking-option {
    flex-shrink: 0;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 18px;
    padding: 28px 20px 22px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

    .booking-option:hover {
        background: rgba(37,99,235,0.2);
        border-color: var(--primary-color);
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(37,99,235,0.25);
    }

    .booking-option.active {
        background: rgba(37,99,235,0.25);
        border-color: var(--accent-color);
        box-shadow: 0 8px 24px rgba(6,182,212,0.25);
    }

.booking-icon {
    width: 58px;
    height: 58px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
    color: white;
    box-shadow: 0 4px 16px rgba(37,99,235,0.45);
    transition: var(--transition);
}

.booking-option:hover .booking-icon {
    background: var(--secondary-gradient);
    box-shadow: 0 6px 20px rgba(124,58,237,0.5);
    transform: scale(1.08);
}

.booking-option h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.booking-option p {
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.booking-badge {
    display: inline-block;
    background: var(--accent-gradient);
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

    .carousel-dot.active {
        background: var(--accent-color);
        width: 24px;
        border-radius: 4px;
        box-shadow: 0 0 10px rgba(6,182,212,0.6);
    }

/* ===== SECTIONS ===== */
.section {
    padding: 80px 20px;
    background: var(--bg-color);
}

.section-alt {
    background: #eef2ff;
}

[data-theme="dark"] .section-alt {
    background: #131929;
}

.section-title {
    text-align: center;
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1.05rem;
}

/* ===== DESTINATION CARDS ===== */
.destination-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    height: 280px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

    .destination-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

    .destination-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .destination-card:hover img {
        transform: scale(1.08);
    }

    .destination-card .price-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--primary-gradient);
        color: white;
        padding: 6px 14px;
        border-radius: 20px;
        font-weight: 700;
        font-size: 0.85rem;
        box-shadow: 0 4px 12px rgba(37,99,235,0.4);
    }

    .destination-card .overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(15,23,42,0.85));
        padding: 30px 20px 20px;
        color: white;
    }

        .destination-card .overlay h4 {
            font-weight: 700;
            font-size: 1.2rem;
        }

        .destination-card .overlay p {
            font-size: 0.85rem;
            opacity: 0.85;
        }

/* ===== DEAL CARDS ===== */
.deal-card {
    background: var(--card-bg);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

    .deal-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-color);
    }

.deal-image {
    height: 180px;
    overflow: hidden;
}

    .deal-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.deal-card:hover .deal-image img {
    transform: scale(1.08);
}

.deal-content {
    padding: 18px;
}

    .deal-content h5 {
        font-weight: 700;
        margin-bottom: 5px;
        color: var(--text-color);
    }

.hero-content {
    text-align: center;
    color: white;
    max-width: 1200px !important;
    padding: 2rem;
}


.deal-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
}

    .deal-price span {
        font-size: 0.9rem;
        text-decoration: line-through;
        color: var(--text-muted);
        margin-left: 8px;
        font-weight: 400;
    }

/* ===== FEATURE BOXES ===== */
.feature-box {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

    .feature-box:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-color);
    }

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: white;
    box-shadow: 0 4px 16px rgba(37,99,235,0.35);
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    background: var(--secondary-gradient);
    box-shadow: 0 6px 20px rgba(124,58,237,0.45);
}

.feature-box h4 {
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--text-color);
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 35px 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: var(--accent-color);
    }

.quote-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-text {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.rating {
    color: #f59e0b;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 4px;
}

.testimonial-role {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(37,99,235,0.35);
    font-family: var(--font-family);
}

    .btn-primary-custom:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(37,99,235,0.5);
        color: white;
    }

/* ===== CTA ===== */
.cta-section {
    background: var(--primary-gradient);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(124,58,237,0.5) 0%, transparent 70%);
    }

    .cta-section .container {
        position: relative;
        z-index: 1;
    }

    .cta-section h2 {
        color: white;
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .cta-section p {
        color: rgba(255,255,255,0.85);
        margin-bottom: 30px;
        font-size: 1.1rem;
    }

.btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-family);
}

    .btn-light:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    }

/* ===== MISC ===== */
.row {
    display: flex;
    flex-wrap: wrap;
}

.g-4 > * {
    padding: 12px;
}

.col-md-6 {
    width: 50%;
}

.col-lg-4 {
    width: 33.333%;
}

.col-lg-3 {
    width: 25%;
}

@@media (max-width: 991px) {
    .col-lg-4, .col-lg-3 {
        width: 50%;
    }
}

@@media (max-width: 767px) {
    .col-md-6, .col-lg-4, .col-lg-3 {
        width: 100%;
    }
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
}

.bg-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.text-muted {
    color: var(--text-muted);
}

.mt-3 {
    margin-top: 12px;
}

.mb-2 {
    margin-bottom: 8px;
}

.w-100 {
    width: 100%;
}

.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 40px;
}

small {
    font-size: 0.83rem;
}
/* ===== WHY WORK WITH US ===== */
.why-section {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    padding: 60px 20px;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1400') center/cover no-repeat;
}

.why-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(240, 240, 248, 0.82) 0%, rgba(220, 225, 245, 0.75) 100% );
    backdrop-filter: blur(1px);
}

.why-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.why-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 50px;
    letter-spacing: 0.3px;
}

.why-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.why-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.9);
}

    .why-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(37, 99, 235, 0.15);
        border-color: var(--primary-color);
    }

.why-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.why-card-text {
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.5;
}

    .why-card-text strong {
        color: #1e293b;
        font-weight: 700;
    }

@@media (max-width: 767px) {
    .why-cards {
        flex-direction: column;
        align-items: center;
    }

    .why-card {
        max-width: 100%;
        width: 100%;
    }
}
/* ===== NEWS & ANNOUNCEMENT ===== */
.news-section {
    background: var(--bg-color);
}

.news-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    margin-top: 10px;
}

.news-arrow {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

    .news-arrow:hover {
        background: var(--primary-gradient);
        border-color: transparent;
        color: white;
        box-shadow: 0 4px 15px rgba(37,99,235,0.4);
        transform: scale(1.08);
    }

.news-track-outer {
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
}


.news-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
    will-change: transform;
    align-items: stretch;
}

.news-card {
    flex-shrink: 0;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 24px 22px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    display: flex; /* ← add */
    flex-direction: column; /* ← add */
    justify-content: space-between; /* ← add */
}

    .news-card h5 {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--text-color);
        margin-bottom: 12px;
        line-height: 1.5;
        min-height: 48px;
    }

    .news-card p {
        font-size: 0.85rem;
        color: var(--text-muted);
        line-height: 1.7;
        flex: 1;
    }

    .news-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-color);
    }



.news-more {
    display: inline-block;
    background: var(--primary-gradient);
    color: white !important;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--transition);
}

    .news-more:hover {
        opacity: 0.85;
        transform: scale(1.05);
    }
/* ===== TESTIMONIALS SLIDER ===== */
.testi-section {
    background: var(--bg-color);
}

.testi-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
}

.testi-arrow {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

    .testi-arrow:hover {
        background: var(--primary-gradient);
        border-color: transparent;
        color: white;
        box-shadow: 0 4px 15px rgba(37,99,235,0.4);
        transform: scale(1.08);
    }

.testi-track-outer {
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
}

.testi-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
    will-change: transform;
    align-items: stretch;
}

.testi-card {
    flex-shrink: 0;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .testi-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--primary-gradient);
        border-radius: 20px 20px 0 0;
        transform: scaleX(0);
        transition: transform 0.3s ease;
        transform-origin: left;
    }

    .testi-card:hover::before {
        transform: scaleX(1);
    }

    .testi-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-color);
    }

.testi-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testi-quote {
    font-size: 1.8rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.6;
}

.testi-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-style: italic;
    flex: 1;
}

.testi-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

    .testi-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.testi-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 3px;
}

.testi-dest {
    font-size: 0.78rem;
    color: var(--primary-color);
    font-weight: 500;
}

    .testi-dest i {
        margin-right: 4px;
    }

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

    .testi-dot.active {
        background: var(--primary-color);
        width: 24px;
        border-radius: 4px;
        box-shadow: 0 0 10px rgba(37,99,235,0.5);
    }

@@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

