/* ============================================
   MODERN SERVICES PAGES
   ============================================ */

/* Service Hero Section */
.service-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10rem 2rem 6rem;
    margin-top: 65px;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.92) 0%, rgba(17, 24, 39, 0.96) 100%);
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.service-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.service-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 2rem;
    color: #60a5fa;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-hero-title .text-blue {
    color: #3b82f6;
}

.service-hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
}

/* Service Intro Section */
.service-intro-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.service-intro-content {
    max-width: 1100px;
    margin: 0 auto;
}

.intro-lead {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(16, 185, 129, 0.08));
    padding: 1.75rem 2rem;
    border-radius: 1rem;
    border-left: 4px solid #3b82f6;
    margin-top: 2rem;
}

.intro-highlight p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #1f2937;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 4rem 2rem;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    color: #6b7280;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 1.25rem;
    border: 2px solid #e5e7eb;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.feature-icon i {
    font-size: 1.75rem;
    color: #ffffff;
}

.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    color: #4b5563;
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    line-height: 1.6;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.125rem;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem 1.75rem;
    border-radius: 1rem;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.benefit-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.benefit-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Process Section */
.process-section {
    padding: 4rem 2rem;
    background: #f9fafb;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #3b82f6 0%, #10b981 100%);
}

.process-step {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
    position: relative;
    z-index: 1;
}

.process-number span {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.process-content {
    flex: 1;
    background: #ffffff;
    padding: 2rem 2.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 2px solid #e5e7eb;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-content:hover {
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.process-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.process-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* Advantages Section */
.advantages-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.advantages-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.advantages-intro {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: center;
}

.advantages-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 1.75rem 2rem;
    border-radius: 1rem;
    border: 2px solid #e5e7eb;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.advantage-item:hover {
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.advantage-icon i {
    font-size: 1.25rem;
    color: #ffffff;
}

.advantage-text {
    flex: 1;
}

.advantage-text h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.advantage-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Channels Grid (for Voice Services) */
.channels-section {
    padding: 4rem 2rem;
    background: #f9fafb;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.channel-card {
    background: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.channel-card:hover {
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.channel-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.channel-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.channel-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

/* CTA Section */
.service-cta-section {
    padding: 4rem 2rem;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.service-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.btn-cta:hover {
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.5);
    color: #ffffff;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .channels-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .advantages-list {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .service-hero {
        padding: 8rem 1.5rem 4rem;
    }

    .service-hero-title {
        font-size: 2.5rem;
    }

    .service-hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-step {
        gap: 1.5rem;
    }

    .process-number {
        width: 60px;
        height: 60px;
    }

    .process-number span {
        font-size: 1.5rem;
    }

    .process-content {
        padding: 1.75rem 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .service-hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .channels-grid {
        grid-template-columns: 1fr;
    }
}
