/* Menopause Coaching Specific Styles */

.menopause-hero {
    min-height: 100vh;
    background-image: url('attached_assets/forest_1753297392175.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.menopause-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.menopause-hero .hero-text {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(3px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.menopause-hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.menopause-hero .hero-subtitle {
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.hero-cta {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Facts Carousel */
.facts-carousel {
    padding: 5rem 0;
    background-color: #b8956a;
    color: white;
}

.facts-carousel h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.carousel-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.fact-cards {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.fact-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    color: #333;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.fact-card.active {
    opacity: 1;
    transform: translateX(0);
}

.fact-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.fact-card p {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-dots .dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dots .dot.active {
    background-color: white;
}

/* Booking Section */
.booking-section {
    padding: 5rem 0;
    background-color: #f8f6f4;
}

.booking-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.booking-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.booking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 4rem auto;
}

.booking-option {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.booking-option:hover {
    transform: translateY(-5px);
}

.booking-option.featured {
    border: 3px solid #b8956a;
    transform: scale(1.05);
}

.booking-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #b8956a;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.booking-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.booking-option h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: bold;
}

.booking-option p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.booking-option ul {
    text-align: left;
    margin-bottom: 2rem;
    padding-left: 0;
    list-style: none;
}

.booking-option li {
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.booking-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: bold;
}

/* Contact Form */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
    text-align: center;
    font-size: 2rem;
    color: #b8956a;
    margin-bottom: 2rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e8e0d6;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b8956a;
}

.form-submit {
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 1rem;
}

.form-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Who It's For */
.who-its-for {
    padding: 5rem 0;
    background-color: #e8e0d6;
}

.who-its-for h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.audience-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-5px);
}

.audience-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.audience-item p {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background-color: #b8956a;
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background-color: white;
    color: #b8956a;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-button:hover {
    background-color: #f8f6f4;
    transform: translateY(-3px);
}

.cta-note {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menopause-hero h1 {
        font-size: 2.2rem;
    }

    .menopause-hero .hero-text {
        padding: 2rem;
    }

    .fact-card {
        padding: 2rem;
        height: 350px;
    }

    .fact-card p {
        font-size: 1.2rem;
    }

    .booking-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .booking-option.featured {
        transform: none;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
}

/* Sticky CTA for Mobile */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.sticky-cta-button {
    width: 100%;
    padding: 1.2rem;
    background: #b8956a;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background: #a08659;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .sticky-cta {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .menopause-hero h1 {
        font-size: 1.8rem;
    }

    .hero-cta {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }

    .fact-card {
        padding: 1.5rem;
    }

    .booking-options {
        margin: 0 1rem;
    }

    .booking-option {
        padding: 2rem 1.5rem;
    }
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: white;
    color: #b8956a;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}