/* Universal Full-Width Fix & Resets */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

:root {
    --primary-rose: #b83b65;
    --accent-gold: #c29141;
    --text-dark: #3a222d;
    --text-muted: #735462;
    --card-bg: rgba(255, 255, 255, 0.85);
    --border-rose: rgba(184, 59, 101, 0.2);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #fcecee;
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

/* SECTION 1: Light Floral Theme */
.light-floral-background {
    background: linear-gradient(135deg, #fcecee 0%, #f7e1ea 40%, #faeef3 70%, #f5d6e3 100%);
    background-image: radial-gradient(circle at 15% 15%, rgba(243, 185, 204, 0.5) 0%, transparent 45%),
                      radial-gradient(circle at 85% 85%, rgba(234, 196, 131, 0.3) 0%, transparent 45%),
                      linear-gradient(180deg, #fef7f9 0%, #f9e3ec 50%, #f6dbe6 100%);
    position: relative;
    padding: 30px 0;
    width: 100%;
}

.ambient-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 1;
    pointer-events: none;
}
.glow-1 { top: 5%; left: -80px; background: rgba(240, 166, 188, 0.4); }
.glow-2 { bottom: 5%; right: -80px; background: rgba(226, 183, 115, 0.25); }

.main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.italic-gold {
    font-style: italic;
    color: var(--accent-gold);
    font-weight: 600;
}

.target-audience {
    text-align: center;
    font-size: 1.1rem;
    color: var(--primary-rose);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 0 35px 0;
}
.divider .line {
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent, var(--accent-gold));
}
.divider .line:last-child {
    background: linear-gradient(90deg, var(--accent-gold), transparent);
}
.heart-icon {
    color: var(--primary-rose);
    margin: 0 15px;
    font-size: 1rem;
}

.hook-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    border-left: 4px solid var(--accent-gold);
    border-right: 4px solid var(--accent-gold);
    padding: 22px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(184, 59, 101, 0.06);
}
.hook-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--text-dark);
    line-height: 1.4;
    font-weight: 600;
}

.reflection-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-rose);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 15px 35px rgba(184, 59, 101, 0.08);
    margin-bottom: 30px;
}
.reflection-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary-rose);
    margin-bottom: 15px;
    line-height: 1.35;
}
.lead-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.highlight-struggle {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.pain-points-grid {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin: 20px 0 25px 0;
}
.pain-points-grid li {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}
.pain-points-grid li i {
    color: var(--primary-rose);
    font-size: 0.8rem;
}

.empowerment-pledge {
    text-align: center;
    font-size: 1.15rem;
    color: var(--accent-gold);
    font-family: 'Cormorant Garamond', serif;
    margin: 20px 0;
    font-weight: 600;
}
.description-text {
    font-size: 1rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 30px;
}

.features-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.feature-item {
    background: rgba(184, 59, 101, 0.05);
    border: 1px solid rgba(184, 59, 101, 0.15);
    padding: 12px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.f-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.feature-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.pricing-event-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-rose);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(184, 59, 101, 0.08);
    text-align: center;
    margin-bottom: 30px;
}
.event-meta {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(184, 59, 101, 0.1);
}
.meta-block {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}
.meta-block i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}
.meta-block .label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.meta-block .val {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

.pricing-display {
    margin-bottom: 25px;
}
.price-box {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
}
.strike {
    font-size: 1.4rem;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.7;
}
.current-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-rose);
    line-height: 1;
}
.usd-tag {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}
.limited-offer {
    font-size: 0.85rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    font-weight: 600;
}

.premium-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #b83b65 0%, #90264b 100%);
    color: #ffffff;
    width: 100%;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(184, 59, 101, 0.3);
    transition: all 0.3s ease;
}
.premium-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(184, 59, 101, 0.45);
}

.section-footer-tagline {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--primary-rose);
    letter-spacing: 1px;
    margin-top: 20px;
}


/* SECTION 2: Light Background with Dark Contrast Boxes */
.unlock-section-light {
    background: linear-gradient(135deg, #fcecee 0%, #f7e1ea 40%, #faeef3 70%, #f5d6e3 100%);
    padding: 40px 0 60px 0;
    width: 100%;
}

.unlock-header-box-dark {
    text-align: center;
    background: linear-gradient(135deg, #28071f 0%, #441033 100%);
    border: 1px solid rgba(229, 179, 103, 0.3);
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 15px 35px rgba(40, 7, 31, 0.25);
    margin-bottom: 30px;
}

.unlock-header-box-dark h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    color: #ffffff;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 25px;
}

.countdown-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.time-block {
    background: rgba(214, 77, 120, 0.2);
    border: 1px solid rgba(229, 179, 103, 0.3);
    padding: 12px 16px;
    border-radius: 12px;
    min-width: 75px;
    text-align: center;
}

.time-digit {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #e5b367;
    line-height: 1;
}

.time-label {
    display: block;
    font-size: 0.7rem;
    color: #e2c8d5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    font-weight: 600;
}

.time-separator {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e5b367;
    margin-top: -15px;
}

.decision-card-dark {
    background: linear-gradient(135deg, #28071f 0%, #441033 100%);
    border: 1px solid rgba(229, 179, 103, 0.3);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 15px 35px rgba(40, 7, 31, 0.25);
    text-align: center;
}

.decision-card-dark h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: #e5b367;
    margin-bottom: 25px;
    line-height: 1.35;
}

.decision-list-dark {
    list-style: none;
    max-width: 500px;
    margin: 0 auto 25px auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.decision-list-dark li {
    font-size: 1.05rem;
    color: #fdf6f9;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.cross-icon-wrap {
    color: #d64d78;
    background: rgba(214, 77, 120, 0.2);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    line-height: 1;
}

.forward-pledge {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #e5b367;
    margin-bottom: 30px;
    font-weight: 600;
}

.booking-box-dark {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
}

.strike-dark {
    font-size: 1.4rem;
    color: #e2c8d5;
    text-decoration: line-through;
    opacity: 0.7;
}

.current-price-dark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #e5b367;
    line-height: 1;
}

.usd-tag-dark {
    font-size: 1.1rem;
    color: #e2c8d5;
    font-weight: 500;
}

.premium-cta-btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #e5b367 0%, #d49537 100%);
    color: #24081c;
    width: 100%;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(229, 179, 103, 0.4);
    transition: all 0.3s ease;
}

.premium-cta-btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(229, 179, 103, 0.6);
}

/* Responsive queries */
@media (max-width: 650px) {
    .main-title {
        font-size: 2.2rem;
    }
    .pain-points-grid {
        grid-template-columns: 1fr;
    }
    .features-mini-grid {
        grid-template-columns: 1fr;
    }
    .event-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .reflection-card, .decision-card-dark {
        padding: 25px 20px;
    }
    .unlock-header-box-dark h2 {
        font-size: 1.7rem;
    }
    .countdown-container {
        gap: 6px;
    }
    .time-block {
        padding: 8px 10px;
        min-width: 60px;
    }
    .time-digit {
        font-size: 1.4rem;
    }
}
/* SECTION 3: Join Women Who Are Ready To Choose Themselves */
.choose-section-light {
    background: linear-gradient(135deg, #fcecee 0%, #f7e1ea 40%, #faeef3 70%, #f5d6e3 100%);
    padding: 20px 0 60px 0;
    width: 100%;
}

.choose-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-rose);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(184, 59, 101, 0.08);
    text-align: center;
}

.choose-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--primary-rose);
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
}

.choose-lead {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 500;
}

.continue-list-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: var(--text-dark);
    font-style: italic;
    font-weight: 500;
}

.deep-down-label {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.quote-bubble {
    background: rgba(184, 59, 101, 0.05);
    border-left: 4px solid var(--primary-rose);
    border-right: 4px solid var(--primary-rose);
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.quote-bubble p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--primary-rose);
    font-style: italic;
    font-weight: 600;
}

.workshop-desc {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 30px;
}

.booking-box-light {
    border-top: 1px solid rgba(184, 59, 101, 0.1);
    padding-top: 25px;
}

/* Responsive queries for section 3 */
@media (max-width: 650px) {
    .choose-main-title {
        font-size: 1.8rem;
    }
    .choose-card {
        padding: 25px 20px;
    }
    .quote-bubble p {
        font-size: 1.3rem;
    }
}
/* SECTION 4: What You'll Learn Over 2 Days */
.curriculum-section-light {
    background: linear-gradient(135deg, #fcecee 0%, #f7e1ea 40%, #faeef3 70%, #f5d6e3 100%);
    padding: 20px 0 60px 0;
    width: 100%;
}

.curriculum-header {
    text-align: center;
    margin-bottom: 35px;
}

.curriculum-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    color: var(--text-dark);
    font-weight: 700;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.curriculum-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-rose);
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 15px 35px rgba(184, 59, 101, 0.08);
    transition: transform 0.3s ease;
}

.curriculum-card:hover {
    transform: translateY(-4px);
}

.curr-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(184, 59, 101, 0.1);
    border: 1px solid rgba(184, 59, 101, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-rose);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.curriculum-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--primary-rose);
    margin-bottom: 12px;
    line-height: 1.3;
}

.curriculum-card p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.curriculum-cta-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-rose);
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 0 15px 35px rgba(184, 59, 101, 0.08);
    text-align: center;
}

/* Responsive queries for section 4 */
@media (max-width: 768px) {
    .curriculum-grid {
        grid-template-columns: 1fr;
    }
    .curriculum-header h2 {
        font-size: 2rem;
    }
}
/* SECTION 5: Your Trauma Healing Workshop Includes */
.includes-section-light {
    background: linear-gradient(135deg, #fcecee 0%, #f7e1ea 40%, #faeef3 70%, #f5d6e3 100%);
    padding: 20px 0 60px 0;
    width: 100%;
}

.includes-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-rose);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(184, 59, 101, 0.08);
    text-align: center;
}

.includes-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 700;
}

.includes-list {
    list-style: none;
    max-width: 550px;
    margin: 0 auto 35px auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.includes-list li {
    font-size: 1.05rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
}

.includes-list li i {
    color: var(--primary-rose);
    background: rgba(184, 59, 101, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.value-box {
    background: rgba(184, 59, 101, 0.04);
    border: 1px solid rgba(184, 59, 101, 0.15);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
}

.act-now-label {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--primary-rose);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
}

.event-date-footer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
}

.event-date-footer i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

/* Responsive queries for section 5 */
@media (max-width: 650px) {
    .includes-main-title {
        font-size: 1.8rem;
    }
    .includes-card {
        padding: 25px 20px;
    }
    .includes-list li {
        font-size: 0.95rem;
    }
}
/* SECTION 6: Your Transformation */ */
.transformation-section-light {
    background: linear-gradient(135deg, #fcecee 0%, #f7e1ea 40%, #faeef3 70%, #f5d6e3 100%);
    padding: 20px 0 60px 0;
    width: 100%;
}

.transformation-header {
    text-align: center;
    margin-bottom: 35px;
}

.transformation-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    color: var(--text-dark);
    font-weight: 700;
}

.transformation-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
}

.transform-card {
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 35px 25px;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

/* Before Card: Styled with your exact gradient background, white text for clarity, and soft shadow */
.before-card {
    flex: 1.1;
    background: linear-gradient(135deg, #d1567f 0%, #b83b65 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(184, 59, 101, 0.25);
}

.before-card .transform-col-title {
    color: #ffffff;
}

.before-card .transform-list li {
    color: #fcecee;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.before-card .t-icon-cross {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
}

/* After Card: Visually larger, premium bright and gold-bordered highlight */
.after-card {
    flex: 1.1;
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid var(--accent-gold);
    box-shadow: 0 20px 45px rgba(194, 145, 65, 0.18);
    transform: scale(1.02);
}

.transform-col-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary-rose);
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 1px;
}

.after-card .transform-col-title {
    color: var(--accent-gold);
}

.transform-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.transform-list li {
    font-size: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(184, 59, 101, 0.06);
}

.transform-list li:last-child {
    border-bottom: none;
}

/* Fixed Circular Cross Icon Style */
.t-icon-cross {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    width: 28px;
    height: 28px;
    border-radius: 50%; /* This makes it a perfect circle */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
}

/* Ensure check icons match uniformly as clean circles too */
.t-icon-check {
    color: #c29141;
    background: rgba(194, 145, 65, 0.15);
    width: 28px;
    height: 28px;
    border-radius: 50%; /* Perfect circle */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
}

/* Center Glowing Arrow */
.transform-arrow-box {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    flex-shrink: 0;
    margin: 0 -8px;
}

.arrow-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #b83b65 0%, #c29141 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(184, 59, 101, 0.3);
}

/* Responsive queries for section 6 */
@media (max-width: 850px) {
    .transformation-grid {
        flex-direction: column;
    }
    .transform-card, .before-card, .after-card {
        width: 100%;
        flex: 1;
        transform: none;
    }
    .transform-arrow-box {
        margin: 10px 0;
        transform: rotate(90deg);
    }
}
/* SECTION 7: Who Is This Trauma Healing Workshop For? */
.audience-section-light {
    background: #f5d6e3;
    padding: 20px 0 60px 0;
    width: 100%;
}

.audience-header {
    text-align: center;
    margin-bottom: 35px;
}

.audience-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 8px;
}

.audience-subtitle {
    font-size: 0.95rem;
    color: var(--primary-rose);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 15px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.audience-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-rose);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(184, 59, 101, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
}

.audience-img-wrapper {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
}

.audience-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.audience-card:hover .audience-img-wrapper img {
    transform: scale(1.05);
}

.badge-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent-gold);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.audience-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(58, 34, 45, 0.85) 0%, rgba(58, 34, 45, 0.4) 70%, transparent 100%);
    padding: 20px 15px 12px 15px;
    display: flex;
    align-items: flex-end;
}

.audience-title-overlay span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.audience-content {
    padding: 18px 20px;
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.6);
}

.audience-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.audience-cta-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-rose);
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 0 15px 35px rgba(184, 59, 101, 0.08);
    text-align: center;
}

/* Responsive queries for section 7 */
@media (max-width: 900px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }
    .audience-header h2 {
        font-size: 1.9rem;
    }
}
/* SECTION 8: Why Join This Program? (Clean 3-up and 2-centered layout) */
.why-join-section-light {
    background: linear-gradient(135deg, #fcecee 0%, #f7e1ea 40%, #faeef3 70%, #f5d6e3 100%);
    padding: 20px 0 60px 0;
    width: 100%;
}

.why-join-header {
    text-align: center;
    margin-bottom: 35px;
}

.why-join-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    color: var(--text-dark);
    font-weight: 700;
}

/* Rows setup using Flexbox for rock-solid centering without overlaps */
.why-join-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.top-row {
    width: 100%;
}

.bottom-row {
    width: 100%;
}

.why-card-modern {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(184, 59, 101, 0.1);
    border: 1px solid var(--border-rose);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    width: calc(33.333% - 14px); /* Exactly 3 cards per line */
    max-width: 320px;
}

.bottom-row .why-card-modern {
    width: calc(33.333% - 14px); /* Match width so bottom 2 look identical to top row */
    max-width: 320px;
}

.why-card-modern:hover {
    transform: translateY(-5px);
}

.why-img-container {
    position: relative;
    width: 100%;
    height: 380px;
}

.why-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-gold);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 2;
}

/* Glass/Solid overlay box matching the screenshot style */
.why-glass-box {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(82, 38, 56, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-glass-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 6px;
    font-weight: 700;
    line-height: 1.2;
}

.why-glass-box p {
    font-size: 0.82rem;
    color: #f3e1e8;
    line-height: 1.4;
    margin: 0 0 10px 0;
}

.why-accent-line {
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}

/* Reference-style CTA Button */
.why-cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.why-price-cta-btn {
    background: linear-gradient(135deg, #782945 0%, #522638 100%);
    border: 1px solid rgba(194, 145, 65, 0.4);
    border-radius: 50px;
    padding: 16px 45px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(120, 41, 69, 0.25);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.why-price-cta-btn:hover {
    transform: translateY(-2px);
}

.cta-main-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.cta-price-sub {
    font-size: 0.95rem;
    font-weight: 600;
}

.strike-price {
    text-decoration: line-through;
    color: #d1a3b4;
    margin-right: 6px;
    font-size: 0.9rem;
}

.highlight-price {
    color: var(--accent-gold);
    font-size: 1.05rem;
    font-weight: 700;
    margin-right: 4px;
}

.usd-text {
    color: #f3e1e8;
    font-size: 0.85rem;
}

/* Responsive queries */
@media (max-width: 900px) {
    .why-join-row {
        flex-wrap: wrap;
        justify-content: center;
    }
    .why-card-modern, .bottom-row .why-card-modern {
        width: calc(50% - 15px);
        max-width: none;
    }
}

@media (max-width: 600px) {
    .why-card-modern, .bottom-row .why-card-modern {
        width: 100%;
        max-width: 350px;
    }
}
/* SECTION 9: How Your Life Can Change After This Workshop */
.life-change-section-light {
    background: linear-gradient(135deg, #fcecee 0%, #f7e1ea 40%, #faeef3 70%, #f5d6e3 100%);
    padding: 20px 0 60px 0;
    width: 100%;
}

.life-change-header {
    text-align: center;
    margin-bottom: 35px;
}

.life-change-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.life-change-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.life-change-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-rose);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(184, 59, 101, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: transform 0.3s ease;
}

.life-change-card:hover {
    transform: translateY(-4px);
}

.change-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #b83b65 0%, #c29141 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(184, 59, 101, 0.25);
}

.change-content {
    display: flex;
    flex-direction: column;
}

.change-transition {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-rose);
    margin-bottom: 6px;
    line-height: 1.3;
}

.change-content p {
    font-size: 0.92rem;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

/* Responsive queries for section 9 */
@media (max-width: 768px) {
    .life-change-grid {
        grid-template-columns: 1fr;
    }
}
/* SECTION 10: What You Will Learn in This Journey */
.curriculum-section-light {
    background: linear-gradient(135deg, #fcecee 0%, #f7e1ea 40%, #faeef3 70%, #f5d6e3 100%);
    padding: 20px 0 60px 0;
    width: 100%;
}

.curriculum-header {
    text-align: center;
    margin-bottom: 35px;
}

.curriculum-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.curriculum-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-rose);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(184, 59, 101, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.curriculum-card:hover {
    transform: translateY(-4px);
}

.curriculum-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(184, 59, 101, 0.1);
}

.module-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    background: rgba(194, 145, 65, 0.12);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.curriculum-card-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: var(--primary-rose);
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

.curriculum-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.curriculum-list li {
    font-size: 0.92rem;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}

.curriculum-list li i {
    color: var(--accent-gold);
    font-size: 0.8rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Responsive queries for section 10 */
@media (max-width: 768px) {
    .curriculum-grid {
        grid-template-columns: 1fr;
    }
}
/* SECTION 11: Major Takeaways - Vertical Milestone Timeline Style */
.takeaways-timeline-section {
    background: linear-gradient(135deg, #fcecee 0%, #f7e1ea 40%, #faeef3 70%, #f5d6e3 100%);
    padding: 20px 0 65px 0;
    width: 100%;
}

/* Ensure the header text and divider are perfectly centered */
.takeaways-header {
    text-align: center;
    margin-bottom: 35px;
    width: 100%;
}

.takeaways-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    color: var(--text-dark);
    font-weight: 700;
    text-align: center;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 35px auto;
    padding: 10px 0;
}

/* Connecting Vertical Line (Stopped short at top/bottom so it doesn't poke out) */
.timeline-container::before {
    content: '';
    position: absolute;
    top: 45px;
    bottom: 45px;
    left: 35px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-rose), var(--accent-gold), var(--primary-rose));
    opacity: 0.35;
    z-index: 1; /* Keeps line behind the circles */
}

.timeline-item {
    position: relative;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.timeline-number {
    position: relative;
    z-index: 3; /* Places the number circle securely above the line */
    width: 70px;
    height: 70px;
    background: var(--card-bg); /* Solid background blocks out the line passing behind it */
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(184, 59, 101, 0.15);
}

.timeline-number span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-rose);
}

.timeline-box {
    flex-grow: 1;
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-rose);
    border-radius: 16px;
    padding: 22px 28px;
    box-shadow: 0 10px 30px rgba(184, 59, 101, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
}

.timeline-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(184, 59, 101, 0.15);
}

.featured-timeline-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 226, 232, 0.9) 100%);
    border: 1.5px solid var(--accent-gold);
}

.timeline-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-rose);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.timeline-tag i {
    color: var(--accent-gold);
    font-size: 0.95rem;
}

.timeline-box p {
    font-size: 0.92rem;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

.takeaways-cta-wrapper {
    display: flex;
    justify-content: center;
}

/* Responsive adjustments for timeline */
@media (max-width: 768px) {
    .timeline-container::before {
        left: 25px;
    }
    .timeline-number {
        width: 50px;
        height: 50px;
    }
    .timeline-number span {
        font-size: 1.1rem;
    }
    .timeline-item {
        gap: 15px;
    }
    .timeline-box {
        padding: 18px;
    }
    .timeline-tag {
        font-size: 1.05rem;
    }
}
/* SECTION 12: Meet Your Mentors & Our Mission */
.mentors-mission-section {
    background: linear-gradient(135deg, #fcecee 0%, #f7e1ea 40%, #faeef3 70%, #f5d6e3 100%);
    padding: 20px 0 65px 0;
    width: 100%;
}

.mentors-header {
    text-align: center;
    margin-bottom: 35px;
    width: 100%;
}

.mentors-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    color: var(--text-dark);
    font-weight: 700;
}

/* Mentors Photo Cards Layout */
.mentors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 750px;
    margin: 0 auto 40px auto;
}

.mentor-profile-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mentor-photo-box {
    width: 100%;
    height: 340px;
    background: linear-gradient(135deg, #f5d6e3 0%, #e6b8cb 100%); /* Soft rose gradient theme background */
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 15px 35px rgba(184, 59, 101, 0.15);
    margin-bottom: 15px;
}

.mentor-photo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1; /* Removed green tint / blend-mode filter */
    transition: transform 0.4s ease;
}

.mentor-profile-card:hover .mentor-photo-box img {
    transform: scale(1.03);
}

.mentor-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-rose);
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.mentor-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.mentor-desc {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.45;
    max-width: 320px;
    margin: 0;
}

/* Our Mission Card Box */
.mission-container-box {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px 35px;
    max-width: 750px;
    margin: 0 auto;
    border: 1px solid var(--border-rose);
    border-left: 5px solid var(--accent-gold);
    box-shadow: 0 15px 35px rgba(184, 59, 101, 0.08);
}

.mission-top-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.mission-text {
    font-size: 1.02rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.mission-text strong {
    color: var(--primary-rose);
}

/* Responsive queries */
@media (max-width: 768px) {
    .mentors-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .mentor-photo-box {
        height: 300px;
    }
}
/* SECTION 13: Real Transformations Testimonial Slider */
.transformations-slider-section {
    background: linear-gradient(135deg, #fcecee 0%, #f7e1ea 40%, #faeef3 70%, #f5d6e3 100%);
    padding: 20px 0 65px 0;
    width: 100%;
}

.transformations-header {
    text-align: center;
    margin-bottom: 35px;
    width: 100%;
}

.transformations-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 5px;
}

.transformations-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

/* Slider Layout Container */
.testimonial-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 850px;
    margin: 0 auto;
}

/* Arrow Buttons matching reference style */
.slider-arrow {
    background: var(--card-bg);
    border: 1px solid var(--border-rose);
    color: var(--primary-rose);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(184, 59, 101, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 2;
}

.slider-arrow:hover {
    background: var(--primary-rose);
    color: #ffffff;
    transform: scale(1.05);
}

/* Testimonial Card Box Theme Match */
.testimonial-card-box {
    flex-grow: 1;
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-rose);
    border-radius: 20px;
    padding: 40px 45px;
    box-shadow: 0 15px 35px rgba(184, 59, 101, 0.08);
    text-align: center;
    position: relative;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-icon-top {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
    opacity: 0.8;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-category {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.testimonial-author {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-rose);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.slide-counter {
    margin-top: 15px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .testimonial-slider-container {
        padding: 0 10px;
    }
    .testimonial-card-box {
        padding: 25px 20px;
    }
    .testimonial-text {
        font-size: 1.12rem;
    }
    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
}
/* SECTION 14: Imagine Waking Up Feeling Lighter */
.imagine-section-light {
    background: linear-gradient(135deg, #fcecee 0%, #f7e1ea 40%, #faeef3 70%, #f5d6e3 100%);
    padding: 20px 0 65px 0;
    width: 100%;
}

.imagine-header {
    text-align: center;
    margin-bottom: 35px;
    width: 100%;
}

.imagine-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    color: var(--text-dark);
    font-weight: 700;
}

/* Imagine Cards Grid Layout */
.imagine-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 800px;
    margin: 0 auto 25px auto;
}

.imagine-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-rose);
    border-radius: 16px;
    padding: 22px 25px;
    box-shadow: 0 10px 30px rgba(184, 59, 101, 0.06);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
}

.imagine-card:hover {
    transform: translateY(-3px);
}

/* Make the last card span full width for clean alignment */
.imagine-card:last-child {
    grid-column: span 2;
}

.imagine-check-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #b83b65 0%, #c29141 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(184, 59, 101, 0.2);
}

.imagine-card p {
    font-size: 0.96rem;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* Highlight Quote Box */
.imagine-quote-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 226, 232, 0.9) 100%);
    border: 1.5px solid var(--accent-gold);
    border-radius: 20px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto 25px auto;
    text-align: center;
    box-shadow: 0 15px 35px rgba(184, 59, 101, 0.1);
}

.imagine-prompt-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.imagine-main-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-rose);
    margin: 0;
    line-height: 1.3;
}

/* Footer Invitation Message */
.imagine-footer-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.invite-journey {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.workshop-desc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card-bg);
    border: 1px solid var(--border-rose);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.92rem;
    color: var(--primary-rose);
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(184, 59, 101, 0.05);
    margin: 0;
}

.workshop-desc-badge i {
    color: var(--accent-gold);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .imagine-grid {
        grid-template-columns: 1fr;
    }
    .imagine-card:last-child {
        grid-column: span 1;
    }
    .imagine-main-quote {
        font-size: 1.45rem;
    }
}
/* SECTION 15: Final CTA Master Banner Style */
.final-cta-section {
    background: linear-gradient(135deg, #fcecee 0%, #f7e1ea 40%, #faeef3 70%, #f5d6e3 100%);
    padding: 20px 0 75px 0;
    width: 100%;
}

.final-cta-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 226, 232, 0.9) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid var(--accent-gold);
    border-radius: 24px;
    padding: 45px 35px;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 20px 50px rgba(184, 59, 101, 0.15);
    position: relative;
    overflow: hidden;
}

.final-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-rose), var(--accent-gold), var(--primary-rose));
}

.cta-top-headlines {
    margin-bottom: 20px;
}

.career-milestone-text {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 1px;
    line-height: 1.3;
}

.final-cta-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--primary-rose);
    margin-top: 5px;
    line-height: 1.25;
}

.cta-event-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(184, 59, 101, 0.08);
    border: 1px solid var(--border-rose);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.cta-event-badge i {
    color: var(--accent-gold);
}

.cta-pricing-box {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.strike-price {
    font-size: 1.3rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.current-offer-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-rose);
}

.current-offer-price span {
    font-size: 1.3rem;
    color: var(--accent-gold);
}

.cta-action-wrapper {
    margin-bottom: 20px;
}

.master-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #b83b65 0%, #a03054 100%);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(184, 59, 101, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 550px;
}

.master-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(184, 59, 101, 0.4);
    background: linear-gradient(135deg, #c7426f 0%, #b83b65 100%);
}

.master-cta-btn i {
    font-size: 1.1rem;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.master-cta-btn:hover i {
    transform: translateX(5px);
}

.cta-footer-note {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-dark);
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .final-cta-card {
        padding: 30px 20px;
    }
    .career-milestone-text {
        font-size: 1.15rem;
    }
    .final-cta-card h2 {
        font-size: 1.6rem;
    }
    .current-offer-price {
        font-size: 1.8rem;
    }
    .master-cta-btn {
        font-size: 0.92rem;
        padding: 15px 20px;
    }
}
/* SECTION 16: Important Note & Footer (Dark Theme) */
.footer-dark-section {
    background: #561842; /* Rich dark background contrasting the soft theme */
    color: #fcecee;
    padding: 60px 0 40px 0;
    width: 100%;
    border-top: 2px solid var(--accent-gold);
}

.footer-note-box {
    max-width: 750px;
    margin: 0 auto 40px auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(194, 145, 65, 0.3);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.footer-note-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-weight: 700;
}

.footer-note-box p {
    font-size: 0.88rem;
    color: #d1c4cb;
    line-height: 1.6;
    margin: 0;
}

.footer-note-box strong {
    color: #ffffff;
}

.footer-links-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-links-container a {
    font-size: 0.9rem;
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links-container a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.dot-separator {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.footer-copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #8c7f85;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Responsive queries */
@media (max-width: 768px) {
    .footer-note-box {
        padding: 20px 15px;
    }
    .footer-links-container {
        gap: 10px;
    }
}