/* FAST CONTACT PAGE STYLES - PREMIUM DARK THEME */
.nextai-fast-contact-wrapper {
    width: 100%;
    min-height: 80vh;
    background: transparent;
    color: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.fast-contact-container {
    width: 100%;
    max-width: 800px;
}

/* Header */
.fc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.fc-logo-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.fc-site-logo {
    max-width: 140px;
    height: auto;
    display: block;
}

.fc-top-badge {
    background: rgba(0, 102, 255, 0.1);
    color: #0066FF;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

/* Main Content */
.fc-intro {
    text-align: center;
    margin-bottom: 60px;
}

.fc-subtitle {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.fc-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #ffffff;
    letter-spacing: -2px;
}

.fc-direct {
    font-size: 28px;
    color: #0066FF;
    font-weight: 700;
}

/* Buttons */
.fc-actions {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.fc-btn-item {
    text-align: center;
    width: 100%;
}

.fc-btn {
    display: inline-block;
    width: 100%;
    max-width: 500px;
    padding: 22px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    font-size: 22px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.fc-btn-whatsapp {
    border-color: #25d366;
    color: #25d366;
    background: rgba(37, 211, 102, 0.05);
}

.fc-btn-whatsapp:hover {
    background: #25d366;
    color: #fff;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
    transform: translateY(-5px);
}

.fc-btn-telegram {
    border-color: #0088cc;
    color: #0088cc;
    background: rgba(0, 136, 204, 0.05);
}

.fc-btn-telegram:hover {
    background: #0088cc;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0, 136, 204, 0.3);
    transform: translateY(-5px);
}

.fc-btn-note {
    margin-top: 15px;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

/* Floating WhatsApp */
.fc-floating-wa {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 70px;
    height: 70px;
    background: #25d366;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fc-floating-wa:hover {
    transform: scale(1.1) rotate(10deg);
}

.fc-floating-wa svg {
    width: 35px;
    height: 35px;
}

/* Background Effects */
.nextai-fast-contact-wrapper::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

/* MOBILE */
@media (max-width: 768px) {
    .fc-title {
        font-size: 42px;
    }

    .fc-direct {
        font-size: 22px;
    }

    .fc-header {
        flex-direction: column;
        gap: 20px;
    }

    .fc-btn {
        font-size: 18px;
        padding: 18px 30px;
    }

    .fc-floating-wa {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
}