/* ===== CONTACTS HERO ===== */
.contacts-hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 4rem 0 3rem;
    text-align: center;
}

.contacts-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contacts-hero p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* ===== CONTACTS SECTION ===== */
.contacts-section {
    padding: 4rem 0;
}

.contacts-wrapper {
    margin-bottom: 4rem;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.contact-link {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--primary-dark);
}

.contact-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== CONTACT FORM SECTION ===== */
.contacts-form-section {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contacts-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contacts-form-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contacts-form-header p {
    font-size: 1rem;
    color: var(--text-light);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
    padding: 3rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .contacts-hero h1 {
        font-size: 2rem;
    }

    .contact-info-cards {
        gap: 1.5rem;
    }

    .contacts-form-section {
        padding: 2rem;
    }

    .contacts-form-header h2 {
        font-size: 1.75rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .contacts-hero h1 {
        font-size: 1.75rem;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .contacts-form-section {
        padding: 1.5rem;
    }

    .contacts-form-header h2 {
        font-size: 1.5rem;
    }

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

    .contact-card {
        padding: 1.5rem;
    }
}
