/* Services Hero */
.services-hero {
    position: relative;
    height: 50vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: url('../images/services-hero.jpg') no-repeat center center/cover;
    color: var(--white);
    padding-top: 100px;
    text-align: center;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.services-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Services Navigation */
.services-nav {
    position: sticky;
    top: 80px;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.nav-link {
    padding: 20px 0;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    transition: var(--transition);
}

.nav-link.active,
.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

/* Service Sections */
.service-section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.service-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.service-header p {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
    direction: ltr;
}

.service-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.service-image:hover img {
    transform: scale(1.03);
}

.service-details h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.service-features {
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.1rem;
}

.service-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.info-box h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.info-box p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Workshops Modalities */
.workshop-modalities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.modality {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    background-color: var(--secondary-color);
    border-radius: 8px;
    transition: var(--transition);
}

.modality:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.modality i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.modality span {
    font-size: 0.9rem;
    text-align: center;
}

/* Packages Section */
.packages-section {
    padding: 100px 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.package-card.featured {
    border: 2px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(255, 154, 118, 0.3);
}

.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
    font-family: 'Cormorant Garamond', serif;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.package-features {
    margin-bottom: 30px;
}

.package-features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.package-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 104, 56, 0.9), rgba(0, 104, 56, 0.9)), url('../images/cta-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-image {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .service-content.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        gap: 15px;
        justify-content: space-between;
    }
    
    .service-header h2 {
        font-size: 2.2rem;
    }
    
    .package-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .services-hero {
        min-height: 400px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-link {
        padding: 15px;
        text-align: center;
    }
    
    .service-info {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}
.service-image img {
    width: 100%;
    border-radius: 20px;
    height: 580px;
    transition: var(--transition);
}
.modality i {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 10px;
}
.modality span {
    color: white;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
}
.cta-content {
    background: white !important;
    padding: 50px !important;
    border-radius: 24px;
}
.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
    font-family: montserrat;
}
.service-details {
    padding: 20px 15px;
}
.btn-outline:hover {
    background: rgba(0, 104, 56, 0.05);
    color: #222;
}

.experience-badge {
    display: none !important;
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 20px;
    border-radius: 15px;
    width: 140px;
    height: 140px;
    display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 30px rgba(255, 154, 118, 0.3);
    z-index: 2;
}