﻿/* Malvora Banner Design */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

html {
    scroll-behavior: smooth;
}

:root {
    --malvora-primary: #fbb03b;
    /* Bright green from screenshot */
    --malvora-bg-glass: rgba(255, 255, 255, 0.15);
    --malvora-radius: 24px;
    --malvora-font: 'Plus Jakarta Sans', sans-serif;
}

.malvora-banner-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 200px 0 80px 0;
    /* Space for fixed header and bottom padding */
    background-image: url('../images/banner-malvora.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--malvora-font);
    color: white;
}

.malvora-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

/* New Premium Liquid Glass Header */
.malvora-header {
    position: absolute;
    top: 25px;
    border: 1px solid #eca638 !important;
    left: 40px;
    right: 40px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px 0 35px;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.header-logo-section {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 8px 25px;
    border-radius: 50px;
    height: 55px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.header-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.malvora-nav-centered {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 4px;
}

.malvora-nav-centered ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2px;
}

.malvora-nav-centered ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 40px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.malvora-nav-centered ul li a.active {
    background: rgba(255, 255, 255, 0.95);
    color: #1c2356;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.malvora-nav-centered ul li a:not(.active):hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-contact-header {
    background: #0d1117;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-contact-header i {
    color: #3fa9f5;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-contact-header span {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.btn-contact-header:hover {
    background: #1c2356;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(63, 169, 245, 0.2);
}

.btn-contact-header:hover i {
    transform: rotate(15deg) scale(1.2);
    color: #fff;
}

@media (max-width: 991px) {
    .malvora-banner-section {
        padding-top: 220px;
    }

    .malvora-header {
        left: 10px;
        right: 10px;
        padding: 0 10px;
        height: 75px;
        top: 15px;
    }

    .header-logo-section {
        padding: 5px 12px;
        height: 40px;
    }

    .header-logo-img {
        height: 28px;
    }

    .btn-contact-header {
        padding: 8px 18px;
        gap: 8px;
    }

    .btn-contact-header span {
        font-size: 13px;
    }

    .malvora-nav-centered {
        display: none;
    }
}

@media (max-width: 420px) {
    .btn-contact-header span {
        font-size: 11px;
    }

    .btn-contact-header i {
        font-size: 14px;
    }

    .header-logo-section {
        padding: 5px 10px;
    }
}


/* Hero Content */
.malvora-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 60px;
    /* Gap between text and form */
    z-index: 10;
}

.malvora-tag-pill {
    background: white;
    color: #333;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.malvora-hero-content h1 {
    font-size: 56px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    max-width: 900px;
    letter-spacing: -1px;
}

.malvora-hero-content p {
    font-size: 16px;
    max-width: 600px;
    margin: 25px auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* Floating Search Bar */
.malvora-search-container {
    width: 90%;
    max-width: 950px;
    /* Medium size */
    background: white;
    border-radius: 30px;
    padding: 25px 35px;
    color: #333;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 20;
    position: relative;
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.search-header h2 {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    color: #222;
}

.search-subtitle {
    font-size: 13px;
    color: #888;
    margin: 0;
}

.search-fields-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-label {
    font-size: 13px;
    font-weight: 700;
    color: #222;
}

.field-label i {
    color: var(--malvora-primary);
    margin-right: 2px;
}

.field-input {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: var(--malvora-font);
    color: #333;
    width: 100%;
}

.field-input:focus {
    border-color: var(--malvora-primary);
    background: #fff;
}

.form-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 5px;
}

.btn-search {
    background: var(--malvora-primary);
    color: #1c2356;
    border: none;
    padding: 15px 40px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(94, 255, 94, 0.2);
    transition: all 0.3s ease;
    font-family: var(--malvora-font);
}

.btn-search:hover {
    background: #4ade4a;
    transform: scale(1.02);
}

/* Tour Packages Section */
#Packages {
    background: #fdfdfd;
    padding: 100px 0;
}

/* Tour Packages Section - Card Design */
#Packages {
    background: #fdfdfd;
    padding: 100px 0;
}

.package-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.package-media {
    height: 240px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.package-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.package-card:hover .package-media img {
    transform: scale(1.1);
}

.duration-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #fbb03b, #fbb03b);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 94, 0, 0.3);
    z-index: 2;
}

.package-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-content h4 {
    font-size: 17px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.package-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 9px;
    color: #999;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    line-height: 1.2;
}

.itinerary-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.itinerary-tag {
    background: rgba(255, 94, 0, 0.1);
    color: #fbb03b;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
}

.package-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.package-highlights li {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.package-highlights li::before {
    content: "\f111";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fbb03b;
    font-size: 6px;
    margin-top: 7px;
}

.btn-enquiry {
    background: #3fa9f5;
    color: white;
    width: 100%;
    border: none;
    padding: 15px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: auto;
}

.btn-enquiry:hover {
    background: var(--malvora-primary);
    color: #1c2356;
    box-shadow: 0 10px 20px rgba(94, 255, 94, 0.25);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .package-box {
        margin-bottom: 30px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Destination Cards */
.destin-sec {
    background: #fdfdfd;
    padding: 100px 0;
}

.destin-sec .section-header h3 {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.destin-sec .section-header p {
    color: #666;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.destin-card-premium {
    position: relative;
    height: 520px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    margin-bottom: 30px;
}

.destin-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.destin-card-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.destin-card-premium:hover img {
    transform: scale(1.15);
}

.destin-badge-top {
    position: absolute;
    top: 25px;
    width: 100%;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    z-index: 5;
}

.badge-pill {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.badge-pill.rating i {
    color: #ffc107;
    margin-right: 5px;
}

.destin-glass-box {
    position: absolute;
    bottom: 25px;
    left: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 25px;
    border-radius: 30px;
    color: white;
    z-index: 5;
    transition: all 0.3s ease;
}

.destin-card-premium:hover .destin-glass-box {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
}

.destin-date {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    opacity: 0.9;
    margin-bottom: 8px;
}

.destin-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.destin-info-row h4 {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.destin-price {
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 4px;
}

.view-more-container {
    margin-top: 50px;
}

/* Slider Customization - Clean Look (No Arrows) */
.destin-slider-container,
.package-slider-container {
    position: relative;
    padding: 0;
    /* Removed extra padding for arrows */
}

.destinations-swiper,
.packages-swiper {
    padding-bottom: 30px;
}

@media (max-width: 991px) {

    .destinations-swiper,
    .packages-swiper {
        padding-bottom: 20px;
    }
}

.btn-view-more {
    background: #1c2356;
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-view-more:hover {
    background: #333;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.malvora-hero-content>* {
    animation: fadeInUp 0.8s ease backwards;
}

.malvora-hero-content h1 {
    animation-delay: 0.2s;
}

.malvora-hero-content p {
    animation-delay: 0.4s;
}

.malvora-search-container {
    animation: fadeInUp 1s ease 0.6s backwards;
}

@media (max-width: 1024px) {
    .malvora-hero-content h1 {
        font-size: 60px;
    }

    .search-fields {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .malvora-header {
        padding: 0 15px;
        top: 10px;
    }

    .malvora-nav {
        display: none;
    }

    .malvora-hero-content h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .malvora-search-container {
        bottom: 20px;
        padding: 20px;
        border-radius: 25px;
    }

    .search-fields {
        grid-template-columns: 1fr;
    }

    .search-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .search-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .filter-pills {
        flex-wrap: wrap;
    }

    .btn-search {
        width: 100%;
        justify-content: center;
    }
}

/* Liquid Glass FAQ Accordion */
.accordion-item {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 20px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.accordion-button {
    padding: 25px 30px;
    font-weight: 700;
    font-size: 17px;
    color: #1a1a1a;
    background: white;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: white;
    color: #fbb03b;
}

.accordion-button::after {
    background-size: 15px;
    transition: transform 0.3s ease;
}

.accordion-body {
    padding: 0 30px 30px 30px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.accordion-header i {
    margin-right: 15px;
    color: #fbb03b;
    font-size: 18px;
    width: 25px;
    text-align: center;
}

/* Why Choose Us Premium Cards */
.why-us-section {
    padding: 80px 0;
    background: #fcfcfc;
}

.why-us-card {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 94, 0, 0.2);
}

.why-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 94, 0, 0.05);
    color: #fbb03b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 20px;
    margin: 0 auto 25px auto;
    transition: all 0.3s ease;
}

.why-us-card:hover .why-icon-box {
    background: #fbb03b;
    color: white;
    transform: rotateY(180deg);
}

.why-us-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.why-us-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Modern Modal & Form Styles */
.modal-content {
    border: none;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.modal-body {
    padding: 35px 40px;
}

.package-info-content h4 {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
    text-align: center;
}

/* Floating Form Controls */
.modern-form .form-floating>.form-control {
    border-radius: 18px;
    border: 1.5px solid #ececec;
    height: 60px;
    padding-left: 20px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.modern-form .form-floating>.form-control:focus {
    border-color: #3fa9f5;
    background: white;
    box-shadow: 0 5px 15px rgba(63, 169, 245, 0.1);
}

.modern-form .form-floating>label {
    padding-left: 20px;
    color: #888;
    font-size: 14px;
}

.modern-form textarea.form-control {
    height: 120px !important;
    border-radius: 20px !important;
    padding-top: 25px !important;
}

/* Animated Submit Button */
.btn-submit-expert {
    background: linear-gradient(135deg, #3fa9f5, #29abe2);
    color: white;
    width: 100%;
    border: none;
    padding: 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(63, 169, 245, 0.3);
}

.btn-submit-expert:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(63, 169, 245, 0.4);
    background: linear-gradient(135deg, #fbb03b, #ff9e00);
}

.btn-close {
    background-color: #f5f5f5;
    opacity: 1;
    border-radius: 50%;
    padding: 10px;
    margin-bottom: -10px;
    transition: all 0.3s ease;
}

.btn-close:hover {
    background-color: #ffe0e0;
}

/* Comprehensive Mobile Responsiveness Fixes */
@media (max-width: 576px) {
    .malvora-banner-section {
        padding: 80px 0 40px 0;
        min-height: auto;

        /* Package Details Mobile refinement */
        .package-content {
            padding: 15px;

            /* Specific fix for package stats to prevent squishing on small phones */
            .package-stats {
                display: grid !important;
                grid-template-columns: repeat(4, 1fr);
                gap: 5px;
            }

            @media (max-width: 400px) {
                .package-stats {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 15px;
                }
            }
        }

        .package-stats {
            margin-bottom: 15px;
            padding-bottom: 10px;
        }

        .stat-item i {
            font-size: 14px;
        }

        .stat-item span {
            font-size: 8px;
        }

        .itinerary-tags {
            gap: 5px;
            margin-bottom: 15px;
        }

        .itinerary-tag {
            padding: 4px 8px;
            font-size: 10px;
        }

        .package-highlights li {
            font-size: 12px;
            margin-bottom: 6px;
        }

        .btn-enquiry {
            padding: 12px;
            font-size: 12px;
            border-radius: 12px;
        }
    }

    .malvora-hero-content h1 {
        font-size: 26px;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .malvora-hero-content p {
        font-size: 14px;
        margin: 15px auto;
    }

    .malvora-search-container {
        width: 95%;
        padding: 20px 15px;
        border-radius: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .btn-search {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* Section Padding */
    .section-pad,
    #Packages,
    .destin-sec,
    .why-us-section {
        padding: 50px 0;
    }

    .section-header h3 {
        font-size: 28px !important;
    }

    /* Package Cards Mobile */
    .package-media {
        height: 200px;
    }

    .package-content h4 {
        font-size: 16px;
        min-height: auto;
    }

    /* Destination Cards Mobile */
    .destin-card-premium {
        height: 400px;
        border-radius: 25px;
    }

    .destin-glass-box {
        padding: 15px;
        bottom: 15px;
        border-radius: 20px;
    }

    .destin-info-row h4 {
        font-size: 18px;
    }

    /* Why Choose Us Mobile */
    .why-us-card {
        padding: 30px 20px;
    }

    /* FAQ Mobile */
    .accordion-button {
        padding: 15px 20px;
        font-size: 15px;
    }

    .accordion-body {
        padding: 0 20px 20px 20px;
        font-size: 14px;
    }

    /* Modal Mobile Fix */
    .modal-body {
        padding: 25px 20px;
    }

    .package-info-content h4 {
        font-size: 20px;
    }

    .modern-form .form-floating>.form-control {
        height: 50px;
        font-size: 14px;
    }

    .btn-submit-expert {
        padding: 14px;
        font-size: 14px;
    }
}



/* Tablet Fixes */
@media (min-width: 577px) and (max-width: 991px) {
    .malvora-hero-content h1 {
        font-size: 48px;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}
