﻿.contact-cta-section {
    padding: 90px 0;
    background: #f8fafc;
}

.contact-cta-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    border-top: 5px solid #ff9933;
}

.contact-badge {
    display: inline-block;
    background: #ff9933;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-description {
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #ff9933;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .contact-icon i {
        font-size: 1.3rem;
    }

.contact-item h6 {
    margin-bottom: 4px;
    font-weight: 600;
    color: #0f172a;
}

.contact-item span {
    color: #64748b;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-contact-us {
    background: #0f172a;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
}

    .btn-contact-us:hover {
        color: #ffffff;
    }

.btn-send-suggestion {
    background: #ff9933;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
}

    .btn-send-suggestion:hover {
        color: #ffffff;
    }

@media (max-width: 991px) {

    .contact-cta-wrapper {
        padding: 40px;
    }

    .contact-buttons {
        margin-top: 30px;
    }

    .contact-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {

    .contact-cta-section {
        padding: 60px 0;
    }

    .contact-cta-wrapper {
        padding: 30px 20px;
    }

    .contact-title {
        font-size: 1.6rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .btn-contact-us,
    .btn-send-suggestion {
        width: 100%;
    }
}
