/* CTA Section - Examination Services Page */
.cta-section {
    background-color: var(--color-white);
    padding: 100px 0;
}

.cta-banner {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-darker) 100%);
    border-radius: 24px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

/* Network Pattern Background */
.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(100, 179, 204, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(100, 179, 204, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(100, 179, 204, 0.1) 0%, transparent 60%);
    background-size: 100% 100%;
    z-index: 0;
    pointer-events: none;
}

/* Network Grid Pattern */
.cta-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(100, 179, 204, 0.1) 1px, transparent 1px),
        linear-gradient(0deg, rgba(100, 179, 204, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 
        50px 50px,
        50px 50px,
        200px 200px,
        200px 200px,
        150px 150px,
        180px 180px,
        160px 160px;
    background-position: 
        0 0,
        0 0,
        0 0,
        100% 100%,
        50% 50%,
        20% 80%,
        80% 20%;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-headline {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-white);
    margin: 0 0 20px 0;
}

.cta-headline .highlight-text {
    color: var(--color-primary);
    background: var(--gradient-primary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: var(--color-white-70);
    margin: 0 0 40px 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button-primary {
    background: var(--gradient-primary);
    color: var(--color-text-white);
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(77, 208, 225, 0.3);
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 208, 225, 0.4);
}

.cta-button-secondary {
    background: transparent;
    color: var(--color-text-white);
    border: 2px solid var(--color-primary);
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button-secondary:hover {
    background-color: rgba(100, 179, 204, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(100, 179, 204, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-banner {
        padding: 60px 50px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-banner {
        padding: 50px 40px;
        border-radius: 20px;
    }

    .cta-headline {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .cta-subtitle {
        font-size: 18px;
        margin-bottom: 35px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 50px 0;
    }

    .cta-banner {
        padding: 40px 30px;
        border-radius: 16px;
    }

    .cta-headline {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .cta-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .cta-buttons {
        gap: 12px;
    }

    .cta-button-primary,
    .cta-button-secondary {
        padding: 14px 28px;
        font-size: 15px;
        max-width: 100%;
    }
}

