/* --- RESTORATIVE THERAPIES (ZIG-ZAG LAYOUT) --- */
.restorative-section {
    position: relative;
    padding: 100px 5%;
    /* Standard Light Background */
    background-color: var(--ivory-white);
    color: var(--deep-bg);
    overflow: hidden;
}

/* Abstract Background Shapes - Adjusted for Light Theme */
.restorative-section::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 166, 60, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.restorative-section::after {
    content: "";
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 166, 60, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.restorative-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header Styling */
.restorative-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.restorative-header .brand-gold-text {
    letter-spacing: 5px;
    font-size: 0.9rem;
    opacity: 1;
    color: var(--gold-brand);
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
}

.restorative-header .premium-title {
    color: var(--deep-bg);
    font-family: 'Poiret One', cursive;
    font-size: var(--fs-section-h2);
    margin: 0 0 25px;
    letter-spacing: 2px;
    font-weight: 300;
}

.separator-gold {
    width: 70px;
    height: 2px;
    background: var(--gold-brand);
    margin: 0 auto 30px;
}

.restorative-intro {
    font-family: 'Poppins', sans-serif;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.woqem-link {
    color: var(--gold-brand);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--gold-brand);
    transition: all 0.3s;
}

.woqem-link:hover {
    color: var(--deep-bg);
    border-color: var(--deep-bg);
}

/* --- SECTIONS STYLING --- */

/* Quantum Approach */
.quantum-approach-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.section-title-small {
    font-family: 'Poiret One', cursive;
    color: var(--gold-brand);
    font-size: var(--fs-section-h2);
    margin: 0 0 20px;
    font-weight: 300;
}

.quantum-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
}

.quantum-content strong {
    color: var(--deep-bg);
    font-weight: 600;
}

/* --- ZIG-ZAG LAYOUT --- */
.restorative-zigzag-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
    /* Space between rows */
}

.therapy-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    opacity: 0;
    /* Animation prep */
    animation: fadeInUp 0.8s forwards;
    cursor: pointer;
}

.therapy-row:nth-child(even) {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reverse Order for Zig-Zag */
.therapy-row.reverse {
    flex-direction: row-reverse;
}

/* Image Side */
.therapy-image {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    /* Softer shadow for light theme */
    border: none;
    height: 350px;
    /* Standard height */
}

.therapy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.therapy-row:hover .therapy-image img {
    transform: scale(1.08);
    /* Gentle zoom */
}

/* Content Side */
.therapy-content {
    flex: 1;
    padding: 20px;
}

.therapy-subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 10px;
    font-weight: 600;
}

.therapy-content h3 {
    font-family: 'Poiret One', cursive;
    color: var(--deep-bg);
    font-size: var(--fs-section-h2);
    margin: 0 0 20px;
    line-height: 1.2;
    font-weight: 300;
}

.therapy-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Learn More Button */
.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-brand);
    font-weight: 700;
    transition: all 0.3s;
}

.therapy-row:hover .learn-more-btn {
    color: var(--deep-bg);
    gap: 15px;
}


/* --- BENEFITS & JOURNEY SECTIONS --- */
.section-title-center {
    font-family: 'Poiret One', cursive;
    color: var(--deep-bg);
    font-size: var(--fs-section-h2);
    text-align: center;
    margin: 120px 0 60px;
    position: relative;
    font-weight: 300;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 100px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(201, 166, 60, 0.3);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--gold-brand);
    margin-bottom: 25px;
    opacity: 1;
}

.benefit-item h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--deep-bg);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-item p {
    font-family: 'Poppins', sans-serif;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 30px;
}

.step-number {
    font-family: 'Poiret One', cursive;
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.05);
    /* Subtle watermark number for light theme */
    font-weight: bold;
    margin-bottom: -30px;
    position: relative;
    z-index: 0;
}

.process-step h4 {
    position: relative;
    z-index: 1;
    font-family: 'Montserrat', sans-serif;
    color: var(--gold-brand);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.process-step p {
    font-family: 'Poppins', sans-serif;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.process-connector {
    flex: 0;
    min-width: 40px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

.journey-cta {
    text-align: center;
}

.journey-btn {
    display: inline-block;
    padding: 16px 45px;
    background: transparent;
    border: 1px solid var(--gold-brand);
    color: var(--gold-brand);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.journey-btn:hover {
    background: var(--gold-brand);
    color: var(--ivory-white);
    box-shadow: 0 0 20px rgba(201, 166, 60, 0.3);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .restorative-header .premium-title {
        font-size: 2.8rem;
    }

    .therapy-row {
        flex-direction: column !important;
        /* Stack everything */
        gap: 30px;
        text-align: center;
        margin-bottom: 60px;
    }

    .therapy-image {
        width: 100%;
        height: 250px;
    }

    .therapy-content {
        padding: 0;
    }

    .therapy-content h3 {
        font-size: 2rem;
    }

    .process-steps {
        flex-direction: column;
        gap: 40px;
    }

    .process-connector {
        display: none;
    }
}

/* --- WOQEM COLLABORATION SECTION --- */
.collaboration-section {
    padding: 80px 5%;
    background-color: #2E2318 !important;

    text-align: center;
    color: var(--ivory-white);
    position: relative;
    overflow: hidden;
}

.collaboration-label {
    color: var(--gold-brand);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}

.collaboration-title {
    font-family: 'Poiret One', cursive;
    font-size: var(--fs-section-h2);
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 300;
}

.collaboration-desc {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    font-weight: 300;
}

.woqem-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--gold-brand);
    color: var(--gold-brand);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    transition: all 0.4s ease;
    font-size: 0.9rem;
    background: transparent;
    cursor: pointer;
}

.woqem-btn:hover {
    background-color: var(--gold-brand);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(201, 166, 60, 0.2);
}

/* --- 2-DAY RETREAT PACKAGE SECTION --- */
/* --- 2-DAY RETREAT PACKAGE SECTION (Golden Arch Unique Design) --- */
/* --- 2-DAY RETREAT PACKAGE SECTION (Golden Arch Unique Design) --- */
.retreat-package-section {
    padding: 100px 5%;
    margin: 100px 20px 0;
    border-radius: 50px;
    background-color: var(--deep-bg);
    /* Baked-in overlay + Image */
    background: linear-gradient(rgba(46, 35, 24, 0.9), rgba(46, 35, 24, 0.9)),
        url('../Resource/wellness%20copy%202/detox_destress.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(201, 166, 60, 0.4);
}

/* Overlay removed (handled in background) */
.retreat-package-section::before {
    display: none;
}

.retreat-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 10;
}

.retreat-header h2 {
    font-family: 'Poiret One', cursive;
    font-size: var(--fs-section-h2);
    color: var(--gold-brand) !important;
    margin: 10px 0 30px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    font-weight: 300;
}

.retreat-intro {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff !important;
    /* Forced White */
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Floating Glass Highlights */
.retreat-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 100px;
    position: relative;
    z-index: 10;
}

.highlight-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(201, 166, 60, 0.3);
    padding: 40px;
    border-radius: 4px;
    border-bottom-right-radius: 40px;
    border-top-left-radius: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.highlight-box h3 {
    font-family: 'Poiret One', cursive;
    font-size: 1.8rem;
    color: #ffffff !important;
    /* Forced White */
    margin-bottom: 20px;
    border-left: 3px solid var(--gold-brand);
    padding-left: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight-box p {
    font-family: 'Montserrat', sans-serif;
    color: #f0f0f0 !important;
    /* Forced Light Grey */
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    opacity: 1 !important;
}

.highlight-list li {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff !important;
    /* Forced White */
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.highlight-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold-brand);
    font-size: 0.9rem;
}

/* The Golden Arches Timeline */
.retreat-itinerary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 10;
}

/* Central Divider */
.retreat-itinerary::after {
    content: '';
    position: absolute;
    top: 50px;
    bottom: 50px;
    left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gold-brand), transparent);
    transform: translateX(-50%);
}

.itinerary-card {
    background: rgba(30, 20, 10, 0.9);
    /* Very dark background for card */
    border: 1px solid var(--gold-brand);
    padding: 50px 40px;
    position: relative;
    transition: all 0.4s ease;
    border-radius: 200px 200px 0 0;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.itinerary-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(201, 166, 60, 0.2);
    background: #1a1008;
}

.day-badge {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--deep-bg);
    border: 2px solid var(--gold-brand);
    color: var(--gold-brand);
    padding: 10px 30px;
    border-radius: 50px;
    font-family: 'Poiret One', cursive;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 5;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.itinerary-card h3 {
    font-family: 'Poiret One', cursive;
    font-size: var(--fs-h3-card);
    color: #fff;
    margin: 40px 0 10px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    font-weight: 300;
}

.theme-tag {
    display: block;
    font-family: 'Montserrat', sans-serif;
    color: var(--gold-brand);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(201, 166, 60, 0.3);
    padding-bottom: 20px;
    display: inline-block;
}

.session-block {
    text-align: left;
    margin-bottom: 30px;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.session-block:last-child {
    border-bottom: none;
}

.session-block h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.session-block h4::before {
    content: '•';
    color: var(--gold-brand);
    font-size: 2rem;
    line-height: 0;
}

.session-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #fff !important;
    /* Forced White */
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.session-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(201, 166, 60, 0.5);
}

.retreat-cta {
    text-align: center;
    margin-top: 80px;
    position: relative;
    z-index: 10;
}

/* Mobile Responsive */
/* Mobile Responsive */
@media (max-width: 900px) {
    .retreat-package-section {
        padding: 60px 20px;
        margin: 60px 10px 0;
        border-radius: 30px;
    }

    .retreat-highlights-grid,
    .retreat-itinerary {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .retreat-itinerary::after {
        display: none;
    }

    .itinerary-card {
        padding: 40px 20px;
        border-radius: 120px 120px 0 0;
        /* Smaller arch for mobile */
    }

    .retreat-header h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .retreat-intro {
        font-size: 1rem;
    }

    .highlight-box {
        padding: 30px 20px;
    }

    .itinerary-card h3 {
        font-size: 2.2rem;
    }
}