
/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pink: #B33B71;
    --teal: #1A5244;
    --white: #FFFFFF;
    --black: #000000;
    --warmwhite: #FAFAF8;
    --beige: #F6EDE7;
    --sage: #E8F0ED;
    --gold: #C19A6B;
   
}

body {
    background-color: var(--white);
    color: var(--black);
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
}

/* Utility Classes */
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shadow-soft {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.highlight-teal {
    background: linear-gradient(120deg, var(--teal) 0%, var(--pink) 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent !important;
    display: inline-block;
    font-size: 4rem;
    text-shadow: none;
   
}

.highlight-pink {
    background: linear-gradient(120deg, var(--pink) 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent !important;
    display: inline-block;
    font-size: 4rem;
    text-shadow: none;
}



/* About Section */
.about-section {
    display: flex;
    flex-wrap: wrap;
    padding: 0rem 10%;
    flex-direction: row;
}

.background-container {
    background: linear-gradient(to bottom, var(--white) 0%, var(--beige) 100%);
}

.about-content {
    padding-top: 8%;
    flex: 1;
    padding-right: 60px;
}

.about-heading {
    font-size: 3rem;
    text-align: center;
    display: inline-block;
    padding-left: 20px;
    color: var(--teal);
    position: relative;
    font-weight: bold;
}

.about-text {
    font-size: 1.13rem;
    line-height: 1.6;
    padding: 20px;
}

.about-button {
    display: inline-block;
    margin: 20px;
    min-width: 300px;
    background-color: var(--pink);
    color: var(--white);
    font-weight: bold;
    font-size: 18px;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.about-button:hover {
    background-color: var(--teal);
}

.about-image {
    flex: 1;
    display: flex;
    align-items: flex-end; 
}

.about-image img {
    max-width: 100%;
}

@media (max-width: 1024px) {
    .about-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-content {
        padding-right: 0;
    }

    .about-image {
        order: 3; 
        margin-top: 20px;
    }
}

/* Stats Section */
.stats-section {
    width: 100%;
    background: linear-gradient(120deg, var(--teal) 0%, var(--pink) 100%);
    color: var(--white);
    padding: 2rem 5%;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    flex: 1;
    min-width: 220px;
    margin: 0.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-right: 0.8rem;
    color: var(--white);
}

.stat-text {
    font-size: 1.1rem;
    line-height: 1.3;
    
    color: var(--white);
}

/* Why Me */
.why-me {
    padding-top: 5%;
    display: flex;
    justify-content: center;
    padding: 40px;
    gap: 10%;
    background: linear-gradient(to bottom, var(--beige) 0%, var(--warmwhite) 100%);
}

.why-me h2 {
    font-size: 36px;
    color: var(--pink);
    padding: 20px 0;
    font-weight: bold;
}

.why-me-content {
    max-width: 550px;
    height: 100%;
}

.why-me-text {
    font-size: 18px;
    line-height: 1.6;
}

.why-me-image {
    max-width: 550px;
    width: auto;
    height: auto;
}

/* Fears Section */
.fears-section-container {
    margin: 0 auto;
    padding: 50px 20px;
    background-color: var(--warmwhite);
    position: relative;
    overflow: hidden;
}

.fears-section-title {
    text-align: center;
    color: var(--pink);
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: bold;
}

.fears-container {
    display: grid;
    padding: 0 10%;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
}

.fear-bubble {
    position: relative;
    padding: 25px;
    border-radius: 10px;
    border:2px solid var(--gold);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    height: 150px;
    color: var(--teal);
}

.fear-bubble::after {
    content: '';
    position: absolute;
    bottom: -20px;
    border-style: solid;
}

.fear-text {
    font-size: 1.3rem;
    line-height: 1.4;
    margin: 0;
    color: var(--teal);
    position: relative;
    text-align: center;
}

.fear-text::before {
    content: '"';
    font-size: 60px;
    line-height: 0;
    position: absolute;
    top: 15px;
    left: -20px;
    opacity: 0.2;
    font-family: Georgia, serif;
}

/* Testimonials Section */
.testimonials-section {
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    background-color: var(--warmwhite);
    padding: 40px 10px;
    display: flex;
    flex-direction: column;
}

.testimonials-heading {
    text-align: center;
    margin-bottom: 20px;
}

.testimonials-section-title-1 {
    font-size: 1.8rem;
    color: var(--teal);
    margin-bottom: 10px;
}

.testimonials-section-title-2 {
    padding-top: 30px;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--pink);
}

.carousel-container {
    position: relative;
    flex-grow: 1;
    padding: 20px 20px;
    width: 100%;
}

.carousel {
    width: 80%;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.client-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.testimonial-content {
    max-width: 700px;
}

.slide-content {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.client-info {
    margin-top: 10px;
}

.client-name {
    font-weight: 600;
    color: var(--teal);
    display: block;
}

.client-position {
    font-size: 0.9rem;
    color: var(--pink);
}

.carousel-nav {
    position: absolute;
    top: 50%; 
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border: none;
    transition: all 0.3s ease;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.carousel-nav:hover {
    background-color: var(--gold);
}

.carousel-nav:hover .nav-arrow {
    border-color: var(--white);
}

.nav-arrow {
    width: 10px;
    height: 10px;
    border-style: solid;
    border-color: var(--black);
    border-width: 0 3px 3px 0;
    display: inline-block;
    transition: border-color 0.3s ease;
}

.arrow-left {
    transform: rotate(135deg);
}

.arrow-right {
    transform: rotate(-45deg);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
}

.indicator {
    width: 30px;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.2);
    margin: 0 5px;
    cursor: pointer;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: var(--gold);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* CTA Banner */
.cta-banner-wave {
max-height: 300px;
padding: 2.5rem 2rem;
background: linear-gradient(120deg, var(--teal) 0%, var(--gold) 100%);
color: var(--white);
position: relative;
overflow: hidden;
border-radius: 0; 
text-align: center;
}

.cta-content {
width: 100%;
max-width: 600px;
margin: 0 auto;
position: relative;
z-index: 2;
}

.cta-heading {
font-size: 2rem;
margin-bottom: 0.8rem;
font-weight: 700;
}

.cta-text {
font-size: 1.1rem;
margin-bottom: 1.5rem;
opacity: 0.9;
}

.cta-button {
display: inline-block;
padding: 0.8rem 2rem;
background-color: var(--pink);
border-radius: 5px;
color: var(--white);
text-decoration: none;
font-weight: bold;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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


@media (max-width: 768px) {
.cta-banner-wave {
padding: 2rem 1.5rem;
}

.cta-heading {
font-size: 1.8rem;
}
}

/* Benefits Section */
.benefits-section {
    padding: 60px 10%;
    text-align: center;
    background: linear-gradient(to bottom, var(--sage) 0%, var(--warwhite) 100%);
}

.why-heading {
    text-align: center;
    color: var(--pink);
    font-size: 2.4rem;
    padding-top: 10px;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.why-subheading {
    font-size: 1.3rem;
    padding-top: 20px;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.benefit-item span {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.benefit-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 1rem;
    color: var(--gray);
}

.conclusion {
    font-size: 1.8rem;
    color: var(--teal);
    max-width: 800px;
    padding-top: 8%;
    margin-left: auto;
    margin-right: auto;
}

.benefits-button {
    display: inline-block;
    margin-top: 30px;
    min-width: 300px;
    background-color: var(--pink);
    color: var(--white);
    font-weight: bold;
    font-size: 18px;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.benefits-button:hover {
    background-color: var(--teal);
}

/* Skills Section */
.skills-section {
    padding: 60px 60px;
    position: relative;
    overflow: hidden;
    background-color: var(--beige);
}

.skills-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    
}

.skills-subheading {
    text-align: center;
    font-size: 1.2rem;
    color: var(--pink);
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.skills-wrapper {
    position: relative;
}

.skills-container {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
    z-index: 1;
    align-items: stretch;
}

.skill-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background-color: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gold);
}

.skill-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.skill-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--teal);
}

.skill-content {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--black);
}

.coach-profile {
    flex: 0 0 300px;
    position: relative;
    z-index: 2;
    margin-left: 30px;
    margin-right: 30px;
}

.coach-image-container {
    width: 300px;
    height: 500px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    border: 1px solid var(--gold);
    border-radius: 12px;
}

.coach-image {
    width: 100%;
    height: 100%;
    opacity: 0.8;
    object-fit: cover;
}

/* Steps to Booking */
.booking-section-container {
    text-align: center;
    padding: 5rem 10%;
    background-color: var(--warmwhite);
}

.booking-section-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.booking-section-subtitle {
    font-size: 1.2rem;
    color: var (--gray);
    margin-top: 0.5rem;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    font-weight: 600;
}

.step {
    font-size: 1.2rem;
    color: var(--gray);
    cursor: pointer;
}

.step.active {
    color: var(--black);
}

.step-number {
    color: var(--pink);
    font-weight: 700;
    margin-right: 0.3rem;
}

.highlight-box {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    padding: 2rem;
    position: relative;
}

.highlight-text {
    flex: 1;
    text-align: left;
    
}

.highlight-text h3 {
    font-size: 1.7rem;
    font-weight: 700;
    padding-bottom: 30px;
    color: var(--pink);
}

.highlight-text p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    color: var(--black);
    padding-right: 1rem;
}

.highlight-button {
    display: inline-block;
    margin-top: 30px;
    /*min-width: 300px;*/
    background-color: var(--pink);
    color: var(--white);
    font-weight: bold;
    font-size: 18px;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.highlight-graphic {
    flex: 1;
    text-align: left;
}

.highlight-graphic img {
    max-width: 75%;
    height: auto;
}


/* Responsive Adjustments */
@media (max-width: 1024px) {
    .why-me, .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .skills-wrapper {
        flex-direction: column;
    }

    .coach-profile {
        margin-bottom: 40px;
        margin-left: 0;
    }

    .skills-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .footer-contact {
        align-items: center;
    }

    .about-image img {
        max-width: 100%;
        height: auto;
    }

    .hero-title {
        font-size: 3rem;
        padding: 0 10px;
    }

    .about-heading {
        font-size: 2.5rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .steps {
        flex-wrap: wrap; /* Allows wrapping to multiple lines */
        gap: 1rem; /* Adjusts spacing between steps */
    }

    .step-number {
        margin-bottom: 0.5rem; /* Adds spacing below the step number */
    }
}

@media (max-width: 768px) {

    
    .about-section, .benefits-container, .fears-container {
        grid-template-columns: 1fr;
    }

    .testimonials-section-title-1, .testimonials-section-title-2 {
        font-size: 1.8rem;
    }

    .carousel {
        width: 90%;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    .fear-bubble {
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .skills-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .coach-image-container {
        width: 200px;
        height: 200px;
    }

    .coach-profile {
        flex: 0 0 200px;
    }

    .hero-title {
        font-size: 2.2rem;
        padding: 0 15px;
    }

    .about-heading {
        font-size: 2rem;
    }

    .about-text {
        font-size: 0.9rem;
    }

    .benefit-item span {
        font-size: 1.5rem;
    }

    .benefit-item h3 {
        font-size: 1rem;
    }

    .benefit-item p {
        font-size: 0.9rem;
    }

    .highlight-text h3 {
        font-size: 1.5rem;
    }

    .highlight-text p {
        font-size: 1rem;
    }

    .footer-logo div {
        font-size: 1.5rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    
    .hero-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .about-heading {
        font-size: 1.8rem;
    }

    .about-text {
        font-size: 0.8rem;
    }
    
    .why-me-image {
    max-width: 450px;

    }
    .benefit-item span {
        font-size: 1.2rem;
    }

    .benefit-item h3 {
        font-size: 0.9rem;
    }

    .benefit-item p {
        font-size: 0.8rem;
    }
    
    .highlight-box {
        flex-direction: column; /* Stack elements vertically */
        align-items: flex-start; /* Align items to the start */
    }

    .highlight-graphic {
        order: 1; /* Place the graphic at the top */
        text-align: center; /* Center the graphic */
        margin-bottom: 1rem; /* Add spacing below the graphic */
    }

    .highlight-text {
        order: 2; /* Place the text in the middle */
    }

    .highlight-button {
        order: 3; /* Place the button at the bottom */
        align-self: center; /* Center the button horizontally */
        margin-top: 1rem; /* Add spacing above the button */
    }

    .highlight-text h3 {
        font-size: 1.2rem;
    }

    .highlight-text p {
        font-size: 0.9rem;
    
    }

    .footer-logo div {
        font-size: 1.2rem;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .carousel {
        width: 100%;
    }

    .fear-bubble {
        padding: 15px;
    }

    .skills-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .coach-image-container {
        width: 150px;
        height: 150px;
    }

    .coach-profile {
        flex: 0 0 150px;
    }
}