/********************** Modern Slider Styles ************************/
.mp-slider .items {
    display: none;
}

.mp-slider {
    width: 100%;
    max-width: var(--container-width);
    height: 380px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.mp-slider ul {
    width: 100% !important;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mp-slider li {
    width: 100% !important;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Force the JavaScript-generated containers to fill width */
.mp-slider .pic {
    width: 100% !important;
    height: 100% !important;
    left: 0 !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.mp-slider .mask {
    width: 100% !important;
    height: 100% !important;
    left: 0 !important;
}

/* Hide the IMG tags since the plugin uses background-image */
.mp-slider img {
    display: none !important;
}

.mp-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-vibrant);
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.mp-prev,
.mp-next {
    position: absolute;
    width: 60px;
    height: 60px;
    bottom: 50%;
    transform: translateY(50%);
    z-index: 999;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    cursor: pointer;
    box-shadow: var(--shadow-lg);
}

.mp-prev:hover,
.mp-next:hover {
    background: var(--color-primary);
    transform: translateY(50%) scale(1.1);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.mp-prev::before,
.mp-next::before {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 3px solid var(--color-white);
    border-right: 3px solid var(--color-white);
}

.mp-prev {
    left: var(--space-8);
}

.mp-prev::before {
    transform: rotate(-135deg);
    margin-left: 4px;
}

.mp-next {
    right: var(--space-8);
}

.mp-next::before {
    transform: rotate(45deg);
    margin-right: 4px;
}

.mp-slider .banner {
    position: absolute;
    left: var(--space-12);
    right: var(--space-12);
    font-family: var(--font-heading);
    color: var(--color-white);
    z-index: 99 !important;
    top: auto !important;
    bottom: var(--space-16) !important;
    padding: var(--space-8);
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-2xl);
}

.mp-slider .banner span {
    display: block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mp-slider .banner b {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.mp-slider .row-1 {
    padding: 0;
    font-size: var(--text-4xl);
    font-weight: 600;
}

.mp-slider .row-2 {
    font-size: var(--text-5xl);
    line-height: 1.1;
    margin: var(--space-2) 0 0 0;
    font-weight: 800;
}

/* Modern Card Styles */
.promo-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.promo-card:hover {
    transform: translateY(-16px) scale(1.03);
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.6),
        0 0 40px rgba(118, 75, 162, 0.4);
}

.promo-card:hover::before {
    opacity: 1;
}

.promo-card .img-box {
    border: none;
    margin: 0;
    padding: 0;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    height: 300px;
}

.promo-card .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-card:hover .img-box img {
    transform: scale(1.15);
}

.promo-card-content {
    padding: var(--space-6);
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.promo-card-content h5 {
    color: #667eea;
    font-weight: 700;
    font-size: var(--text-2xl);
    margin-bottom: var(--space-3);
}

.promo-card-content p {
    color: var(--color-gray-700);
    margin-bottom: var(--space-4);
}

.promo-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: var(--color-white);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: var(--text-xl);
    box-shadow: 0 8px 24px rgba(245, 87, 108, 0.6);
    z-index: 3;
    animation: pulse 2s ease-in-out infinite;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    margin: var(--space-12) 0;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    font-size: var(--text-5xl);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: var(--space-3);
}

.stat-label {
    font-size: var(--text-base);
    color: var(--color-text-light);
    font-weight: 500;
}

/* Theme Toggle Button */
#theme-toggle {
    position: relative;
    width: 60px;
    height: 30px;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-base);
    border: 2px solid var(--color-border);
    display: inline-block;
    vertical-align: middle;
    margin-left: var(--space-4);
}

#theme-toggle::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 22px;
    height: 22px;
    background: var(--color-white);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

[data-theme="dark"] #theme-toggle {
    background: var(--color-primary);
}

[data-theme="dark"] #theme-toggle::before {
    transform: translateX(30px);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: var(--z-fixed);
    text-decoration: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: var(--space-8);
    z-index: var(--z-fixed);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    animation: float 3s ease-in-out infinite;
}

.whatsapp-bubble {
    background: var(--color-white);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    font-size: var(--text-sm);
    color: var(--color-text);
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-bubble {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: var(--transition-base);
    position: relative;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    z-index: -1;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

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

.whatsapp-button i {
    color: var(--color-white);
    font-size: 32px;
}

/* Dark mode adjustments */
[data-theme="dark"] .whatsapp-bubble {
    background: var(--color-bg-secondary);
    color: var(--color-text);
    box-shadow: var(--shadow-xl);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mp-slider {
        height: 400px;
        border-radius: var(--radius-xl);
    }

    .mp-slider .banner {
        bottom: var(--space-8) !important;
        left: var(--space-4);
        right: var(--space-4);
        padding: var(--space-6);
    }

    .mp-slider .row-1 {
        font-size: var(--text-2xl);
    }

    .mp-slider .row-2 {
        font-size: var(--text-3xl);
    }

    .mp-prev {
        left: var(--space-4);
    }

    .mp-next {
        right: var(--space-4);
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    /* WhatsApp button adjustments for mobile */
    .whatsapp-float {
        bottom: 80px;
        right: var(--space-4);
    }

    .whatsapp-bubble {
        display: none;
        /* Hide bubble on mobile for better UX */
    }

    .whatsapp-button {
        width: 56px;
        height: 56px;
    }

    .whatsapp-button i {
        font-size: 28px;
    }
}

/* Updated Footer Social Icons */
.new_footer_top .f_social_icon a {
    width: 44px;
    height: 44px;
    line-height: 44px;
    background: #4A4A4A;
    color: #ffffff;
    border: none;
    font-size: 18px;
    border-radius: 50%;
    margin-right: 12px;
    margin-left: 0 !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.new_footer_top .f_social_icon a:hover {
    transform: translateY(-5px);
    background: #5e2ced;
    box-shadow: 0 5px 15px rgba(94, 44, 237, 0.3);
}

/* Specific brand colors on hover */
.new_footer_top .f_social_icon a.fa-facebook-f:hover {
    background: #1877F2;
}

.new_footer_top .f_social_icon a.fa-tiktok:hover {
    background: #000000;
}

.new_footer_top .f_social_icon a.fa-whatsapp:hover {
    background: #25D366;
}

.new_footer_top .f_social_icon a.fa-instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* Footer Logo Style */
.f-logo {
    display: block;
    margin-bottom: 20px;
}

.f-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Footer Grid Fixes */
.new_footer_top .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

/* Footer container alignment fix */
.new_footer_area .footer_bg_top {
    padding-left: 0;
    padding-right: 0;
}

.new_footer_area .container {
    max-width: 1200px !important;
    padding: 0 !important;
    /* Reset all padding */
    padding-left: var(--space-8) !important;
    /* Apply custom horizontal padding */
    padding-right: var(--space-8) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
}

.new_footer_top .col-lg-3 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 25%;
    max-width: 25%;
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .new_footer_top .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* ========================================
   Destinations Page Styles
   ======================================== */

/* Filter Container */
.filter-container {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin: var(--space-8) 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: var(--space-3) var(--space-6);
    border: 2px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    font-family: var(--font-heading);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Destinations Grid */
.destinations-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-6);
    padding: var(--space-4) 0;
}

/* Destination Card (Hybrid Design) */
.destination-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.card-badge {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    background: var(--gradient-secondary);
    color: var(--color-white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.card-price {
    position: absolute;
    bottom: var(--space-4);
    right: var(--space-4);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    color: var(--color-text);
    padding: 4px 12px;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 800;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.card-content {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--color-heading);
}

.card-desc {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-4);
    line-height: 1.5;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: var(--text-xs);
    color: var(--color-text-light);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--color-border);
}

.card-meta i {
    color: var(--color-primary);
    margin-right: 4px;
}

/* WhatsApp Button Style */
.btn-whatsapp-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: #25d366;
    color: white !important;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-quote:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.3);
}

/* ========================================
   Contact Page Styles
   ======================================== */

/* Contact Hero */
.contact-hero {
    position: relative;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 1;
    z-index: 1;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(20, 20, 50, 0.55) 0%,
            rgba(60, 30, 100, 0.50) 50%,
            rgba(20, 20, 50, 0.55) 100%);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    color: #fff;
}

.contact-hero-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: var(--space-3);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to right, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-content p {
    font-size: 1.5rem;
    opacity: 1;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Contact Layout */
.contact-layout-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

/* Modern Form Card */
.modern-form-card {
    background: var(--color-white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--glass-border);
}

.modern-form-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--color-heading);
}

.form-subtitle {
    color: var(--color-text-light);
    margin-bottom: var(--space-6);
}

.form-group {
    margin-bottom: var(--space-5);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: 600;
    color: var(--color-text);
    font-size: var(--text-sm);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: var(--space-4);
    color: var(--color-primary);
    font-size: 1.1rem;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: var(--space-3);
    padding-left: var(--space-10);
    /* Space for icon */
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-bg-tertiary);
    font-family: var(--font-body);
    font-size: var(--text-base);
    transition: var(--transition-base);
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    border-color: var(--color-primary);
    background: var(--color-white);
    outline: none;
    box-shadow: 0 0 0 3px rgba(94, 44, 237, 0.1);
}

.textarea-wrapper i {
    top: var(--space-4);
}

.button-primary-modern {
    width: 100%;
    padding: var(--space-4);
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: var(--text-lg);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    box-shadow: var(--shadow-lg);
}

.button-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

/* Contact Info Column */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.info-card {
    display: flex;
    align-items: center;
    background: var(--color-white);
    padding: var(--space-5);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid transparent;
}

.info-card:hover {
    transform: translateX(5px);
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-4);
    font-size: 1.25rem;
    color: var(--color-primary);
    transition: var(--transition-base);
}

.info-card:hover .info-icon {
    background: var(--color-primary);
    color: var(--color-white);
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--color-heading);
}

.info-content p {
    font-size: 0.95rem;
    color: var(--color-text);
    margin: 0;
}

.info-content .highlight-text {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.info-content .sub-text {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.link-small {
    font-size: 0.85rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: 4px;
    display: inline-block;
}

.link-small:hover {
    text-decoration: underline;
}

/* Map Section */
.map-section {
    text-align: center;
    margin-bottom: var(--space-8);
}

.map-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-6);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.map-container-modern {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--color-white);
}

.map-container-modern iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Contact */
@media (max-width: 991px) {
    .contact-layout-container {
        grid-template-columns: 1fr;
    }

    .contact-hero h2 {
        font-size: 2.5rem;
    }
}

/* ========================================
   Refined About Page Styles (Viajalo/Apple Ref)
   ======================================== */

.mission-vision-section,
.why-different-section,
.experience-slider-section,
.about-story-section,
.about-cta {
    padding: 0 var(--space-8);
    /* Match Story indentation */
    margin-bottom: var(--space-12);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.mission-vision-section {
    /* specific overrides if needed */
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.mv-card {
    background: var(--color-white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: left;
    border-bottom: 4px solid var(--color-primary);
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
}

.mv-icon-bg {
    width: 80px;
    height: 80px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 var(--space-6) 0;
    color: var(--color-primary);
    font-size: 2rem;
}

.mv-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: var(--space-4);
    color: var(--color-heading);
}

.mv-card p {
    color: var(--color-text);
    line-height: 1.8;
}

/* Why We Are Different (Viajalo style) */
.difference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-8);
}

.diff-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: var(--space-6);
    background: var(--glass-bg);
    /* subtle background */
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
}

.diff-icon-circle {
    width: 60px;
    height: 60px;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: var(--space-4);
    transition: all 0.3s ease;
}

.diff-item:hover .diff-icon-circle {
    background: var(--color-primary);
    color: white;
}

.diff-item h4 {
    font-weight: 700;
    margin-bottom: var(--space-2);
    font-size: 1.25rem;
    color: var(--color-heading);
}

/* Experience Slider (Apple Travel Style) */
.experience-slider-section {
    position: relative;
    overflow: hidden;
}

.exp-slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    height: 450px;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
}

.exp-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.exp-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.exp-slide.active-slide {
    opacity: 1;
    z-index: 2;
}

.exp-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
}

.exp-content {
    position: absolute;
    bottom: var(--space-12);
    left: var(--space-12);
    right: 80px;
    /* Space for controls */
    color: white;
    z-index: 3;
    text-align: left;
}

.exp-tag {
    background: var(--color-primary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--space-3);
    display: inline-block;
    color: white;
    letter-spacing: 0.5px;
}

.exp-content h4 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: var(--space-2);
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    color: white;
    line-height: 1.2;
}

.exp-author {
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.9;
    color: var(--color-white);
    font-weight: 500;
}

.exp-controls {
    position: absolute;
    bottom: var(--space-12);
    right: var(--space-12);
    z-index: 4;
    display: flex;
    gap: var(--space-4);
}

.exp-prev,
.exp-next {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 1.2rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exp-prev:hover,
.exp-next:hover {
    background: white;
    color: var(--color-primary);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .difference-grid {
        grid-template-columns: 1fr;
    }

    .exp-content h4 {
        font-size: 1.6rem;
    }

    .exp-slider-container {
        height: 600px;
        /* Taller on mobile to fit content */
    }

    .exp-content {
        bottom: var(--space-8);
        left: var(--space-6);
        right: var(--space-6);
    }

    .exp-controls {
        bottom: var(--space-8);
        right: var(--space-6);
    }
}

/* =========================================================================
   MODERN PROMO CAROUSEL (React/Tailwind inspired)
   ========================================================================= */
.modern-carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
    /* Hide overflowing 3D transformed elements */
    margin: 40px 0;
}

.modern-carousel {
    position: relative;
    width: 100%;
    height: 480px;
    /* Fixed height for absolute children */
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.modern-promo-card {
    position: absolute;
    width: 320px;
    height: 480px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease, z-index 0.6s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    -webkit-box-reflect: below 5px linear-gradient(transparent, transparent, rgba(0, 0, 0, 0.15));
    /* Optional reflection for realism */
}

/* Let the card contents fill the space properly */
.modern-promo-card .img-container {
    height: 220px;
}

.modern-promo-card .card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.modern-promo-card .card-footer {
    margin-top: auto;
}

@media (max-width: 992px) {
    .modern-promo-card {
        width: 280px;
        height: 440px;
    }

    .modern-carousel {
        height: 440px;
    }
}

@media (max-width: 600px) {
    .modern-promo-card {
        width: 260px;
        height: 420px;
    }

    .modern-carousel {
        height: 420px;
    }

    .modern-carousel-wrapper {
        padding: 40px 0;
    }
}



.modern-promo-card .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    /* group-hover:scale-110 */
}

.modern-promo-card:hover .img-container img {
    transform: scale(1.1);
}

.modern-promo-card .top-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #a855f7;
    /* primary */
    color: #fff;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.modern-promo-card .top-badge.internacional {
    background: #e9d5ff;
    /* accent */
    color: #a855f7;
    /* primary */
}

.modern-promo-card .card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #fff;
    /* bg-card */
}

.modern-promo-card .location-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #71717a;
    /* text-muted-foreground */
    font-size: 0.875rem;
    /* text-sm */
    margin-bottom: 8px;
    /* mb-2 */
}

.modern-promo-card .location-row i {
    color: #e9d5ff;
    /* text-accent */
    font-size: 1rem;
    /* size 16 equivalent */
}

.modern-promo-card h3 {
    font-size: 1.25rem;
    /* text-xl */
    font-family: serif;
    /* font-serif */
    font-weight: 700;
    /* font-bold */
    color: #a855f7;
    /* text-primary */
    margin: 0 0 8px 0;
    /* mb-2 */
}

.modern-promo-card p {
    color: #71717a;
    /* text-muted-foreground */
    font-size: 0.875rem;
    /* text-sm */
    line-height: 1.625;
    /* leading-relaxed */
    margin-bottom: auto;
}

.modern-promo-card .card-footer {
    margin-top: 16px;
    /* mt-4 */
    padding-top: 16px;
    /* pt-4 */
    border-top: 1px solid #e4e4e7;
    /* border-t border-border */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modern-promo-card .price-block .label {
    display: block;
    font-size: 0.75rem;
    /* text-xs */
    color: #71717a;
    /* text-muted-foreground */
}

.modern-promo-card .price-block .price {
    font-size: 1.25rem;
    /* text-xl */
    font-weight: 700;
    /* font-bold */
    color: #a855f7;
    /* text-primary */
}

.modern-promo-card .btn-link {
    color: #a855f7;
    /* text-primary */
    font-weight: 500;
    /* font-medium */
    font-size: 0.875rem;
    /* text-sm */
    text-decoration: none;
    transition: color 0.2s;
}

.modern-promo-card .btn-link:hover {
    color: #e9d5ff;
    /* hover:text-accent */
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #a855f7;
    /* bg-primary */
    color: #fff;
    /* text-primary-foreground */
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.2s;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(168, 85, 247, 0.9);
    /* hover:bg-primary/90 */
}

.carousel-btn.prev {
    left: 0px;
}

.carousel-btn.next {
    right: 0px;
}

@media (max-width: 1250px) {
    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }
}