/* ===================================
   CONTACT PAGE - HaneSystem
=================================== */

/* ===================================
   CONTACT INFO CARDS
=================================== */
.contact-info-section {
    padding: 80px 0 60px;
    background: #ffffff;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 10px;
}

.contact-info-card {
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #c8102e;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-info-card:hover {
    border-color: rgba(200, 16, 46, 0.15);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-6px);
    background: #ffffff;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(200, 16, 46, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-card-icon {
    background: #c8102e;
}

.contact-card-icon i {
    font-size: 24px;
    color: #c8102e;
    transition: color 0.4s ease;
}

.contact-info-card:hover .contact-card-icon i {
    color: #ffffff;
}

.contact-card-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c8102e;
    margin-bottom: 12px;
}

.contact-card-value {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a2e;
    margin-bottom: 4px;
    line-height: 1.5;
}

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

.contact-card-value a:hover {
    color: #c8102e;
}

.contact-card-sub {
    font-size: 12px;
    color: #999999;
    margin: 0;
}

@media (max-width: 991.98px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   CONTACT FORM + MAP
=================================== */
.contact-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-form-wrapper {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 48px;
}

.contact-form-header {
    margin-bottom: 36px;
}

.contact-form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px 0;
}

.contact-form-header p {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.contact-form .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 0;
    padding: 14px 16px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #333333;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #c8102e;
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.08);
    background: #ffffff;
    outline: none;
}

.contact-form .form-control::placeholder {
    color: #aaaaaa;
    font-size: 13px;
}

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

.contact-form .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 0;
    padding: 14px 16px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #333333;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.contact-form .form-select:focus {
    border-color: #c8102e;
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.08);
    background-color: #ffffff;
    outline: none;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #c8102e;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    background: #a00d25;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 16, 46, 0.25);
}

.contact-submit-btn i {
    font-size: 16px;
}

/* Map Side */
.contact-map-wrapper {
    height: 100%;
    min-height: 500px;
    position: relative;
    border: 1px solid #e5e5e5;
    overflow: hidden;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(30%);
    transition: filter 0.4s ease;
}

.contact-map-wrapper:hover iframe {
    filter: grayscale(0%);
}

.contact-map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 26, 46, 0.9));
    padding: 28px 24px;
    color: #ffffff;
}

.contact-map-overlay h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px 0;
}

.contact-map-overlay p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 991.98px) {
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    .contact-map-wrapper {
        min-height: 400px;
        margin-top: 30px;
    }
}

/* ===================================
   WORKING HOURS
=================================== */
.contact-hours-section {
    padding: 60px 0;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hours-card {
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.hours-card:hover {
    border-color: rgba(200, 16, 46, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.hours-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(200, 16, 46, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.hours-card-icon i {
    font-size: 20px;
    color: #c8102e;
}

.hours-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 6px 0;
}

.hours-card p {
    font-size: 13px;
    color: #666666;
    margin: 0;
}

.hours-card .hours-status {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hours-status.open {
    background: rgba(34, 197, 94, 0.08);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.hours-status.closed {
    background: rgba(239, 68, 68, 0.06);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

@media (max-width: 767.98px) {
    .hours-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   FAQ SECTION
=================================== */
.contact-faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 28px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(200, 16, 46, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.faq-question i {
    color: #c8102e;
    font-size: 16px;
    margin-top: 2px;
    min-width: 16px;
}

.faq-question h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.5;
}

.faq-answer {
    padding-left: 28px;
    font-size: 13px;
    color: #666666;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 767.98px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
