/* ===================================
   SERVICES PAGE SPECIFIC STYLES
   =================================== */

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo:hover {
    color: var(--muted-teal);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.nav-active {
    color: var(--muted-teal);
}

.nav-links a.nav-active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--muted-teal);
}

/* Services Hero */
.services-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    opacity: 1;
    transform: none;
}

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

.services-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    margin-bottom: 2rem;
    border-radius: 999px;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 12px 24px var(--accent-glow);
}

.services-hero .hero-badge i {
    color: var(--muted-teal);
    font-size: 1.2rem;
}

.services-hero .hero-headline {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.services-hero .hero-subheadline {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 2.5rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.5rem;
}

.trust-badge {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--muted-teal);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.trust-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Scenarios Section */
.scenarios-section {
    padding: 4rem 0;
    background: var(--section-highlight-bg);
    opacity: 1;
    transform: none;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.scenario-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.scenario-card:hover {
    border-color: var(--muted-teal);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--accent-glow);
}

.scenario-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.scenario-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.scenario-problem {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--card-border);
}

.scenario-solution {
    background: var(--section-highlight-bg);
    padding: 1.25rem;
    border-radius: 0.75rem;
    border-left: 3px solid var(--muted-teal);
}

.scenario-solution strong {
    color: var(--muted-teal);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.scenario-solution p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Service Details Section */
.service-details-section {
    padding: 4rem 0;
    opacity: 1;
    transform: none;
}

.service-detail-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    border-color: var(--muted-teal);
    box-shadow: 0 20px 40px var(--accent-glow);
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--card-border);
}

.service-detail-icon {
    font-size: 3.5rem;
    color: var(--muted-teal);
    min-width: 70px;
}

.service-detail-title h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.service-tagline {
    font-size: 1.15rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.service-detail-description {
    margin-bottom: 2.5rem;
}

.service-detail-description p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.service-detail-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-detail-column h4 i {
    color: var(--muted-teal);
    font-size: 1.2rem;
}

.service-detail-column ul {
    list-style: none;
    padding: 0;
}

.service-detail-column li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.service-detail-column li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--muted-teal);
    font-weight: bold;
}

/* Engagement Models */
.engagement-models {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--card-border);
}

.engagement-models h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.engagement-card {
    background: var(--section-highlight-bg);
    border: 1px solid var(--card-border);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.engagement-card:hover {
    border-color: var(--muted-teal);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px var(--accent-glow);
}

.engagement-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
}

.engagement-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.engagement-duration {
    font-size: 0.85rem;
    color: var(--muted-teal);
    font-weight: 500;
}

.engagement-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Tech Stack */
.tech-stack {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--card-border);
}

.tech-stack h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tech-stack h4 i {
    color: var(--muted-teal);
}

.tech-categories {
    display: grid;
    gap: 1.5rem;
}

.tech-category {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tech-label {
    font-weight: 600;
    color: var(--text-primary);
    min-width: 100px;
    padding-top: 0.5rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    padding: 0.4rem 1rem;
    background: var(--section-highlight-bg);
    border: 1px solid var(--card-border);
    border-radius: 999px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    border-color: var(--muted-teal);
    color: var(--muted-teal);
}

/* Course Topics */
.course-topics {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--card-border);
}

.course-topics h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-topics h4 i {
    color: var(--muted-teal);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.topic-card {
    background: var(--section-highlight-bg);
    border: 1px solid var(--card-border);
    border-radius: 1rem;
    padding: 1.75rem;
    transition: all 0.3s ease;
    position: relative;
}

.topic-card:hover {
    border-color: var(--muted-teal);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px var(--accent-glow);
}

.topic-card h5 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.topic-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.topic-duration {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--muted-teal);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    opacity: 1;
    transform: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    border-color: var(--muted-teal);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--accent-glow);
}

.quote-icon {
    font-size: 2rem;
    color: var(--muted-teal);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-info strong {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info span {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.testimonial-result {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--card-border);
}

.result-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--muted-teal);
    color: var(--deep-slate);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Guarantee Section */
.guarantee-section {
    padding: 4rem 0;
    background: var(--section-highlight-bg);
    opacity: 1;
    transform: none;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.guarantee-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 1.25rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    border-color: var(--muted-teal);
    transform: translateY(-5px);
    box-shadow: 0 12px 28px var(--accent-glow);
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.guarantee-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.guarantee-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Comparison Section */
.comparison-section {
    padding: 4rem 0;
    opacity: 1;
    transform: none;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 1rem;
    overflow: hidden;
}

.comparison-table thead {
    background: var(--section-highlight-bg);
}

.comparison-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 2px solid var(--card-border);
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--card-border);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: var(--section-highlight-bg);
}

.comparison-table td strong {
    color: var(--text-primary);
}

.pricing-note {
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 1rem;
    text-align: center;
}

.pricing-note p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

.pricing-note i {
    color: var(--muted-teal);
    margin-right: 0.5rem;
}

/* How It Works Section */
.how-it-works-section {
    padding: 4rem 0;
    opacity: 1;
    transform: none;
}

.process-flow {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.process-flow-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--muted-teal);
    color: var(--deep-slate);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 12px 24px var(--accent-glow);
}

.process-flow-step .step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.process-flow-step .step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--section-highlight-bg);
    opacity: 1;
    transform: none;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--muted-teal);
    box-shadow: 0 10px 25px var(--accent-glow);
    transform: translateY(-4px);
}

.faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.faq-item h3 i {
    color: var(--muted-teal);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Services CTA Section */
.services-cta-section {
    padding: 5rem 0;
    opacity: 1;
    transform: none;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 2rem;
    padding: 4rem 3rem;
    box-shadow: 0 20px 40px var(--accent-glow);
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--muted-teal);
    color: var(--deep-slate);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.availability-dot {
    width: 8px;
    height: 8px;
    background: var(--deep-slate);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-content > p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--section-highlight-bg);
    border-radius: 1rem;
}

.cta-stat {
    text-align: center;
}

.cta-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--muted-teal);
    margin-bottom: 0.25rem;
}

.cta-stat span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    border: 1px solid var(--card-border);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: var(--muted-teal);
    color: var(--deep-slate);
    border-color: var(--muted-teal);
    box-shadow: 0 15px 35px var(--accent-glow);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    background: var(--muted-teal-dim);
    border-color: var(--muted-teal-dim);
    box-shadow: 0 18px 45px var(--accent-glow-strong);
}

.cta-button.secondary {
    color: var(--text-primary);
    background: transparent;
}

.cta-button.secondary:hover {
    transform: translateY(-3px);
    border-color: var(--muted-teal);
    color: var(--muted-teal);
    box-shadow: 0 10px 25px var(--accent-glow);
}

.cta-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1rem;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 968px) {
    .nav-links {
        gap: 1.5rem;
    }

    .services-hero {
        padding: 6rem 0 3rem;
    }

    .services-hero .hero-headline {
        font-size: 2.25rem;
    }

    .services-hero .hero-subheadline {
        font-size: 1.1rem;
    }

    .trust-badges {
        gap: 2rem;
    }

    .trust-number {
        font-size: 2rem;
    }

    .scenarios-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .engagement-grid {
        grid-template-columns: 1fr;
    }

    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }

    .process-flow-step {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .cta-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .services-hero {
        padding: 5rem 0 2rem;
        min-height: 50vh;
    }

    .services-hero .hero-headline {
        font-size: 1.75rem;
    }

    .services-hero .hero-subheadline {
        font-size: 1rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1.5rem;
    }

    .trust-number {
        font-size: 1.75rem;
    }

    .scenario-card {
        padding: 2rem 1.5rem;
    }

    .service-detail-card {
        padding: 2rem 1.5rem;
    }

    .service-detail-header {
        flex-direction: column;
        gap: 1rem;
    }

    .service-detail-icon {
        font-size: 2.5rem;
    }

    .service-detail-title h3 {
        font-size: 1.5rem;
    }

    .topics-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-card {
        padding: 1.5rem;
    }

    .comparison-table-wrapper {
        overflow-x: scroll;
    }

    .comparison-table {
        min-width: 600px;
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
    }

    .cta-content {
        padding: 3rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content > p {
        font-size: 1.05rem;
    }

    .availability-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .cta-stats {
        gap: 1rem;
        padding: 1rem;
    }

    .cta-stat strong {
        font-size: 1.5rem;
    }

    .tech-category {
        flex-direction: column;
        gap: 0.5rem;
    }

    .tech-label {
        min-width: auto;
        padding-top: 0;
    }
}
