/* ============================================
   CONTACT SECTION - Corporate Clean
============================================ */

.contact-corporate {
    padding: 0;
    margin-top: 4rem;
    margin-bottom: 4rem;
    background: #001f49;
}

.contact-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 3rem 0;
}

/* Left Content */
.contact-left {
    flex: 1;
}

.contact-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #00aeef;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.contact-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.contact-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}

/* Right Buttons */
.contact-right {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    min-width: 200px;
}

.contact-btn i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.btn-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.btn-label {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
}

.btn-sub {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Primary Button - WhatsApp */
.contact-btn.primary {
    background: #25d366;
    color: #fff;
}

.contact-btn.primary:hover {
    background: #20ba5a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* Secondary Button - Phone */
.contact-btn.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

.contact-btn.secondary i {
    color: #00aeef;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .contact-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2.5rem 0;
    }

    .contact-right {
        width: 100%;
        justify-content: center;
    }

    .contact-btn {
        flex: 1;
        max-width: 240px;
    }
}

@media (max-width: 600px) {
    .contact-wrapper {
        padding: 2rem 0;
    }

    .contact-title {
        font-size: 1.375rem;
    }

    .contact-desc {
        font-size: 0.875rem;
    }

    .contact-right {
        flex-direction: column;
        align-items: center;
    }

    .contact-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    }

@media (max-width: 400px) {
    .contact-btn {
        padding: 14px 20px;
        min-width: auto;
    }

    .contact-btn i {
        font-size: 1.25rem;
    }

    .btn-label {
        font-size: 0.875rem;
    }
}
