:root {
    --primary-color: #1a5f7a;
    --secondary-color: #c84b31;
    --accent-color: #f9d423;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.nav-link {
    margin-right: 15px;
    color: #fff;
}

#destTabs .nav-link {
    color: #1a2744;
}

#destTabs .nav-link.active {
    color: #fff;
}

#destTabs .nav-item {
    flex: 1 1 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.btn-primary {
    background-color: #d7a200;
    border-color: #d7a200;
}

.btn-primary:hover {
    background-color: #144a5e;
    border-color: #144a5e;
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

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

.bg-primary {
    background-color: #d7a200 !important;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f7a 100%);
    color: white;
    padding: 100px 0;
}

.hero-section video {
    height: 90vh;
    object-fit: cover;
    object-position: top;
}

@media only screen and (max-width: 767px) {
    .hero-section video {
        height: auto;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-section video {
        height: auto;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-section video {
        height: auto;
    }
}

.package-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #ddd;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.package-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

.price-tag {
    background: var(--secondary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
}

.destination-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 30px 20px 20px;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.list-unstyled li {
    margin-bottom: 10px;
}

.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
    background: url(../../images/footer_bg.jpg);
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

.balarama-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    width: auto;
    height: 48px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.45);
    z-index: 1000;
    cursor: pointer;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.balarama-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
    color: white;
}

.balarama-float i {
    font-size: 18px;
}

@media (max-width: 576px) {
    .balarama-float {
        bottom: 80px;
        right: 12px;
        width: 44px;
        height: 44px;
        padding: 0;
        border-radius: 50%;
        font-size: 0;
        gap: 0;
    }

    .balarama-float .balarama-text {
        display: none;
    }

    .balarama-float i {
        font-size: 20px;
    }

    .whatsapp-float {
        bottom: 22px;
        right: 12px;
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
}

#balaramaModal .modal-dialog {
    max-width: 860px;
    height: 90vh;
    margin: auto;
}

#balaramaModal .modal-content {
    height: 85vh;
}

#balaramaModal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
}

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

.breadcrumb-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f7a 100%);
    color: white;
    padding: 60px 0;
}

.filter-sidebar {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* reCAPTCHA badge — move to bottom-left, scale down */
.grecaptcha-badge {
    left: 14px !important;
    right: auto !important;
    transform: scale(0.65) !important;
    transform-origin: bottom left !important;
}

@media (max-width: 576px) {
    .grecaptcha-badge {
        display: none !important;
    }
}

/* ── Hero Carousel ── */
.hero-carousel-section {
    position: relative;
}

.hero-swiper {
    width: 100%;
    height: 92vh;
    min-height: 560px;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    height: 100%;
}

/* Background layer — zooms independently */
.hero-bg {
    position: absolute;
    inset: -6%;
    /* extra room so zoom doesn't show edges */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: none;
    will-change: transform;
}

/* Ken Burns: slow zoom in on active slide */
.swiper-slide-active .hero-bg {
    animation: kenBurns 6.5s ease-out forwards;
}

@keyframes kenBurns {
    from {
        transform: scale(1.12);
    }

    to {
        transform: scale(1);
    }
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .20) 0%, rgba(0, 0, 0, .50) 55%, rgba(0, 0, 0, .72) 100%);
}

.hero-slide-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Staggered content reveal */
.hero-slide-content .hero-tag,
.hero-slide-content h1,
.hero-slide-content p,
.hero-slide-content .hero-btns {
    opacity: 0;
    transform: translateY(28px);
    transition: none;
}

.swiper-slide-active .hero-slide-content .hero-tag {
    animation: heroFadeUp .7s cubic-bezier(.22, 1, .36, 1) .2s forwards;
}

.swiper-slide-active .hero-slide-content h1 {
    animation: heroFadeUp .7s cubic-bezier(.22, 1, .36, 1) .4s forwards;
}

.swiper-slide-active .hero-slide-content p {
    animation: heroFadeUp .7s cubic-bezier(.22, 1, .36, 1) .58s forwards;
}

.swiper-slide-active .hero-slide-content .hero-btns {
    animation: heroFadeUp .7s cubic-bezier(.22, 1, .36, 1) .74s forwards;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tag {
    display: inline-block;
    background: var(--primary-color, #1a5f7a);
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: .35rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.25rem;
}

.hero-slide-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .4);
}

.hero-slide-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: .92;
}

.hero-btns .btn {
    min-width: 160px;
    border-radius: 50px;
    font-weight: 600;
}

/* Swiper controls */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    color: #fff;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(4px);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: background .2s;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background: rgba(255, 255, 255, .3);
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: 900;
}

.hero-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: .6;
    width: 10px;
    height: 10px;
}

.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color, #1a5f7a);
    width: 28px;
    border-radius: 5px;
}

/* ── Stats Bar ── */
.hero-stats-bar {
    background: rgba(15, 40, 55, 0.88);
    backdrop-filter: blur(8px);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 18px 10px;
    border-right: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
}

.stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: .75rem;
    opacity: .75;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .8px;
}

/* ── Search Card ── */
.hero-search-section {
    background: #f0f4f8;
    padding: 0 0 2rem;
}

.hero-search-card {
    background: #fff;
    border-radius: 0 0 16px 16px;
    padding: 28px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .10);
}

@media (max-width: 767px) {
    .hero-swiper {
        height: 70vh;
        min-height: 420px;
    }

    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next {
        display: none;
    }

    .hero-stats-bar {
        position: relative;
    }

    .stat-item {
        padding: 12px 4px;
    }

    .stat-num {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: .55rem;
        letter-spacing: 0;
        text-transform: none;
        line-height: 1.2;
    }

    .hero-search-card {
        border-radius: 12px;
        margin-top: 1rem;
        padding: 20px;
    }

    .hero-btns .btn {
        min-width: 130px;
        font-size: .9rem;
    }
}