/* Contact Hero Section Styles */
.contact-hero-section {
    padding: 50px 0;
}

.contact-hero-wrapper {
    transition: all 0.3s ease;
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #E32222;
}

.contact-desc {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.contact-buttons-centered {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.contact-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    margin: 5px;
    transition: all 0.3s ease;
}

.call-btn {
    background-color: #E32222;
    color: white;
}

.call-btn:hover {
    background-color: #c01e1e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(227, 34, 34, 0.3);
    color: white;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background-color: #20b956;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    color: white;
}

@media (max-width: 767px) {
    .contact-buttons {
        justify-content: center;
        margin-top: 20px;
    }
    
    .contact-title {
        font-size: 24px;
        text-align: center;
    }
    
    .contact-desc {
        text-align: center;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background-color: #222732;
    color: #fff;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.contact-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff5e14;
}

.contact-info-box {
    background-color: #2c3340;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff5e14;
    border-radius: 50%;
    margin-bottom: 20px;
    padding: 15px;
}

.contact-info-icon img,
.contact-info-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-info-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.contact-info-content p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 0;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-info-box {
        margin-bottom: 30px;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-info-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-info-box {
        padding: 20px;
    }
}
