/* Dark Blue Theme for FlyHi Tours & Travel */
:root {
    --primary-dark: #0f172a;
    --secondary-dark: #1e293b;
    --card-dark: #334155;
    --accent: #ff9800;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --whatsapp-green: #25d366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: var(--primary-dark);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.logo span {
    color: var(--accent);
}

nav a {
    text-decoration: none;
    color: var(--text-primary);
    margin: 0 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent);
}

.btn {
    background: var(--accent);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--secondary-dark);
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-link {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-link:hover {
    background: var(--card-dark);
    color: var(--accent);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)),
                url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80') center/cover;
    display: flex;
    align-items: center;
    padding: 0 8%;
    color: #fff;
}

.hero h1 {
    font-size: 64px;
    max-width: 700px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    margin: 20px 0 30px;
    max-width: 650px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Section Styles */
section {
    padding: 90px 8%;
}

.title {
    text-align: center;
    margin-bottom: 45px;
}

.title h2 {
    font-size: 40px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    align-items: start;
}

/* Card Styles */
.card {
    background: var(--card-dark);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.destination-card {
    min-height: 420px;
    height: auto;
}

.package-card {
    min-height: 460px;
    height: auto;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.card-img-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-dark), var(--card-dark));
}

.card-img-container.img-fallback img {
    display: none;
}

.card-img-container.img-fallback::after {
    content: '\f03e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: var(--text-secondary);
}

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

.card:hover .card-img-container img {
    transform: scale(1.08);
}

.card > div {
    padding: 20px 20px 16px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card h3 {
    color: var(--text-primary);
    margin-bottom: 6px;
    min-height: 48px;
    display: flex;
    align-items: center;
    text-align: left;
}

.card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 8px;
    text-align: left;
}

.price {
    color: var(--accent);
    font-weight: 700;
    margin-top: 4px;
    margin-bottom: 4px;
    font-size: 18px;
    text-align: left;
}

.card-btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    margin-top: auto;
    margin-bottom: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
    text-align: center;
}

.card-btn:hover {
    background: #e68900;
    transform: translateY(-2px);
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.stat {
    text-align: center;
    background: var(--card-dark);
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.counter {
    font-size: 44px;
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 10px;
}

.stat p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Testimonials Section */
#testimonials {
    padding: 80px 8%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.rating-overview {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.average-rating {
    text-align: center;
    background: var(--card-dark);
    padding: 30px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--accent);
}

.rating-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
}

.rating-stars {
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 10px;
}

.rating-stars i {
    margin: 0 2px;
}

.rating-text {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
}

.testimonials-slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 70px;
}

.testimonials-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 30px;
    padding: 20px 0;
    scrollbar-width: none;
    align-items: flex-start;
    scroll-snap-type: x mandatory;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc((100% - 60px) / 3);
    background: var(--card-dark);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: calc((100% - 60px) / 3);
    flex-shrink: 0;
    scroll-snap-align: start;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--accent);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

.slider-arrow:hover {
    background: #e68900;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4);
}

.slider-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--card-dark);
    border: 2px solid var(--accent);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

.slider-dot:hover {
    background: rgba(255, 152, 0, 0.5);
}

.testimonial-header {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 6px 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.client-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent) 0%, #ff6b00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    grid-column: 1;
    grid-row: 1 / span 2;
}

.client-avatar.male {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

.client-avatar.female {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
}

.client-info {
    grid-column: 2;
    grid-row: 1;
    overflow: hidden;
}

.client-info h4 {
    color: var(--text-primary);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 2px;
    word-break: break-word;
}

.client-info p {
    color: var(--text-secondary);
    font-size: 13px;
    margin: 0;
}

.testimonial-rating {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    gap: 3px;
    font-size: 13px;
    color: var(--accent);
}

.testimonial-rating i {
    transition: transform 0.2s ease;
}

.testimonial-card:hover .testimonial-rating i {
    transform: scale(1.1);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 15px;
    font-style: italic;
    text-align: justify;
}

.testimonial-destination {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 152, 0, 0.1);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.testimonial-destination i {
    font-size: 12px;
}

/* Responsive Testimonials Slider */
@media (max-width: 1024px) {
    /* No override needed - inherits default 3 cards style */
}

@media (max-width: 768px) {
    #testimonials {
        padding: 60px 5%;
    }

    .testimonials-slider-container {
        padding: 0 12px;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
        width: 100%;
        padding: 30px 18px 24px;
        position: relative;
        overflow: hidden;
    }

    .testimonial-card::before {
        content: '\201C';
        position: absolute;
        top: 5px;
        left: 18px;
        font-size: 70px;
        color: rgba(255, 152, 0, 0.08);
        font-family: Georgia, serif;
        line-height: 1;
        pointer-events: none;
    }
    
    .testimonial-header {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        margin-bottom: 18px;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .client-avatar {
        width: 48px;
        height: 48px;
        font-size: 18px;
        margin: 0 auto 4px;
    }

    .client-info {
        text-align: center;
        overflow: visible;
        grid-column: auto;
        grid-row: auto;
    }

    .client-info h4 {
        font-size: 16px;
        margin-bottom: 1px;
        overflow-wrap: break-word;
        word-break: break-word;
        max-width: 100%;
    }

    .client-info p {
        font-size: 13px;
    }

    .testimonial-rating {
        justify-content: center;
        font-size: 14px;
        grid-column: auto;
        grid-row: auto;
        margin-top: 2px;
    }

    .testimonial-content p {
        text-align: center;
        font-size: 15px;
        line-height: 1.9;
    }

    .testimonial-destination {
        display: inline-flex;
        margin: 0 auto;
        font-size: 13px;
        padding: 7px 14px;
    }

    .slider-arrow {
        width: 16px;
        height: 16px;
        font-size: 7px;
    }
    
    .average-rating {
        padding: 20px 30px;
    }
    
    .rating-number {
        font-size: 48px;
    }

    .rating-stars {
        font-size: 20px;
    }

    .rating-text {
        font-size: 14px;
    }

    .slider-dots {
        margin-top: 24px;
        gap: 10px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .slider-dot.active {
        transform: scale(1.3);
    }
}

@media (max-width: 480px) {
    .testimonials-slider-container {
        padding: 0 10px;
    }
    
    .testimonial-card {
        padding: 20px 14px 18px;
    }

    .testimonial-card::before {
        font-size: 55px;
        top: 2px;
        left: 12px;
    }
    
    .client-avatar {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
    
    .client-info h4 {
        font-size: 14px;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    
    .client-info p {
        font-size: 12px;
    }
    
    .testimonial-content p {
        font-size: 14px;
    }
    
    .testimonial-destination {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .slider-arrow {
        width: 14px;
        height: 14px;
        font-size: 6px;
    }
}

/* Contact Section */
.contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border: 1px solid var(--card-dark);
    border-radius: 8px;
    background: var(--secondary-dark);
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.2);
}

input::placeholder, textarea::placeholder {
    color: var(--text-secondary);
}

button {
    border: none;
    cursor: pointer;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-details {
    background: var(--card-dark);
    padding: 25px;
    border-radius: 12px;
}

.contact-details h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
}

.contact-details p {
    color: var(--text-secondary);
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details i {
    color: var(--accent);
}

/* Footer */
footer {
    background: var(--secondary-dark);
    color: var(--text-primary);
    border-top: 1px solid var(--card-dark);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 50px 8%;
}

.footer-section h3 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--card-dark);
    border-radius: 50%;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid var(--card-dark);
    color: var(--text-secondary);
}

/* Hidden Cards in Grid */
.hidden-card {
    display: none !important;
}

.grid.show-all .hidden-card {
    display: flex !important;
    animation: fadeIn 0.5s ease;
}

/* Ensure grid maintains proper layout when showing all cards */
.grid.show-all {
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
}

.grid.show-all .destination-card {
    min-height: 340px;
    height: auto;
    display: flex;
    flex-direction: column;
}

.grid.show-all .package-card {
    min-height: 400px;
    height: auto;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1200px) {
    .grid.show-all {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    }

    .grid.show-all .destination-card {
        min-height: 340px;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .grid.show-all .package-card {
        min-height: 400px;
        height: auto;
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 900px) {
    .grid.show-all {
        grid-template-columns: repeat(2, 1fr);
        align-items: start;
    }

    .grid.show-all .destination-card {
        min-height: 340px;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .grid.show-all .package-card {
        min-height: 400px;
        height: auto;
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .grid.show-all {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .grid.show-all .destination-card {
        min-height: 340px;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .grid.show-all .package-card {
        min-height: 400px;
        height: auto;
        display: flex;
        flex-direction: column;
    }
}

/* Remove duplicate grid.show-all rules from responsive section to avoid conflicts */

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

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 30px;
}

.load-more-btn {
    background: var(--accent);
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    padding: 40px 0;
}

.modal-content {
    background-color: var(--card-dark);
    margin: 0 auto;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--text-secondary);
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--accent);
}

.modal-content h2 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 28px;
}

.modal-content p {
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 16px;
}

.modal-gallery {
    position: relative;
    width: 100%;
    margin: 15px 0;
}

.modal-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.modal-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    width: 100%;
    height: 320px;
}

.modal-slider::-webkit-scrollbar {
    display: none;
}

.modal-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    scroll-snap-align: start;
    background: var(--secondary-dark);
}

.modal-slide-broken {
    object-fit: contain;
    padding: 40px;
}

.modal-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-slider-arrow:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    border-color: transparent;
}

.modal-slider-arrow.prev-arrow {
    left: 15px;
}

.modal-slider-arrow.next-arrow {
    right: 15px;
}

.modal-slider-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.modal-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.modal-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid var(--accent);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-slider-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

.destination-card {
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.package-card {
    cursor: pointer;
}

.package-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* WhatsApp Button */
.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: var(--whatsapp-green);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .destination-card {
        min-height: 420px;
        height: auto;
    }

    .package-card {
        min-height: 460px;
        height: auto;
    }

    .card h3 {
        margin-bottom: 6px;
    }

    .card p {
        margin-bottom: 8px;
    }

    .price {
        margin-bottom: 10px;
    }

    .card-btn {
        margin-top: auto;
    }
}

@media (max-width: 900px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destination-card {
        min-height: 420px;
        height: auto;
    }

    .package-card {
        min-height: 460px;
        height: auto;
    }

    .card h3 {
        margin-bottom: 6px;
    }

    .card p {
        margin-bottom: 8px;
    }

    .price {
        margin-bottom: 10px;
    }

    .card-btn {
        margin-top: auto;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        height: auto;
        min-height: 70vh;
        padding: 100px 6% 60px;
        display: flex;
        align-items: center;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    section {
        padding: 60px 5%;
    }

    .title h2 {
        font-size: 32px;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        padding: 40px 5%;
    }

    .footer-section {
        margin-bottom: 25px;
    }

    .card p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* Ensure consistent card heights on mobile */
    .card-img-container {
        height: 180px;
    }

    .destination-card {
        min-height: 340px;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .package-card {
        min-height: 400px;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    /* Let each card size to its own content instead of stretching to match taller siblings */
    .grid {
        align-items: start;
    }

    .grid.show-all {
        align-items: start;
    }

    .card {
        display: flex;
        flex-direction: column;
    }

    .card > div {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 14px 16px 12px 16px;
    }

    /* Consistent spacing for card elements on mobile */
    .card h3 {
        min-height: 40px;
        margin-bottom: 4px;
        line-height: 1.3;
        font-size: 16px;
    }

    .card p {
        margin-bottom: 4px;
        flex-grow: 0;
        font-size: 12px;
    }

    .duration, .destination-highlights, .best-time {
        margin-bottom: 4px;
        font-size: 11px;
    }

    .inclusions {
        margin-bottom: 6px;
    }

    .price {
        margin-top: 4px;
        margin-bottom: 4px;
        font-size: 16px;
    }

    .card-btn {
        padding: 8px 14px;
        font-size: 12px;
        margin-top: 6px;
    }

    /* Ensure hidden cards have same styling when shown */
    .grid.show-all .destination-card {
        min-height: 340px;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .grid.show-all .package-card {
        min-height: 400px;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .grid.show-all .card {
        height: auto;
    }

    .grid.show-all .card > div {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 14px 16px 12px 16px;
    }

    .load-more-btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .logo-img {
        height: 50px;
    }

    header {
        padding: 10px 5%;
    }

    header .btn {
        padding: 8px 18px;
        font-size: 14px;
    }

    /* Mobile Modal Improvements */
    .modal {
        padding: 20px 0;
    }
    .modal-content {
        padding: 20px;
        width: 95%;
    }
    .close-modal {
        right: 15px;
        top: 10px;
        font-size: 28px;
    }
    .modal-content h2 {
        font-size: 22px;
        padding-right: 30px; /* avoid overlapping close button */
    }
    .modal-meta-container {
        grid-template-columns: 1fr;
        padding: 12px;
        margin: 15px 0;
    }
    .modal-slider {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    .title h2 {
        font-size: 28px;
    }

    .card h3 {
        font-size: 18px;
    }

    .card p {
        font-size: 13px;
    }

    .price {
        font-size: 16px;
    }

    .card-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .logo-img {
        height: 45px;
    }

    header .btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .footer-section h3 {
        font-size: 16px;
    }

    .footer-section p {
        font-size: 13px;
    }

    .modal-slider {
        height: 220px;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}

/* Card Badges and Image Overlay */
.badge {
    position: absolute;
    top: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.destination-badge {
    left: 15px;
    background: rgba(15, 23, 42, 0.85);
    color: var(--accent);
    border: 1px solid rgba(255, 152, 0, 0.3);
    backdrop-filter: blur(4px);
}

.package-badge {
    right: 15px;
    background: var(--accent);
    color: #fff;
}

/* Card Details and Text Layouts */
.destination-highlights {
    font-size: 13px;
    color: var(--text-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.destination-highlights i {
    color: var(--accent);
    font-size: 12px;
}

.best-time {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.best-time i {
    color: #0ea5e9;
    font-size: 12px;
}

.duration {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.duration i {
    color: var(--accent);
}

/* Inclusions Bar */
.inclusions {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    margin-top: 0;
    align-items: center;
}

.inclusions span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 13px;
    transition: all 0.3s ease;
    cursor: help;
}

.inclusions span:hover {
    background: rgba(255, 152, 0, 0.1);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* Prominent Pricing */
.price {
    font-size: 22px;
    color: var(--accent);
    font-weight: 800;
    margin-top: auto;
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-type {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Package Booking Action Button */
.package-card .card-btn {
    background: var(--whatsapp-green);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.package-card .card-btn:hover {
    background: #20ba5a;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Button Colors */
.secondary-btn {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.secondary-btn:hover {
    background: var(--accent);
    color: #fff;
}

/* Dynamic Modal Elements */
.modal-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-meta-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
    padding: 18px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.modal-meta-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-meta-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-meta-value i {
    color: var(--accent);
}

.modal-meta-value .price-type {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 400;
}

.modal-inclusions-list {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.modal-inclusions-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent);
    font-size: 13px;
}

.modal-body h3 {
    color: var(--text-primary);
    font-size: 18px;
    margin: 24px 0 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.modal-highlights-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

@media (min-width: 480px) {
    .modal-highlights-list {
        grid-template-columns: 1fr 1fr;
    }
}

.modal-highlights-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.modal-highlights-item i {
    color: var(--whatsapp-green);
}

.modal-footer {
    margin-top: 25px;
    text-align: right;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.modal-footer .btn {
    min-width: 160px;
}

.modal-footer .btn-whatsapp {
    background: var(--whatsapp-green);
}

.modal-footer .btn-whatsapp:hover {
    background: #20ba5a;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}
/* ==========================================================================
   NEW FEATURE STYLES (Mobile Fixes, Search/Filter, Inquiry Modal, Estimator,
   FAQ, Weather Widget, Trip Planner Wizard)
   ========================================================================== */

/* Section subtitle used by new sections */
.section-subtitle {
    color: var(--text-secondary);
    font-size: 15px;
    margin-top: 8px;
}

/* ---------- Search & Filter Bar ---------- */
.search-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.search-box {
    position: relative;
    flex: 1 1 320px;
    max-width: 420px;
}

.search-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 14px;
    pointer-events: none;
}

.search-box input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    margin: 0;
    border: 1px solid var(--card-dark);
    border-radius: 30px;
    background: var(--secondary-dark);
    color: var(--text-primary);
    font-size: 14px;
}

.search-box input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.2);
}

.filter-select {
    padding: 12px 18px;
    border: 1px solid var(--card-dark);
    border-radius: 30px;
    background: var(--secondary-dark);
    color: var(--text-primary);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    max-width: 100%;
}

.filter-select:focus {
    outline: none;
    border-color: var(--accent);
}

.no-results-msg {
    display: none;
    text-align: center;
    color: var(--text-secondary);
    padding: 30px 15px;
    font-size: 15px;
}

.no-results-msg.visible {
    display: block;
}

.card.search-hidden {
    display: none !important;
}

/* ---------- Card action row (existing Book button + new Inquiry button) ---------- */
.card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    align-items: stretch;
}

.card-actions .card-btn {
    margin-top: 0;
    width: 100%;
    box-sizing: border-box;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    text-align: center;
}

.inquiry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    white-space: normal;
}

.inquiry-btn:hover {
    background: var(--accent);
    color: #fff;
}

/* ---------- Inquiry Modal / Form ---------- */
.inquiry-modal-content {
    max-width: 640px;
}

.inquiry-subtitle {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 14px;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
    min-width: 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    margin: 0;
    border: 1px solid var(--secondary-dark);
    border-radius: 8px;
    background: var(--secondary-dark);
    color: var(--text-primary);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.2);
}

.form-group input[readonly] {
    opacity: 0.75;
    cursor: not-allowed;
}

.form-group.field-invalid input,
.form-group.field-invalid select {
    border-color: #ef4444;
}

.field-error {
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
    min-height: 14px;
    display: block;
}

.inquiry-form-actions {
    margin-top: 10px;
    text-align: right;
}

.inquiry-form-actions .btn {
    min-width: 160px;
}

.inquiry-success {
    display: none;
    text-align: center;
    padding: 30px 10px;
}

.inquiry-success.visible {
    display: block;
}

.inquiry-success i {
    font-size: 56px;
    color: var(--whatsapp-green);
    margin-bottom: 15px;
}

.inquiry-success h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 22px;
}

.inquiry-success p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.btn-inquiry {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-inquiry:hover {
    background: var(--accent);
    color: #fff;
}

.modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* ---------- Weather Widget ---------- */
.weather-widget {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.weather-select-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.weather-select-row label {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
}

.weather-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    text-align: left;
}

.weather-card {
    background: var(--card-dark);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.weather-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.weather-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.weather-card-icon {
    font-size: 34px;
    color: var(--accent);
}

.weather-card-temp {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-primary);
}

.weather-card-destination {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.weather-card-condition {
    color: var(--text-secondary);
    font-size: 14px;
}

.weather-disclaimer {
    color: var(--text-secondary);
    font-size: 13px;
    margin-top: 25px;
    text-align: center;
}

.weather-disclaimer i {
    color: var(--accent);
    margin-right: 6px;
}

/* ---------- Travel Cost Estimator ---------- */
.estimator-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--card-dark);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.estimator-form .form-group {
    margin-bottom: 18px;
}

.toggle-group {
    display: flex;
    gap: 20px;
    margin-top: 6px;
}

.toggle-option {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.toggle-option input {
    width: auto;
    accent-color: var(--accent);
}

.estimator-result {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 152, 0, 0.2);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.estimator-label {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 10px;
}

.estimator-total {
    font-size: 40px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 12px;
    word-break: break-word;
    text-align: center;
}

.estimator-note {
    color: var(--text-secondary);
    font-size: 12px;
    margin-bottom: 20px;
}

/* ---------- FAQ Accordion ---------- */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--card-dark);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    gap: 12px;
}

.faq-question i {
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 22px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 14px;
}

/* ---------- Trip Planner Wizard ---------- */
.wizard-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-dark);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 4px;
}

.wizard-step-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--secondary-dark);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.wizard-step-dot.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.wizard-step-dot.completed {
    background: var(--whatsapp-green);
    color: #fff;
    border-color: var(--whatsapp-green);
}

.wizard-progress-line {
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.wizard-step {
    display: none;
    animation: fadeIn 0.4s ease;
    min-height: 160px;
}

.wizard-step.active {
    display: block;
}

.wizard-step h3 {
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 25px;
    font-size: 22px;
}

.wizard-options {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.wizard-option-btn {
    background: var(--secondary-dark);
    border: 2px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    padding: 16px 22px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 200px;
    justify-content: center;
}

.wizard-option-btn i {
    color: var(--accent);
}

.wizard-option-btn:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.wizard-option-btn.selected {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.wizard-option-btn.selected i {
    color: #fff;
}

.wizard-step .form-group {
    max-width: 320px;
    margin: 0 auto;
}

.wizard-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
    gap: 15px;
}

.wizard-nav.single-btn {
    justify-content: center;
}

.wizard-nav.single-btn .wizard-nav-btn {
    flex: 0 1 auto;
    width: auto;
    max-width: 220px;
}

.wizard-nav-btn {
    min-width: 110px;
}

.wizard-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

#wizardNext.hidden,
#wizardBack.hidden {
    display: none;
}

.wizard-recommendation-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 152, 0, 0.25);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    margin-bottom: 10px;
}

.wizard-recommendation-card h4 {
    color: var(--accent);
    font-size: 22px;
    margin-bottom: 10px;
}

.wizard-recommendation-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 14px;
}

.wizard-recommendation-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
}

.wizard-recommendation-meta span i {
    color: var(--accent);
    margin-right: 6px;
}

.wizard-recommendation-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

#wizardRestart {
    display: block;
    margin: 0 auto;
}

/* ==========================================================================
   MOBILE RESPONSIVE FIXES FOR NEW COMPONENTS (desktop layout untouched)
   ========================================================================== */
@media (max-width: 900px) {
    .modal-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .modal-footer .btn {
        flex: none;
        width: 100%;
        min-width: 0;
        text-align: center;
        white-space: normal;
        font-size: 15px;
        padding: 12px 18px;
    }

    /* Below tablet width, the grid no longer needs to visually match card
       heights across a row (align-items: start already handles that), so
       drop the large desktop min-height and let each card size to its own
       content instead of leaving empty space below the button. */
    .destination-card,
    .package-card {
        min-height: 0;
    }
}

@media (max-width: 768px) {
    .search-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        max-width: 100%;
        flex: 1 1 auto;
    }

    .filter-select {
        width: 100%;
    }

    .inquiry-modal-content {
        width: 95%;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .modal-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .modal-footer .btn {
        flex: none;
        width: 100%;
        min-width: 0;
        text-align: center;
        white-space: normal;
        font-size: 15px;
        padding: 12px 18px;
    }

    .estimator-box {
        grid-template-columns: 1fr;
        padding: 22px;
        gap: 20px;
    }

    .estimator-total {
        font-size: 32px;
    }

    .wizard-container {
        padding: 22px 16px;
    }

    .wizard-step-dot {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .wizard-progress-line {
        width: 14px;
    }

    .wizard-option-btn {
        flex: 1 1 100%;
        padding: 14px 16px;
    }

    .wizard-nav {
        flex-wrap: wrap;
    }

    .wizard-nav-btn {
        flex: 1 1 45%;
    }

    .weather-cards {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .faq-question {
        padding: 15px 16px;
        font-size: 14px;
    }

    .faq-item.active .faq-answer {
        padding: 0 16px 16px;
    }

    /* General overflow protection */
    .btn, .card-btn, .load-more-btn, .inquiry-btn, .wizard-option-btn {
        max-width: 100%;
        white-space: normal;
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .estimator-total {
        font-size: 26px;
    }

    .wizard-recommendation-meta {
        gap: 10px;
        font-size: 13px;
    }

    .weather-cards {
        grid-template-columns: 1fr 1fr;
    }

    .wizard-step h3 {
        font-size: 18px;
    }
}
