:root {
    --brand: #0062ff;
    --gold: #eab308;
    --navy: #050b1a;
    --transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Light Theme (Day View) */
.light-theme {
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --text: #0f172a;
    --text-muted: #64748b;
    --card-bg: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Dark Theme */
.dark-theme {
    --bg: #0f172a;
    --bg-alt: #1e293b;
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --card-bg: #1e293b;
    --border: #334155;
    --shadow: 0 10px 30px rgba(0,0,0,0.3);
}

* { margin:0; padding:0; box-sizing: border-box; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; transition: 0.3s; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }
.section-padding { padding: 90px 0; }
.bg-alt { background: var(--bg-alt); }

/* Navigation */
.navbar { height: 85px; display: flex; align-items: center; background: var(--bg); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border); }
.navbar .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo-container { text-decoration: none; display: flex; align-items: center; gap: 10px; }
.logo-text { font-weight: 800; font-size: 1.5rem; color: var(--text); }
.logo-text span { color: var(--brand); }
.nav-links { display: flex; list-style: none; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 600; font-size: 0.95rem; }
.nav-btn { background: var(--brand); color: #fff !important; padding: 12px 24px; border-radius: 10px; }

/* Hero */
.hero { padding: 120px 0 80px; text-align: center; }
.hero h1 { font-size: clamp(2.5rem, 8vw, 4rem); font-weight: 800; line-height: 1.1; margin-bottom: 25px; }
.hero p { max-width: 800px; margin: 0 auto 40px; font-size: 1.2rem; color: var(--text-muted); }
.highlight { color: var(--brand); }
.badge { background: rgba(0,98,255,0.1); color: var(--brand); padding: 8px 16px; border-radius: 50px; font-weight: 700; margin-bottom: 20px; display: inline-block; }

/* Gradients */
.platform-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.p-card { padding: 45px; border-radius: 24px; color: white; transition: var(--transition); position: relative; overflow: hidden; }
.p-card:hover { transform: translateY(-10px); }
.p-card.fb { background: linear-gradient(135deg, #3b5998, #1e3c72); }
.p-card.ig { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.p-card.tw { background: #1a1a1a; }
.p-icon { font-size: 3rem; margin-bottom: 20px; font-family: sans-serif; font-weight: bold; }

/* Info & Feature Cards */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.info-card, .feature-card { background: var(--card-bg); padding: 40px; border-radius: 20px; border: 1px solid var(--border); box-shadow: var(--shadow); transition: var(--transition); }
.icon-circle { width: 50px; height: 50px; background: rgba(234, 179, 8, 0.1); color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
.f-list { list-style: none; margin-top: 20px; }
.f-list li { padding-left: 25px; position: relative; margin-bottom: 12px; font-size: 0.95rem; color: var(--text-muted); }
.f-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 900; }

/* FAQ Item Interactions */
.faq-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border-color: var(--brand) !important;
}

/* Footer */
.main-footer { background: var(--navy); color: #94a3b8; padding: 80px 0 30px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.f-brand-box { display: flex; align-items: center; gap: 15px; color: white; }
.status-tag { background: rgba(34, 197, 94, 0.1); color: #22c55e; padding: 6px 14px; border-radius: 50px; font-size: 0.8rem; display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 50px; }
.footer-col h4 { color: var(--gold); margin-bottom: 25px; font-size: 1.1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 15px; transition: 0.3s; cursor: pointer; }
.footer-col li:hover { color: white; padding-left: 5px; }

/* --- Emergency Banner Styling --- */
.emergency-banner {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 2px solid #ef4444; 
    border-radius: 24px;
    padding: 50px;
    margin: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}
.emergency-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.emergency-banner h3 { margin-bottom: 10px; font-weight: 800; letter-spacing: -0.5px; color: white; }

.emergency-btn {
    display: inline-block;
    background: #ef4444;
    color: white !important;
    padding: 18px 45px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    margin-top: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.4);
    text-transform: uppercase;
}
.emergency-btn:hover {
    transform: translateY(-3px) scale(1.03);
    background: #dc2626;
    box-shadow: 0 20px 25px -5px rgba(239, 68, 68, 0.5);
}

/* --- Floating Chat Button --- */
.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}
.floating-chat:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #128c7e;
}
.chat-tooltip {
    position: absolute;
    right: 75px;
    background: #0f172a;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.floating-chat:hover .chat-tooltip {
    opacity: 1;
    visibility: visible;
}
.floating-chat::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: chatPulse 2s infinite;
}
@keyframes chatPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* --- Contact Section Professional Styling --- */

/* Grid Layout for Desktop */
.contact-wrapper {
    display: grid; 
    grid-template-columns: 1fr 1.2fr; 
    gap: 60px; 
    align-items: start;
}

/* Mobile Responsiveness (Phones & Tablets) */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr; /* Stacks columns on top of each other */
        gap: 40px;
    }
    
    .contact-info {
        text-align: center;
    }

    .contact-info h2 {
        font-size: 2.2rem !important; /* Slightly smaller text for mobile */
    }

    .trust-points {
        display: inline-block;
        text-align: left;
    }

    .security-footer {
        justify-content: center;
    }
}

/* Specific Mobile Fixes for Global Elements */
@media (max-width: 768px) {
    .nav-links {
        display: none; 
        flex-direction: column;
        position: fixed;
        top: 85px;
        left: 0;
        width: 100%;
        background: var(--bg);
        padding: 40px 20px;
        text-align: center;
        gap: 25px;
        z-index: 1000;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-bottom: 2px solid var(--brand);
    }
    .nav-links.active { display: flex; animation: slideDown 0.4s ease forwards; }
    .hero h1 { font-size: 2.2rem; }
    .emergency-banner { padding: 30px 20px; }
    .floating-chat { bottom: 20px; right: 20px; width: 55px; height: 55px; }
    .chat-tooltip { display: none; }
}

/* Input Focus Effects */
.contact-form-container input:focus, 
.contact-form-container textarea:focus {
    outline: none;
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    transition: all 0.3s ease;
}

/* Button Hover State */
.contact-form-container .btn-primary:hover {
    background: #2563eb !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.5);
}

/* Success/Error Alert Animation */
.success-alert, .error-alert {
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Label Styling */
.input-group label {
    letter-spacing: 0.05em;
    user-select: none;
}

/* --- Global Reveal Animations --- */
.reveal { opacity: 0; transform: translateY(30px); transition: 1s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

.dot.pulse {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
