/* Glassmorphism & Depth of Field Theme */
:root {
    --text-primary: #FDFBF7;
    /* Light beige/white */
    --text-secondary: rgba(253, 251, 247, 0.7);

    /* Glass Properties */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(20px);
    --glass-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);

    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    background-color: #05100B;
    /* Deep dark green fallback */
    overflow-x: hidden;
    min-height: 100vh;
}

/* Depth of Field Background */
.bg-blurred {
    position: fixed;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: url('assets/pahalgam_glamping.png');
    /* Deep green pine forest */
    background-size: cover;
    background-position: center;
    filter: blur(25px) brightness(0.4) saturate(1.2);
    /* Heavy blur, darkened for contrast */
    z-index: -1;
}

/* Pure CSS Fog Effect */
/* .fog-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
} */

/* .fog-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    filter: blur(40px);
    animation: floatFog 20s infinite alternate ease-in-out;
} */

.fog-bubble:nth-child(1) {
    width: 60vw;
    height: 60vh;
    top: -10vh;
    left: -10vw;
    animation-duration: 25s;
}

.fog-bubble:nth-child(2) {
    width: 70vw;
    height: 50vh;
    bottom: -10vh;
    right: -20vw;
    animation-duration: 30s;
    animation-delay: -5s;
}

.fog-bubble:nth-child(3) {
    width: 50vw;
    height: 50vh;
    top: 30vh;
    left: 20vw;
    animation-duration: 35s;
    animation-delay: -10s;
}

@keyframes floatFog {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(15vw, 10vh) scale(1.3);
    }
}

/* Typography */
.main-title {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 400px;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Glass Navbar */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* Layout */
.content-wrapper {
    /* position: relative;
    z-index: 10; */
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 48px 48px;
}

/* Lockup Section (Text Left, Images Right) */
.lockup-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    gap: 60px;
}

.lockup-left {
    flex: 1;
}

.lockup-right {
    flex: 1;
    display: flex;
    gap: 24px;
    justify-content: flex-end;
}

/* Subtle Buttons */
.subtle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 12px 24px;
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: all 0.3s ease;
}

.subtle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Glass Cards & Enhancements */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.6s ease, background 0.6s ease, box-shadow 0.6s ease;
}

.glass-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
}

/* Image Cards (01, 02) */
.image-card {
    width: 280px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Stagger the heights to look organic */
.image-card.staggered {
    margin-top: 60px;
}

.card-number {
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.img-wrapper {
    width: 100%;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0 8px 8px;
}

/* Fine-line Dividers */
.fine-line {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 80px 0;
}

/* Experiences Grid */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 300;
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-card {
    padding: 32px;
}

.card-icon {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
    margin-bottom: 24px;
    opacity: 0.8;
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.info-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Icons */
.icon-sm {
    width: 18px;
    height: 18px;
}

.icon-xs {
    width: 14px;
    height: 14px;
}

/* Footer */
.glass-footer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding-bottom: 40px;
}

/* --- New Sections CSS --- */

/* About Us */
.about-card {
    padding: 40px;
}

.about-section {
    padding: 80px 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    margin: 60px 0;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.about-img-card {
    width: 240px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    flex-shrink: 0;
}

.about-img-card.staggered {
    margin-top: 60px;
}

.about-card h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 20px;
}

/* Testimonials */
.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stars {
    color: #F4D089;
    /* Pale Saffron for stars */
    letter-spacing: 2px;
}

.author {
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Form */
.contact-form {
    padding: 40px;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 24px;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Glass-themed Date Picker (Pure Frozen Glass) */
.flatpickr-calendar {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(40px) !important;
    -webkit-backdrop-filter: blur(40px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6) !important;
    border-radius: 24px !important;
    color: #fff !important;
    padding: 15px !important;
    /* Increased padding to prevent cropping */
    width: 330px !important;
    overflow: visible !important;
    /* Prevent cropping of highlights */
}

.flatpickr-innerContainer,
.flatpickr-rContainer,
.flatpickr-days,
.dayContainer {
    background: transparent !important;
    overflow: visible !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #F4D089 !important;
    border-color: #F4D089 !important;
    color: #05100B !important;
    border-radius: 12px !important;
    box-shadow: 0 0 15px rgba(244, 208, 137, 0.5) !important;
    z-index: 2;
}

.flatpickr-day {
    color: #fff !important;
    border-radius: 10px !important;
    margin: 2px !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
}

.flatpickr-day:hover {
    background: rgba(255, 255, 255, 0.15) !important;
}

/* Fix month dropdown solid color & year text */
.flatpickr-monthDropdown-months {
    background: transparent !important;
    color: #fff !important;
    border: none !important;
    padding: 4px 8px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    appearance: none;
    /* Remove default arrow to style better */
}

.flatpickr-monthDropdown-month {
    background: rgba(10, 25, 18, 0.9) !important;
    /* Semi-transparent fallback for options */
    color: #fff !important;
}

.cur-year {
    color: #fff !important;
}

.flatpickr-current-month input.cur-year {
    color: inherit !important;
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month {
    background: transparent !important;
    color: #fff !important;
    fill: #fff !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: rgba(255, 255, 255, 0.1) !important;
    background: transparent !important;
}

.flatpickr-weekday {
    color: rgba(255, 255, 255, 0.5) !important;
    font-weight: 400 !important;
    background: transparent !important;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    fill: #fff !important;
    color: #fff !important;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
    border-bottom-color: #fff !important;
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
    border-top-color: #fff !important;
}

.form-group label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glass-input {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.glass-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.4);
}

.submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    cursor: pointer;
}

/* UI Enhancements */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 101;
}


/* Initial GSAP States */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* Responsive */
/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    flex-direction: column;
    /* Stacked vertically or side-by-side */
    gap: 16px;
    align-items: center;
    pointer-events: none;
    z-index: 1000;
}

.floating-btn {
    pointer-events: auto;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    box-shadow: var(--glass-shadow);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.scroll-top {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-btn {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.25);
    border-color: rgba(37, 211, 102, 0.5);
}

/* Carousel Animations */
.carousel-container {
    position: relative;
    min-height: 480px;
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}

.image-card {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    pointer-events: none;
    position: absolute;
    /* Allow overlapping during transition */
    right: 0;
}

.image-card.active-slot-1 {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    position: relative;
    right: auto;
}

.image-card.active-slot-2 {
    opacity: 1;
    transform: translateY(60px) scale(1);
    /* Restored staggered effect */
    pointer-events: auto;
    position: relative;
    right: auto;
}

.image-card.fade-out {
    opacity: 0;
    transform: translateY(0) scale(0.9);
    /* Pure fade/scale, no movement */
    position: absolute;
    right: 0;
}

/* Target the anchor tag to create the circle background */
.whatsapp-btn {
    width: 60px !important;
    height: 60px !important;
    background-color: #29a71a;
    /* WhatsApp Green */
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* Target the icon to fit perfectly inside that circle */
.whatsapp-btn .custom-icon {
    width: 50px !important;
    /* Adjust icon size here */
    height: 50px !important;
    object-fit: contain;
    /* Prevents the logo itself from stretching */
    border-radius: 0 !important;
    /* Reset this if previously set */
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Horizontal Testimonials */
.testimonials-section {
    overflow: hidden;
    padding: 100px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    /* width: 100%; */
    position: relative;
}

.testimonials-section .section-header {
    max-width: 1400px;
    margin: 0 auto 48px;
    padding: 0 48px;
}

.testimonials-wrapper {
    display: flex;
    gap: 30px;
    padding-left: calc((100vw - min(1400px, calc(100vw - 96px))) / 2 + 48px);
    padding-right: 48px;
    width: max-content;
}

.testimonial-card {
    flex: 0 0 350px;
    width: 350px;
    max-width: 85vw;
    /* Ensure card isn't wider than screen on mobile */
    min-height: 220px;
    /* Slightly taller for more lines */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px;
    text-align: left;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 20px 0;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Responsive */
@media (max-width: 1024px) {
    .lockup-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-section {
        flex-direction: column-reverse;
        padding: 40px 24px;
    }

    .lockup-right {
        width: 100%;
        justify-content: flex-start;
    }

    .image-card.staggered {
        margin-top: 0;
    }

    .glass-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 3.5rem;
    }

    .lockup-right {
        flex-direction: column;
        align-items: center;
    }

    .image-card {
        width: 100%;
        max-width: 350px;
    }

    .glass-grid {
        grid-template-columns: 1fr;
    }

    .glass-nav {
        padding: 24px;
    }

    .content-wrapper {
        padding: 100px 24px 24px;
    }

    .hamburger-menu {
        display: block;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(25px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 24px;
        gap: 24px;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .white-section {
        padding: 60px 24px;
        margin: 20px 0;
        border-radius: 20px;
    }

    .floating-actions {
        bottom: 24px;
        right: 24px;
        left: auto;
        align-items: flex-end;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
    }

    .about-section .lockup-left {
        padding-left: 0 !important;
        margin-top: 24px;
    }

    .about-section .lockup-right {
        margin-top: 40px;
    }
}