/* ============================================
   WHO NEEDS COACH PAGE STYLES
   ============================================ */

/* Hero Section */
.who-needs-coach-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .who-needs-coach-hero {
        height: 400px;
    }
}

@media (min-width: 992px) {
    .who-needs-coach-hero {
        height: 400px;
    }
}

.who-needs-coach-hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.who-needs-coach-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.who-needs-coach-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(37, 55, 75, 0.5);
}

.who-needs-coach-hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 0 20px;
}

.who-needs-coach-map-pin {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .who-needs-coach-map-pin {
        width: 80px;
        height: 80px;
        margin-bottom: 40px;
    }
}

.map-pin-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #4CAF50;
    position: relative;
    z-index: 2;
}

.map-pin-arrow {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid #4CAF50;
    z-index: 1;
}

@media (min-width: 768px) {
    .map-pin-arrow {
        bottom: -20px;
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-top: 25px solid #4CAF50;
    }
}

.who-needs-coach-hero-title {
    color: #FFF;
    text-align: center;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

@media (min-width: 768px) {
    .who-needs-coach-hero-title {
        font-size: 48px;
    }
}

@media (min-width: 992px) {
    .who-needs-coach-hero-title {
        font-size: 64px;
    }
}

/* First Content Section */
.who-needs-coach-content-section {
    padding: 80px 0;
    background-color: #FFF;
}

@media (min-width: 768px) {
    .who-needs-coach-content-section {
        padding: 100px 0;
    }
}

@media (min-width: 992px) {
    .who-needs-coach-content-section {
        padding: 60px 0;
    }
}

.who-needs-coach-section-title {
    color: #25374B;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .who-needs-coach-section-title {
        font-size: 40px;
        margin-bottom: 15px;
    }
}

@media (min-width: 992px) {
    .who-needs-coach-section-title {
        font-size: 40px;
        margin-bottom: 15px;
    }
}

.who-needs-coach-text {
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .who-needs-coach-text {
        margin-bottom: 0;
    }
}

.who-needs-coach-text p {
    color: #4A5568;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .who-needs-coach-text p {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

.who-needs-coach-text p:last-child {
    margin-bottom: 0;
}

.who-needs-coach-image-wrapper {
    text-align: center;
    padding: 20px 0;
}

@media (min-width: 992px) {
    .who-needs-coach-image-wrapper {
        padding: 0;
    }
}

.who-needs-coach-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Myths Section */
.who-needs-coach-myths-section {
    padding: 80px 0;
    background-color: #F9FAFB;
}

@media (min-width: 768px) {
    .who-needs-coach-myths-section {
        padding: 100px 0;
    }
}

@media (min-width: 992px) {
    .who-needs-coach-myths-section {
        padding: 60px 0;
    }
}

.who-needs-coach-myths-title {
    color: #25374B;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 48px;
    text-align: center;
}

@media (min-width: 768px) {
    .who-needs-coach-myths-title {
        font-size: 40px;
        margin-bottom: 60px;
    }
}

@media (min-width: 992px) {
    .who-needs-coach-myths-title {
        font-size: 40px;
        margin-bottom: 72px;
    }
}

.myth-boxes-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

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

@media (min-width: 992px) {
    .myth-boxes-container {
        grid-template-columns: repeat(6, 1fr);
        gap: 24px;
        margin-bottom: 80px;
    }
}

.myth-box {
    background-color: #FFF;
    border: 2px solid #038DB5;
    border-radius: 8px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (min-width: 768px) {
    .myth-box {
        padding: 32px 20px;
    }
}

.myth-box.active {
    background-color: #038DB5;
    border-color: #038DB5;
}

.myth-label {
    color: #038DB5;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.myth-box.active .myth-label {
    color: #FFF;
}

.myth-number {
    color: #038DB5;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
}

@media (min-width: 768px) {
    .myth-number {
        font-size: 40px;
    }
}

.myth-box.active .myth-number {
    color: #FFF;
}

/* Myth Content Container - fixed slot so all myths show in same position */
.myth-content-container {
    position: relative;
    margin-top: 60px;
    min-height: 300px;
    overflow: hidden;
    transition: height 0.35s ease;
}

@media (min-width: 992px) {
    .myth-content-container {
        margin-top: 80px;
        min-height: 400px;
    }
}

.myth-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.myth-content.active {
    position: absolute;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Roger Federer Section (MYTH 01) */
.federer-image-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .federer-image-wrapper {
        margin-bottom: 0;
    }
}

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

.federer-text {
    padding: 0 20px;
}

@media (min-width: 992px) {
    .federer-text {
        padding: 0;
    }
}

.federer-text p {
    color: #25374B;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
    /* margin: 0; */
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .federer-text p {
        font-size: 18px;
    }
}

/* Myth Content Text (MYTH 02-06) */
.myth-content-text {
    padding: 0 20px;
}

@media (min-width: 992px) {
    .myth-content-text {
        padding: 0;
    }
}

.myth-content-text p {
    color: #4A5568;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .myth-content-text p {
        font-size: 20px;
        margin-bottom: 28px;
    }
}

.myth-content-text p:last-child {
    margin-bottom: 0;
}

/* CTA Section uses executive-bottom-cta-section (common.css) */

/* Responsive Adjustments */
@media (max-width: 767px) {
    .who-needs-coach-content-section {
        padding: 60px 0;
    }
    
    .who-needs-coach-section-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .who-needs-coach-text p {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .who-needs-coach-myths-section {
        padding: 60px 0;
    }
    
    .who-needs-coach-myths-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .myth-boxes-container {
        gap: 16px;
        margin-bottom: 40px;
    }
    
    .myth-box {
        padding: 20px 12px;
    }
    
    .myth-label {
        font-size: 10px;
        margin-bottom: 8px;
    }
    
    .myth-number {
        font-size: 28px;
    }
    
    .federer-text {
        padding: 0;
    }
    
    .federer-text p {
        font-size: 16px;
    }
    
}
