.card-contact {
    background: #AEC0D6;
    position: relative;
    padding: 50px 80px;
    color: #fff;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    margin-top: 45px;
}

.card-contact label {
    color: var(--primary-color);
    margin: 15px 0px;
}

/* ---------------------------------- */
/* MAIN FORM CONTAINER         */
/* ---------------------------------- */
.feedback-section {
}

.form-wrapper, .status-check-wrapper {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid #e0e0e0;
}

.form-wrapper {
    background-color: #AEC0D6;
}

/* ---------------------------------- */
/* FORM ELEMENTS             */
/* ---------------------------------- */
.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-label .required-star {
    color: red;
    margin-left: 2px;
}

.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid var(--primary-color);
    padding: 0.8rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

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

/* Custom File Input */
.form-control[type="file"] {
    overflow: hidden;
}
.form-control[type="file"]::-webkit-file-upload-button {
    background-color: #f8f9fa;
    border: none;
    border-right: 1px solid var(--border-color);
    padding: 0.8rem 1rem;
    margin: -0.8rem -1rem;
    margin-right: 1rem;
    transition: background-color 0.3s ease;
    cursor: pointer;
}
.form-control[type="file"]::-webkit-file-upload-button:hover {
    background-color: #e9ecef;
}

.attachment-note {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

/* Info Icon */
.info-icon {
    color: var(--primary-color);
    cursor: pointer;
    margin-left: 5px;
}

/* Captcha */
.captcha-group {
    display: flex;
    align-items: center;
    gap: 10px;
}
.captcha-group .form-control {
    flex-grow: 1;
}
.captcha-img {
    height: 48px;
    border-radius: 8px;
}
.btn-refresh-captcha {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* ---------------------------------- */
/* BUTTONS                */
/* ---------------------------------- */
.btn-primary {
    border-radius: 8px;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
    color: var(--primary-color);
}

.btn-outline-secondary {
    border-radius: 8px;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    color: white;
}

/* ---------------------------------- */
/* STATUS CHECK SECTION        */
/* ---------------------------------- */
.status-check-wrapper {
    border-left: 5px solid var(--primary-color);
}

.status-check-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.status-check-header .icon {
    font-size: 1.8rem;
    color: var(--primary-color);
}

/* ---------------------------------- */
/* MODAL STYLES                       */
/* ---------------------------------- */
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem;
}

.modal-title {
    font-weight: 600;
    color: var(--primary-color);
}

.modal-body {
    padding: 2rem 1.5rem;
}

.modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 1rem 1.5rem;
    background-color: #f8f9fa;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
}

/* Modal form adjustments for two-column layout */
.modal-body .form-label {
    text-align: left;
}

@media (min-width: 768px) {
    .modal-body .form-label {
        text-align: right;
        padding-right: 1rem;
    }
}

/* Modal Buttons */
.btn-reset {
    background-color: #6c757d;
    color: white;
    border-color: #6c757d;
}

.btn-reset:hover {
    background-color: #5c636a;
    border-color: #565e64;
}

.btn-track {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.btn-track:hover {
    background-color: #157347;
    border-color: #146c43;
}

/* ---------------------------------- */
/* CUSTOM ALERT BOX STYLES            */
/* ---------------------------------- */
.alert-success-custom {
    background-color: #eaf6ec; /* Light green background */
    border: 1px solid #bce0c8; /* Softer green border */
    color: #0f5132;            /* Dark green text for better contrast */
    border-radius: 8px;
    padding: 1.25rem;
    border-left: 5px solid #198754; /* Solid success-green left border */
    margin-bottom: 2rem;
    align-items: center;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.1);
    transition: opacity 0.5s ease;
}

.alert-success-custom .alert-icon {
    font-size: 1.75rem;
    margin-right: 1rem;
    color: #198754; /* Green icon color */
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.alert-success-custom strong {
    font-weight: 600;
}

/* ---------------------------------- */
/* OUR LOCATION SECTION STYLES        */
/* ---------------------------------- */
.location-section {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
    overflow: hidden; /* Important for keeping rounded corners */
    border: 1px solid #e0e0e0;
}

.map-container {
    height: 500px;
}

.map-container iframe {
    display: block; /* Removes bottom space under iframe */
}

.location-details {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.location-details .detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-details .icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: #f0f4f8;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.location-details h2 {
    margin-bottom: 0;
    font-size: 1.75rem;
}

.location-details .address {
    font-size: 1rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-info li i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.btn-directions {
    background-color: var(--primary-color);
    color: white;
    width: 100%;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-directions:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 35, 71, 0.2);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .map-container {
        height: 350px;
    }
    .location-details {
        padding: 2rem;
    }
}
