/* ===== Global Overflow Fix ===== */
html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

* {
    box-sizing: border-box;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: var(--z-sticky);
    padding: var(--spacing-2) 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(15, 25, 35, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-8);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
}

.navbar-logo {
    width: 45px;
    height: 45px;
}

.navbar-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--spacing-2);
}

.navbar-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition-normal);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: -1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-8);
    max-width: 750px;
    padding-top: var(--spacing-20);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    width: fit-content;
    padding: var(--spacing-2) var(--spacing-4);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 100ms;
}

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

.hero-title {
    font-size: var(--font-size-hero);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.1;
    color: var(--color-white);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 200ms;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    color: var(--color-gray-300);
    max-width: 550px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 300ms;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 400ms;
}

.hero-scroll {
    position: absolute;
    bottom: var(--spacing-10);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-2);
    color: var(--color-gray-400);
    font-size: var(--font-size-sm);
    animation: float 2s ease-in-out infinite;
}

.hero-scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    padding-top: var(--spacing-2);
}

.hero-scroll-icon::before {
    content: "";
    width: 4px;
    height: 10px;
    background: var(--color-secondary);
    border-radius: var(--radius-full);
    animation: pulse 2s ease-in-out infinite;
}

/* ===== Features/Services Grid ===== */
.features-section {
    position: relative;
    padding: var(--spacing-24) 0;
    background: linear-gradient(
        180deg,
        var(--color-primary) 0%,
        var(--color-primary-light) 100%
    );
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-10);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-2) var(--spacing-4);
    background: rgba(0, 181, 165, 0.15);
    border: 1px solid rgba(0, 181, 165, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-secondary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-4);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: var(--spacing-4);
}

.section-description {
    font-size: var(--font-size-lg);
    color: var(--color-gray-400);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-6);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-8);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: var(--glass-bg-hover);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-6);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    font-size: var(--font-size-3xl);
    color: var(--color-white);
    box-shadow: var(--shadow-glow);
    position: relative;
    transition: var(--transition-normal);
    animation: glassOrbFloat 4s ease-in-out infinite;
}

.feature-icon::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: var(--radius-xl);
    background: linear-gradient(
        135deg,
        rgba(0, 181, 165, 0.4),
        rgba(0, 102, 204, 0.4)
    );
    z-index: -1;
    opacity: 0;
    transition: var(--transition-normal);
    animation: glassOrbRotate 8s linear infinite;
}

.feature-icon::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 10px;
    width: 20px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    filter: blur(2px);
}

.feature-card:hover .feature-icon {
    transform: rotateY(15deg) rotateX(-10deg) scale(1.1);
    box-shadow:
        var(--shadow-xl),
        0 0 50px rgba(0, 181, 165, 0.5);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
    animation: glassOrbPulse 1.5s ease-in-out infinite;
}

@keyframes glassOrbFloat {
    0%,
    100% {
        transform: translateY(0) rotateZ(0deg);
    }
    50% {
        transform: translateY(-5px) rotateZ(2deg);
    }
}

@keyframes glassOrbRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes glassOrbPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

.feature-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: var(--spacing-3);
}

.feature-description {
    font-size: var(--font-size-base);
    color: var(--color-gray-400);
    line-height: var(--line-height-relaxed);
}

/* ===== Packages Section ===== */
.packages-section {
    padding: var(--spacing-24) 0;
    background: var(--color-primary);
    overflow: hidden;
}

.embla {
    overflow: hidden;
    margin: 0 calc(-1 * var(--spacing-6));
    padding: 0 var(--spacing-6);
}

.embla__container {
    display: flex;
    gap: var(--spacing-6);
    cursor: grab;
}

.embla__container:active {
    cursor: grabbing;
}

.embla__slide {
    flex: 0 0 calc(50% - var(--spacing-3));
    min-width: 0;
}

.package-card {
    position: relative;
    height: 420px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: var(--transition-normal);
}

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

.package-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.package-card:hover .package-image {
    transform: scale(1.05);
}

.package-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 30%,
        rgba(15, 25, 35, 0.95) 100%
    );
}

.package-content {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: var(--spacing-8);
}

.package-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-2) var(--spacing-4);
    background: rgba(212, 168, 83, 0.2);
    border: 1px solid rgba(212, 168, 83, 0.4);
    border-radius: var(--radius-full);
    color: var(--color-accent);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-4);
}

.package-destination {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: var(--spacing-2);
}

.package-route {
    font-size: var(--font-size-base);
    color: var(--color-gray-300);
    margin-bottom: var(--spacing-4);
}

.package-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-2);
    margin-bottom: var(--spacing-4);
}

.package-highlight {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-1);
    padding: var(--spacing-1) var(--spacing-3);
    background: var(--glass-bg);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    color: var(--color-white);
}

.package-highlight i {
    color: var(--color-secondary);
    font-size: var(--font-size-xs);
}

.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--spacing-4);
    border-top: 1px solid var(--glass-border);
}

.package-price {
    display: flex;
    flex-direction: column;
}

.package-price-label {
    font-size: var(--font-size-sm);
    color: var(--color-gray-400);
}

.package-price-value {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
}

/* ===== Floating Particles Animation ===== */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle linear infinite;
}

.particle-1 {
    width: 8px;
    height: 8px;
    background: var(--color-secondary);
    top: 20%;
    right: 10%;
    animation-duration: 15s;
    animation-delay: 0s;
}

.particle-2 {
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    top: 60%;
    right: 20%;
    animation-duration: 20s;
    animation-delay: 2s;
}

.particle-3 {
    width: 6px;
    height: 6px;
    background: var(--color-tertiary);
    top: 40%;
    right: 80%;
    animation-duration: 18s;
    animation-delay: 4s;
}

.particle-4 {
    width: 10px;
    height: 10px;
    background: var(--color-secondary);
    top: 80%;
    right: 50%;
    animation-duration: 22s;
    animation-delay: 1s;
}

.particle-5 {
    width: 5px;
    height: 5px;
    background: var(--color-accent);
    top: 10%;
    right: 60%;
    animation-duration: 17s;
    animation-delay: 3s;
}

.particle-6 {
    width: 14px;
    height: 14px;
    background: rgba(0, 181, 165, 0.3);
    top: 70%;
    right: 85%;
    animation-duration: 25s;
    animation-delay: 0s;
}

.particle-7 {
    width: 7px;
    height: 7px;
    background: rgba(212, 168, 83, 0.4);
    top: 30%;
    right: 35%;
    animation-duration: 19s;
    animation-delay: 5s;
}

.particle-8 {
    width: 9px;
    height: 9px;
    background: var(--color-tertiary);
    top: 50%;
    right: 70%;
    animation-duration: 21s;
    animation-delay: 2.5s;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-100px) translateX(50px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-200px) translateX(-30px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-100px) translateX(-60px) rotate(270deg);
        opacity: 0.7;
    }
    100% {
        transform: translateY(0) translateX(0) rotate(360deg);
        opacity: 0.6;
    }
}

/* Glowing orbs in background */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: pulseGlow 8s ease-in-out infinite;
}

.glow-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 181, 165, 0.15);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.glow-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(212, 168, 83, 0.1);
    bottom: -5%;
    left: -5%;
    animation-delay: 4s;
}

.glow-orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(0, 102, 204, 0.12);
    top: 50%;
    left: 30%;
    animation-delay: 2s;
}

@keyframes pulseGlow {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* ===== Landmarks Section - Professional Redesign ===== */
.landmarks-section {
    padding: var(--spacing-24) 0;
    background: linear-gradient(
        180deg,
        var(--color-primary) 0%,
        var(--color-primary-dark) 100%
    );
    position: relative;
    overflow: hidden;
}

.landmarks-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(0, 181, 165, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(212, 168, 83, 0.06) 0%,
            transparent 50%
        );
    pointer-events: none;
}

/* ===== 3D Landmarks Slider Section ===== */
.landmarks-section {
    padding: var(--spacing-24) 0;
    background: linear-gradient(
        180deg,
        var(--color-primary-light) 0%,
        var(--color-primary-dark) 100%
    );
    overflow: hidden;
}

.landmarks-3d-wrapper {
    width: 100%;
    max-width: 100vw;
    padding: var(--spacing-12) 0;
    perspective: 1500px;
    overflow: hidden;
}

.landmarksSwiper {
    width: 100%;
    max-width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
}

.landmark-3d-card {
    background-position: center;
    background-size: cover;
    width: 320px;
    height: 450px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    filter: blur(2px) grayscale(0.5);
    transition: all 0.5s ease;
}

.swiper-slide-active {
    filter: blur(0) grayscale(0);
}

.landmark-3d-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.landmark-3d-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: var(--spacing-8);
    opacity: 0;
    transition: all 0.5s ease 0.3s;
}

.swiper-slide-active .landmark-3d-overlay {
    opacity: 1;
}

.landmark-tag {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    color: var(--color-white);
    letter-spacing: 1px;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 24px;
    margin-bottom: var(--spacing-8);
    cursor: pointer;
    transition: var(--transition-normal);
}

.play-button:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.landmark-3d-name {
    font-size: calc(var(--font-size-2xl) * 1.3);
    font-weight: var(--font-weight-extrabold);
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: var(--spacing-6);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Swiper Navigation Customization */
.swiper-button-next,
.swiper-button-prev {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: var(--transition-normal);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

@media (max-width: 576px) {
    .landmark-3d-card {
        width: 260px;
        height: 400px;
    }
    .landmark-3d-name {
        font-size: var(--font-size-2xl);
    }
}

/* ===== About Section ===== */
.about-section {
    padding: var(--spacing-24) 0;
    background: var(--color-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-16);
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: var(--radius-2xl);
    width: 100%;
    height: auto;
}

.about-floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    padding: var(--spacing-6);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.about-stat {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
}

.about-stat-number {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-extrabold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat-text {
    font-size: var(--font-size-base);
    color: var(--color-gray-300);
}

.about-content {
    padding-right: var(--spacing-8);
}

.about-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: var(--spacing-6);
}

.about-description {
    font-size: var(--font-size-lg);
    color: var(--color-gray-400);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-8);
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
}

.about-list-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    font-size: var(--font-size-base);
    color: var(--color-white);
}

.about-list-item i {
    color: var(--color-secondary);
    font-size: var(--font-size-lg);
}

/* ===== CTA Section ===== */
.cta-section {
    padding: var(--spacing-20) 0;
    background: linear-gradient(
        135deg,
        var(--color-primary-light) 0%,
        var(--color-primary) 100%
    );
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(0, 181, 165, 0.15) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(212, 168, 83, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-8);
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 600px;
}

.cta-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: var(--spacing-4);
}

.cta-description {
    font-size: var(--font-size-lg);
    color: var(--color-gray-300);
}

.cta-actions {
    display: flex;
    gap: var(--spacing-4);
}

/* ===== Footer ===== */
.footer {
    padding: var(--spacing-16) 0 var(--spacing-8);
    background: var(--color-primary-dark);
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-10);
    padding-bottom: var(--spacing-12);
    border-bottom: 1px solid var(--glass-border);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
}

.footer-logo-text {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
}

.footer-description {
    font-size: var(--font-size-base);
    color: var(--color-gray-400);
    line-height: var(--line-height-relaxed);
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: var(--spacing-3);
}

.footer-social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    color: var(--color-white);
    font-size: var(--font-size-lg);
    transition: var(--transition-normal);
}

.footer-social-link:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: translateY(-3px);
}

.footer-column-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: var(--spacing-6);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
}

.footer-link {
    font-size: var(--font-size-base);
    color: var(--color-gray-400);
    transition: var(--transition-normal);
}

.footer-link:hover {
    color: var(--color-secondary);
    padding-right: var(--spacing-2);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-4);
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border-radius: var(--radius-md);
    color: var(--color-secondary);
    flex-shrink: 0;
}

.footer-contact-text {
    font-size: var(--font-size-base);
    color: var(--color-gray-400);
    line-height: var(--line-height-normal);
}

.footer-bottom {
    padding-top: var(--spacing-8);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
}

.footer-copyright a {
    color: var(--color-secondary);
}

.footer-legal {
    display: flex;
    gap: var(--spacing-6);
}

.footer-legal-link {
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
}

.footer-legal-link:hover {
    color: var(--color-secondary);
}

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

    .landmarks-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .landmarks-grid .landmark-card:first-child {
        grid-column: span 1;
        grid-row: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-8);
    }
}

@media (max-width: 992px) {
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(15, 25, 35, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: var(--spacing-4);
        padding: var(--spacing-8);
        transition: var(--transition-normal);
        border-left: 1px solid var(--glass-border);
    }

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

    .navbar-toggle {
        display: flex;
        z-index: calc(var(--z-sticky) + 1);
    }

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

    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .embla__slide {
        flex: 0 0 85%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-10);
    }

    .about-content {
        padding-right: 0;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr !important;
        flex-wrap: wrap;
    }

    .features-grid .feature-card {
    }

    .landmarks-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .embla__slide {
        flex: 0 0 95%;
    }

    .package-card {
        height: 480px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-4);
        text-align: center;
    }

    .hero-scroll {
        display: none;
    }

    .about-floating-card {
        left: -13px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

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

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
    }
}

/* =====================================================
   PACKAGES GRID (Replacing Slider)
   ===================================================== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-8);
    margin-top: var(--spacing-12);
}

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

/* =====================================================
   VERTICAL TIMELINE (Program Pages)
   ===================================================== */
.timeline-container {
    position: relative;
    padding: var(--spacing-10) 0;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 40px;
    width: 4px;
    background: rgba(255, 255, 255, 0.1); /* Background path */
    border-radius: var(--radius-full);
}

.timeline-line::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: var(--timeline-height, 0%); /* Controlled by JS */
    background: linear-gradient(
        180deg,
        var(--color-secondary) 0%,
        var(--color-tertiary) 100%
    );
    border-radius: var(--radius-full);
    transition: height 0.1s ease-out;
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-12);
    padding-right: 100px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.timeline-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-dot {
    position: absolute;
    right: 12px;
    top: 10px;
    width: 60px;
    height: 60px;
    background: var(--color-primary-dark);
    border: 4px solid var(--color-gray-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    color: var(--color-gray-500);
    font-weight: var(--font-weight-extrabold);
    font-size: var(--font-size-xl);
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform: scale(0.5);
    opacity: 0;
}

.timeline-item.is-visible .timeline-dot {
    transform: scale(1);
    opacity: 1;
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    box-shadow:
        var(--shadow-glow-sm),
        0 0 20px rgba(0, 181, 165, 0.3);
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.1);
    background: var(--color-secondary);
    color: var(--color-white);
    box-shadow: var(--shadow-glow);
}

.timeline-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-8);
    backdrop-filter: blur(15px);
    transition: var(--transition-normal);
    transform: translateX(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s;
}

.timeline-item.is-visible .timeline-content {
    transform: translateX(0);
    opacity: 1;
}

.timeline-content:hover {
    transform: translateX(-10px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: var(--color-secondary);
}

.timeline-day-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: var(--spacing-4);
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
}

.timeline-day-title i {
    color: var(--color-secondary);
}

.timeline-activities {
    list-style: none;
    padding: 0;
}

.timeline-activities li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-3);
    color: var(--color-gray-300);
    line-height: var(--line-height-relaxed);
}

.timeline-activities li i {
    color: var(--color-secondary);
    margin-top: 5px;
    font-size: 0.9rem;
}

/* =====================================================
   LANDMARKS SLIDER (Program Pages)
   ===================================================== */
.program-slider-section {
    padding: var(--spacing-16) 0;
    overflow: hidden;
}

.program-slider-container {
    padding: var(--spacing-4);
}

.program-slide-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--glass-border);
}

@media (max-width: 992px) {
    .timeline-line {
        right: 30px;
    }
    .timeline-item {
        padding-right: 70px;
    }
    .timeline-dot {
        right: 7px;
        width: 50px;
        height: 50px;
        font-size: var(--font-size-lg);
    }
}

/* =====================================================
   FEATURES SLIDER (Advantages Section)
   ===================================================== */
.features-slider-section {
    padding: var(--spacing-20) 0;
    background: linear-gradient(
        180deg,
        var(--color-primary-dark) 0%,
        var(--color-primary) 100%
    );
    position: relative;
    overflow: hidden;
}

.features-slider-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.feature-slide {
    display: flex;
    align-items: center;
    gap: var(--spacing-20);
    padding: var(--spacing-10) 0;
}

.feature-images {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-img-circle {
    position: absolute;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--glass-border);
    box-shadow: var(--shadow-2xl), var(--shadow-glow-sm);
    transition: var(--transition-slow);
}

.feature-img-main {
    width: 320px;
    height: 320px;
    z-index: 3;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.feature-img-second {
    width: 240px;
    height: 240px;
    z-index: 2;
    top: 20%;
    right: 150px;
    opacity: 0.8;
}

.feature-img-third {
    width: 200px;
    height: 200px;
    z-index: 1;
    bottom: 15%;
    right: 100px;
    opacity: 0.6;
}

.feature-info-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-12);
    position: relative;
}

.feature-info-column::before {
    content: "";
    position: absolute;
    right: 30px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.feature-step {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-6);
    position: relative;
    opacity: 0.5;
    transition: var(--transition-normal);
}

.feature-step.active {
    opacity: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-primary-dark);
    border: 3px solid var(--color-gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--color-gray-400);
    flex-shrink: 0;
    z-index: 2;
    transition: var(--transition-normal);
}

.feature-step.active .step-number {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    box-shadow: var(--shadow-glow-sm);
    background: var(--color-primary);
}

.step-content {
    padding-top: var(--spacing-3);
}

.step-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: var(--spacing-2);
}

.step-text {
    font-size: var(--font-size-base);
    color: var(--color-gray-400);
    line-height: var(--line-height-relaxed);
}

/* Swiper Pagination */
.swiper-pagination-features {
    position: relative !important;
    bottom: 0 !important;
    margin-top: var(--spacing-10);
}

.swiper-pagination-features .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--color-gray-600);
    opacity: 1;
    transition: var(--transition-normal);
}

.swiper-pagination-features .swiper-pagination-bullet-active {
    background: var(--color-secondary);
    width: 30px;
    border-radius: var(--radius-full);
}

@media (max-width: 992px) {
    .feature-slide {
        flex-direction: column;
        gap: var(--spacing-10);
        text-align: center;
    }

    .feature-images {
        height: 280px;
        width: 100%;
    }

    .feature-img-main {
        width: 200px;
        height: 200px;
        right: 50%;
        transform: translate(50%, -50%);
    }

    .feature-img-second,
    .feature-img-third {
        display: none;
    }

    .feature-info-column::before {
        display: none;
    }

    .feature-step {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-3);
        text-align: center;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-lg);
    }

    .step-content {
        padding-top: 0;
    }

    .step-title {
        font-size: var(--font-size-base);
    }

    .step-text {
        font-size: var(--font-size-sm);
    }
}

@media (max-width: 576px) {
    .feature-images {
        height: 200px;
    }

    .feature-img-main {
        width: 150px;
        height: 150px;
    }

    .feature-info-column {
        gap: var(--spacing-8);
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-base);
    }
}

/* ===== NEW Programs Section V2 - Sky Animation & Card Redesign ===== */

/* Sky Background Container */
.packages-section-v2 {
    padding: var(--spacing-24) 0;
    background: linear-gradient(180deg, #e8f4fc 0%, #d4e8f5 50%, #c9e0f0 100%);
    position: relative;
    overflow: hidden;
    min-height: 700px;
}

/* Realistic Animated Clouds */
.sky-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

/* Realistic Cloud Base */
.cloud {
    position: absolute;
    background: linear-gradient(180deg, #ffffff 0%, #f0f5fa 50%, #e5eef7 100%);
    border-radius: 200px;
    box-shadow:
        inset 0 -15px 30px rgba(200, 215, 235, 0.4),
        0 10px 40px rgba(100, 140, 180, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.05);
}

.cloud::before,
.cloud::after {
    content: "";
    position: absolute;
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 70%, #e8f0f8 100%);
    border-radius: 50%;
    box-shadow:
        inset 0 -10px 20px rgba(200, 215, 235, 0.3),
        0 5px 20px rgba(100, 140, 180, 0.1);
}

/* Cloud 1 - Large fluffy cloud */
.cloud-1 {
    width: 280px;
    height: 80px;
    top: 8%;
    animation: cloudFloatRealistic 50s linear infinite;
    animation-delay: 0s;
}

.cloud-1::before {
    width: 120px;
    height: 120px;
    top: -60px;
    left: 40px;
}

.cloud-1::after {
    width: 140px;
    height: 140px;
    top: -80px;
    right: 50px;
}

/* Cloud 2 - Medium distant cloud */
.cloud-2 {
    width: 200px;
    height: 60px;
    top: 22%;
    animation: cloudFloatRealistic 65s linear infinite;
    animation-delay: -20s;
    opacity: 0.7;
    transform: scale(0.85);
}

.cloud-2::before {
    width: 80px;
    height: 80px;
    top: -40px;
    left: 30px;
}

.cloud-2::after {
    width: 100px;
    height: 100px;
    top: -55px;
    right: 35px;
}

/* Cloud 3 - Large background cloud */
.cloud-3 {
    width: 320px;
    height: 90px;
    top: 4%;
    animation: cloudFloatRealistic 70s linear infinite;
    animation-delay: -35s;
    opacity: 0.85;
}

.cloud-3::before {
    width: 130px;
    height: 130px;
    top: -70px;
    left: 50px;
}

.cloud-3::after {
    width: 150px;
    height: 150px;
    top: -85px;
    right: 60px;
}

/* Cloud 4 - Small wispy cloud */
.cloud-4 {
    width: 220px;
    height: 65px;
    top: 30%;
    animation: cloudFloatRealistic 55s linear infinite;
    animation-delay: -45s;
    opacity: 0.6;
    transform: scale(0.75);
}

.cloud-4::before {
    width: 90px;
    height: 90px;
    top: -45px;
    left: 35px;
}

.cloud-4::after {
    width: 110px;
    height: 110px;
    top: -60px;
    right: 40px;
}

/* Cloud 5 - Extra wispy cloud for depth */
.cloud-5 {
    width: 180px;
    height: 50px;
    top: 15%;
    animation: cloudFloatRealistic 80s linear infinite;
    animation-delay: -10s;
    opacity: 0.5;
    transform: scale(0.6);
}

.cloud-5::before {
    width: 70px;
    height: 70px;
    top: -35px;
    left: 25px;
}

.cloud-5::after {
    width: 85px;
    height: 85px;
    top: -45px;
    right: 30px;
}

@keyframes cloudFloatRealistic {
    0% {
        transform: translateX(-400px) translateZ(0);
    }
    100% {
        transform: translateX(calc(100vw + 400px)) translateZ(0);
    }
}

/* ===== Large Realistic Airplane with Takeoff Animation ===== */
.airplane {
    position: absolute;
    z-index: 1;
    animation: airplaneTakeoff 20s ease-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

.airplane svg {
    width: 150px;
    height: 150px;
    fill: #ffffff;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    transform: rotate(-35deg);
}

/* Airplane Trail - Contrail effect */
.airplane-trail {
    position: absolute;
    top: 75%;
    left: 130px;
    width: 300px;
    height: 4px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.9),
        rgba(255, 255, 255, 0.5) 30%,
        transparent
    );
    border-radius: 4px;
    transform: rotate(-35deg);
    transform-origin: left center;
}

.airplane-trail::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 250px;
    height: 3px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.7),
        rgba(255, 255, 255, 0.3) 40%,
        transparent
    );
    border-radius: 3px;
}

/* Takeoff Animation - from bottom right, going up diagonally */
@keyframes airplaneTakeoff {
    0% {
        right: -200px;
        bottom: -50px;
        opacity: 0;
        transform: scale(0.5);
    }
    5% {
        opacity: 1;
        transform: scale(0.7);
    }
    15% {
        right: 10%;
        bottom: 15%;
        transform: scale(0.9);
    }
    30% {
        right: 25%;
        bottom: 35%;
        transform: scale(1);
    }
    50% {
        right: 45%;
        bottom: 55%;
        transform: scale(1);
    }
    70% {
        right: 65%;
        bottom: 70%;
        transform: scale(0.95);
    }
    85% {
        right: 85%;
        bottom: 80%;
        opacity: 1;
        transform: scale(0.85);
    }
    95% {
        opacity: 0.5;
        transform: scale(0.7);
    }
    100% {
        right: calc(100% + 200px);
        bottom: 90%;
        opacity: 0;
        transform: scale(0.6);
    }
}

/* Second smaller airplane in background for depth */
/* ===== 3D Realistic Airplane with Advanced Animation ===== */
.airplane-3d {
    position: absolute;
    z-index: 2;
    animation: airplane3dFlight 25s ease-in-out infinite;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.airplane-3d .airplane-img {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.4));
    animation: airplaneHover 3s ease-in-out infinite;
    transform: rotateY(-15deg) rotateX(5deg);
}

.airplane-shadow {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    width: 200px;
    height: 20px;
    background: radial-gradient(
        ellipse,
        rgba(0, 0, 0, 0.15) 0%,
        transparent 70%
    );
    animation: shadowMove 3s ease-in-out infinite;
}

@keyframes airplane3dFlight {
    0% {
        right: -350px;
        top: 60%;
        transform: rotate(-5deg);
    }
    30% {
        right: 20%;
        top: 10%;
        transform: rotate(-15deg);
    }
    50% {
        right: 40%;
        top: 5%;
        transform: rotate(-10deg);
    }
    70% {
        right: 60%;
        top: 15%;
        transform: rotate(-5deg);
    }
    100% {
        right: calc(100% + 350px);
        top: 30%;
        transform: rotate(0deg);
    }
}

@keyframes airplaneHover {
    0%,
    100% {
        transform: rotateY(-15deg) rotateX(5deg) translateY(0);
    }
    50% {
        transform: rotateY(-15deg) rotateX(5deg) translateY(-15px);
    }
}

@keyframes shadowMove {
    0%,
    100% {
        opacity: 0.4;
        transform: translateX(-50%) scale(0.8);
    }
    50% {
        opacity: 0.2;
        transform: translateX(-50%) scale(0.6);
    }
}

/* Smaller Background Airplane */
.airplane-3d.airplane-3d-small {
    z-index: 0;
    animation: airplane3dFlightSmall 35s linear infinite;
    animation-delay: -10s;
    opacity: 0.5;
}

.airplane-3d.airplane-3d-small .airplane-img {
    width: 120px;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.2));
    transform: scaleX(-1);
}

@keyframes airplane3dFlightSmall {
    0% {
        left: -200px;
        top: 25%;
    }
    100% {
        left: calc(100% + 200px);
        top: 15%;
    }
}

/* Programs Grid/Slider Container */
.programs-container-v2 {
    position: relative;
    z-index: 2;
}

.programs-grid-v2 {
    display: flex;
    gap: var(--spacing-8);
    justify-content: center;
    flex-wrap: wrap;
    padding: var(--spacing-8) 0;
}

/* New Program Card V2 - Apple Glass Style */
.program-card-v2 {
    position: relative;
    width: 300px;
    height: 420px;
    border-radius: 32px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.program-card-v2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 100%
    );
    border-radius: 32px 32px 0 0;
    pointer-events: none;
    z-index: 10;
}

.program-card-v2:hover {
    transform: translateY(-20px) rotateX(5deg) scale(1.03);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.25),
        0 15px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Card Background Image */
.program-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.program-card-v2:hover .program-card-bg {
    transform: scale(1.1);
}

/* Card Gradient Overlay */
.program-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(
        --card-gradient,
        linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%)
    );
    transition: opacity 0.4s ease;
}

/* Gradient Themes for Destinations */
.program-card-v2.theme-indonesia {
    --card-gradient: linear-gradient(
        180deg,
        rgba(45, 125, 83, 0.3) 0%,
        rgba(26, 92, 64, 0.85) 70%,
        rgba(20, 70, 50, 0.95) 100%
    );
}

.program-card-v2.theme-mauritius {
    --card-gradient: linear-gradient(
        180deg,
        rgba(107, 63, 160, 0.3) 0%,
        rgba(74, 29, 138, 0.85) 70%,
        rgba(58, 20, 110, 0.95) 100%
    );
}

.program-card-v2.theme-turkey {
    --card-gradient: linear-gradient(
        180deg,
        rgba(232, 123, 66, 0.3) 0%,
        rgba(199, 91, 42, 0.85) 70%,
        rgba(160, 70, 30, 0.95) 100%
    );
}

.program-card-v2.theme-dubai {
    --card-gradient: linear-gradient(
        180deg,
        rgba(92, 61, 153, 0.3) 0%,
        rgba(58, 32, 112, 0.85) 70%,
        rgba(45, 25, 90, 0.95) 100%
    );
}

.program-card-v2.theme-vietnam {
    --card-gradient: linear-gradient(
        180deg,
        rgba(46, 139, 87, 0.3) 0%,
        rgba(34, 100, 65, 0.85) 70%,
        rgba(25, 75, 50, 0.95) 100%
    );
}

/* Card Content */
.program-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-6);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
}

/* Card Title with Flag */
.program-card-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.program-card-flag {
    font-size: var(--font-size-xl);
}

/* Card Stats */
.program-card-stats {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
}

.program-card-stats i {
    font-size: var(--font-size-xs);
    opacity: 0.7;
}

/* Explore Button */
.program-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-3);
    padding: var(--spacing-3) var(--spacing-5);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-lg);
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
    margin-top: var(--spacing-2);
}

.program-card-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(-5px);
}

.program-card-btn i {
    font-size: var(--font-size-xs);
    transition: transform 0.3s ease;
}

.program-card-btn:hover i {
    transform: translateX(-5px);
}

/* Section Header for V2 */
.packages-section-v2 .section-header {
    position: relative;
    z-index: 2;
}

.packages-section-v2 .section-title {
    color: var(--color-primary-dark);
}

.packages-section-v2 .section-description {
    color: var(--color-gray-600);
}

.packages-section-v2 .section-badge {
    background: rgba(0, 181, 165, 0.2);
    border-color: rgba(0, 181, 165, 0.4);
    color: var(--color-primary-dark);
}

/* Responsive Design for V2 */
@media (max-width: 992px) {
    .programs-grid-v2 {
        gap: var(--spacing-5);
    }

    .program-card-v2 {
        width: 260px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .packages-section-v2 {
        padding: var(--spacing-16) 0;
    }

    .programs-grid-v2 {
        flex-direction: column;
        align-items: center;
    }

    .program-card-v2 {
        width: 90%;
        max-width: 320px;
        height: 400px;
    }

    .airplane svg {
        width: 50px;
        height: 50px;
    }

    .airplane-trail {
        display: none;
    }

    .cloud-1,
    .cloud-2,
    .cloud-3,
    .cloud-4 {
        transform: scale(0.5);
    }

    /* Landmarks Slider Responsive */
    .landmark-3d-card {
        width: 260px;
        height: 350px;
    }

    .landmarks-3d-wrapper {
        padding: var(--spacing-6) 0;
    }
}

@media (max-width: 576px) {
    .program-card-v2 {
        width: 95%;
        height: 380px;
    }

    .program-card-title {
        font-size: var(--font-size-xl);
    }

    /* Hide clouds on very small screens to prevent overflow */
    .cloud-3,
    .cloud-4 {
        display: none;
    }

    .landmark-3d-card {
        width: 220px;
        height: 300px;
    }

    .landmarksSwiper {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

/* =====================================================
   INCLUDES SECTION - SKY THEME
   ===================================================== */

.includes-section-sky {
    padding: var(--spacing-24) 0;
    background: linear-gradient(180deg, #e8f4fc 0%, #d4e8f5 50%, #c9e0f0 100%);
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.includes-container-sky {
    position: relative;
    z-index: 1;
}

.includes-grid-sky {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-6);
}

.include-card-sky {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-8);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.include-card-sky:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.include-icon-sky {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00b5a5 0%, #0097a7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-4);
    box-shadow: 0 8px 25px rgba(0, 181, 165, 0.3);
}

.include-icon-sky i {
    font-size: var(--font-size-2xl);
    color: white;
}

.include-title-sky {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: #1a5276;
    margin-bottom: var(--spacing-2);
}

.include-text-sky {
    font-size: var(--font-size-sm);
    color: #5d6d7e;
    margin: 0;
}

/* Responsive for sky includes */
@media (max-width: 992px) {
    .includes-grid-sky {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .include-card-sky {
        padding: var(--spacing-6);
    }

    .include-icon-sky {
        width: 60px;
        height: 60px;
    }

    .include-icon-sky i {
        font-size: var(--font-size-xl);
    }
}
