* {
    text-align: center;
}

.contact-section {
    font-weight: bold;
    text-align: center;
    font-size: medium;
    color: blue;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

:root {
    --primary: #2563eb;
    --whatsapp: #25d366;
    --dark: #0f172a;
    --light: #f8fafc;
    --text-muted: #64748b;
}


body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background: var(--light);
    color: var(--dark);
    scroll-behavior: smooth;
}

/* NAVIGATION */
nav {
    background: white;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
}

.logo span {
    color: var(--primary);
}

/* VIDEO SHELF & LOCK */
.main-container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 5%;
}

.video-shelf {
    position: relative;
    background: #e2e8f0;
    border-radius: 24px;
    min-height: 400px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.video-card {
    background: white;
    border-radius: 15px;
    height: 250px;
}

#lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(12px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    border-radius: 24px;
}

/* FLOATING CHAT BUBBLE */
.chat-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--whatsapp);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    cursor: pointer;
    z-index: 9999;
    transition: 0.3s;
    animation: bounce 2s infinite;
}

.chat-bubble:hover {
    transform: scale(1.1);
}

.chat-bubble img {
    width: 35px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* SUPPORT FORM & FAQ */
.support-hub {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 850px) {
    .support-hub {
        grid-template-columns: 1fr;
    }
}

.glass-form {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.input-box {
    margin-bottom: 15px;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    box-sizing: border-box;
}

.btn-wa {
    background: var(--whatsapp);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    width: 100%;
    font-weight: 700;
    cursor: pointer;
}

.faq-item {
    background: white;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    cursor: pointer;
}

.faq-q {
    padding: 15px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
}

.faq-a {
    padding: 0 15px 15px;
    color: var(--text-muted);
    display: none;
}

.faq-item.active .faq-a {
    display: block;
}

.hidden {
    display: none !important;
}

.footer {
    background: #948d8d;
    color: #fff;
    text-align: center;
    padding: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    font-size: 22px;
    color: #444;
    transition: 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
    color: #000;
}