/* coaching/css/coaching_revamped.css */

/* === HERO SECTION === */
.coaching-hero {
    background: linear-gradient(rgba(0, 48, 135, 0.8), rgba(200, 16, 46, 0.8)), url('../images/coaching_hero_bg.jpg') no-repeat center center/cover;
    color: #ffffff;
    padding: 140px 0 80px;
    text-align: center;
}
.coaching-hero h1 {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
}
.coaching-hero .subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}
.btn.btn-hero-cta {
    background-color: var(--accent-yellow);
    color: var(--dark-text);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.btn.btn-hero-cta:hover {
    background-color: #e6c300;
    transform: translateY(-3px) scale(1.05);
}

/* === GENERAL SECTION STYLING === */
.content-section { padding: 80px ; }

#coaching-focus .content-section  { padding: 0px ; }
.alt-bg { background-color: var(--light-bg); }
.section-title { margin-bottom: 1rem; }
.section-subtitle { max-width: 800px; margin-bottom: 3rem; }

/* === PROOF OF CONCEPT (L.A. SARMIENTO) SECTION === */
/* === PROOF OF CONCEPT (L.A. SARMIENTO) SECTION === */

/* --- Main Section Styling --- */
.proof-of-concept-section {
    background-color: #f8f9fa; /* A slightly richer off-white */
    padding: 5rem 0; /* Consistent vertical padding */
}

/* --- Eyebrow & Typography --- */
.poc-eyebrow {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700; /* Bolder for more impact */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    color: var(--primary-red);
}

.proof-of-concept-section .section-title {
    text-align: center;
}

.proof-of-concept-section .section-subtitle {
    text-align: center;
    max-width: 750px; /* Constrain line length for readability */
    margin: 0 auto 4rem auto; /* Center the subtitle block */
}

/* --- Responsive Layout (Grid) --- */
.poc-layout {
    display: grid;
    /* On mobile, it's a single column */
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: flex-start;
}

/* --- Video Player --- */
/* REVISED: Video Player - Now a flexible black box */
.poc-video-player {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: -webkit-fill-available; /* Sets a fixed height for the container */
    background-color: #000000; /* The black background */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* REVISED: Iframe - Uses modern CSS for aspect ratio */
.poc-video-player iframe {
    /* No longer needs absolute positioning */
    width: 100%;
    max-height: 100%;
    border: 0;
    /* This modern property maintains the 16:9 ratio within the flexbox */
    aspect-ratio: 16 / 9;
}

/* --- Story & Profile --- */
.poc-story {
    display: flex;
    flex-direction: column;
}

.poc-profile {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.poc-profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-blue);
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.2); /* Shadow matching the border color */
}

.poc-profile-info h3 {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    color: var(--primary-blue);
    margin: 0;
    line-height: 1.2;
}

.poc-profile-info p {
    margin: 0;
    color: #555;
    font-size: 1rem;
}

/* --- Timeline Styling --- */
.poc-timeline {
    position: relative;
    border-left: 3px solid #dee2e6; /* Central timeline bar */
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem; /* Spacing between timeline items */
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.timeline-icon {
    background-color: var(--primary-blue);
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    /* Position icon relative to the main timeline bar */
    position: absolute;
    left: -24px; /* (45px width + 3px border) / 2 */
}

.timeline-content {
    padding-top: 5px; /* Align text with the center of the icon */
    margin-left: 30px; /* Space from the main timeline bar */
}

.timeline-content h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.timeline-content p {
    margin: 0;
    color: #6c757d;
    line-height: 1.6;
}

/* --- Links & Buttons --- */
.poc-links {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap; /* Allow buttons to wrap on small screens */
    justify-content: center;
}

.btn-secondary-poc, .btn-outline-poc {
    /* Define shared button styles here if needed */
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

/* Add specific styles for your button classes */
.btn-secondary-poc {
    background-color: var(--primary-blue);
    color: white;
}
.btn-secondary-poc:hover {
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
}
.btn-outline-poc {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}
.btn-outline-poc:hover {
    background-color: var(--primary-blue);
    color: white;
}

/* --- RESPONSIVE BREAKPOINT --- */
@media (min-width: 992px) {
    .poc-layout {
        /* On large screens, switch to a 2-column grid */
        grid-template-columns: 1fr 1fr; /* Two equal columns */
        gap: 4rem; /* Increase gap for more space */
    }
}

/* Timeline Styles */
.poc-timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 3px solid var(--border-color);
}
.timeline-item {
    margin-bottom: 2rem;
    position: relative;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-icon {
    position: absolute;
    left: -2.8rem;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fdfdfd;
}
.timeline-content h4 {
    font-family: var(--font-primary);
    margin: 0 0 0.25rem 0;
    color: var(--dark-text);
}
.timeline-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.poc-links {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}
.btn.btn-secondary-poc {
    background-color: #3b5998; /* Facebook Blue */
    color: white;
    border-color: #3b5998;
}
.btn.btn-secondary-poc:hover {
    background-color: #324b81;
}
.btn.btn-outline-poc {
    border-color: var(--primary-red);
    color: var(--primary-red);
}
.btn.btn-outline-poc:hover {
    background-color: var(--primary-red);
    color: white;
}


/* === WHY COACH SECTION === */
.why-coach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.benefit-card {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}
.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}
.benefit-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

/* === ABOUT ME SECTION === */
.coaching-about-me .about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.coaching-about-me .about-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}
.coach-stats {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}
.coach-stats li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.coach-stats li i {
    color: var(--primary-blue);
    margin-right: 1rem;
    width: 25px; /* for alignment */
    text-align: center;
}


/* === COACHING FOCUS SECTION === */
.coaching-focus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.focus-card {
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid;
}
.focus-card.included {
    background-color: #e8f5e9; /* Light green */
    border-color: #4caf50; /* Green */
}
.focus-card.excluded {
    background-color: #ffebee; /* Light red */
    border-color: #f44336; /* Red */
}
.focus-card h3 {
    font-family: var(--font-primary);
    margin-top: 0;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}
.focus-card h3 i { margin-right: 0.75rem; }
.focus-card ul {
    list-style: none;
    padding-left: 0;
}
.focus-card ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}
.focus-card ul li i {
    margin-right: 0.75rem;
    margin-top: 4px;
}
.focus-card.included i { color: #388e3c; } /* Darker green */
.focus-card.excluded i { color: #d32f2f; } /* Darker red */


/* === INVESTMENT SECTION === */
.investment-section { text-align: center; }
.price-display {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-family: var(--font-primary);
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}
.payment-info { font-size: 1.1rem; margin-bottom: 0.5rem; }
.session-platform { font-size: 1rem; color: #555; }

/* === FINAL CTA SECTION === */
.final-cta-coaching {
    background-color: var(--primary-blue);
    color: white;
    text-align: center;
    padding: 60px 0;
}
.final-cta-coaching h2 { font-size: 2rem; margin-bottom: 1rem; }
.final-cta-coaching p { max-width: 600px; margin: 0 auto 2rem auto; opacity: 0.9; }
.final-cta-coaching .btn.btn-accent {
    background-color: var(--accent-yellow);
    color: var(--dark-text);
    border-color: var(--accent-yellow);
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* === RESPONSIVE STYLES === */
@media(max-width: 992px) {
    .poc-layout { grid-template-columns: 1fr; }
    .coaching-about-me .about-content { flex-direction: column; }
}

@media(max-width: 768px) {
    .coaching-focus-grid { grid-template-columns: 1fr; }
    .poc-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
  /* --- Coaching Page Hero --- */
  .coaching-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 75%); /* Optional texture */
    background-blend-mode: overlay; /* Or multiply, screen, etc. */
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    margin-top: 60px;
}
.coaching-hero::before { /* Darkening overlay for text readability */
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.35); /* Slightly darker overlay */
    z-index: 1;
}
.coaching-hero .container {
    position: relative;
    z-index: 2;
}
.coaching-hero h1 {
    font-size: clamp(2.6rem, 6vw, 4rem);
    margin-bottom: 0.75rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}
.coaching-hero p.subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    max-width: 750px;
    margin: 0 auto 2rem auto;
    opacity: 0.95;
    line-height: 1.7;
}
.coaching-hero .btn-hero-cta {
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
    background-color: var(--accent-yellow);
    color: var(--dark-text);
    border-color: var(--accent-yellow);
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}
.coaching-hero .btn-hero-cta:hover {
    background-color: #e6c300;
    transform: translateY(-3px) scale(1.03);
}

/* --- Why Coach With Me Section --- */
.why-coach-section { background-color: #fff; } /* White to stand out */
.why-coach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.benefit-card {
    background-color: var(--light-bg);
    padding: 1.8rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    text-align: center;
    border-bottom: 4px solid var(--primary-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}
.benefit-card .fas, .benefit-card .fab {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}
.benefit-card h3 {
    font-family: var(--font-primary);
    color: var(--primary-red);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}
.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}

/* --- Meet Your Coach Section (Styling from original, with slight tweaks) --- */
.coaching-about-me { padding: 3rem 0; margin-top:0; border-radius: 8px; }
.coaching-about-me .about-content { display: flex; align-items: center; gap: 3rem; }
.coaching-about-me .about-image { flex-basis: 35%; max-width: 250px; flex-shrink: 0; text-align: center; }
.coaching-about-me .about-image img { width: 100%; border-radius: 50%; border: 6px solid var(--primary-blue); box-shadow: 0 5px 20px rgba(0,0,0,0.15); }
.coaching-about-me .about-text { flex-basis: 65%; }
.coaching-about-me .about-text ul { list-style: none; padding-left: 0; }
.coaching-about-me .about-text ul li { margin-bottom: 1.2rem; display: flex; align-items: flex-start; font-size: 1.05rem; line-height: 1.7; }
.coaching-about-me .about-text ul li i { color: var(--primary-red); margin-right: 15px; font-size: 1.5em; margin-top: 4px; width: 25px; text-align: center; }
@media (max-width: 820px) { /* Adjusted breakpoint for stacking */
    .coaching-about-me .about-content { flex-direction: column; text-align: center; }
    .coaching-about-me .about-image { margin-bottom: 2rem; }
    .coaching-about-me .about-text ul li { justify-content: flex-start; text-align: left; } /* Center icon, left align text */
}

/* --- Coaching Focus Section (Services Offered & Not Included) --- */
.coaching-focus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
@media (min-width: 992px) {
    .coaching-focus-grid { grid-template-columns: 1fr 1fr; }
    
}

/* poc links display flex flex dirction column aligh intems center */


.focus-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}
.focus-card h3 {
    font-family: var(--font-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.75rem;
}
.focus-card h3 i { margin-right: 12px; font-size: 1.3em; }
.focus-card.included h3 { color: var(--primary-blue); }
.focus-card.included h3 i { color: var(--primary-blue); }
.focus-card.excluded h3 { color: var(--primary-red); }
.focus-card.excluded h3 i { color: var(--primary-red); }
.focus-card ul { list-style: none; padding-left: 0; }
.focus-card ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    line-height: 1.6;
}
.focus-card ul li i.fa-check-circle { color: #27ae60; margin-right: 10px; margin-top: 5px; font-size: 1.2em; }
.focus-card ul li i.fa-times-circle { color: #c0392b; margin-right: 10px; margin-top: 5px; font-size: 1.2em; }

/* --- My Approach Note --- */
.my-approach-note {
    background-color: #e9f5f9; /* Lighter, more inviting blue */
    border-left: 6px solid var(--primary-blue);
    color: #1c5b7c; /* Darker blue text for contrast */
    padding: 1.8rem 2.2rem;
    margin: 2.5rem 0;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.my-approach-note h4 {
    margin-top: 0;
    font-family: var(--font-primary);
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    color: var(--primary-blue); /* Heading color */
}
.my-approach-note h4 i { margin-right: 12px; }
.my-approach-note p { font-size: 1rem; line-height: 1.75; }

/* --- Investment Section (Pricing) --- */
.investment-section { text-align: center; margin-top: -40px;  padding: 1rem 1rem; border-radius: 10px; background-color: #fff; box-shadow: var(--card-shadow); }
.investment-section .section-title { margin-bottom: 0.5rem; }
.investment-section .price-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin: 0.5rem 0;
    font-family: var(--font-primary);
}
.investment-section .payment-info { font-size: 1.15rem; color: #333; margin-bottom: 0.5rem; }
.investment-section .session-platform { font-size: 1rem; color: #555; margin-bottom: 1rem;}
.investment-section .payment-info strong { color: var(--primary-blue); }

/* --- Video Preview --- */
.coaching-video-preview .featured-video-player { max-width: 850px; margin: 0 auto; box-shadow: var(--hover-shadow); border-radius: 12px; background-color: #000; }
.coaching-video-preview .video-placeholder-text { text-align: center; margin-top: 1.5rem; font-style: italic; color: #555; }

/* --- Final CTA --- */
.final-cta-coaching {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue)); /* Reversed gradient for variety */
    color: var(--light-text);
    padding: 3.5rem 1.5rem;
    border-radius: 12px;
    margin-top: 2.5rem;
    text-align: center;
}
.final-cta-coaching h2 { font-family: var(--font-primary); font-size: clamp(2rem, 5vw, 2.5rem); margin-bottom: 1rem; }
.final-cta-coaching p { font-size: 1.15rem; margin-bottom: 2.5rem; max-width: 700px; margin-left: auto; margin-right: auto; opacity: 0.95; }
.final-cta-coaching .btn-accent {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    background-color: var(--accent-yellow);
    color: var(--dark-text);
    border-color: var(--accent-yellow);
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}
 .final-cta-coaching .btn-accent:hover {
    background-color: #e6c300;
    transform: translateY(-3px) scale(1.03);
}
.final-cta-coaching .btn-accent i { margin-left: 12px; }
