/* Contact Page Redesign */
.contact-hero-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.contact-layout {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-left {
    flex: 1;
    max-width: 500px;
}

.contact-info-left h1 {
    font-size: 56px;
    font-weight: 800;
    font-family: var(--font-primary);
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.1;
}

.contact-info-left .subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-detail-group {
    margin-bottom: 40px;
}

.contact-detail-item {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 500;
}

.contact-detail-item a {
    color: #333;
    text-decoration: none;
}

.contact-detail-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.support-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.support-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.support-col p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* Form Card */
.contact-form-card {
    flex: 0 0 450px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.contact-form-card h2 {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--text-color);
    margin-bottom: 10px;
}

.contact-form-card .form-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 15px;
}

.form-grid-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
    width: 100%;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    background: #fff;
    font-family: var(--font-primary);
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(114, 2, 98, 0.1);
}

.phone-input-group {
    display: flex;
    gap: 10px;
}

.phone-select {
    width: 80px;
    padding: 12px 10px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    background: #fff;
    font-family: var(--font-primary);
}

.btn-submit-contact {
    width: 100%;
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: transform 0.2s;
    font-family: var(--font-primary);
}

.btn-submit-contact:hover {
    transform: translateY(-2px);
    background-color: #5a024e;
}

.form-footer-text {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-top: 20px;
    line-height: 1.4;
}

.form-footer-text a {
    color: #333;
    font-weight: 600;
}

/* Map Section */
.location-section {
    padding: 0;
    position: relative;
    background: #fff;
}

.location-container {
    display: flex;
    min-height: 500px;
}

.map-wrapper {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-info-wrapper {
    flex: 0 0 400px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.location-info-wrapper h2 {
    font-size: 32px;
    font-weight: 800;
    font-family: var(--font-primary);
    margin-bottom: 20px;
    color: var(--text-color);
}

.location-info-wrapper h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
}

.location-details p {
    margin-bottom: 20px;
    color: #555;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.location-details i {
    color: var(--primary-color);
    margin-top: 5px;
}

@media (max-width: 991px) {
    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }

    .contact-info-left {
        max-width: 100%;
        text-align: center;
    }

    .support-columns {
        text-align: left;
    }

    .contact-form-card {
        width: 100%;
        flex: auto;
    }

    .location-container {
        flex-direction: column-reverse;
    }

    .location-info-wrapper {
        flex: auto;
        padding: 40px 20px;
        text-align: center;
    }

    .location-details p {
        justify-content: center;
    }
}