/* .contact {
    background-color: var(--contact-background-color);
} */

.contact-header {
    padding: 20px 0 14px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 80px;
}

.contact-header h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.contact-header p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.contact-card {
    background: #ffffff;
    border: 1px solid var(--border-light, #000);
    border-radius: 16px;
    padding: 5px 4px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-dark), var(--secondary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-dark);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 1px solid var(--border-light, #000);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.contact-icon i {
    font-size: 20px;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.contact-card:hover .contact-icon i {
    color: var(--accent-color);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--default-color);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.contact-info {
    color: var(--default-color);
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-info strong {
    color: var(--default-color);
    font-weight: 500;
}

.contact-info div {
    margin-bottom: 8px;
}

.contact-info div:last-child {
    margin-bottom: 0;
}

.business-hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 8px;
    margin-top: 8px;
}

.day {
    color: var(--default-color);
    font-weight: 500;
}

.hours {
    color: var(--default-color);
    text-align: right;
}

.cta-section {
    border-radius: 20px;
    padding: 64px 48px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 300;
    color: var(--default-color);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.cta-section p {
    font-size: 1.125rem;
    color: var(--default-color);
    margin-bottom: 32px;
    font-weight: 300;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--default-color);
    color: #ff1;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 26, 26, 0.15);
    color: #fff;
    text-decoration: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header {
        padding: 60px 0 48px;
        margin-bottom: 60px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 60px;
    }

    .contact-card {
        padding: 32px 24px;
    }

    .cta-section {
        padding: 48px 32px;
        border-radius: 16px;
    }

    .business-hours-grid {
        grid-template-columns: 1fr;
        gap: 4px;
        text-align: left;
    }

    .hours {
        text-align: left;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .contact-card {
        padding: 28px 20px;
    }

    .cta-section {
        padding: 40px 24px;
    }
}
