/* Timeline Styles */
.coaching-section {
    background-color: #0F1219;
    /* Slightly different dark shade */
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: -40px;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.coaching-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* The central line */
.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

/* The dots */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: var(--accent);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(252, 163, 17, 0.2);
}

.timeline-item.right::after {
    left: -8px;
}

.timeline-content {
    padding: 25px;
    background-color: var(--bg-card);
    border-radius: 6px;
    position: relative;
    transition: transform 0.3s;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

.timeline-date {
    color: var(--accent);
    font-weight: 800;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.timeline-content h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Philosophy Section */
.philosophy-block {
    max-width: 900px;
    margin: 80px auto 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.philosophy-images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.philosophy-images img {
    height: 200px;
    width: auto;
    border-radius: 8px;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.3s;
}

.philosophy-images img:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}


/* Media Queries for Timeline */
@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 23px;
    }

    .timeline-item.right {
        left: 0%;
    }

    .philosophy-images {
        flex-direction: column;
        align-items: center;
    }

    .philosophy-images img {
        width: 100%;
        height: auto;
    }
}

/* Floating Share Button */
.share-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: var(--bg-dark);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(252, 163, 17, 0.4);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-float-btn:hover {
    transform: scale(1.1) rotate(15deg);
    background-color: white;
}

@media (max-width: 768px) {
    .share-float-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}