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

:root {
    --forest: #1a3a1a;
    --earth: #8b6914;
    --sky: #4a90a4;
    --fire: #d84315;
    --cream: #fef9f3;
    --dark: #1a1a1a;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--cream);
    color: var(--dark);
    line-height: 1.7;
}

.hero {
    background: linear-gradient(135deg, var(--forest) 0%, #2d5a2d 100%);
    color: var(--cream);
    padding: 4rem 1rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero {
        padding: 8rem 2rem 6rem;
        min-height: 80vh;
    }
}

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

/* Reduce motion preference - pause video for accessibility */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg,
            rgba(26, 58, 26, 0.20),
            rgba(45, 90, 45, 0.15)); */
    z-index: 1;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.35);
}

@media (min-width: 768px) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.20);
    }
}

.hero-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    opacity: 0.95;
    margin-bottom: 0.5rem;
}

.dates {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(254, 249, 243, 0.15);
    padding: 0.6rem 1rem;
    border-radius: 50px;
    margin-top: 1.5rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .dates {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

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

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    section {
        padding: 5rem 0;
    }
}

.intro {
    background: linear-gradient(to bottom, var(--cream), #f9f4ef);
    border-bottom: 3px solid var(--earth);
}

.intro-text {
    font-size: 1.1rem;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
    color: var(--forest);
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--fire);
}

@media (min-width: 768px) {
    .intro-text {
        font-size: 1.4rem;
        line-height: 2;
        padding: 3rem;
        border-radius: 20px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
        border-left: 5px solid var(--fire);
    }
}

.media {
    background: var(--dark);
    color: var(--cream);
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.media-card {
    background: rgba(254, 249, 243, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(254, 249, 243, 0.1);
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.media-card:hover {
    transform: translateY(-5px);
    border-color: var(--earth);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.media-card video {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    display: block;
    background: black;
    object-fit: cover;
}

.media-caption {
    padding: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
}

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

@media (min-width: 1024px) {
    .media-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.map-section {
    background: linear-gradient(135deg, var(--sky) 0%, #357a8a 100%);
    color: var(--cream);
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .map-section {
        padding: 5rem 0;
    }
}

.map-container {
    max-width: 1000px;
    margin: 1.5rem auto 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .map-container {
        margin: 2rem auto 0;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }
}

.map-container video {
    width: 100%;
    display: block;
}

.goals {
    background: var(--dark);
    color: var(--cream);
}

.goals-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        margin-top: 3rem;
    }
}

.goal-card {
    background: rgba(254, 249, 243, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(254, 249, 243, 0.1);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .goal-card {
        padding: 2.5rem;
        border-radius: 20px;
    }
}

.goal-card:hover {
    transform: translateY(-5px);
    border-color: var(--earth);
}

.goal-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--earth);
}

.goal-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .section-title {
        margin-bottom: 3rem;
    }
}

.itinerary {
    background: linear-gradient(to bottom, var(--cream), #f5ebe0);
}

.day-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--forest);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .day-card {
        border-radius: 20px;
        padding: 2.5rem;
        margin-bottom: 2rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        border-left: 5px solid var(--forest);
    }
}

.day-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
    .day-card:hover {
        transform: translateX(10px);
    }
}

.day-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .day-header {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
}

.day-number {
    background: var(--forest);
    color: var(--cream);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .day-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

.day-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--forest);
    line-height: 1.3;
}

@media (min-width: 768px) {
    .day-title {
        font-size: 1.8rem;
    }
}

.activity-list {
    list-style: none;
    margin-top: 1rem;
}

.activity-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.activity-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--earth);
    font-weight: 700;
}

.highlight {
    background: var(--sky);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    font-weight: 500;
}

.different {
    background: var(--fire);
    color: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }
}

.feature-card {
    text-align: center;
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .feature-card {
        padding: 2rem;
    }
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.logistics {
    background: linear-gradient(135deg, var(--forest) 0%, #2d5a2d 100%);
    color: var(--cream);
}

.logistics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .logistics-grid {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 3rem;
    }
}

.logistics-card {
    background: rgba(254, 249, 243, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
    .logistics-card {
        padding: 2rem;
    }
}

.logistics-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.cocreator {
    background: var(--earth);
    color: var(--cream);
}

.cocreator-content {
    max-width: 900px;
    margin: 0 auto;
}

.important-note {
    background: rgba(254, 249, 243, 0.15);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--cream);
}

@media (min-width: 768px) {
    .important-note {
        padding: 2rem;
        border-radius: 15px;
        margin: 2rem 0;
        border-left: 5px solid var(--cream);
    }
}

.criteria-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .criteria-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.criteria-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .criteria-item {
        gap: 1rem;
    }
}

.criteria-icon {
    font-size: 1.5rem;
    color: var(--cream);
}

.philosophy {
    background: var(--cream);
    text-align: center;
}

.philosophy-text {
    max-width: 800px;
    margin: 1.5rem auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .philosophy-text {
        margin: 2rem auto;
        font-size: 1.2rem;
        line-height: 1.8;
    }
}

.final-note {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-top: 2rem;
    font-style: italic;
    color: var(--forest);
    line-height: 1.4;
}

@media (min-width: 768px) {
    .final-note {
        font-size: 2rem;
        margin-top: 3rem;
    }
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--fire);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: 0.3s;
}

.sticky-cta:hover {
    transform: scale(1.05);
    background: #c73b10;
}

.sticky-cta.hidden {
    transform: translateY(200%);
    opacity: 0;
    pointer-events: none;
}

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 0.5rem;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.popup-box {
    background: white;
    width: 100%;
    max-width: 480px;
    padding: 1rem 1rem 1.25rem;
    border-radius: 14px;
    position: relative;
    animation: fadeIn 0.3s ease;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

@media (min-width: 480px) {
    .popup-box {
        padding: 1.5rem;
        border-radius: 18px;
    }
}

@media (min-width: 768px) {
    .popup-box {
        padding: 2rem;
        max-height: 85vh;
        border-radius: 20px;
    }
}

.popup-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--forest);
    margin-bottom: 0.75rem;
    padding-right: 2rem;
    line-height: 1.25;
}

@media (min-width: 480px) {
    .popup-box h2 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 768px) {
    .popup-box h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
}

.popup-box form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 480px) {
    .popup-box form {
        gap: 0.6rem;
    }
}

.popup-box input,
.popup-box select,
.popup-box textarea {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border-radius: 8px;
    border: 1.5px solid #e0e0e0;
    font-size: 0.95rem;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.2s ease;
    background: #fafafa;
    -webkit-appearance: none;
    appearance: none;
}

@media (min-width: 480px) {

    .popup-box input,
    .popup-box select,
    .popup-box textarea {
        padding: 0.85rem 1rem;
        border-radius: 10px;
        font-size: 1rem;
    }
}

.popup-box input:focus,
.popup-box select:focus,
.popup-box textarea:focus {
    outline: none;
    border-color: var(--forest);
    background: white;
    box-shadow: 0 0 0 3px rgba(26, 58, 26, 0.1);
}

.popup-box input::placeholder,
.popup-box textarea::placeholder {
    color: #999;
}

.popup-box select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    padding-right: 2.25rem;
}

.popup-box select option {
    padding: 0.5rem;
}

.popup-box textarea {
    resize: vertical;
    min-height: 60px;
}

@media (min-width: 480px) {
    .popup-box textarea {
        min-height: 80px;
    }
}

/* Two-column layout for age and gender on larger screens */
@media (min-width: 400px) {
    .popup-box form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .popup-box input[name="fullName"],
    .popup-box input[name="mobile"],
    .popup-box input[name="email"],
    .popup-box input[name="city"],
    .popup-box select[name="fitness"],
    .popup-box textarea,
    .popup-box .submit-btn {
        grid-column: 1 / -1;
    }
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--forest);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.submit-btn:hover {
    background: #0d2a0d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 58, 26, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    background: #999;
    cursor: not-allowed;
    transform: none;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #666;
}

.close-btn:hover {
    background: #e0e0e0;
    color: var(--fire);
}

@media (min-width: 480px) {
    .close-btn {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.7rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }

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

.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 1rem;
}

.progress-step {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.progress-step.active {
    background: var(--forest);
    color: white;
}

.progress-step.completed {
    background: var(--forest);
    color: white;
}

.progress-line {
    width: 40px;
    height: 3px;
    background: #e0e0e0;
    transition: background 0.3s ease;
}

.progress-line.active {
    background: var(--forest);
}

/* Form Steps */
.form-step {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
}

.form-step.active {
    display: flex;
}

/* Override grid for multi-step form */
.popup-box form {
    display: block;
}

.form-step {
    display: none;
}

.form-step.active {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 400px) {
    .form-step {
        display: none;
    }

    .form-step.active {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }

    .form-step input[name="fullName"],
    .form-step input[name="mobile"],
    .form-step input[name="email"],
    .form-step input[name="city"],
    .form-step select[name="fitness"],
    .form-step textarea,
    .form-step .next-btn,
    .form-step .contribution-section,
    .form-step .contribution-info,
    .form-step .form-buttons {
        grid-column: 1 / -1;
    }
}

/* Contribution Section */
.contribution-section {
    background: #f8f8f8;
    padding: 0.75rem;
    border-radius: 10px;
    margin: 0.25rem 0;
}

.field-label {
    font-size: 0.85rem;
    color: var(--forest);
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Contribution Info Section */
.contribution-info {
    background: linear-gradient(135deg, #f0f7f0 0%, #e8f5e8 100%);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(26, 58, 26, 0.15);
}

.contribution-intro {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.contribution-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest);
    margin: 0.25rem 0;
}

.contribution-label {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.75rem;
}

.contribution-details {
    text-align: left;
    font-size: 0.8rem;
    line-height: 1.5;
}

.contribution-details .includes,
.contribution-details .excludes {
    margin-bottom: 0.35rem;
}

.contribution-details .detail-label {
    font-weight: 600;
    margin-right: 0.25rem;
}

.contribution-details .includes .detail-label {
    color: var(--forest);
}

.contribution-details .excludes .detail-label {
    color: #c0392b;
}

/* Flex button for step 2 */
.next-btn.flex-btn {
    flex: 1;
    margin-top: 0;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    cursor: pointer;
    font-size: 0.9rem;
}

.radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: var(--forest);
    cursor: pointer;
    /* Override the appearance:none from parent selector */
    -webkit-appearance: auto;
    appearance: auto;
}

.radio-option input[type="radio"]:checked+span {
    color: var(--forest);
    font-weight: 600;
}

.radio-option span {
    color: #444;
}

/* Navigation Buttons */
.next-btn,
.back-btn {
    padding: 0.85rem 1.25rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.next-btn {
    width: 100%;
    background: var(--forest);
    color: white;
    border: none;
    margin-top: 0.5rem;
}

.next-btn:hover {
    background: #0d2a0d;
    transform: translateY(-2px);
}

.back-btn {
    background: transparent;
    color: var(--forest);
    border: 2px solid var(--forest);
}

.back-btn:hover {
    background: rgba(26, 58, 26, 0.1);
}

.form-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.form-buttons .back-btn {
    flex: 0 0 auto;
}

.form-buttons .submit-btn {
    flex: 1;
    margin-top: 0;
}

.local-partner {
    background: linear-gradient(135deg, var(--forest) 0%, #2d5a2d 100%);
    color: var(--cream);
}

.partner-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .partner-content {
        grid-template-columns: 1fr 2fr;
        gap: 4rem;
    }
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    max-width: 300px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .partner-logo {
        padding: 2rem;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        max-width: none;
    }
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.partner-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--cream);
}

@media (min-width: 768px) {
    .partner-info h3 {
        font-size: 2rem;
    }
}

.partner-tagline {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    color: var(--cream);
}

@media (min-width: 768px) {
    .partner-tagline {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
}

.partner-info p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .partner-info p {
        margin-bottom: 1.2rem;
        line-height: 1.8;
    }
}

.partner-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .partner-links {
        flex-direction: row;
        gap: 1.5rem;
        margin-top: 2rem;
    }
}

.partner-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(254, 249, 243, 0.15);
    border: 2px solid rgba(254, 249, 243, 0.3);
    border-radius: 50px;
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.partner-link:hover {
    background: rgba(254, 249, 243, 0.25);
    border-color: var(--cream);
    transform: translateY(-2px);
}

.partner-link i {
    font-size: 1.2rem;
}

.footer {
    background: var(--dark);
    color: var(--cream);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(254, 249, 243, 0.15);
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--cream);
}

.footer-tagline {
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-description {
    opacity: 0.7;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--cream);
    font-weight: 600;
}

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

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

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--sky);
    transform: translateX(3px);
}

.footer-links i {
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-note {
    font-style: italic;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }
}

/* ==================================
   INTERACTIVE MAP SECTION STYLES
   ================================== */

.route-subtitle {
    text-align: center;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Map Container */
.interactive-map-wrapper {
    position: relative;
    margin-bottom: 3rem;
}

.yatra-map {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

@media (min-width: 768px) {
    .yatra-map {
        height: 500px;
        border-radius: 20px;
    }
}

/* Hide Leaflet Attribution */
.leaflet-control-attribution {
    display: none !important;
}

/* Map Legend */
.map-legend {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

/* Google Maps Button */
.gmaps-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 10px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
}

.gmaps-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: var(--fire);
}

.gmaps-btn i {
    font-size: 1.2rem;
    color: var(--fire);
}

@media (max-width: 768px) {

    /* Compact Legend for Mobile */
    .map-legend {
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        flex-direction: row;
        justify-content: space-between;
        padding: 8px 12px;
        font-size: 0.7rem;
        background: rgba(255, 255, 255, 0.9);
        white-space: nowrap;
    }

    /* Move Google Maps button on mobile */
    .gmaps-btn {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    /* Smaller items gap */
    .map-legend .legend-item {
        gap: 4px;
    }

    /* Scale down markers on mobile */
    .custom-marker {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.75rem !important;
        border-width: 2px !important;
    }

    .custom-marker.start-end {
        width: 34px !important;
        height: 34px !important;
    }

    /* Hide Zoom Controls on Mobile (Pinch to zoom is enough) */
    .leaflet-control-zoom {
        display: none;
    }
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.start {
    background: var(--fire);
    box-shadow: 0 0 0 3px rgba(216, 67, 21, 0.3);
}

.legend-dot.stop {
    background: var(--forest);
}

.legend-line {
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--forest) 0%, var(--sky) 50%, var(--fire) 100%);
    border-radius: 2px;
}

/* Custom Leaflet Markers */
.custom-marker {
    background: var(--forest);
    border: 3px solid white;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.custom-marker.start-end {
    background: var(--fire);
    width: 44px;
    height: 44px;
    font-size: 1rem;
    animation: pulse 2s infinite;
}

.custom-marker:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(216, 67, 21, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(216, 67, 21, 0);
    }
}

/* Leaflet Popup Styling */
.leaflet-popup-content-wrapper {
    background: var(--cream);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 0;
    overflow: hidden;
}

.leaflet-popup-content {
    margin: 0;
    min-width: 220px;
}

.leaflet-popup-tip {
    background: var(--cream);
}

.popup-content {
    padding: 16px;
}

.popup-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--forest);
    margin-bottom: 4px;
}

.popup-content .popup-day {
    display: inline-block;
    background: var(--earth);
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.popup-content p {
    font-size: 0.9rem;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 12px;
}

.popup-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--forest);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.popup-btn:hover {
    background: #2d5a2d;
    transform: translateY(-2px);
}

/* ==================================
   VISUAL TIMELINE STYLES
   ================================== */

.route-timeline {
    position: relative;
    padding: 2rem 0;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--earth) transparent;
}

.route-timeline::-webkit-scrollbar {
    height: 6px;
}

.route-timeline::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.route-timeline::-webkit-scrollbar-thumb {
    background: var(--earth);
    border-radius: 3px;
}

.timeline-track {
    position: absolute;
    top: calc(2rem + 30px);
    /* Padding top + half marker height */
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    transform: translateY(-50%);
    z-index: 0;
}

.timeline-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--fire), var(--earth), var(--forest));
    border-radius: 2px;
    transition: width 0.6s ease;
}

.timeline-stops {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    min-width: 800px;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .route-timeline {
        padding: 1rem 0;
    }

    .timeline-stops {
        min-width: 700px;
        padding: 0 10px;
    }

    .timeline-track {
        top: calc(1rem + 30px);
        /* Mobile Padding top + half marker height */
    }
}

.timeline-stop {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-stop:hover .stop-marker {
    transform: scale(1.15);
}

.timeline-stop:hover .stop-info h4 {
    color: white;
}

.stop-marker {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.stop-marker.active {
    background: var(--fire);
    border-color: white;
    box-shadow: 0 0 20px rgba(216, 67, 21, 0.5);
}

.stop-marker i {
    font-size: 1.4rem;
    color: white;
}

.day-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--earth);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    min-width: 24px;
    text-align: center;
}

.stop-info {
    text-align: center;
    margin-top: 12px;
}

.stop-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.stop-info p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ==================================
   STOP DETAIL MODAL
   ================================== */

.stop-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

.stop-modal.active {
    display: flex;
}

.modal-content {
    background: var(--cream);
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
}

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

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

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--fire);
    color: white;
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-day-badge {
    display: inline-block;
    background: var(--forest);
    color: white;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--forest);
}

.modal-body {
    padding: 1.5rem 2rem;
}

.modal-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.modal-activities {
    background: rgba(26, 58, 26, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
}

.modal-activities h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    color: var(--forest);
    margin-bottom: 1rem;
}

.modal-activities h4 i {
    color: var(--earth);
}

.modal-activity-list {
    list-style: none;
}

.modal-activity-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--dark);
}

.modal-activity-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--forest);
    font-weight: 700;
}

.modal-gallery {
    padding: 0 2rem 2rem;
}

.gallery-placeholder {
    background: linear-gradient(135deg, rgba(74, 144, 164, 0.1), rgba(26, 58, 26, 0.1));
    border: 2px dashed rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    color: var(--dark);
    opacity: 0.7;
}

.gallery-placeholder i {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    color: var(--sky);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Route line animation */
.route-line-animated {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 3s ease forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}