/* Contact Header */
.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 30px auto 50px;
}

.contact-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
}

/* Contact Container */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin-bottom: 60px;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Info Card */
.info-card {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    padding: 35px;
    border-radius: 16px;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 123, 255, 0.2);
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
}

/* Info Item */
.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

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

.info-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    color: #ffffff;
}

.info-content {
    flex: 1;
}

.info-content strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    opacity: 0.9;
    color: #ffffff;
    font-weight: 700;
}

.info-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    color: #ffffff;
}

.info-content a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.info-content a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Business Hours */
.business-hours {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.business-hours h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #666666;
    margin-bottom: 20px;
    text-align: center;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item span:first-child {
    color: #666666;
    font-weight: 500;
}

.hours-item span:last-child {
    color: #1a1a1a;
    font-weight: 600;
}

/* Map Section */

.map-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-header {
        margin: 20px auto 40px;
    }

    .contact-header h1 {
        font-size: 1.75rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

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

    .info-card {
        padding: 28px;
    }

    .info-card h3 {
        font-size: 1.3rem;
    }

    .business-hours {
        padding: 24px;
    }

    .map-section h3 {
        font-size: 1.5rem;
    }

    .map-wrapper iframe {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-header h1 {
        font-size: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .info-card {
        padding: 24px;
    }

    .info-item {
        gap: 12px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
    }

    .business-hours {
        padding: 20px;
    }

    .hours-item {
        font-size: 0.9rem;
    }
}