:root {
    --primary-color: #2b5a9a;
    --primary-dark: #1e3a8a;
    --accent-color: #3b82f6;
    --theme-blue: #2b5a9a;
    --theme-light: #60a5fa;
    --text-color: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --whatsapp-color: #25d366;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-content: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

h1,
h2,
h3,
.script-font {
    font-family: 'Dancing Script', cursive;
    color: var(--primary-dark);
    text-align: center;
}

.serif-font {
    font-family: 'Playfair Display', serif;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header */
.header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.btn-contact {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.header-contact-info {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.phone-link {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--accent-color);
}

.btn-enquire {
    background: #f59e0b;
    /* Amber/Gold for high visibility */
    color: var(--white);
}

.btn-whatsapp {
    background: var(--whatsapp-color);
    color: var(--white);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
}

.slider-container {
    height: 100%;
}

.slider-wrapper {
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 0 5%;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.slide-content {
    color: var(--white);
    max-width: 800px;
    margin: 0;
    transform: translateX(-30px);
    transition: transform 0.8s ease;
    z-index: 5;
}

.slide-content h1 {
    text-align: left;
}

.slide.active .slide-content {
    transform: translateX(0);
}

.badge {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
}

.slide-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
}

/* Hero Form */
.hero-form-container {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    z-index: 20;
    margin-bottom: 20px;
}

.hero-lead-form {
    background: var(--glass-content);
    backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--white);
}

.hero-lead-form h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    margin-bottom: 5px;
    color: var(--primary-dark);
    text-align: center;
}

.hero-lead-form p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-submit-hero {
    width: 100%;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-submit-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(126, 34, 206, 0.3);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
}

.slider-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 10px;
}

/* Intro Section */
.intro {
    padding: 100px 0;
    background: var(--bg-light);
}

.text-center {
    text-align: center;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 50px;
    color: var(--primary-dark);
}

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

.feature-card p {
    color: var(--text-muted);
}

/* Why Us Section */
.why-us-section {
    padding: 50px 0;
    background: var(--white);
}

.container-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-us-image {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-us-content {
    flex: 1;
}

.why-us-features {
    margin-top: 30px;
}

.why-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.why-icon {
    width: 50px;
    height: 50px;
    background: rgba(43, 90, 154, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.why-text h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.why-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Packages Section */
.packages-section {
    padding: 60px 0;
    background: #f1f5f9;
}

.section-header {
    text-align: center;
    margin-bottom: 25px;
}

.subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-header h2 {
    font-family: 'Dancing Script', cursive;
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

/* Package Slider Wrapper */
.packages-slider-wrapper {
    position: relative;
    padding: 0 50px; /* Space for buttons */
}

.packages-slider-wrapper .packages-grid {
    display: flex;
    justify-content: center; /* Center by default for 1 or 2 cards */
    grid-template-columns: none;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 20px 0 40px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

/* If there are 3 or more cards, align to start to allow for overflow scrolling */
.packages-slider-wrapper .packages-grid:has(> :nth-child(3)) {
    justify-content: flex-start;
}

.packages-slider-wrapper .packages-grid::-webkit-scrollbar {
    display: none;
}

.packages-slider-wrapper .package-card {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-control:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-control.prev {
    left: -10px;
}

.slider-control.next {
    right: -10px;
}

.package-card {
    background: var(--primary-dark);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pack-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.pack-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.itinerary-popover {
    position: relative;
    display: inline-flex;
    margin-right: 12px;
}

.btn-itinerary {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.7;
    margin-top: 2px;
}

.btn-itinerary:hover {
    opacity: 1;
    color: var(--accent-color);
}

.itinerary-list {
    position: absolute;
    bottom: calc(100% + 15px);
    right: -20px;
    width: 260px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    z-index: 1000;
}

.itinerary-list::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 15px;
    width: 15px;
    height: 15px;
    background: var(--white);
    transform: rotate(45deg);
}

.itinerary-popover:hover .itinerary-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.itinerary-list h4 {
    color: var(--primary-color);
    font-family: 'Dancing Script', cursive;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.itinerary-list ul {
    list-style: none;
}

.itinerary-list li {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.itinerary-list li i {
    color: var(--whatsapp-color);
}

.pack-info {
    padding: 25px;
    color: var(--white);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pack-info h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.35rem;
    margin-bottom: 2px;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pack-duration {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.9);
}

.pack-locations {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.pack-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 15px;
}

.price-box {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.starting-from {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.price-values {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.old-price {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.new-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--white);
}

.per-person {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.pack-icons {
    display: flex;
    gap: 12px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.promo-text {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pack-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.btn-deal {
    flex: 1;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-deal:hover {
    background: var(--primary-dark);
}

.btn-wa-icon {
    width: 55px;
    height: 55px;
    background: var(--whatsapp-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-wa-icon:hover {
    transform: scale(1.05);
}

/* Inclusions & Exclusions */
.inclusions-exclusions {
    padding: 50px 0;
    background: var(--white);
}

.inc-exc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.inclusions-box,
.exclusions-box {
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.inclusions-box {
    background: #f0fdf4;
    border: 1px solid #dcfce7;
}

.exclusions-box {
    background: #fef2f2;
    border: 1px solid #fee2e2;
}

.inclusions-box h3,
.exclusions-box h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    margin-bottom: 25px;
    text-align: center;
}

.inclusions-box h3 {
    color: #166534;
}

.exclusions-box h3 {
    color: #991b1b;
}

.inc-exc-grid ul {
    list-style: none;
}

h1,
h2,
h3 {
    font-family: 'Dancing Script', cursive;
}

.inc-exc-grid li {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    font-size: 1.05rem;
}

.inclusions-box i {
    color: #22c55e;
    margin-top: 5px;
}

.exclusions-box i {
    color: #ef4444;
    margin-top: 5px;
}

/* Combined Social & FAQ Section */
.social-faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.social-faq-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}

.text-left {
    text-align: left !important;
}

.testi-column {
    background: var(--white);
    padding: 50px;
    border-radius: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.testi-column h2 {
    margin-bottom: 30px;
}

.testimonial-slider {
    margin-top: 0;
}

.testi-content {
    background: none;
    padding: 10px 0 0;
    border-radius: 0;
    box-shadow: none;
}

.testi-content i {
    top: -10px;
    left: -10px;
}

.faq-column {
    /* Uses existing faq-accordion styles */
}

.faq-accordion {
    margin-top: 20px;
}

@media (max-width: 1100px) {
    .social-faq-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}


.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    background: var(--white);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0, 1, 0, 1);
    background: var(--white);
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 10px 30px 25px;
    max-height: 500px;
    transition: all 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* About / Why Choose Us Section Improvements */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.about-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.about-card h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.about-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.features-list-box {
    margin-top: 80px;
    background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.85)), url('vietnam_rope_cart_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px;
    border-radius: 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.features-list-box h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--white);
}

.features-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-item i {
    color: #3b82f6;
    /* Accent color */
    font-size: 1.3rem;
}

.section-desc {
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Update Responsive */
@media (max-width: 1100px) {
    .hero-slider {
        height: auto;
        display: block;
        overflow: visible;
    }

    .slider-container {
        height: 50vh;
        margin-bottom: 0;
    }

    .hero-form-container {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        padding: 40px 20px;
        margin-top: -30px;
        z-index: 30;
    }

    .hero-lead-form {
        max-width: 100%;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid #eee;
        background: var(--white);
        margin: 0 auto;
        border-radius: 20px 20px 0 0;
    }

    /* Package Slider for Mobile */
    .packages-slider-wrapper {
        padding: 0;
    }

    .packages-slider-wrapper .packages-grid {
        display: flex;
        justify-content: flex-start !important; /* Force left alignment on mobile for scroll stability */
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 15px;
        padding: 10px 15px 30px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .packages-slider-wrapper .package-card {
        flex: 0 0 calc(90% - 15px);
        scroll-snap-align: center;
        margin-bottom: 0;
        background: var(--white); /* White frame background */
        padding: 12px; /* Frame padding */
        border: 1px solid #e2e8f0;
    }

    .packages-slider-wrapper .pack-image {
        height: 200px; /* Reduced height */
        border-radius: 12px; /* Rounded corners for the image inside the frame */
        width: 100%;
    }

    .packages-slider-wrapper .pack-info {
        background: var(--primary-dark); /* Blue section for info */
        margin: 10px -12px -12px -12px; /* Negative margin to fill bottom of card */
        padding: 20px 15px;
        border-radius: 0 0 24px 24px;
        flex-grow: 1;
        color: var(--white); /* Ensure all text is white */
    }

    .pack-info h3 {
        text-align: center;
        width: 100%;
        color: var(--white);
    }
    
    .pack-duration, .starting-from, .per-person, .old-price {
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .pack-icons i {
        color: var(--white);
    }

    .slider-control {
        display: none;
    }

    .container-flex {
        flex-direction: column;
        gap: 40px;
    }

    .why-us-image {
        width: 100%;
        height: 300px;
    }

    .why-us-content {
        text-align: center;
    }

    .why-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .inc-exc-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: #0f172a;
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.footer-logo {
    height: 60px;
    filter: brightness(0) invert(1);
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Responsive */
/* Mobile Sticky Footer */
.mobile-sticky-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    z-index: 9999;
    padding: 12px 0;
}

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.sticky-btn:last-child {
    border-right: none;
}

.sticky-btn i {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.sticky-btn span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

/* Responsive Overrides */
@media (max-width: 1100px) {
    .hero-slider {
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .slider-container {
        height: 400px;
        /* Fixed height for mobile slider content area */
        position: relative;
    }

    .slide {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .hero-form-container {
        position: relative;
        top: 0;
        right: 0;
        transform: none;
        width: 100%;
        margin-top: -30px;
        padding: 0 15px 40px;
        z-index: 20;
    }

    .hero-lead-form {
        max-width: 100%;
        margin: 0 auto;
        border-radius: 24px;
    }
}

@media (max-width: 768px) {
    .mobile-sticky-footer {
        display: flex;
    }

    body {
        padding-bottom: 80px;
    }

    .header {
        padding: 5px 0;
    }

    .container-header {
        padding: 10px;
        justify-content: center;
    }

    .logo img {
        height: 38px;
    }

    .header-actions {
        display: none !important;
    }

    h1,
    .slide-content h1 {
        font-size: 2.2rem;
        text-align: center !important;
    }

    .slide-content p {
        font-size: 0.95rem;
        text-align: center !important;
    }

    .slide-content {
        max-width: 100%;
        text-align: center;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .slide {
        justify-content: center;
        text-align: center;
    }

    /* Package Alignment Refinements */
    .packages-slider-wrapper .packages-grid {
        padding: 10px 15px 30px;
    }

    .pack-info h3 {
        font-size: 1.35rem;
        /* Reduced to fit on one line */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 10px;
        text-align: center;
    }

    .pack-duration {
        text-align: center;
        width: 100%;
        display: block;
    }


    .pack-price-row {
        flex-direction: column;
        align-items: center;
        /* Centering for better balance */
        gap: 10px;
        margin-bottom: 20px;
        text-align: center;
    }

    .price-box {
        align-items: center;
        text-align: center;
    }

    .price-values {
        flex-direction: row !important;
        /* Force horizontal on mobile */
        align-items: center !important;
        justify-content: center;
        gap: 10px !important;
    }

    .old-price {
        font-size: 0.9rem !important;
        margin-bottom: 0 !important;
    }

    .new-price {
        font-size: 1.8rem !important;
        /* Reduced size */
        line-height: 1;
    }

    .itinerary-popover {
        margin-left: 5px;
    }

    .per-person {
        margin-top: 5px;
        font-size: 0.8rem;
    }

    .pack-icons {
        justify-content: center;
        width: 100%;
        gap: 12px;
    }


    .pack-actions {
        display: flex;
        gap: 10px;
    }

    .btn-deal {
        flex: 1;
        padding: 15px;
        font-size: 1rem;
    }

    .btn-wa-card {
        width: 50px;
        height: 50px;
        background: #25d366;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        font-size: 1.5rem;
        text-decoration: none;
    }


    .why-us-section .container-flex {
        flex-direction: column;
        gap: 30px;
    }

    .why-us-image {
        height: 250px;
        width: 100%;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .features-list-box {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .features-list-grid {
        grid-template-columns: 1fr;
    }


    .footer-links {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    /* Itinerary Mobile Fix */
    .itinerary-popover {
        position: static;
        /* Position list relative to the Card instead */
    }

    .itinerary-list {
        left: 5%;
        right: 5%;
        transform: translateY(15px);
        width: 90%;
        max-width: none;
    }

    .itinerary-popover:hover .itinerary-list {
        transform: translateY(0);
    }

    .itinerary-list::after {
        display: none;
        /* Remove arrow as it's no longer pointing to icon */
    }
}