/* Location: /dist/css/contact-us.css */
/* Contact Page Styles - Matching About Us styling */

/* ============================================
   HERO SECTION
   ============================================ */
.contact-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 0;
    color: white;
    margin-bottom: 40px;
}

.contact-hero h1 {
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-hero p {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* ============================================
   CONTACT CARDS
   ============================================ */
.contact-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    height: 100%;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-card .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #d9232a 0%, #b91c22 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-card .icon-wrapper i {
    font-size: 24px;
    color: white;
}

.contact-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.contact-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-card a {
    color: #d9232a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #b91c22;
    text-decoration: underline;
}

/* Sidebar contact card should not stretch */
.col-lg-4 > .contact-card:last-child {
    height: auto;
    margin-top: 1rem;
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */
.contact-form-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

.contact-form-section h3 {
    color: #d9232a;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.contact-form-section .lead {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #d9232a;
    box-shadow: 0 0 0 3px rgba(217, 35, 42, 0.1);
}

.form-check-label {
    color: #555;
    font-size: 14px;
}

.form-check-label a {
    color: #d9232a;
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.form-check-input:checked {
    background-color: #d9232a;
    border-color: #d9232a;
}

/* ============================================
   SUBMIT BUTTON
   ============================================ */
.btn-submit {
    background-color: #d9232a;
    border-color: #d9232a;
    color: #fff !important;
    padding: 14px 40px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #b91c22;
    border-color: #b91c22;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(217, 35, 42, 0.3);
}

.btn-submit i {
    color: #fff !important;
}

/* ============================================
   BUSINESS HOURS
   ============================================ */
.business-hours {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.business-hours h5 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #d9232a;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span:first-child {
    font-weight: 500;
    color: #333;
}

/* ============================================
   ALERTS
   ============================================ */
.alert-success {
    background: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    border-radius: 8px;
    padding: 20px;
}

.alert-danger {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
    border-radius: 8px;
    padding: 20px;
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.btn-success {
    background-color: #25d366;
    border-color: #25d366;
    color: #fff !important;
}

.btn-success:hover {
    background-color: #1da851;
    border-color: #1da851;
    color: #fff !important;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    margin-top: 50px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 991px) {
    .contact-form-section {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 40px 0;
    }

    .contact-form-section {
        padding: 25px;
    }

    .contact-card {
        padding: 20px;
    }

    .business-hours {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .contact-hero h1 {
        font-size: 1.75rem;
    }

    .btn-submit {
        width: 100%;
    }
}
