/* ================================================
   MODERN 3D INTERACTIVE TRAVEL WEBSITE
   ================================================ */

@import url('navigation.css');
@import url('footer.css');

/* ================================================
   GLOBAL STYLES & VARIABLES
   ================================================ */

:root {
    --primary: #2596be;
    --secondary: #fd9909;
    --dark: #333;
    --light: #f4f4f4;
    --white: #fff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ================================================
   HERO SECTION - 3D ENHANCED
   ================================================ */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    background: #000;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(37, 150, 190, 0.2) 50%,
            rgba(253, 153, 9, 0.15) 100%);
    z-index: 2;
    animation: overlayShift 10s ease-in-out infinite;
}

@keyframes overlayShift {

    0%,
    100% {
        background: linear-gradient(135deg,
                rgba(0, 0, 0, 0.3) 0%,
                rgba(37, 150, 190, 0.2) 50%,
                rgba(253, 153, 9, 0.15) 100%);
    }

    50% {
        background: linear-gradient(135deg,
                rgba(0, 0, 0, 0.25) 0%,
                rgba(37, 150, 190, 0.25) 50%,
                rgba(253, 153, 9, 0.18) 100%);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hero-inner {
    max-width: 800px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    animation: heroContentFadeIn 1s ease-out;
}

@keyframes heroContentFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HERO HEADING WITH GRADIENT */
.hero-heading {
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    background: linear-gradient(135deg,
            #ffffff 0%,
            #ffe4b5 25%,
            #ffffff 50%,
            #ffeb99 75%,
            #ffffff 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 6s ease infinite, slideInDown 0.8s ease-out;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HERO SUBHEADING */
.hero-subheading {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
    margin: 0;
    color: #e8e8e8;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HERO BUTTON */
.btn-hero {
    padding: 0.9rem 2.8rem;
    font-size: 1rem;
    margin-top: 0.5rem;
    animation: fadeInUp 1s ease-out 0.6s both, pulse 2s ease-in-out 2s infinite;
    width: auto;
    max-width: 280px;
    display: inline-block;
}

/* CTA BUTTON STYLING */
.btn-primary {
    background: linear-gradient(135deg, var(--secondary), #ff7f00);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(253, 153, 9, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(253, 153, 9, 0.5);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    position: relative;
    animation: mouseScroll 2s infinite;
}

.scroll-indicator span::after {
    content: '';
    display: block;
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    left: 50%;
    top: 6px;
    transform: translateX(-50%);
    animation: scrollDot 2s infinite;
}

@keyframes mouseScroll {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}

@keyframes scrollDot {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0;
    }
}

/* ================================================
   PACKAGES SECTION - PREMIUM DESIGN
   ================================================ */

.packages-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* SECTION HEADER */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    animation: fadeUp 0.8s ease-out;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 2px;
    transform: translateX(-50%);
    box-shadow: 0 2px 10px rgba(253, 153, 9, 0.3);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #888;
    font-weight: 300;
    margin-top: 1.5rem;
    letter-spacing: 0.3px;
}

/* PACKAGES GRID - RESPONSIVE */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* PACKAGE CARD - MODERN 3D EFFECT */
.package-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: cardFadeIn 0.6s ease-out forwards;
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.package-card:nth-child(1) {
    animation-delay: 0.1s;
}

.package-card:nth-child(2) {
    animation-delay: 0.2s;
}

.package-card:nth-child(3) {
    animation-delay: 0.3s;
}

.package-card:nth-child(4) {
    animation-delay: 0.4s;
}

.package-card:nth-child(5) {
    animation-delay: 0.5s;
}

.package-card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-card:hover {
    transform: translateY(-18px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary);
}

/* CARD IMAGE WRAPPER */
.card-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0e0e0, #f0f0f0);
}

.image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.slider-image[data-slide="0"] {
    opacity: 1;
}

.slider-nav {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-image-wrapper:hover .slider-nav {
    opacity: 1;
}

.slider-prev,
.slider-next {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card:hover .card-image {
    transform: scale(1.15) rotate(2deg);
}

/* CARD OVERLAY */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 150, 190, 0.3), rgba(253, 153, 9, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.package-card:hover .card-overlay {
    opacity: 1;
}

/* BADGE */
.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--secondary), #ff7f00);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(253, 153, 9, 0.4);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* CARD CONTENT */
.card-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-grow: 1;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    line-height: 1.4;
}

.card-location {
    color: #888;
    font-size: 0.95rem;
    font-weight: 500;
}

.card-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
}

/* CARD META */
.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin-top: 0.5rem;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary), #ff7f00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.duration-tag {
    background: rgba(37, 150, 190, 0.1);
    color: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* DETAILS BUTTON */
.btn-details {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #1e7a9e);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-details:hover {
    background: linear-gradient(135deg, var(--secondary), #ff7f00);
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(253, 153, 9, 0.3);
}

.btn-details:hover::before {
    left: 100%;
}

.no-packages {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 1.2rem;
    color: #999;
    padding: 3rem;
}

/* ================================================
   FEATURES SECTION
   ================================================ */

.features-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(37, 150, 190, 0.03), rgba(253, 153, 9, 0.02));
    position: relative;
    overflow: hidden;
}

/* BACKGROUND DECORATIONS */
.features-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(253, 153, 9, 0.08), transparent);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 0;
}

.features-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 150, 190, 0.08), transparent);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

/* FEATURE CARD */
.feature-card {
    background: var(--white);
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

/* FEATURE IMAGE PLACEHOLDER */
.feature-image-placeholder {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
    position: relative;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-img {
    transform: scale(1.08);
}

.feature-content {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ================================================
   GALLERY SECTION
   ================================================ */

.gallery-section {
    padding: 5rem 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 250px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(1.5deg);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 150, 190, 0.4), rgba(253, 153, 9, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

/* ================================================
   LIGHTBOX MODAL
   ================================================ */

.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.lightbox.show {
    display: flex;
}

.lightbox-content {
    max-width: 90vh;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    color: var(--secondary);
    transform: rotate(90deg);
}

/* ================================================
   ANIMATIONS
   ================================================ */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }

    .hero-heading {
        font-size: 2.2rem;
    }

    .hero-subheading {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-title::after {
        width: 60px;
    }

    .packages-section,
    .gallery-section,
    .features-section {
        padding: 3rem 0;
    }

    .packages-grid {
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-image-wrapper {
        height: 200px;
    }

    .gallery-item {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 70vh;
    }

    .hero-heading {
        font-size: 1.6rem;
    }

    .hero-subheading {
        font-size: 0.9rem;
    }

    .btn-hero {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .card-title {
        font-size: 1rem;
    }

    .gallery-item {
        height: 180px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .card-image-wrapper {
        height: 180px;
    }

    .slider-prev,
    .slider-next {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .feature-image-placeholder {
        height: 150px;
    }
}

/* Features Icons */
/* Features Section Icon Styling */
.feature-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 3rem;
    /* Adjust size as needed */
    color: #2596be;
    /* Your brand color */
    transition: transform 0.3s ease;
}

/* Optional hover effect */
.feature-card:hover .feature-icon i {
    transform: scale(1.05);
}

/* Ensure the feature card content uses flex for alignment */
.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centers content horizontally */
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* Adjust the feature-content to maintain proper width */
.feature-content {
    width: 100%;
}

.feature-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.feature-content p {
    color: #7f8c8d;
    line-height: 1.6;
}