:root {
    --bg-dark: #0b0e11;       /* Main background */
    --bg-card: #1b1f23;       /* Card background */
    --text-main: #ffffff;     /* Primary text */
    --text-dim: #b7bdc6;      /* Secondary/Muted text */
    --accent: #00d4ff;        /* Neon Blue */
    --border: rgba(255, 255, 255, 0.1);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Fix for Muted Text visibility */
.text-muted {
    color: var(--text-dim) !important;
}

/* Navbar Fix */
.navbar-dark .navbar-nav .nav-link {
    color: var(--text-dim);
}
.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--accent);
}

/* Feature Cards */
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    transition: 0.3s;
}
.feature-card h5 { color: white; }

/* FAQ / Accordion Fix (Crucial for visibility) */
.accordion-item {
    background-color: var(--bg-card) !important;
    border: 1px solid var(--border) !important;
    margin-bottom: 10px;
    border-radius: 12px !important;
    overflow: hidden;
}
.accordion-button {
    background-color: var(--bg-card) !important;
    color: var(--text-main) !important;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    color: var(--accent) !important;
    border-bottom: 1px solid var(--border);
}
.accordion-body {
    color: var(--text-dim);
}

/* Form Inputs Fix */
.form-control {
    background-color: rgba(255,255,255,0.05) !important;
    border: 1px solid var(--border) !important;
    color: white !important;
    padding: 12px 20px;
}
.form-control:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}
.form-control::placeholder {
    color: rgba(255,255,255,0.3);
}

/* Testimonial Cards */
.testimonial-card {
    background: linear-gradient(145deg, #1e2329, #161a1e);
    border-left: 4px solid var(--accent);
    padding: 25px;
    border-radius: 15px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.flash-offer {
    background: linear-gradient(90deg, #f39c12, #e74c3c);
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shadow-glow {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}