/* ========================================
   GLOBAL CUSTOM STYLES
   ======================================== */

/* ========================================
   CONTACT SUPPORT BLOCK - REDESIGNED
   ======================================== */

.contact-support-block {
    padding: 30px 0;
    background: transparent;
    width: 100%;
}

.contact-support-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-support-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 25px 0;
    line-height: 1.2;
}

.contact-support-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin: 0;
    width: 100%;
}

.contact-support-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    min-width: 0;
}

.contact-support-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.contact-support-item:nth-child(1):hover {
    border-color: #007bff;
}

.contact-support-item:nth-child(2):hover {
    border-color: #dc3545;
}

.contact-support-item:nth-child(3):hover {
    border-color: #6c757d;
}

.contact-support-item:nth-child(4):hover {
    border-color: #25d366;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background: transparent;
}

.contact-icon i {
    font-size: 32px;
    transition: all 0.3s ease;
}

.contact-support-item:nth-child(1) .contact-icon i {
    color: #007bff;
}

.contact-support-item:nth-child(2) .contact-icon i {
    color: #dc3545;
}

.contact-support-item:nth-child(3) .contact-icon i {
    color: #6c757d;
}

.contact-support-item:nth-child(4) .contact-icon i {
    color: #25d366;
}

.contact-support-item:hover .contact-icon i {
    transform: scale(1.15);
}

.contact-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.contact-item-description {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.4;
    margin: 0 0 15px 0;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    color: #ffffff;
}

.contact-btn:hover {
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

.contact-btn i {
    font-size: 12px;
}

/* Button specific colors */
.btn-chat {
    background: #007bff;
}

.btn-chat:hover {
    background: #0056b3;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.25);
}

.btn-phone {
    background: #dc3545;
}

.btn-phone:hover {
    background: #c82333;
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.25);
}

.btn-email {
    background: #6c757d;
}

.btn-email:hover {
    background: #5a6268;
    box-shadow: 0 4px 10px rgba(108, 117, 125, 0.25);
}

.btn-whatsapp {
    background: #25d366;
}

.btn-whatsapp:hover {
    background: #1da851;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.25);
}

/* Tablet - 2 columns */
@media (max-width: 992px) {
    .contact-support-block {
        padding: 25px 0;
    }

    .contact-support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }

    .contact-support-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .contact-support-item {
        padding: 20px 15px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }

    .contact-icon i {
        font-size: 28px;
    }

    .contact-item-title {
        font-size: 15px;
    }

    .contact-item-description {
        font-size: 12px;
        margin-bottom: 12px;
    }
}

/* Mobile - 2 columns */
@media (max-width: 576px) {
    .contact-support-block {
        padding: 20px 0;
    }

    .contact-support-container {
        padding: 0 15px;
    }

    .contact-support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .contact-support-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .contact-support-item {
        padding: 18px 12px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .contact-icon i {
        font-size: 24px;
    }

    .contact-item-title {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .contact-item-description {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .contact-btn {
        padding: 8px 14px;
        font-size: 10px;
    }

    .contact-btn i {
        font-size: 10px;
    }
}

/* Very small mobile - 1 column */
@media (max-width: 400px) {
    .contact-support-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}
