/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --coral: #FF6B6B;
    --coral-light: #FF8787;
    --coral-dark: #EE5A52;
    --teal: #4ECDC4;
    --teal-light: #7EDDD8;
    --dark: #1A1A2E;
    --gray: #6C757D;
    --light-gray: #F8F9FA;
    --white: #FFFFFF;

    --gradient-coral: linear-gradient(135deg, #FF6B6B 0%, #FF8787 100%);
    --gradient-teal: linear-gradient(135deg, #4ECDC4 0%, #7EDDD8 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 100%);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    background-color: #0F0F1E !important;
    /* Match footer color */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: #0F0F1E !important;
    /* Dark background matches footer */
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
    /* Allow body to grow with content */
    display: flex;
    flex-direction: column;
    overscroll-behavior-y: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    background-color: var(--white);
    /* Ensure sections are white */
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text {
    color: var(--dark);
}

.logo-highlight {
    background: var(--gradient-coral);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
}

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

.nav-links a:hover {
    color: var(--coral);
}

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

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

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 50px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FFF5F5 0%, #F0FDFA 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--coral);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--teal);
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--coral-light);
    bottom: 20%;
    left: 15%;
    animation-delay: 10s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: var(--teal-light);
    top: 30%;
    right: 20%;
    animation-delay: 15s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 1s ease-out both;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

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

.hero-subtitle {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-coral);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-secondary:hover {
    background: var(--dark);
    color: var(--white);
}

.btn svg {
    position: relative;
    z-index: 1;
}

.btn span {
    position: relative;
    z-index: 1;
}

.hero-image {
    position: relative;
    height: 600px;
}

.image-card {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-slow);
    cursor: pointer;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.card-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
    box-shadow: var(--shadow-md);
}

.card-1 {
    width: 280px;
    height: 400px;
    top: 0;
    left: 0;
    animation: cardFloat1 6s ease-in-out infinite;
}

.card-2 {
    width: 240px;
    height: 320px;
    top: 50px;
    right: 100px;
    animation: cardFloat2 6s ease-in-out infinite;
    animation-delay: 1s;
}

.card-3 {
    width: 200px;
    height: 280px;
    bottom: 0;
    right: 0;
    animation: cardFloat3 6s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes cardFloat1 {

    0%,
    100% {
        transform: translateY(0px) rotate(-2deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes cardFloat2 {

    0%,
    100% {
        transform: translateY(0px) rotate(3deg);
    }

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

@keyframes cardFloat3 {

    0%,
    100% {
        transform: translateY(0px) rotate(-3deg);
    }

    50% {
        transform: translateY(-25px) rotate(1deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeIn 2s ease-out 1s both;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--dark);
    border-radius: 13px;
    position: relative;
    margin: 0 auto 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--dark);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

.scroll-indicator p {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    border: 2px solid #F0F0F0;
    transition: var(--transition-slow);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: var(--delay);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--coral);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-coral);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--white);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.8;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px;
    background: var(--gradient-dark);
    border-radius: 32px;
    opacity: 0;
    transform: translateY(30px);
}

.stats-row.visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 900;
    background: var(--gradient-coral);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    background: linear-gradient(135deg, #FFF5F5 0%, #F0FDFA 100%);
}

.steps-container {
    display: grid;
    gap: 60px;
}

.step-item {
    display: grid;
    grid-template-columns: 100px 1fr 1fr;
    gap: 40px;
    align-items: center;
    opacity: 0;
    transform: translateX(-30px);
}

.step-item.visible {
    animation: slideInRight 0.8s ease-out forwards;
    animation-delay: var(--delay);
}

.step-item:nth-child(even) {
    grid-template-columns: 1fr 1fr 100px;
}

.step-item:nth-child(even) .step-content {
    order: -1;
}

.step-item:nth-child(even) .step-visual {
    order: -2;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 900;
    background: var(--gradient-coral);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
}

.step-visual {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.step-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.step-item:hover .step-visual img {
    transform: scale(1.05);
}

.step-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
}

/* ===== BOOKING SECTION ===== */
.booking {
    background: var(--white);
}

/* ===== PRICING SECTION ===== */
.pricing {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--white);
    padding: 48px 40px;
    border-radius: 32px;
    border: 2px solid #F0F0F0;
    transition: var(--transition-slow);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.pricing-card.visible {
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: var(--delay);
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--coral);
}

.pricing-card.featured {
    background: var(--gradient-dark);
    color: var(--white);
    border-color: transparent;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
}

.popular-badge {
    position: absolute;
    top: -16px;
    right: 40px;
    background: var(--gradient-coral);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    margin-bottom: 24px;
    transition: var(--transition);
}

.pricing-card.featured .pricing-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.pricing-card:hover .pricing-icon {
    transform: scale(1.1) rotate(5deg);
}

.pricing-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-duration {
    color: var(--gray);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card.featured .pricing-duration {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid #F0F0F0;
}

.pricing-card.featured .pricing-price {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--coral);
    margin-right: 4px;
}

.pricing-card.featured .currency {
    color: var(--coral-light);
}

.amount {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
}

.per-person {
    font-size: 16px;
    color: var(--gray);
    margin-left: 8px;
}

.pricing-card.featured .per-person {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.6;
}

.pricing-features svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--coral);
}

.pricing-card.featured .pricing-features svg {
    color: var(--teal-light);
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-note {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(78, 205, 196, 0.05) 100%);
    border-radius: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.pricing-note.visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

.pricing-note p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
}

.pricing-note strong {
    color: var(--dark);
}

/* ===== BOOKING SECTION ===== */

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.booking-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 24px;
}

.booking-info>p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.booking-feature svg {
    color: var(--coral);
    flex-shrink: 0;
}

.booking-feature span {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
}

.booking-form {
    background: var(--white);
    padding: 48px;
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
    border: 2px solid #F0F0F0;
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 8px;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--dark);
    transition: var(--transition);
    background: var(--white);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 100%);
    color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 24px;
}

.contact-info>p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.method-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
}

.contact-method h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-method p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--coral);
    transform: translateY(-4px);
}

.contact-image {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.contact-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* ===== FOOTER ===== */
.footer {
    background: #0F0F1E;
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: auto;
    /* Push footer to bottom */
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    line-height: 1.8;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--coral);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 48px;
    border-radius: 32px;
    max-width: 500px;
    text-align: center;
    animation: scaleIn 0.4s ease-out;
}

.modal-icon {
    margin-bottom: 24px;
}

.modal-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.modal-content p {
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.8;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
}

.animate-on-scroll.visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-image {
        height: 400px;
    }

    .hero-title {
        font-size: 56px;
    }

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

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-12px);
    }

    .step-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-item:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .step-item:nth-child(even) .step-content,
    .step-item:nth-child(even) .step-visual {
        order: unset;
    }

    .step-number {
        text-align: center;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 60px;
        /* Match reduced header height */
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: white;
        padding: 40px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        gap: 20px;
        align-items: center;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
        /* Show when active */
    }

    .nav-container {
        padding: 10px 20px;
        /* Reduced padding from 20px 40px */
        height: 60px;
        /* Fixed height for consistency */
    }

    .logo {
        font-size: 24px;
        /* Slightly smaller logo */
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 100vh;
        height: 100vh;
        /* Force 100vh */
        padding-top: 60px;
        align-items: flex-start;
        overflow: hidden;
        /* Ensure no scroll */
    }

    .hero-content {
        gap: 2vh;
        /* Use vh for gap */
        padding: 0 24px;
        margin-top: 2vh;
        height: calc(100% - 60px);
        /* Fill remaining space */
        grid-template-rows: min-content min-content min-content 1fr;
        /* Structure for content */
        display: flex;
        flex-direction: column;
    }

    .hero-title {
        font-size: clamp(28px, 5vh, 42px);
        /* Dynamic font size */
        margin-top: 2vh;
        margin-bottom: 1vh;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: clamp(13px, 2vh, 15px);
        margin-bottom: 2vh;
        max-width: 100%;
    }

    .hero-buttons {
        display: flex;
        flex-wrap: nowrap;
        /* Force single row */
        gap: 10px;
        width: 100%;
        justify-content: flex-start;
        /* Align left */
        margin-bottom: 1.5vh;
        /* Add margin to separate from trust line */
    }

    .btn {
        padding: 12px 16px;
        /* Reduce padding to fit */
        font-size: 14px;
        white-space: nowrap;
        /* Prevent text wrap inside button */
        flex: 1;
        /* Distribute space */
        justify-content: center;
        max-width: fit-content;
        /* Don't stretch too much if aligned left */
    }

    /* Trust Line Adjustments for Mobile */
    .trust-line {
        display: flex;
        margin-bottom: 1vh;
        justify-content: flex-start;
        /* Align left */
        width: 100%;
        gap: 8px;
        /* Reduce gap */
    }

    .trust-item {
        font-size: 11px !important;
        /* Force smaller font */
    }

    .trust-item svg {
        width: 14px !important;
        height: 14px !important;
    }

    .trust-item.price {
        font-size: 12px !important;
    }

    /* Hide Social Proof on Mobile */
    .social-proof {
        display: none !important;
    }

    .hero-image {
        height: 40vh;
        /* Use vh for images area */
        margin-top: 2vh;
        width: 100%;
        flex-grow: 1;
    }

    /* Adjust Cards relative to vh */
    .card-3 {
        display: none;
    }

    .card-1 {
        width: 31vh;
        /* Scale with height */
        height: 43vh;
        /* Scale with height */
        max-width: 200px;
        /* Cap at user's prev size */
        max-height: 280px;
        left: 50%;
        margin-left: -40vw;
        /* Position relative to screen width */
        top: 0;
    }

    .card-2 {
        width: 27vh;
        height: 37.8vh;
        max-width: 180px;
        max-height: 250px;
        right: 50%;
        margin-right: -40vw;
        top: 5vh;
    }

    .scroll-indicator {
        display: block;
        bottom: 10px;
        /* Tighten to bottom */
    }

    .stats-row {
        padding: 40px 20px;
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Typography Adjustments */
    .section-title {
        font-size: 28px;
        /* Reduced from 36px */
    }

    .section-subtitle {
        font-size: 15px;
        /* Reduced from 18px */
    }

    .booking-info h2,
    .contact-info h2 {
        font-size: 30px;
        /* Reduced from 48px */
    }

    .step-content h3 {
        font-size: 24px;
        /* Reduced from 32px */
    }

    /* About Section Mobile Optimization */
    .features-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 20px;
        /* Space for scrollbar */
        margin-bottom: 40px;
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll on iOS */
        scroll-snap-type: x mandatory;
    }

    .feature-card {
        min-width: 240px;
        /* Ensure readability */
        padding: 24px;
        scroll-snap-align: center;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }

    .feature-icon svg {
        width: 32px;
        height: 32px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    /* Stats Row Mobile Optimization */
    .stats-row {
        grid-template-columns: repeat(4, 1fr);
        /* Force 4 columns */
        padding: 20px 10px;
        gap: 8px;
    }

    .stat-number {
        font-size: 20px;
        /* Reduced size */
    }

    .stat-label {
        font-size: 8px;
        /* Tiny label to fit */
        letter-spacing: 0;
        white-space: nowrap;
        /* Prevent wrapping if possible, or allow tight wrap */
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Pricing Section Mobile Optimization */
    .pricing-grid {
        display: flex;
        /* Horizontal layout */
        overflow-x: auto;
        gap: 16px;
        padding-top: 30px;
        /* Add space for badge */
        padding-bottom: 24px;
        margin-bottom: 40px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        grid-template-columns: unset;
        /* Remove grid columns */
    }

    .pricing-card {
        min-width: 250px;
        /* Reduced width */
        padding: 24px 16px;
        /* Reduced padding */
        scroll-snap-align: center;
        margin-top: 0;
    }

    .pricing-card h3 {
        font-size: 18px;
        /* Smaller title */
        margin-bottom: 8px;
    }

    .pricing-card .price .amount {
        font-size: 32px;
        /* Smaller price */
    }

    .pricing-card .price .period {
        font-size: 14px;
    }

    .pricing-features li {
        font-size: 13px;
        /* Smaller list text */
        margin-bottom: 8px;
    }

    .pricing-icon {
        width: 48px;
        /* Smaller icon */
        height: 48px;
        margin-bottom: 16px;
    }

    .pricing-icon svg {
        width: 24px;
        height: 24px;
    }

    .pricing-card:first-child {
        margin-left: 10px;
    }

    .pricing-card.featured {
        transform: scale(1);
        border: 2px solid var(--coral);
    }

    .pricing-card.featured:hover {
        transform: scale(1);
    }
}

/* Time Slots Styling */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 10px;
    max-height: 200px;
    overflow-y: auto;
    padding: 2px;
}

.time-slot {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.time-slot:hover {
    border-color: var(--primary);
    background: #f0fdfc;
    /* Light teal tint */
}

.time-slot.selected {
    background: var(--teal);
    color: white;
    border-color: var(--teal);
    box-shadow: 0 4px 10px rgba(78, 205, 196, 0.3);
}

.time-slot.disabled {
    background: #f5f5f5;
    color: #ccc;
    cursor: not-allowed;
    border-color: #eee;
}

.flatpickr-calendar {
    font-family: 'Poppins', sans-serif;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: none;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
    background: var(--teal);
    border-color: var(--teal);
}

.flatpickr-input {
    background-color: white !important;
    cursor: pointer !important;
}

.loading-slots {
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px;
    color: #888;
    font-style: italic;
}

.error-message {
    color: var(--coral);
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 1.2em;
}

/* Custom Scrollbar for slots */
.time-slots-grid::-webkit-scrollbar {
    width: 6px;
}

.time-slots-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.time-slots-grid::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.time-slots-grid::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}


.social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    font-size: 14px;
    color: #6B7280;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #FBBF24;
}

.rating-stars svg {
    width: 16px;
    height: 16px;
}

.rating-text {
    margin-left: 6px;
    font-weight: 600;
    color: #374151;
}

.dot-divider {
    color: #D1D5DB;
    margin: 0 4px;
}

.travelers-count {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6B7280;
}

.travelers-count svg {
    width: 18px;
    height: 18px;
    color: #9CA3AF;
}

.trust-line {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    font-size: 16px;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.trust-item.price {
    color: #FF6B6B;
    font-size: 20px;
}

.trust-item.price svg {
    color: #FF6B6B;
    width: 22px;
    height: 22px;
}

.trust-item.guarantee {
    color: #4ECDC4;
    font-size: 15px;
}

.trust-item.guarantee svg {
    color: #4ECDC4;
    width: 20px;
    height: 20px;
}

.divider {
    color: #D1D5DB;
    font-weight: 300;
    font-size: 20px;
}

/* ===== GUIDES SECTION ===== */
.guides {
    background: linear-gradient(135deg, #FFF5F5 0%, #F0FDFA 100%);
    position: relative;
    overflow: hidden;
}

.guides-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.guide-card {
    background: var(--white);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 32px;
    opacity: 0;
    transform: translateY(20px);
}

.guide-card.visible {
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: var(--delay);
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.guide-image-wrapper {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    position: relative;
}

.guide-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.guide-content {
    flex-grow: 1;
}

.guide-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 12px;
}

.guide-info-primary h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.guide-uni {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--coral);
    font-size: 14px;
    font-weight: 600;
}

.guide-uni svg {
    width: 16px;
    height: 16px;
}



.guide-bio {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 15px;
}

.guide-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: var(--light-gray);
    color: var(--gray);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    transition: var(--transition);
}

.guide-card:hover .tag {
    background: #FFF0F0;
    color: var(--coral);
}

@media (max-width: 600px) {
    .guide-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px;
    }

    .guide-header {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .guide-tags {
        justify-content: center;
    }
}

/* ===== TOURS SECTION ===== */
.popular-tours {
    background: var(--white);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

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

@media (max-width: 600px) {
    .tours-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        /* Force 3 columns */
        gap: 10px;
        /* Tight gap */
        padding: 0 10px;
        /* Reduce container padding */
    }

    .popular-tours .container {
        padding: 0 8px;
        /* Ensure full width usage */
    }

    /* Mobile Text Scaling */
    .tour-content {
        padding: 8px;
    }

    .tour-content h3 {
        font-size: 0.7rem !important;
        /* ~9px */
        margin-bottom: 2px !important;
        line-height: 1.1 !important;
        min-height: 2.2em;
        /* Ensure alignment */
    }

    .tour-content p {
        font-size: 0.5rem !important;
        /* ~8px */
        line-height: 1.1 !important;
        margin-bottom: 4px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .tour-price {
        font-size: 0.5rem !important;
        padding: 2px 4px !important;
        top: 4px;
        right: 4px;
        border-radius: 4px;
    }

    .btn-text {
        font-size: 0.6rem;
    }

    .tour-card {
        border-radius: 12px;
    }
}

.tour-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #F0F0F0;
    opacity: 0;
    transform: translateY(30px);
}

.tour-card.visible {
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: var(--delay);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal-light);
}

.tour-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}

.tour-price {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--coral);
    font-size: 14px;
    box-shadow: var(--shadow-sm);
    z-index: 1;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.tour-content {
    padding: 24px;
}

.tour-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.tour-content p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
}

/* ===== BOOKING PAGE ===== */
/* ===== BOOKING PAGE ===== */
.booking-page-section {
    padding: 100px 0 40px;
    min-height: 100vh;
    height: 100vh;
    background: #FAFAFA;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.booking-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    height: 100%;
    max-height: calc(100vh - 120px);
}

@media (max-width: 968px) {
    .booking-page-section {
        height: auto;
        padding: 100px 0 60px;
        overflow: visible;
    }

    .booking-page-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        height: auto;
        max-height: none;
    }

    .tour-slideshow {
        height: 250px;
        /* Fixed height for tablet/mobile */
        width: 100%;
        margin-bottom: 20px;
    }

    .booking-left-column {
        height: auto;
        /* Allow content to flow */
        display: block;
        /* Remove flex centering */
    }
}

/* Left Column: Slideshow */
.booking-left-column {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.tour-slideshow {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 60%;
    /* Reduced height */
    width: 100%;
    position: relative;
    background: #000;
}

.slideshow-container {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.slide:first-child {
    opacity: 1;
}

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

.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--dark);
    font-size: 13px;
    box-shadow: var(--shadow-sm);
}

.booking-intro {
    display: block;
    /* Restore visibility */
}

.booking-intro h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    color: var(--dark);
}

.booking-intro p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.5;
}

/* Right Column: Form */
.booking-right-column {
    height: 100%;
    overflow-y: auto;
    /* Custom Scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #E5E7EB transparent;
    padding-right: 5px;
}

.booking-right-column::-webkit-scrollbar {
    width: 6px;
}

.booking-right-column::-webkit-scrollbar-track {
    background: transparent;
}

.booking-right-column::-webkit-scrollbar-thumb {
    background-color: #E5E7EB;
    border-radius: 20px;
}

.booking-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-md);
    min-height: 100%;
}

.form-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
    text-align: center;
}

/* Compact Form Styles */
.booking-form-wrapper .form-group {
    margin-bottom: 12px;
}

.booking-form-wrapper label {
    font-size: 13px;
    margin-bottom: 4px;
    display: block;
    font-weight: 500;
}

.booking-form-wrapper input,
.booking-form-wrapper select {
    padding: 0 12px;
    height: 38px;
    font-size: 14px;
    border-radius: 8px;
}

.booking-form-wrapper textarea {
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 8px;
    min-height: 60px;
}

.booking-form-wrapper button[type="submit"] {
    padding: 12px;
    font-size: 15px;
    margin-top: 10px;
}

/* Animation for multi-step form */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* ===== PLAN INFO CARD ===== */
.plan-info-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.plan-info-card:hover {
    border-color: var(--coral);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.plan-badge {
    background: rgba(255, 107, 107, 0.1);
    color: var(--coral);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: 100%;
    margin-bottom: 8px;
    display: inline-block;
}

.booking-left-column .plan-info-card {
    margin-bottom: 0;
    /* Remove margin when in left column for better centering */
    border: none;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.booking-left-column .plan-info-card .plan-header {
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.plan-info-card h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--dark);
    font-weight: 700;
}

.plan-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--coral);
}

.plan-price .per-person {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gray-500);
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

/* ===== FLATPICKR CUSTOM STYLES ===== */
.flatpickr-calendar.inline {
    width: 100% !important;
    max-width: 340px !important;
    /* Compact width */
    box-shadow: none !important;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 16px;
    background: #fff;
    margin: 0 auto;
    overflow: hidden;
    /* Prevent overflow */
}

/* Header Cleanup */
.flatpickr-months {
    background: transparent !important;
    padding: 0;
    padding-bottom: 20px;
    /* Increased padding */
    align-items: center;
    position: relative;
    border-bottom: none;
    /* Removed border for cleaner look */
    margin-bottom: 0;
}

.flatpickr-month {
    background: transparent !important;
    color: var(--dark) !important;
    fill: var(--dark) !important;
    height: auto;
    overflow: visible;
}

.flatpickr-current-month {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--dark) !important;
    padding-top: 0;
    font-size: 18px;
    /* Larger font */
    height: auto;
    left: 0;
    position: static;
    width: 100%;
    margin-bottom: 10px;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    appearance: none;
    -webkit-appearance: none;
    background: transparent !important;
    border: none;
    padding: 0;
    color: var(--dark) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
    background: transparent !important;
}

.flatpickr-current-month input.cur-year {
    font-weight: 700;
    color: var(--dark) !important;
    background: transparent !important;
}

/* Weekdays */
.flatpickr-weekdays {
    background: transparent !important;
    height: 28px;
    margin-bottom: 10px;
}

span.flatpickr-weekday {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #9CA3AF !important;
    /* Gray text */
    font-size: 13px;
    background: transparent !important;
}

/* Days */
.flatpickr-days {
    width: 100%;
}

.dayContainer {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    padding: 0;
    outline: none;
}

.flatpickr-day {
    font-family: 'Poppins', sans-serif;
    border-radius: 8px;
    margin: 0;
    height: 38px;
    line-height: 38px;
    width: 14.28% !important;
    /* Forces 7 columns */
    max-width: none;
    border: 1px solid transparent;
    color: var(--dark);
    font-size: 14px;
}

/* Mobile Booking Fixes */
@media (max-width: 480px) {
    .tour-slideshow {
        height: 180px !important;
        /* Fixed compact height for mobile */
        margin-bottom: 16px;
    }

    .booking-left-column {
        gap: 16px;
    }

    .booking-intro h2 {
        font-size: 24px;
    }

    .booking-intro p {
        font-size: 14px;
    }

    /* Fix form-row grid to be responsive */
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    /* Reduce padding on form wrapper for mobile */
    .booking-form-wrapper {
        padding: 16px !important;
    }

    /* Scale down calendar to fit small screens */
    .flatpickr-calendar.inline {
        transform: scale(0.825) !important;
        transform-origin: top center !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px !important;
        box-shadow: none !important;
        border: none !important;
        margin: 0 auto !important;
        /* Center the calendar */
        left: 0 !important;
        right: 0 !important;
        position: relative !important;
        /* Reset any positioning */
    }

    /* Center the date picker container */
    #date-picker {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        position: relative !important;
    }
}

/* Extra small screens - even more aggressive scaling */
@media (max-width: 360px) {
    .booking-form-wrapper {
        padding: 12px !important;
    }

    .flatpickr-calendar.inline {
        transform: scale(0.7) !important;
    }

    /* Ensure container accounts for scaled height */
    .flatpickr-calendar-container {
        width: 100%;
        display: flex;
        justify-content: center;
        overflow: visible;
    }
}

/* Selected Date */
.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus {
    background: var(--coral) !important;
    border-color: var(--coral) !important;
    color: #fff;
    font-weight: 600;
    box-shadow: none;
}

/* Today */
.flatpickr-day.today {
    border-color: transparent;
    background: #FFF1F2;
    color: var(--coral);
    font-weight: 600;
}

.flatpickr-day.today:hover {
    background: var(--coral);
    color: #fff;
}

/* Hover State */
.flatpickr-day:hover {
    background: #F3F4F6;
    border-color: transparent;
}

/* Navigation Arrows */
.flatpickr-prev-month,
.flatpickr-next-month {
    top: 5px !important;
    /* Align with header */
    padding: 0;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.flatpickr-prev-month {
    left: 0 !important;
}

.flatpickr-next-month {
    right: 0 !important;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    width: 12px;
    height: 12px;
    fill: var(--dark) !important;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    background: #F3F4F6;
    fill: var(--coral) !important;
}

.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
    fill: var(--coral) !important;
}

/* Container Wrapper Fix */
.flatpickr-rContainer {
    width: 100%;
}