/* ================================================================
   CONTACT PAGE - PREMIUM DESIGN
   ================================================================ */

/* --- Content Section --- */
#content {
    padding: 0 !important;
}

.content-wrap {
    padding: 60px 0;
}

/* --- Section Titles --- */
.section-title {
    color: #a91b0d;
    font-weight: bold;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

/* --- Contact Form Container --- */
.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
}

/* --- Form Styling --- */
.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    z-index: 10;
    pointer-events: none;
}

.input-icon i {
    font-size: 1.1rem;
}

.form-control,
.form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.input-group .form-control,
.input-group .form-select {
    padding-left: 45px;
}

.form-control:focus,
.form-select:focus {
    border-color: #a91b0d;
    box-shadow: 0 0 0 0.25rem rgba(169, 27, 13, 0.1);
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* --- Button --- */
.btn-primary {
    background: linear-gradient(135deg, #a91b0d 0%, #dc3545 100%);
    border: none;
    border-radius: 10px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(169, 27, 13, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(169, 27, 13, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

/* --- Map Container --- */
.map-container {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
}

.google-map {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* --- Contact Cards --- */
.contact-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #a91b0d 0%, #dc3545 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(169, 27, 13, 0.3);
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-card h4 {
    color: #212529;
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.contact-card p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.8;
}

.contact-card a {
    color: #a91b0d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #dc3545;
    text-decoration: underline;
}

/* --- Alert Styling --- */
#contact-alert .alert {
    border-radius: 10px;
    border: none;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
}

.alert-success {
    background: #d1f2eb;
    color: #0f5132;
}

.alert-danger {
    background: #f8d7da;
    color: #842029;
}

/* --- Responsive Design --- */
@media (max-width: 991px) {
    .contact-form-container,
    .map-container {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .google-map {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .content-wrap {
        padding: 40px 0;
    }

    .contact-form-container,
    .map-container {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .google-map {
        height: 350px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
    }

    .contact-icon i {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .contact-form-container,
    .map-container {
        padding: 1.25rem;
    }

    .form-control,
    .form-select {
        font-size: 0.9rem;
        padding: 0.65rem 0.85rem;
    }

    .input-group .form-control,
    .input-group .form-select {
        padding-left: 40px;
    }

    .input-icon {
        width: 40px;
    }

    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .google-map {
        height: 300px;
    }
}
