:root {
    --bg-dark: #05070f;
    --glass-bg: rgba(255, 255, 255, 0.01);
    --glass-border: rgba(255, 255, 255, 0.05);
    --neon-blue: #00f2fe;
    --neon-purple: #9d4edd;
    --text-main: #f1f5f9;
    --text-muted: #475569;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    overflow-x: hidden;
}

/* Dynamic Background Ambient Lighting */
.bg-blur-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.4;
}

.bg-blur-glow.cyan {
    top: -10%;
    left: -10%;
    background: var(--neon-blue);
}

.bg-blur-glow.purple {
    bottom: -10%;
    right: -10%;
    background: var(--neon-purple);
}

/* ==========================================
   🧱 MASTER SPLIT DASHBOARD LAYOUT
   ========================================== */
.dashboard-layout {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.cyber-badge {
    font-size: 9px;
    font-weight: 800;
    color: var(--neon-blue);
    letter-spacing: 1.5px;
    background: rgba(0, 242, 254, 0.06);
    border: 1px solid rgba(0, 242, 254, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 16px;
}

.badge-purple {
    color: var(--neon-purple);
    background: rgba(157, 78, 221, 0.06);
    border-color: rgba(157, 78, 221, 0.1);
}

.pane-title {
    font-size: 28px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.pane-subtitle {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* ==========================================
   🎮 LEFT SIDE: ACCORDION UI ENGINE
   ========================================== */
.accordion-matrix {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.faq-trigger {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #cbd5e1;
    user-select: none;
}

.status-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 11px;
    transition: transform 0.3s, background 0.3s, color 0.3s;
}

.faq-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
}

/* Active Open Physics States */
.faq-card.active {
    border-color: rgba(0, 242, 254, 0.2);
    background: rgba(0, 242, 254, 0.01);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-card.active .status-circle {
    transform: rotate(90deg);
    background: var(--neon-blue);
    color: #05070f;
    box-shadow: 0 0 10px var(--neon-blue);
}

.faq-card.active .faq-trigger {
    color: white;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content p {
    padding: 0 24px 20px 24px;
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.7;
}

/* ==========================================
   🍱 RIGHT SIDE: PREMIUM BENTO GRID UI
   ========================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.bento-box {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    text-decoration: none;
    overflow: hidden;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Background Highlight Layers inside Bento boxes */
.box-glow-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s;
}

/* Size Architecture Variants */
.large-box {
    grid-column: span 3;
    min-height: 190px;
    justify-content: space-between;
}

.small-box {
    grid-column: span 2;
    min-height: 145px;
    justify-content: flex-end;
    gap: 8px;
}

.bento-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.bento-tag {
    font-size: 9px;
    font-weight: 700;
    color: #64748b;
    background: rgba(255, 255, 255, 0.04);
    padding: 4px 8px;
    border-radius: 4px;
}

.bento-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
    z-index: 2;
}

.bento-body {
    z-index: 2;
}

.bento-box h3 {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.bento-box p {
    font-size: 11.5px;
    color: #64748b;
    line-height: 1.5;
}

/* Hover Physics Matrix per Network */
.bento-box:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.bento-box:hover .box-glow-layer {
    opacity: 0.5;
}

.insta .bento-icon {
    color: #e1306c;
}

.youtube .bento-icon {
    color: #ff0000;
}

.whatsapp .bento-icon {
    color: #25d366;
}

.telegram .bento-icon {
    color: #0088cc;
}

.linkedin .bento-icon {
    color: #0077b1;
}

.insta:hover {
    border-color: rgba(225, 48, 108, 0.25);
    background: rgba(225, 48, 108, 0.01);
    box-shadow: 0 15px 30px rgba(225, 48, 108, 0.08);
}

.insta:hover .bento-icon {
    background: #e1306c;
    color: #05070f;
    box-shadow: 0 0 15px #e1306c;
}

.youtube:hover {
    border-color: rgba(255, 0, 0, 0.25);
    background: rgba(255, 0, 0, 0.01);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.08);
}

.youtube:hover .bento-icon {
    background: #ff0000;
    color: #05070f;
    box-shadow: 0 0 15px #ff0000;
}

.whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.25);
    background: rgba(37, 211, 102, 0.01);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.08);
}

.whatsapp:hover .bento-icon {
    background: #25d366;
    color: #05070f;
    box-shadow: 0 0 15px #25d366;
}

.telegram:hover {
    border-color: rgba(0, 136, 204, 0.25);
    background: rgba(0, 136, 204, 0.01);
    box-shadow: 0 15px 30px rgba(0, 136, 204, 0.08);
}

.telegram:hover .bento-icon {
    background: #0088cc;
    color: #05070f;
    box-shadow: 0 0 15px #0088cc;
}

.linkedin:hover {
    border-color: rgba(0, 119, 181, 0.25);
    background: rgba(0, 119, 181, 0.01);
    box-shadow: 0 15px 30px rgba(0, 119, 181, 0.08);
}

.linkedin:hover .bento-icon {
    background: #0077b1;
    color: #05070f;
    box-shadow: 0 0 15px #0077b1;
}

/* ==========================================
   📱 SYSTEM RESPONSIVE MATRIX
   ========================================== */
@media (max-width: 968px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    body {
        padding: 40px 16px;
    }
}

@media (max-width: 600px) {
    .large-box {
        grid-column: span 6;
    }

    .small-box {
        grid-column: span 3;
    }

    .pane-title {
        font-size: 24px;
    }
}

@media (max-width: 400px) {
    .small-box {
        grid-column: span 6;
    }
}

/* ==========================================================================
   🌐 CODESTACK GLOBAL STICKY HEADER STYLE
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(5, 7, 15, 0.65);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Design */
.logo-node {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    color: var(--neon-blue);
    font-size: 18px;
    filter: drop-shadow(0 0 8px var(--neon-blue));
}

.logo-text {
    font-size: 18px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--neon-purple);
}

/* Navigation links matrix */
.nav-links {
    display: flex;
    gap: 28px;
}

.nav-item {
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.2s ease;
    position: relative;
    padding: 6px 0;
}

.nav-item:hover,
.nav-item.active {
    color: white;
}

/* Active page line effect */
.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
    border-radius: 2px;
}

/* Right Side Action Button */
.dashboard-btn-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 700;
    color: #05070f;
    background: linear-gradient(135deg, var(--neon-blue), #4facfe);
    padding: 10px 18px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
    transition: all 0.3s ease;
}

.dashboard-btn-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.4);
    filter: brightness(1.1);
}

/* ⚠️ Crucial Fix: Grid layout ko header ke niche dhakelne ke liye spacing padding */
body {
    padding-top: 110px !important;
}

/* Mobile Responsive Header Handling */
@media (max-width: 600px) {
    .header-container {
        height: 60px;
        padding: 0 16px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-item {
        font-size: 12px;
    }

    .dashboard-btn-link {
        padding: 8px 12px;
        font-size: 11.5px;
    }

    body {
        padding-top: 90px !important;
    }
}

/* ==========================================================================
   🎮 ICONS ALIGNMENT & GLOW FOR NAV LINKS
   ========================================================================== */
.nav-links {
    display: flex;
    gap: 28px;
}

.nav-item {
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.2s ease;
    position: relative;
    padding: 6px 0;

    /* 🔥 FIX: Icon aur Text ko ek line me lane ke liye */
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Base icon style inside navbar */
.nav-item i {
    font-size: 13px;
    color: #475569;
    /* Default hidden type dark color */
    transition: all 0.2s ease;
}

/* Hover hone par ya Active page hone par Text aur Icon dono chamkenge */
.nav-item:hover,
.nav-item.active {
    color: white;
}

.nav-item:hover i,
.nav-item.active i {
    color: var(--neon-blue);
    filter: drop-shadow(0 0 6px var(--neon-blue));
    /* 🔥 Icon me cyber glow effect */
}

/* Active page line effect */
.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
    border-radius: 2px;
}

/* ==========================================================================
   🌌 FIXED TRANSPARENT ONE-LINE FOOTER
   ========================================================================== */
.simple-footer {
    width: 100%;

    /* 🔥 FIX 1: Isse footer hamesha page ke absolute bottom me push ho jayega */
    margin-top: auto;

    padding: 40px 20px 20px 20px;
    /* Niche thoda breathing space */

    /* 🔥 FIX 2: Black background ko uda diya, ab ye peeche ke purple aura se merge ho jayega */
    background: transparent;

    /* Ekdum barik line, agar aapko ye line bhi nahi chahiye toh ise delete kar sakte hain */
    border-top: 1px solid rgba(255, 255, 255, 0.02);

    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Brand Name Highlights */
.footer-brand {
    color: #f8fafc;
    font-weight: 700;
}

.footer-brand span {
    color: var(--neon-purple, #9d4edd);
}

/* Middle Divider Pipe */
.footer-divider {
    color: rgba(255, 255, 255, 0.08);
    font-weight: 300;
}

/* Rights Reserved Text */
.footer-rights {
    color: #475569;
    /* Sleek slate gray text */
}

/* Mobile Small Screen Fix */
@media (max-width: 480px) {
    .footer-line {
        font-size: 11px;
        gap: 8px;
    }
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    padding: 40px 20px;

    /* 🔥 FIX: Elements ko baaju-baaju ke badle upar-niche (vertical) set karne ke liye */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Isse footer hamesha screen ke sabse niche daba rahega */

    overflow-x: hidden;
}

@media (max-width: 600px) {
    .faq-card {
        /* 🔥 Pura transparent hatakar ekdum solid dark background de diya */
        background: #090d16 !important;

        /* Border ko thoda sa visible rakha cyberpunk look ke liye */
        border: 1px solid rgba(0, 242, 254, 0.1) !important;
    }
}

@media (max-width: 600px) {

    .faq-card-text,
    .faq-card p,
    .faq-card h3 {
        /* 🔥 Text ka color ekdum dark charcoal black karne ke liye */
        color: #0f172a !important;
    }
}

@media (max-width: 600px) {

    /* Apne social/bento cards ki class yahan likhein */
    .social-card,
    .bento-item,
    .connect-card {
        /* 🔥 Translucency hata kar solid dark matte finish background diya */
        background: #090d16 !important;

        /* Peeche ke purple aura se match karta hua ek subtle dark border */
        border: 1px solid rgba(157, 78, 221, 0.15) !important;

        /* Mobile par thoda compact padding aur micro spacing */
        padding: 16px !important;
    }
}

@media (max-width: 600px) {

    /* Social cards ke andar ke Headings aur Paragraphs ka color dark charcoal */
    .social-card h3,
    .social-card p,
    .connect-card title,
    .connect-card description {
        color: #0f172a !important;
        /* 🔥 Ultra dark slate black color */
    }

    /* Small subtitle lines (like 'DAILY FEEDS', 'LONG VIDEOS') ka color */
    .social-card span,
    .social-badge {
        color: #475569 !important;
    }
}

/* ==========================================================================
   🌀 FAQ SUPPORT FORM SLIDING PHYSICS
   ========================================================================== */
.faq-support-wrapper {
    max-width: 750px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Premium Trigger Button Setup */
.support-trigger-btn {
    width: 100%;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(0, 242, 254, 0.1);
    color: #fff;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.support-trigger-btn:hover {
    background: rgba(0, 242, 254, 0.02);
    border-color: #00f2fe;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.1);
}

.support-trigger-btn i:first-child {
    color: #00f2fe;
}

.arrow-toggle {
    font-size: 13px;
    transition: transform 0.4s ease;
    /* Arrow rotate physics */
}

/* 🤫 THE SECRET SWIPE LAYER: Closed State */
.sliding-form-panel {
    max-height: 0;
    /* Shuru me height zero rahegi */
    overflow: hidden;
    /* Content baahar nahi dikhega */
    opacity: 0;
    /* Fully transparent */
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease;
    background: #090d16;
    border-radius: 0 0 16px 16px;
}

/* 🔥 OPENED STATE (Triggered via JS) */
.sliding-form-panel.active {
    max-height: 500px;
    /* Form khulte hi height badh jayegi */
    opacity: 1;
    /* Fully visible */
    border: 1px solid rgba(0, 242, 254, 0.08);
    border-top: none;
    /* Main button ke niche perfectly match hoga */
}

/* Smooth border adjustment for the button when panel is open */
.support-trigger-btn.panel-open {
    border-radius: 16px 16px 0 0;
    border-color: rgba(0, 242, 254, 0.08);
    background: #090d16;
}

.support-trigger-btn.panel-open .arrow-toggle {
    transform: rotate(180deg);
    /* Arrow upar ghum jayega */
    color: #00f2fe;
}

/* Interior Content Spacing */
.form-interior {
    padding: 24px;
}

.support-desc {
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.support-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.faq-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.faq-input-group label {
    font-size: 10px;
    font-weight: 700;
    color: #00f2fe;
    letter-spacing: 0.5px;
}

.faq-query-form input,
.faq-query-form textarea {
    background: #05070f !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    outline: none;
    transition: all 0.3s ease;
}

.faq-query-form input:focus,
.faq-query-form textarea:focus {
    border-color: #00f2fe;
    box-shadow: 0 0 12px rgba(0, 242, 254, 0.1);
}

.faq-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    border: none;
    border-radius: 10px;
    color: #05070f;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.15);
    transition: all 0.3s ease;
}

.faq-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.3);
}

/* Mobile View Handling */
@media (max-width: 550px) {
    .support-form-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   🤖 FAQ INPUT FIELD ABSOLUTE OVERRIDE (ANTI-WHITE BOX FIX)
   ========================================================================== */

/* ID targeting se specificity sabse high ho jayegi aur white background khatam ho jayega */
#faq-query-form input,
#faq-query-form textarea {
    background: #05070f !important;
    /* 🌌 Pure white se badalkar ekdum solid dark background */
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    /* Subtle gray border */
    color: #e2e8f0 !important;
    /* Likhne waala text ab dark nahi, crisp white dikhega */
    padding: 14px 16px !important;
    /* Tightness khatam, premium breathing space */
    border-radius: 12px !important;
    /* Sharp corners ko smooth curved corners me badla */
    font-size: 14px !important;
    outline: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
}

/* 🤫 Placeholder text ka color soft aur premium slate gray karne ke liye */
#faq-query-form input::placeholder,
#faq-query-form textarea::placeholder {
    color: #475569 !important;
    opacity: 1 !important;
}

/* ✨ FOCUS STATE: Jab user type karne ke liye click karega toh neon glow aayega */
#faq-query-form input:focus,
#faq-query-form textarea:focus {
    border-color: #00f2fe !important;
    /* Cyan neon border */
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2) !important;
    /* Soft blue neon aura */
    background: #090d16 !important;
    /* Focus par halke se card color me change hoga */
}

/* Textarea corner adjustment */
#faq-query-form textarea {
    resize: vertical;
    /* User height choti-badi kar sake par width kharab na ho */
    min-height: 100px;
}

@media (max-width: 600px) {

    /* 🌌 1. MAIN BENTO BOX: Solid FAQ Style Black Background */
    .bento-box {
        background: #090d16 !important;
        /* Pure solid dark background */
        border: 1px solid rgba(255, 255, 255, 0.05) !important;
        /* Premium subtle border line */
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5) !important;
        /* Soft depth shadow */
        position: relative;
        overflow: hidden;
    }

    /* 🛑 2. GLOW CONTROL: Peeche ke blur glow ko chota aur faint kiya taaki text washed out na lage */
    .box-glow-layer {
        opacity: 0.15 !important;
        /* Glow ko ekdum light kiya taaki background text block na ho */
        background: radial-gradient(circle, rgba(0, 242, 254, 0.2) 0%, transparent 70%) !important;
    }

    /* ⚪ 3. HEADINGS: High-Contrast Crisp White */
    .bento-box h3 {
        color: #ffffff !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        margin-top: 8px !important;
        margin-bottom: 4px !important;
    }

    /* 💿 4. DESCRIPTIONS: Bright Silver Gray for Maximum Readability */
    .bento-box p {
        color: #94a3b8 !important;
        /* Dark se hatakar readable slate gray kiya */
        font-size: 12.5px !important;
        line-height: 1.5 !important;
        font-weight: 500 !important;
    }

    /* 🏷️ 5. BENTO TAGS: Glowing Cyber Badge Look (DAILY FEEDS, LONG VIDEOS) */
    .bento-tag {
        color: #00f2fe !important;
        /* Neon cyan text */
        background: rgba(0, 242, 254, 0.04) !important;
        /* Light transparent body */
        border: 1px solid rgba(0, 242, 254, 0.15) !important;
        /* Cyber border line */
        padding: 4px 8px !important;
        border-radius: 6px !important;
        font-size: 10px !important;
        font-weight: 700 !important;
        letter-spacing: 0.5px !important;
    }

    /* Icon Color Setup for uniformity */
    .bento-icon i {
        font-size: 20px !important;
    }
}

@media (max-width: 600px) {
    /* ... Aapka baaki FAQ aur Bento box ka mobile code ... */

    /* 1. Main Outer Wrapper Optimization */
    .faq-support-wrapper {
        margin: 30px auto !important;
        padding: 0 16px !important;
        /* Mobile screen borders se chipkega nahi */
    }

    /* 2. Swipe Trigger Button (Pehle se mobile friendly hai, par thoda compact padding check) */
    .support-trigger-btn {
        padding: 14px 18px !important;
        font-size: 14px !important;
        border-radius: 12px !important;
    }

    .support-trigger-btn.panel-open {
        border-radius: 12px 12px 0 0 !important;
    }

    /* 3. Sliding Panel Interior Content */
    .form-interior {
        padding: 16px !important;
        /* Spacing kam ki taaki input area bada mile */
    }

    .support-desc {
        font-size: 12px !important;
        line-height: 1.4 !important;
        margin-bottom: 16px !important;
    }

    /* 🔥 4. THE CRITICAL GRID FIX: Name aur Email ko column me stack karo */
    .support-form-grid {
        grid-template-columns: 1fr !important;
        /* Row khatam! Ab Name upar aur Email niche aayega */
        gap: 0px !important;
        /* Grid gap zero kiya kyunki input groups me already margin hai */
    }

    /* 5. Input Groups Vertical Spacing adjustment */
    .faq-input-group {
        gap: 5px !important;
        margin-bottom: 12px !important;
        /* Har input field ke beech balanced gap */
    }

    .faq-input-group label {
        font-size: 10px !important;
    }

    /* 🌌 6. Dark Inputs Fine-Tuning for Touch Screens */
    #faq-query-form input,
    #faq-query-form textarea {
        padding: 12px 14px !important;
        /* Finger tap friendly padding */
        font-size: 13px !important;
        border-radius: 10px !important;
    }

    /* Textarea height cap on mobile */
    #faq-query-form textarea {
        min-height: 90px !important;
    }

    /* 🚀 7. Transmit Button Fluid Setup */
    .faq-submit-btn {
        padding: 14px !important;
        font-size: 13.5px !important;
        border-radius: 10px !important;
        margin-top: 5px !important;
    }
}