/* Coaching Page Specific Styles - Following Home Page Design */
.coaching-hero-section {
    background: linear-gradient(135deg,
            rgba(249, 250, 251, 0.9) 0%,
            rgba(243, 244, 246, 0.9) 100%);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 0;
    border: none;
    box-shadow: none;
}

.coaching-hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.3;
}

.coaching-section-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.coaching-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: #1d4ed8;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.coaching-main-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: #1f2937;
    opacity: 1;
    transform: translateY(0);
}

.coaching-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.coaching-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.coaching-btn-primary,
.coaching-btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.coaching-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: 2px solid transparent;
}

.coaching-btn-primary:hover {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.coaching-btn-secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.coaching-btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.coaching-services-section {
    padding: 8rem 0;
    background: var(--bg-secondary, #f8fafc);
}

html[data-theme="dark"] .coaching-services-section {
    background: var(--bg-secondary, #1e293b);
}

.coaching-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.coaching-section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary, #64748b);
    max-width: 600px;
    margin: 0 auto;
}

.coaching-section-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color, #e2e8f0), transparent);
    margin: 4rem 0;
}

html[data-theme="dark"] .coaching-section-divider {
    background: linear-gradient(90deg, transparent, var(--border-color, #334155), transparent);
}

.coaching-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.coaching-service-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color, #e5e7eb);
    transition: all 0.3s ease;
    text-align: center;
}

html[data-theme="dark"] .coaching-service-card {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.coaching-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

html[data-theme="dark"] .coaching-service-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: #60a5fa;
}

.coaching-service-icon {
    margin-bottom: 1.5rem;
    color: #3b82f6;
}

.coaching-service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary, #1f2937);
    margin-bottom: 1rem;
}

html[data-theme="dark"] .coaching-service-title {
    color: var(--text-primary, #f3f4f6);
}

.coaching-service-description {
    font-size: 1rem;
    color: var(--text-secondary, #6b7280);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

html[data-theme="dark"] .coaching-service-description {
    color: var(--text-secondary, #d1d5db);
}

.coaching-service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.coaching-service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary, #6b7280);
    position: relative;
    padding-left: 1.5rem;
}

.coaching-service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

html[data-theme="dark"] .coaching-service-features li {
    color: var(--text-secondary, #d1d5db);
}

.coaching-service-link {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.coaching-service-link:hover {
    color: #1d4ed8;
}

.coaching-courses-section {
    padding: 4rem 0;
    background: var(--bg-primary, #ffffff);
}

html[data-theme="dark"] .coaching-courses-section {
    background: var(--bg-primary, #0f172a);
}

.coaching-courses-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.coaching-courses-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary, #1f2937);
    margin-bottom: 1rem;
}

html[data-theme="dark"] .coaching-courses-main-title {
    color: var(--text-primary, #f3f4f6);
}

.coaching-courses-main-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary, #64748b);
    max-width: 600px;
    margin: 0 auto;
}

html[data-theme="dark"] .coaching-courses-main-subtitle {
    color: var(--text-secondary, #94a3b8);
}

.coaching-contact-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

.coaching-contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.coaching-contact-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.coaching-contact-cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.coaching-contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary, #1f2937);
    margin-bottom: 1rem;
}

html[data-theme="dark"] .section-header h2 {
    color: var(--text-primary, #f3f4f6);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary, #6b7280);
    max-width: 600px;
    margin: 0 auto;
}

html[data-theme="dark"] .section-header p {
    color: var(--text-secondary, #d1d5db);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color, #e5e7eb);
    transition: all 0.3s ease;
    text-align: center;
}

html[data-theme="dark"] .service-card {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #10b981;
}

html[data-theme="dark"] .service-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: #34d399;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary, #1f2937);
    margin-bottom: 1rem;
}

html[data-theme="dark"] .service-card h3 {
    color: var(--text-primary, #f3f4f6);
}

.service-card p {
    color: var(--text-secondary, #6b7280);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

html[data-theme="dark"] .service-card p {
    color: var(--text-secondary, #d1d5db);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary, #6b7280);
}

html[data-theme="dark"] .service-features li {
    color: var(--text-secondary, #d1d5db);
}

.service-features li::before {
    content: "✓";
    width: 20px;
    height: 20px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
}

.service-link {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.service-link:hover {
    color: #059669;
    text-decoration: underline;
}

html[data-theme="dark"] .service-link {
    color: #34d399;
}

html[data-theme="dark"] .service-link:hover {
    color: #10b981;
}

.coaching-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: #3b82f6;
    border-color: white;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.125rem;
    }

    .coaching-hero {
        padding: 4rem 0 3rem;
    }

    .coaching-services {
        padding: 6rem 0;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Tab Styles for Coaching Services */
.coaching-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid #e5e7eb;
    color: #6b7280;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tab-button:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.tab-button.active {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border-color: transparent;
}

.tab-content-container {
    min-height: 600px;
    border: none;
    background: transparent;
    box-shadow: none;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
    border: none;
    background: transparent;
    box-shadow: none;
}

.tab-content.active {
    display: block;
}

.tab-layout {
    display: block;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    min-height: 400px;
    border: none;
    background: transparent;
    box-shadow: none;
}

.tab-text-section {
    text-align: center;
}

.tab-text-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

html[data-theme="dark"] .tab-text-section h2 {
    color: #f3f4f6;
}

.tab-description {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

html[data-theme="dark"] .tab-description {
    color: #d1d5db;
}

.tab-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tab-features li {
    background: #f8fafc;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: #374151;
    font-weight: 500;
    border-left: 4px solid #3b82f6;
}

html[data-theme="dark"] .tab-features li {
    background: rgba(30, 41, 59, 0.5);
    color: #f3f4f6;
    border-left-color: #60a5fa;
}

.tab-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.tab-btn-primary,
.tab-btn-secondary {
    padding: 1rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.tab-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.tab-btn-primary:hover {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.tab-btn-secondary {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.1);
}

.tab-btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

html[data-theme="dark"] .tab-btn-secondary {
    background: rgba(30, 41, 59, 0.8);
    color: #60a5fa;
    border: 2px solid #60a5fa;
}

html[data-theme="dark"] .tab-btn-secondary:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.tab-visual-section {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.coaching-visual {
    text-align: center;
}

.coaching-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 50%;
    margin: 0 auto;
    border: 3px solid #3b82f6;
}

.coaching-icon svg {
    color: #3b82f6;
}

html[data-theme="dark"] .coaching-icon {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-color: #60a5fa;
}

html[data-theme="dark"] .coaching-icon svg {
    color: #60a5fa;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dark theme adjustments */
html[data-theme="dark"] .tab-button {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
    color: #9ca3af;
}

html[data-theme="dark"] .tab-button:hover {
    border-color: #60a5fa;
    color: #60a5fa;
}

html[data-theme="dark"] .tab-button.active {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

/* Mobile responsiveness for tabs */
@media (max-width: 768px) {
    .coaching-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .tab-layout {
        padding: 2rem 1rem;
    }

    .tab-text-section h2 {
        font-size: 2rem;
    }

    .tab-features {
        grid-template-columns: 1fr;
    }

    .tab-actions {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn-primary,
    .tab-btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}