/* ============================================
   Services Page Specific Styles
   ============================================ */

/* ============================================
   SERVICES HERO SECTION
   ============================================ */
.services-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 150px 20px 80px;
}

.services-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 50%, var(--navy-light) 100%);
    z-index: 0;
}

.services-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.services-hero-title {
    color: var(--white);
    margin-bottom: 25px;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.services-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* ============================================
   5D FRAMEWORK SECTION
   ============================================ */
.framework-section {
    padding: 100px 20px;
    background: var(--white);
}

.framework-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.framework-step {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    flex: 0 0 calc(20% - 40px);
    min-width: 160px;
}

.framework-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--teal);
    margin: 0 auto 20px;
}

.framework-step h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.framework-step p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.framework-arrow {
    font-size: 32px;
    color: var(--teal);
    flex: 0 0 auto;
    opacity: 0.5;
}

/* ============================================
   SERVICE DETAIL SECTIONS
   ============================================ */
.service-detail {
    padding: 100px 20px;
    background: var(--gray-50);
}

.service-detail.alternate {
    background: var(--white);
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
}

.service-number {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 700;
    color: var(--gray-200);
    line-height: 1;
    flex-shrink: 0;
}

.service-title-block {
    flex: 1;
}

.service-title {
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 15px;
}

.service-tagline {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--teal);
    margin-bottom: 15px;
    font-family: var(--font-display);
}

.service-for {
    color: var(--gray-600);
    font-size: 1.1rem;
    font-weight: 500;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

/* ============================================
   SERVICE INFO
   ============================================ */
.service-info {
    position: sticky;
    top: 100px;
}

.service-image {
    border-radius: 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 4px solid var(--white);
    background: var(--white);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: var(--transition);
}

.service-image img:hover {
    transform: scale(1.05);
}

.service-detail.alternate .service-image {
    border: 4px solid var(--gray-100);
}

.info-block {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--teal);
}

.service-detail.alternate .info-block {
    background: var(--gray-50);
}

.info-block h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-block h3 i {
    color: var(--teal);
    font-size: 1.4rem;
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--gray-700);
    line-height: 1.6;
}

.info-list li:last-child {
    margin-bottom: 0;
}

.info-list i {
    color: var(--teal);
    margin-top: 3px;
    flex-shrink: 0;
}

.delivery-info {
    background: linear-gradient(135deg, var(--teal-light), var(--teal));
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--white);
}

.delivery-info i {
    font-size: 32px;
    flex-shrink: 0;
}

.delivery-info strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.delivery-info p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   PRICING CARDS
   ============================================ */
.service-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 28px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--teal);
}

.pricing-card.featured {
    border-color: var(--teal);
    box-shadow: var(--shadow-lg);
}

.pricing-card.premium {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
}

.pricing-card.premium .pricing-tier,
.pricing-card.premium .pricing-amount,
.pricing-card.premium .pricing-duration,
.pricing-card.premium .pricing-features li {
    color: var(--white);
}

.pricing-card.premium .pricing-features i {
    color: var(--gold);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-tier {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
    text-align: center;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--teal);
    text-align: center;
    margin-bottom: 10px;
    line-height: 1;
}

.pricing-card.premium .pricing-amount {
    color: var(--gold);
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: 5px;
}

.pricing-duration {
    text-align: center;
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--gray-200);
}

.pricing-card.premium .pricing-duration {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-features i {
    color: var(--teal);
    font-size: 14px;
    margin-top: 3px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============================================
   ASSETS SHOWCASE
   ============================================ */
.assets-showcase {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-md);
}

.service-detail.alternate .assets-showcase {
    background: var(--gray-50);
}

.assets-showcase h3 {
    color: var(--navy);
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

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

.asset-item {
    background: var(--gray-50);
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-detail.alternate .asset-item {
    background: var(--white);
}

.asset-item:hover {
    border-color: var(--teal);
    transform: translateX(5px);
}

.asset-item i {
    font-size: 28px;
    color: var(--teal);
}

.asset-item span {
    color: var(--navy);
    font-weight: 500;
    line-height: 1.4;
}

/* ============================================
   SIGNATURE PROGRAMS
   ============================================ */
.signature-programs {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-md);
}

.signature-programs h3 {
    color: var(--navy);
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.program-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.program-card:hover {
    border-color: var(--teal);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    margin: 0 auto 20px;
}

.program-card h4 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.program-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   SERVICES CTA SECTION
   ============================================ */
.services-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-light) 100%);
    color: var(--white);
}

.services-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.services-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-buttons .btn-secondary {
    border-color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--teal);
}

.cta-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.cta-note i {
    color: var(--gold);
    margin-right: 8px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .framework-steps {
        gap: 15px;
    }
    
    .framework-step {
        flex: 0 0 calc(20% - 30px);
    }
}

@media (max-width: 992px) {
    .service-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .service-number {
        font-size: 4rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-info {
        position: relative;
        top: 0;
    }
    
    .service-pricing {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .framework-arrow {
        display: none;
    }
    
    .framework-step {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 120px 20px 60px;
        min-height: 50vh;
    }
    
    .framework-section,
    .service-detail,
    .services-cta {
        padding: 60px 20px;
    }
    
    .framework-step {
        flex: 0 0 100%;
    }
    
    .service-pricing {
        grid-template-columns: 1fr;
    }
    
    .assets-grid,
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-amount {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .service-image {
        margin-bottom: 20px;
        border-radius: 16px;
    }
    
    .service-image img:hover {
        transform: scale(1.02);
    }
}
