/* Contact Page Styles */
.contact-info-cards {
    padding: 50px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

/* Info Cards */
.info-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: var(--transition);
}

.info-card:hover .icon-box {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(360deg);
}

.info-card h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.info-card p {
    margin-bottom: 10px;
}

.info-card a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.info-card a:hover {
    color: var(--primary-color);
}

.support-hours {
    display: block;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-top: 15px;
}

.scroll-to-map {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 15px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.section-header {
    margin-bottom: 40px;
}

.subtitle {
    display: inline-block;
    background: rgba(var(--primary-color-rgb), 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-weight: 500;
}

.required {
    color: #dc3545;
}

.form-control {
    height: 50px;
    padding: 10px 20px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-rgb), 0.25);
}

textarea.form-control {
    height: auto;
    resize: vertical;
}

.btn {
    height: 50px;
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
}

.btn-primary:hover {
    background: var(--secondary-color);
}

/* Map Wrapper */
.map-wrapper {
    height: 100%;
    min-height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .contact-form-section {
        padding: 80px 0;
    }

    .map-wrapper {
        margin-top: 40px;
        min-height: 400px;
    }
}

@media (max-width: 767.98px) {
    .info-card {
        margin-bottom: 30px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 575.98px) {
    .contact-form-section {
        padding: 60px 0;
    }

    .info-card {
        padding: 30px 20px;
    }

    .map-wrapper {
        min-height: 300px;
    }
}