/* ================================================
   DDS Dental Website - CTA Section
   ================================================
   Call-to-action section with brand gradient
   ================================================ */

.cta-section {
    background: linear-gradient(135deg, var(--color-mid-blue) 0%, var(--color-havelock-blue) 100%);
    padding: var(--section-padding);
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-content h2 {
    color: var(--bg-white);
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-content p:last-of-type {
    margin-bottom: 30px;
}

.cta-section .cta-visual .specialties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.cta-section .cta-visual .specialties-grid .specialty-item {
    background-color: white;
    width: 100%;
    height: 100%;
    padding: 20px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-items: center;
    text-align: center;
}

/* ================================================
   RESPONSIVE STYLES
   ================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .cta-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .cta-content {
        text-align: center;
    }
}
