/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

.group-hotline {
    padding: 10px 0 30px;
}

/* Left Column: Form Card */
.find-store.contact_primary {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #eaeef2;
    height: 100%;
}

.find-store.contact_primary .title {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-3, #01295c);
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 15px;
    font-family: var(--font-family, 'Roboto', sans-serif);
}

.find-store.contact_primary .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--color-5, #e2050f);
    border-radius: 2px;
}

.find-store.contact_primary .desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 20px 0 30px 0;
}

/* Form Styles */
.find-store.contact_primary form {
    display: flex;
    flex-direction: column;
}

.find-store.contact_primary .form-control {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 20px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    background-color: #f8fafc;
    font-size: 14.5px;
    color: #1e293b;
    transition: all 0.3s ease;
}

.find-store.contact_primary .form-control::placeholder {
    color: #94a3b8;
}

.find-store.contact_primary .form-control:focus {
    border-color: var(--color-3, #01295c);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(1, 41, 92, 0.1);
}

.find-store.contact_primary textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.find-store.contact_primary .btn-submit {
    width: 100%;
    padding: 15px 30px;
    background-color: var(--color-3, #01295c);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(1, 41, 92, 0.15);
    cursor: pointer;
    text-align: center;
}

.find-store.contact_primary .btn-submit:hover {
    background-color: #0c3e7b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 41, 92, 0.25);
}

.find-store.contact_primary .btn-submit:active {
    transform: translateY(0);
}

/* Right Column: Contact Details & Map */
.contact-info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #eaeef2;
    margin-bottom: 24px;
}

.contact-info-card .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

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

.contact-info-card .info-item:hover {
    transform: translateX(5px);
}

.contact-info-card .info-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: rgba(1, 41, 92, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: var(--color-3, #01295c);
}

.contact-info-card .info-icon svg {
    width: 22px;
    height: 22px;
    transition: all 0.3s ease;
    stroke: currentColor;
    fill: none;
}

.contact-info-card .info-item:hover .info-icon {
    background-color: var(--color-3, #01295c);
    color: #ffffff;
}

.contact-info-card .info-details {
    display: flex;
    flex-direction: column;
}

.contact-info-card .info-label {
    font-size: 11.5px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}

.contact-info-card .info-value {
    font-size: 15px;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.5;
}

.contact-info-card .info-value a {
    color: #1e293b;
    transition: color 0.2s ease;
}

.contact-info-card .info-value a:hover {
    color: var(--color-5, #e2050f);
}

/* Map Card */
.map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #eaeef2;
    height: 417px;
    position: relative;
    background-color: #ffffff;
    transition: box-shadow 0.3s ease;
}

.map:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.map iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .group-hotline {
        padding: 0px 0 30px;
    }

    .find-store.contact_primary {
        padding: 30px;
        margin-bottom: 30px;
    }

    .contact-info-card {
        padding: 30px;
        margin-top: 20px;
    }

    .map {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .find-store.contact_primary {
        padding: 24px;
    }

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

    .find-store.contact_primary .title {
        font-size: 22px;
    }
}
