/* Contact Section Styles */
.contact-info-section {
    text-align: center;
    padding: 20px 0;
}

.contact-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #fff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    margin-bottom: 25px;
}

.contact-btn {
    display: block;
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

/* Line Button */
.line-btn .btn_m {
    background: linear-gradient(135deg, #00B900, #00C300);
    border-radius: 8px;
    padding: 18px 25px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.line-btn:hover .btn_m {
    background: linear-gradient(135deg, #00A000, #00B200);
    box-shadow: 0 5px 15px rgba(0, 185, 0, 0.3);
}

/* WhatsApp Button */
.whatsapp-btn .btn_m {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 8px;
    padding: 18px 25px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover .btn_m {
    background: linear-gradient(135deg, #20B858, #0F7A6B);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Email Button */
.email-btn .btn_m {
    background: linear-gradient(135deg, #EA4335, #D33B2C);
    border-radius: 8px;
    padding: 18px 25px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.email-btn:hover .btn_m {
    background: linear-gradient(135deg, #D23B2A, #B8312A);
    box-shadow: 0 5px 15px rgba(234, 67, 53, 0.3);
}

/* Button Content */
.contact-btn .btn_c {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-btn .btn_t1,
.contact-btn .btn_t2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px;
}

.contact-btn .btn_t1 {
    transform: translateY(0);
}

.contact-btn .btn_t2 {
    transform: translateY(100%);
}

.contact-btn:hover .btn_t1 {
    transform: translateY(-100%);
}

.contact-btn:hover .btn_t2 {
    transform: translateY(0);
}

/* Icon Styling */
.contact-btn .btn_t1 svg,
.contact-btn .btn_t2 svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Working Hours */
.working-hours {
    margin-top: 20px;
}

.hours-text {
    color: #fff;
    font-size: 16px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hours-text i {
    color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-description {
        font-size: 16px;
        padding: 0 15px;
    }

    .contact-btn .btn_m {
        min-height: 55px;
        padding: 15px 20px;
    }

    .contact-btn .btn_c {
        font-size: 14px;
    }

    .contact-btn .btn_t1 svg,
    .contact-btn .btn_t2 svg {
        width: 18px;
        height: 18px;
    }

    .hours-text {
        font-size: 14px;
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 576px) {
    .contact-description {
        font-size: 14px;
    }

    .contact-btn .btn_m {
        min-height: 50px;
        padding: 12px 15px;
    }

    .contact-btn .btn_c {
        font-size: 13px;
    }

    .contact-btn .btn_t1 svg,
    .contact-btn .btn_t2 svg {
        width: 16px;
        height: 16px;
    }
}

/ * Additional Button Styling for Better Appearance */ .contact-buttons .row {
    align-items: stretch;
}

.contact-buttons .col-lg-4,
.contact-buttons .col-md-6 {
    display: flex;
}

.contact-btn {
    width: 100%;
    height: 100%;
}

.contact-btn .btn_m {
    width: 100%;
    height: 100%;
}

/* Ensure all buttons have the same height */
@media (min-width: 992px) {
    .contact-buttons .col-lg-4 {
        min-height: 80px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .contact-buttons .col-md-6 {
        min-height: 75px;
    }
}

/* Better text wrapping for long text */
.contact-btn .btn_t1,
.contact-btn .btn_t2 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 576px) {

    .contact-btn .btn_t1,
    .contact-btn .btn_t2 {
        white-space: normal;
        text-align: center;
        line-height: 1.2;
    }
}