/* ============================================
   GLOBAL STYLES & VARIABLES
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --primary: #0053a7;
    /* Logo Blue */
    --primary-light: #0053a7;
    --secondary: #d4af37;
    /* Sri Lankan Gold */
    --accent: #f39c12;
    --dark: #091124;
    --light: #f8fafc;
    --text: #334155;
    --text-light: #64748b;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-dark: rgba(0, 0, 0, 0.4);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2.5rem;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

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

h1,
h2,
h3,
.logo {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
    position: relative;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    backdrop-filter: blur(15px);
    padding: 0.8rem 0;
    box-shadow: var(--shadow-lg);
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo span {
    display: inline-block;
}

@media (max-width: 500px) {
    .logo span {
        display: none;
    }
}

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--secondary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1000;
        gap: 2.5rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding: 0;
    background: url('https://res.cloudinary.com/dqobayu5s/image/upload/v1781633262/ChatGPT_Image_Jun_16_2026_11_35_05_PM_jslhpj.png') center/cover no-repeat;
    background-attachment: fixed;
    transition: background-image 0.8s ease-in-out;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 700px;
    animation: fadeInUp 1.2s ease-out;
    background: rgba(0, 0, 0, 0);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(2px);
    text-align: left;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    color: #ffffff;
}

.hero p {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    margin-bottom: 2.5rem;
    opacity: 1;
    line-height: 1.7;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-btns {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* Hero Gallery - Stacked Images */
.hero-gallery {
    flex: 0.9;
    position: relative;
    height: 500px;
    min-width: 300px;
    animation: fadeInScale 1.2s ease-out;
}

.gallery-img {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-img-1 {
    width: 280px;
    height: 320px;
    top: 0;
    right: 0;
    z-index: 3;
    filter: blur(0px);
    opacity: 1;
    transition: filter 0.6s ease, opacity 0.6s ease;
}

.gallery-img-2 {
    width: 240px;
    height: 280px;
    top: 120px;
    right: 120px;
    z-index: 2;
    filter: blur(4px);
    opacity: 0.75;
    transition: filter 0.6s ease, opacity 0.6s ease;
}

.gallery-img-3 {
    width: 220px;
    height: 260px;
    top: 180px;
    right: 220px;
    z-index: 1;
    filter: blur(6px);
    opacity: 0.6;
    transition: filter 0.6s ease, opacity 0.6s ease;
}

.gallery-img:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

/* Hero Background Image Gallery */
.hero-image-gallery {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    z-index: 10;
    align-items: center;
    justify-content: center;
}

.hero-image-thumb {
    width: 70px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

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

.hero-image-thumb:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.hero-image-thumb.active {
    border-color: var(--secondary);
    opacity: 1;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    transform: scale(1.1);
}

/* Responsive Design for Hero */
@media (max-width: 1024px) {
    .hero-container {
        padding: 0 2rem;
        gap: 2rem;
    }

    .hero-gallery {
        height: 400px;
        min-width: 250px;
    }

    .gallery-img-1 {
        width: 220px;
        height: 260px;
        filter: blur(0px);
        opacity: 1;
    }

    .gallery-img-2 {
        width: 190px;
        height: 220px;
        top: 80px;
        right: 90px;
        filter: blur(4px);
        opacity: 0.75;
    }

    .gallery-img-3 {
        width: 170px;
        height: 200px;
        top: 120px;
        right: 160px;
        filter: blur(6px);
        opacity: 0.6;
    }
}

@media (max-width: 768px) {
    .hero {
        justify-content: flex-end;
        text-align: center;
        display: flex;
        flex-direction: column;
        padding-bottom: 2rem;
    }

    .hero-container {
        flex-direction: column;
        padding: 6rem 1.5rem 2rem 1.5rem;
        gap: 1.5rem;
        justify-content: center;
        flex: 1;
    }

    .hero-content {
        max-width: 100%;
        padding: 0;
        background: transparent;
        backdrop-filter: none;
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
        line-height: 1.2;
        margin-bottom: 1.2rem;
    }

    .hero p {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .hero-gallery {
        display: none;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
        padding: 0.75rem 1.8rem;
        font-size: 0.85rem;
    }

    .hero-image-gallery {
        position: static;
        transform: none;
        display: flex;
        flex-direction: row;
        gap: 0.6rem;
        justify-content: center;
        align-items: center;
        width: 100%;
        overflow-x: auto;
        padding: 2rem 0.5rem 0 0.5rem;
        margin-top: 1.5rem;
        scroll-behavior: smooth;
    }

    .hero-image-gallery::-webkit-scrollbar {
        height: 5px;
    }

    .hero-image-gallery::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }

    .hero-image-gallery::-webkit-scrollbar-thumb {
        background: rgba(212, 175, 55, 0.6);
        border-radius: 10px;
    }

    .hero-image-thumb {
        width: 90px;
        height: 80px;
        border-radius: 10px;
        flex-shrink: 0;
        border: 3px solid transparent;
        cursor: pointer;
        transition: all 0.3s ease;
        overflow: hidden;
    }

    .hero-image-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-image-thumb:hover {
        opacity: 0.9;
        transform: scale(1.05);
    }

    .hero-image-thumb.active {
        transform: scale(1.12);
        border-color: var(--secondary);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    padding: 0.9rem 2.2rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, #c9a227 100%);
    color: var(--dark);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    font-weight: 700;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e8c547 0%, var(--secondary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid var(--secondary);
    font-weight: 700;
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--dark);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

/* ============================================
   PACKAGES SECTION
   ============================================ */

.packages {
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 0.8rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    justify-content: center;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

/* --- Package Image Slider --- */
.package-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.card-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.card-slide.active {
    opacity: 1;
}

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

.package-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--secondary);
    color: var(--dark);
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
}

.package-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-body h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.package-location {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.package-details {
    margin-bottom: 2rem;
}

.package-detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text);
    font-size: 0.95rem;
}

.package-detail-item i {
    color: var(--secondary);
    width: 20px;
}

.package-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-duration {
    font-weight: 700;
    color: var(--primary);
}

.package-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.package-card.selected-card {
    border: 2px solid var(--secondary);
    transform: translateY(-10px) scale(1.02);
}

/* ============================================
   JOURNEY SUMMARY (FLOATING)
   ============================================ */

.journey-summary-floating {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 900;
    width: 350px;
    transform: translateY(150%);
    transition: var(--transition);
}

.journey-summary-floating.active {
    transform: translateY(0);
}

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

.summary-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    background: #f8fafc;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-img-container {
    position: relative;
}

.about-img-main {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.about-img-sub {
    position: absolute;
    bottom: -3rem;
    right: -3rem;
    width: 60%;
    border-radius: var(--radius-lg);
    border: 10px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.8rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.feature-info h4 {
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.feature-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
    background: #050a18; /* Deep Midnight Blue */
    color: var(--white);
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    position: relative;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--secondary);
    opacity: 0.3;
}

.testimonial-content {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.2rem;
}

.author-info span {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 6rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: #94a3b8;
    margin-bottom: 2rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-5px);
}

.footer-title {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1.2rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 8px;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #94a3b8;
}

.contact-item i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 3rem;
    text-align: center;
    color: #64748b;
    font-size: 0.95rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

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

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

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


    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-img-sub {
        display: none;
    }
}

@media (max-width: 480px) {
    .journey-summary-floating {
        bottom: 0;
        right: 0;
        width: 100%;
        border-radius: 20px 20px 0 0;
        padding: 1.2rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
        width: 85%;
    }
}

/* ============================================
   MODAL STYLES
   ============================================ */

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

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 900px;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: modalFadeIn 0.4s ease-out;
    overflow: hidden;
}

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

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--white);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    background: rgba(0,0,0,0.2);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.close-modal:hover {
    background: var(--secondary);
    color: var(--dark);
}

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

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

.modal-image-area {
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.modal-info-area {
    padding: 3rem;
}

.modal-info-area h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.modal-section {
    margin-bottom: 2rem;
}

.modal-section h4 {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.modal-list {
    list-style: none;
    padding: 0;
}

.modal-list li {
    margin-bottom: 0.5rem;
    display: flex;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text);
}

.modal-list li i {
    color: var(--secondary);
    margin-top: 4px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.8rem;
}

.gallery-item {
    position: relative;
    height: 180px;
    overflow: hidden;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    transform: translateY(10px);
    transition: var(--transition);
    text-align: center;
    padding: 0 0.5rem;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* ============================================
   LIGHTBOX STYLES
   ============================================ */

.lightbox {
    display: none;
    position: fixed;
    z-index: 4000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 85%;
    max-height: 80vh;
    border-radius: var(--radius-md);
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    animation: zoom 0.3s ease-out;
}

@keyframes zoom {
    from {transform:scale(0.8); opacity: 0;}
    to {transform:scale(1); opacity: 1;}
}

#lightboxCaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--white);
    padding: 20px 0;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 4001;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: var(--secondary);
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 700px){
    .lightbox-content {
        width: 100%;
    }
}

/* ============================================
   SOCIAL & WHATSAPP BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF !important;
    border-radius: 50px;
    text-align: center;
    padding: 12px 24px;
    box-shadow: 2px 2px 20px rgba(0,0,0,0.3);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.05) translateY(-5px);
    color: white !important;
}

.whatsapp-float i {
    font-size: 24px;
}

.contact-socials {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
}

.contact-socials a {
    width: 50px;
    height: 50px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary) !important;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    text-decoration: none;
}

.contact-socials a:hover {
    background: var(--primary);
    color: var(--white) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* ============================================
   CUSTOM TRIP BUILDER MODAL STYLES
   ============================================ */

.custom-builder-body {
    padding: 3rem;
}

@media (max-width: 576px) {
    .custom-builder-body {
        padding: 1.5rem;
    }
}

.choice-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}

.chip {
    padding: 0.6rem 1.2rem;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 2rem;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    user-select: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
}

.chip:hover {
    background: #e2e8f0;
    border-color: #94a3b8;
}

.chip.selected {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.chip.selected i {
    color: var(--secondary);
}

.radio-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
}

@media (max-width: 576px) {
    .radio-cards {
        grid-template-columns: 1fr;
    }
}

.radio-card {
    padding: 1.2rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    background: var(--white);
}

.radio-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.radio-card.selected {
    border-color: var(--secondary);
    background: rgba(212, 175, 55, 0.05);
}

.radio-card i {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 0.6rem;
    display: block;
    transition: var(--transition);
}

.radio-card.selected i {
    color: var(--secondary);
    transform: scale(1.1);
}

.radio-card h4 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.radio-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 0;
}

/* ============================================
   TOAST NOTIFICATION SYSTEM
   ============================================ */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.toast {
    background: #0f172a;
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
    font-size: 0.95rem;
    border-left: 4px solid var(--secondary);
    pointer-events: auto;
    min-width: 300px;
    max-width: 450px;
}

.toast-success {
    border-left-color: var(--secondary);
}

.toast-error {
    background: #ef4444;
    border-left-color: #fca5a5;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

/* ============================================
   AD BANNER STYLES
   ============================================ */

.ad-banner {
    position: relative;
    margin-bottom: 3rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: slideDown 0.5s ease-out;
}

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

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

.ad-banner-img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: var(--transition);
}

.ad-banner-img:hover {
    transform: scale(1.02);
}

.ad-banner-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    color: var(--white);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    z-index: 10;
    opacity: 0.5;
}

.ad-banner:hover .ad-banner-close {
    opacity: 1;
    background: rgba(0, 0, 0, 0.6);
}

.ad-banner-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.15) rotate(90deg);
}

.ad-banner.hidden {
    display: none;
}

/* ============================================
   AD MODAL STYLES
   ============================================ */

.ad-modal {
    display: none;
    position: fixed;
    z-index: 3500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    animation: fadeIn 0.3s ease-out;
}

.ad-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ad-modal-content {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    position: relative;
    max-width: 900px;
    width: 90%;
    animation: zoomIn 0.3s ease-out;
    box-shadow: var(--shadow-xl);
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ad-modal-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    display: block;
}

.ad-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.ad-modal-close:hover {
    background: var(--secondary);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .ad-modal-content {
        width: 95%;
        padding: 1.5rem;
    }

    .ad-modal-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .ad-banner {
        margin-bottom: 2rem;
    }

    .ad-banner-close {
        display: none;
    }

    /* Hide desktop banner on mobile */
    .ad-banner-desktop {
        display: none !important;
    }

    /* Show mobile banner on mobile */
    .ad-banner-mobile {
        display: block !important;
    }
}

/* Hide mobile banner on desktop */
@media (min-width: 769px) {
    .ad-banner-mobile {
        display: none !important;
    }

    /* Show desktop banner on desktop */
    .ad-banner-desktop {
        display: block !important;
    }
}