/* ============================================
   INDEXBROZ - Custom Styles
   Uses CSS variables set dynamically from config
   ============================================ */

/* === SKIP LINK === */
.skip-link {
    position: absolute;
    top: -60px;
    left: 6px;
    background: var(--brand-primary);
    color: #fff;
    padding: 12px 16px;
    border-radius: 0 0 8px 8px;
    z-index: 10001;
    font-weight: bold;
    transition: top .3s;
    text-decoration: none;
}
.skip-link:focus {
    top: 10px;
    outline: 3px solid #fff;
    outline-offset: 4px;
}

/* === GENERAL === */
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height);
    color: var(--text-primary);
    background: var(--bg-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
section {
    scroll-margin-top: 80px;
}
::selection {
    background: var(--brand-primary);
    color: #fff;
}

/* === NAVBAR === */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-nav);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
    padding: 0;
    min-height: 70px;
}
.navbar-custom .navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-bright);
    letter-spacing: -0.02em;
    padding: 0;
}
.navbar-custom .navbar-brand:hover {
    color: var(--brand-bright);
}
.navbar-custom .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.3s ease;
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--brand-bright) !important;
}
.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 2px;
    left: 1rem;
    background: var(--brand-primary);
    transition: width 0.3s ease;
}
.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    width: calc(100% - 2rem);
}
.navbar-logo {
    height: 60px;
    width: auto;
}
.navbar-custom.scrolled {
    background: var(--bg-body);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.navbar-toggler {
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    padding: 0.5rem;
}
.navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

/* === HERO === */
.hero {
    min-height: 80vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 40px;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
    z-index: 0;
}
/* === HERO BUBBLES === */
.hero-bubble {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.hero-bubble.b1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(41, 75, 255, 0.06) 0%, transparent 70%);
    top: -80px;
    right: 5%;
}
.hero-bubble.b2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(123, 92, 255, 0.05) 0%, transparent 70%);
    bottom: 10%;
    left: -60px;
}
.hero-bubble.b3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(41, 75, 255, 0.04) 0%, transparent 70%);
    top: 30%;
    right: -40px;
}
.hero-bubble.b4 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(123, 92, 255, 0.06) 0%, transparent 70%);
    bottom: 20%;
    right: 30%;
}
.hero-bubble.b5 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(41, 75, 255, 0.05) 0%, transparent 70%);
    top: 60%;
    left: 40%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(41, 75, 255, 0.12);
    border: 1px solid rgba(41, 75, 255, 0.3);
    color: var(--brand-bright);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}
.hero-stats {
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.1s forwards;
}
.hero-stat-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-bright);
}
.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: 0.35rem;
}
.hero-glow-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41,75,255,0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
    z-index: 0;
}
.hero-glow-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123,92,255,0.12) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    pointer-events: none;
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: var(--font-size-h1);
    font-weight: var(--heading-weight);
    line-height: 1.2;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}
.hero p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
    color: var(--text-secondary);
}
.hero .cta-buttons {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

/* === BUTTONS === */
.btn-brand {
    background: var(--brand-primary);
    color: #fff;
    border: 2px solid var(--brand-primary);
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: var(--font-size-btn);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-brand:hover {
    background: transparent;
    color: var(--brand-bright);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.btn-outline-brand {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: var(--font-size-btn);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-outline-brand:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* === SECTION COMMON === */
.section-padding {
    padding: 3.5rem 0;
}
.section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--heading-weight);
    color: var(--text-primary);
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* === SERVICES === */
.services {
    background: var(--bg-section);
}
.service-hero-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-lg);
}
.service-hero-top {
    padding-bottom: 1.5rem;
}
.service-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(41, 75, 255, 0.1);
    color: var(--brand-bright);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.service-hero-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}
.service-hero-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}
.service-hero-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
    margin: 2rem 0;
}
.service-hero-block h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.service-hero-block h3 i {
    color: var(--brand-bright);
    font-size: 1rem;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-light);
}
.feature-list li:last-child {
    border-bottom: none;
}
.feature-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 8px;
    background: rgba(41, 75, 255, 0.1);
    color: var(--brand-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}
.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.offer-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(41, 75, 255, 0.06);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 12px 14px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.25s ease;
}
.offer-chip i {
    color: var(--brand-bright);
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}
.offer-chip:hover {
    background: rgba(41, 75, 255, 0.1);
    border-color: var(--brand-primary);
    color: var(--brand-bright);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 75, 255, 0.1);
}

/* === ABOUT === */
.about {
    background: var(--bg-body);
}
.about-text h2 {
    font-size: var(--font-size-h2);
    font-weight: var(--heading-weight);
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}
.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}
.about-image {
    position: relative;
}
.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: var(--gradient-primary);
    border-radius: 16px;
    z-index: 0;
}
.about-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-lg);
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-bright);
    display: block;
    animation: countUp 0.6s ease-out;
}
.stat-label {
    color: var(--text-muted);
    font-weight: 500;
}

/* === COMPLAINTS === */
.complaints {
    background: var(--bg-section);
}
.escalation-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--brand-primary);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}
.escalation-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.escalation-card.regulatory {
    border-left-color: #dc2626;
    background: linear-gradient(135deg, rgba(220,38,38,0.05), var(--bg-card));
}
.escalation-card h3 {
    color: var(--text-primary);
    font-size: 1.45rem;
    font-weight: 600;
    margin: 0;
}
.timeline-badge {
    background: var(--brand-primary);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}
.regulatory .timeline-badge {
    background: #dc2626;
}
.escalation-card p {
    margin: 0.5rem 0;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}
.escalation-card strong {
    color: var(--text-secondary);
}

/* === COMPLAINTS DASHBOARD === */
.dashboard-box {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
    border: 1px solid var(--border-light);
}
.dashboard-box h3 {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-align: center;
}
.tab-btn-custom {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-light);
    background: transparent;
    color: var(--text-muted);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 100px;
}
.tab-btn-custom:hover {
    border-color: var(--brand-primary);
    color: var(--brand-bright);
}
.tab-btn-custom.active {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(41,75,255,0.4);
}
.dashboard-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}
.dashboard-pane.active {
    display: block;
}
.dashboard-header h4 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}
.dashboard-header select {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    min-height: 44px;
    transition: border-color 0.3s ease;
}
.dashboard-header select:focus {
    outline: 3px solid var(--brand-primary);
    outline-offset: 2px;
    border-color: var(--brand-primary);
}

/* Stat Cards */
.stat-card {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}
.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-primary);
}
.stat-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
}
.stat-card.new .stat-card-icon { background: linear-gradient(135deg, #294BFF, #1a33cc); }
.stat-card.closed .stat-card-icon { background: linear-gradient(135deg, #10b981, #059669); }
.stat-card.pending .stat-card-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }
.stat-card.resolution .stat-card-icon { background: linear-gradient(135deg, #7B5CFF, #5a3dcc); }
.stat-card h5 {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
    color: var(--text-primary);
}

/* === CONTACT === */
.contact {
    background: var(--bg-dark);
}
.contact .section-title { color: #fff; }
.contact .section-subtitle { color: var(--text-muted); }
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 1.1rem;
}
.contact-item strong {
    color: #fff;
    display: block;
    font-weight: 600;
}
.contact-item span,
.contact-item a {
    color: var(--text-muted);
    text-decoration: none;
}
.contact-item a:hover {
    color: var(--brand-bright);
}
.contact-form-box {
    background: var(--bg-card);
    padding: 1.75rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
}
.contact-form-box h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}
.form-control-custom {
    width: 100%;
    padding: 1rem;
    background: var(--bg-section);
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-primary);
    transition: border-color 0.3s ease;
}
.form-control-custom:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(41,75,255,0.15);
}
.form-control-custom::placeholder {
    color: var(--text-dark);
}
textarea.form-control-custom {
    resize: vertical;
    min-height: 120px;
}
.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
}
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(41,75,255,0.3);
}
.form-msg {
    text-align: center;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}
.form-msg.success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.3);
}
.form-msg.error {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

/* === FOOTER === */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-light);
}
.footer h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}
.footer p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer ul li {
    margin-bottom: 0.5rem;
}
.footer ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}
.footer ul li a:hover {
    color: var(--brand-bright);
}
.social-link {
    width: 40px;
    height: 40px;
    background: var(--border-light);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-link:hover {
    background: var(--brand-primary);
    color: #fff;
    transform: translateY(-2px);
}
.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
}

/* === SCROLL TO TOP === */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow-brand);
    display: flex;
    align-items: center;
    justify-content: center;
}
.scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === MODAL === */


/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes countUp {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Scroll animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 991.98px) {
    .navbar-custom .navbar-collapse {
        background: var(--bg-body);
        border-radius: 0 0 16px 16px;
        padding: 1rem;
        border: 1px solid var(--border-light);
        margin-top: 0.5rem;
    }
    .navbar-custom .nav-link::after {
        display: none;
    }
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .about-image::before { display: none; }
    .about-image img { height: 450px; }
    .section-padding { padding: 3rem 0; }
}
@media (max-width: 767.98px) {
    .section-padding { padding: 2rem 0; }
    .section-title { font-size: 1.75rem; margin-bottom: 0.75rem; }
    .section-subtitle { font-size: 1rem; margin-bottom: 1.5rem; }
    .hero { min-height: auto; padding: 6rem 0 2rem; }
    .hero h1 { font-size: 1.75rem; margin-bottom: 1rem; }
    .hero p { font-size: 0.95rem; margin-bottom: 1.25rem; }
    .hero .cta-buttons { gap: 0.75rem !important; }
    .hero .cta-buttons .btn { width: 100%; padding: 0.75rem 1.5rem; }
    .hero-stats { gap: 1rem !important; margin-top: 1.5rem !important; }
    .hero-stat-num { font-size: 1.2rem; }
    .hero-stat-label { font-size: 0.8rem; }
    .stat-number { font-size: 2rem; }
    .about-image img { height: 320px; }
    .dashboard-box { padding: 1.25rem; margin-top: 1.5rem; }
    .stat-card { flex-direction: column; text-align: center; padding: 1.25rem; }
    .escalation-card h3 { font-size: 1.2rem; }
    .offer-card { padding: 1.5rem; }
    .offer-card h3 { font-size: 1.05rem; }
    .why-us-item { padding: 1rem; }
    .service-hero-card { padding: 2rem 1.5rem; border-radius: 18px; }
    .service-hero-heading { font-size: 1.75rem; }
    .offer-grid { grid-template-columns: 1fr; }
    .contact-form-box { padding: 1.25rem; }
    .contact-form-box h3 { font-size: 1.4rem; margin-bottom: 1.25rem; }
    .nav-buttons { flex-direction: column; }
    .compliance-viewer-wrap { padding: 15px; }
    .compliance-content-scroll { max-height: 400px; padding: 5px; }
    .complaint-table-wrap table { min-width: 600px; font-size: 0.82rem; }
    .mb-5 { margin-bottom: 1.5rem !important; }
    .mb-4 { margin-bottom: 1.25rem !important; }
    .mb-3 { margin-bottom: 1rem !important; }
    .row { --bs-gutter-x: 1rem; }
    .row.g-4 { --bs-gutter-x: 1rem; --bs-gutter-y: 1rem; }
    .row.g-5 { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; }
    .footer h3 { font-size: 1.1rem; margin-bottom: 1rem; }
    .footer p { font-size: 0.95rem; }
    .footer ul li a { font-size: 0.95rem; }
    .footer-bottom p { font-size: 0.85rem; }
    .about-text h2 { font-size: 1.75rem; margin-bottom: 1.25rem; }
    .about-text p { font-size: 0.95rem; margin-bottom: 1rem; line-height: 1.7; }
}
@media (max-width: 991.98px) {
    .desktop-tabs { display: none !important; }
    .mobile-compliance-dropdown { display: block !important; }
}
@media (max-width: 575.98px) {
    .hero h1 { font-size: 1.5rem; }
    .section-title { font-size: 1.5rem; }
    .container { padding-left: 1rem; padding-right: 1rem; }
    .hero { padding: 5rem 0 1.5rem; }
    .hero-badge { font-size: 0.75rem; padding: 0.4rem 1rem; margin-bottom: 1rem; }
    .section-padding { padding: 1.5rem 0; }
    .stat-number { font-size: 1.5rem; }
    .contact-item { margin-bottom: 1rem; }
    .contact-item-icon { width: 40px; height: 40px; font-size: 0.9rem; }
    .btn-brand, .btn-outline-brand { padding: 0.65rem 1.25rem; font-size: 0.9rem; }
    .offer-card { padding: 1.25rem; }
    .why-us-item { padding: 0.85rem; }
    .why-us-check { width: 34px; height: 34px; min-width: 34px; font-size: 0.85rem; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    html { scroll-behavior: auto; }
}

/* === COMPLIANCE SECTION === */
.compliance-section {
    background: var(--bg-section);
}
.compliance-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}
.compliance-tab-btn {
    border: none;
    background: rgba(41, 75, 255, 0.08);
    color: var(--brand-bright);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}
.compliance-tab-btn:hover {
    transform: translateY(-2px);
    background: rgba(41, 75, 255, 0.15);
}
.compliance-tab-btn.active {
    background: var(--brand-primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(41, 75, 255, 0.25);
}
.compliance-viewer-wrap {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}
.compliance-panel {
    display: none;
    animation: fadeCompliance 0.25s ease;
}
.compliance-panel.active {
    display: block;
}
@keyframes fadeCompliance {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
}
.compliance-content-scroll {
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 10px 10px 5px;
}
.compliance-content-scroll::-webkit-scrollbar {
    width: 6px;
}
.compliance-content-scroll::-webkit-scrollbar-thumb {
    background: var(--brand-primary);
    border-radius: 20px;
}
.compliance-content-scroll:focus,
.complaint-table-wrap:focus {
    outline: 3px solid var(--brand-primary);
    outline-offset: 2px;
}
.compliance-content-scroll h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}
.compliance-content-scroll h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.compliance-content-scroll h5 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}
.compliance-content-scroll p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}
.compliance-content-scroll ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.compliance-content-scroll li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.compliance-content-scroll ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.compliance-content-scroll ol li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.page-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.complaint-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}
.complaint-table-wrap table {
    min-width: 800px;
    white-space: nowrap;
    background: transparent;
}
.complaint-table-wrap table.table-bordered {
    border-color: var(--border-light);
}
.complaint-table-wrap th,
.complaint-table-wrap td {
    padding: 0.75rem 1rem;
    border-color: var(--border-light) !important;
    color: var(--text-secondary);
    background: var(--bg-card);
}
.complaint-table-wrap thead th {
    background: var(--bg-section) !important;
    color: var(--text-primary) !important;
    font-weight: 600;
}
.complaint-table-wrap tbody tr:hover td {
    background: var(--bg-card-hover);
}
.complaint-table-wrap .table-warning {
    --bs-table-bg: transparent;
    --bs-table-color: var(--text-primary);
}
.complaint-table-wrap .table-warning th {
    background: var(--bg-section) !important;
    color: var(--text-primary) !important;
    font-weight: 600;
}
.desktop-tabs {
    display: flex;
}
.mobile-compliance-dropdown {
    display: none;
    position: relative;
    margin-bottom: 28px;
}
.mobile-comp-trigger {
    width: 100%;
    background: var(--bg-card);
    border: 1.5px solid var(--brand-primary);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(41, 75, 255, 0.1);
}
.mobile-comp-trigger:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 4px 16px rgba(41, 75, 255, 0.18);
}
.mobile-comp-trigger .trigger-label {
    display: flex;
    align-items: center;
    gap: 10px;
}
.mobile-comp-trigger .trigger-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(41, 75, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--brand-bright);
}
.mobile-comp-trigger i.fa-chevron-down {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.8rem;
    color: var(--brand-bright);
}
.mobile-comp-trigger.open i.fa-chevron-down {
    transform: rotate(180deg);
}
.mobile-comp-trigger.open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-color: var(--brand-primary);
    box-shadow: 0 -2px 16px rgba(41, 75, 255, 0.12);
}
.mobile-comp-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1.5px solid var(--brand-primary);
    border-top: none;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(41, 75, 255, 0.15);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}
.mobile-comp-menu.open {
    max-height: 400px;
    opacity: 1;
    overflow-y: auto;
}
.mobile-comp-menu::-webkit-scrollbar {
    width: 4px;
}
.mobile-comp-menu::-webkit-scrollbar-thumb {
    background: var(--brand-primary);
    border-radius: 10px;
}
.mobile-comp-menu button {
    width: 100%;
    padding: 13px 20px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.92rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
.mobile-comp-menu button::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border-light);
    flex-shrink: 0;
    transition: all 0.2s ease;
}
.mobile-comp-menu button:hover {
    background: rgba(41, 75, 255, 0.06);
    color: var(--brand-bright);
    padding-left: 24px;
}
.mobile-comp-menu button:hover::before {
    background: var(--brand-primary);
    transform: scale(1.3);
}
.mobile-comp-menu button.active {
    color: var(--brand-bright);
    font-weight: 700;
    background: rgba(41, 75, 255, 0.08);
}
.mobile-comp-menu button.active::before {
    background: var(--brand-primary);
    width: 8px;
    height: 8px;
    box-shadow: 0 0 6px rgba(41, 75, 255, 0.4);
}

/* === UTILITY OVERRIDES === */
.text-brand { color: var(--brand-bright); }
.text-gradient { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bg-brand-gradient { background: var(--gradient-primary); }

/* ═══════════════════════════════════════════════════════
   PLAN BOOKING SECTION
   ═══════════════════════════════════════════════════════ */

.plan-booking-section { background: var(--bg-body); }

.booking-card {
    max-width: 700px;
    margin: auto;
    background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
    border: 1px solid var(--border-accent);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.booking-title {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.booking-field { margin-bottom: 24px; }

.booking-field label {
    display: block;
    margin-bottom: 10px;
    color: var(--brand-bright);
    font-weight: 600;
}

.booking-input,
.booking-select {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    padding: 15px 18px;
    border-radius: 14px;
    transition: .3s;
}

.booking-input:focus,
.booking-select:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px rgba(41,75,255,.12);
}

.booking-summary {
    margin-top: 30px;
    padding: 24px;
    background: rgba(41,75,255,.05);
    border: 1px solid rgba(41,75,255,.15);
    border-radius: 16px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.summary-divider {
    height: 1px;
    background: rgba(41,75,255,.15);
    margin: 18px 0;
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.booking-btn {
    width: 100%;
    margin-top: 25px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    border-radius: 16px;
    background: var(--brand-primary);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    transition: .3s;
}

.booking-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    background: var(--brand-light);
    box-shadow: var(--shadow-brand);
}

.booking-btn #payAmount {
    font-size: 1.15rem;
    font-weight: 800;
}

.custom-plan-dropdown { position: relative; }

.plan-dropdown-btn {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: 18px;
    padding: 18px 22px;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.plan-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: 18px;
    overflow: hidden;
    display: none;
    z-index: 100;
}

.plan-dropdown-menu.show { display: block; }

.plan-option {
    padding: 18px 22px;
    cursor: pointer;
    transition: .2s;
}

.plan-option:hover { background: rgba(41,75,255,.08); }

.plan-option.active {
    background: rgba(41,75,255,.15);
    color: var(--brand-bright);
}
