/* Import CSS Variables from main.css */
@import url('main.css');

/* Coaching Specific Styles */
.coaching-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--accent-cream) 0%, #FEFCFA 100%);
    text-align: center;
}

.coaching-hero h1 {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--secondary-berry);
    margin-bottom: 1.5rem;
}

.coaching-hero p {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coaching-hero .hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.package-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

/* Coaching Approach */
.coaching-approach {
    padding: 80px 0;
    background: white;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.approach-item {
    text-align: center;
    padding: 2rem;
}

.approach-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-rose);
    filter: drop-shadow(0 2px 4px rgba(212, 165, 116, 0.3));
}

.approach-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 1rem;
}

.approach-item p {
    color: #666;
    line-height: 1.6;
}

/* Coaching Services */
.coaching-services {
    padding: 80px 0;
    background: #f8fffe;
}

.service-detail {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #4a7c59;
}

.service-detail h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 1rem;
}

.service-detail p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-detail ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail ul li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.service-detail ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: bold;
}

/* Coaching Packages */
.coaching-packages {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.package {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.package.featured {
    border: 2px solid #4a7c59;
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #4a7c59;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 1.5rem;
}

.package ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.package ul li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.package ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: bold;
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background: white;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.story {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.story img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.testimonial-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-teal), #0d9488);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
    transition: all 0.3s ease;
}

.testimonial-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(20, 184, 166, 0.4);
}

.testimonial-icon i {
    font-size: 2rem;
    color: white;
}

.story h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 1rem;
}

.story p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.story-stats span {
    background: #4a7c59;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .coaching-hero h1 {
        font-size: 2.5rem;
    }
    
    .coaching-hero .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package.featured {
        transform: none;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
}
