/* Thermonic Website - Contact Page CSS Styles
   This stylesheet contains styles specific to the contact page
*/

/* Contact Header Section */
.contact-header-section {
    padding: 120px 0 60px;
    background-color: #f1faee;
    text-align: center;
}

.contact-header-content h1 {
    color: #1d3557;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
}

.contact-info-box {
    text-align: center;
    padding: 40px 30px;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    margin-bottom: 20px;
}

.contact-icon i {
    font-size: 48px;
    color: #3c5f8e;
}

.contact-info-box h3 {
    margin-bottom: 15px;
    color: #1d3557;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: #f1faee;
}

.contact-form-wrapper {
    padding: 40px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-form-wrapper h2 {
    color: #1d3557;
    margin-bottom: 20px;
}

.form-control {
    height: 50px;
    border-radius: 3px;
    border: 1px solid #dee2e6;
    margin-bottom: 20px;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #3c5f8e;
    box-shadow: none;
}

textarea.form-control {
    height: 150px;
    resize: none;
}

.is-invalid {
    border-color: #3c5f8e;
}

/* Contact Map */
.contact-map {
    padding: 40px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-map h2 {
    color: #1d3557;
    margin-bottom: 20px;
}

.map-container {
    height: 91%;
    overflow: hidden;
    border-radius: 5px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Business Hours Section */
.business-hours-section {
    padding: 80px 0;
}

.business-hours-box {
    padding: 40px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f1faee;
}

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

.day {
    font-weight: 600;
    color: #1d3557;
}

.hours-note {
    margin-top: 20px;
    font-size: 14px;
    color: #8d99ae;
    font-style: italic;
}

/* Social Media Section */
.social-media-section {
    padding: 80px 0;
    background-color: #f1faee;
}

.social-icons {
    display: flex;
    justify-content: left;
    margin-top: 30px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #1d3557;
    border-radius: 50%;
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #3c5f8e;
    transform: translateY(-5px);
}

/* Media Queries */
@media (max-width: 1199.98px) {
    .contact-header-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .contact-header-content h1 {
        font-size: 2.2rem;
    }
    
    .contact-header-section {
        padding: 100px 0 50px;
    }
    
    .contact-info-section,
    .contact-form-section,
    .business-hours-section,
    .social-media-section {
        padding: 60px 0;
    }
    
    .contact-form-wrapper,
    .contact-map {
        padding: 30px;
    }
    
    .map-container {
        height: 350px;
    }
}

@media (max-width: 767.98px) {
    .contact-header-content h1 {
        font-size: 2rem;
    }
    
    .contact-header-section {
        padding: 80px 0 40px;
    }
    
    .contact-info-section,
    .contact-form-section,
    .business-hours-section,
    .social-media-section {
        padding: 50px 0;
    }
    
    .contact-map {
        margin-top: 30px;
    }
}

@media (max-width: 575.98px) {
    .contact-header-content h1 {
        font-size: 1.8rem;
    }
    
    .contact-header-section {
        padding: 70px 0 30px;
    }
    
    .contact-info-section,
    .contact-form-section,
    .business-hours-section,
    .social-media-section {
        padding: 40px 0;
    }
    
    .contact-form-wrapper,
    .contact-map,
    .business-hours-box {
        padding: 20px;
    }
}

.feature-card {
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background-color: #f8f9fa; /* light background on hover */
}
