/* ================ */
/* GENERAL STYLES */
/* ================ */





/* ================ */
/* CONTACT HERO */
/* ================ */
#contact-hero h1 {
    position: relative;
    padding-bottom: 15px;
}

#contact-hero h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #dc3545;
}

/* ================ */
/* CONTACT CARDS */
/* ================ */
.contact-form-card,
.contact-info-card {
    background: white;
    border-top: 3px solid #dc3545;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ================ */
/* MAP SECTION */
/* ================ */
.map-iframe {
    filter: grayscale(20%);
}

/* ================ */
/* BUSINESS HOURS */
/* ================ */
#business-hours table {
    background: white;
}

#business-hours th {
    background: #f8f9fa;
    width: 40%;
}

/* ================ */
/* WHATSAPP FLOAT */
/* ================ */
#whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
}

#whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ================ */
/* RESPONSIVE ADJUSTMENTS */
/* ================ */
@media (max-width: 768px) {
    #contact-hero .col-lg-6:last-child {
        margin-top: 30px;
    }
    
    .contact-method {
        flex-direction: column;
        align-items: flex-start;
    }
}