/* ===========================================
   LSFC Zone — Master Theme CSS
   Theme-Synchronized from Blogger Template
   Color System: #902a8b Purple
   =========================================== */

/* ── CSS Variables ── */
:root {
    /* Brand Colors */
    --primary-color:     #902a8b;
    --secondary-color:   #5e1b5b;
    --primary-light:     #fdf2fc;
    --primary-glow:      rgba(144, 42, 139, 0.10);
    --primary-shadow-sm: rgba(144, 42, 139, 0.20);
    --primary-shadow-md: rgba(144, 42, 139, 0.30);

    /* Accent / Status */
    --accent-gold:       #ffca28;
    --accent-yellow:     #ffeb3b;
    --success-color:     #198754;
    --success-pulse:     rgba(25, 135, 84, 0.70);
    --danger-color:      #dc3545;
    --whatsapp-green:    #25d366;
    --whatsapp-dark:     #128c7e;

    /* Neutrals */
    --light-bg:          #f8f9fa;
    --white:             #ffffff;
    --text-dark:         #333333;
    --text-muted:        #555555;
    --text-light:        #999999;
    --border-light:      #eeeeee;
    --border-medium:     #dee2e6;
    --card-bg:           #fdfdfd;

    /* Footer */
    --footer-bg:         #902a8b;
    --footer-text:       #e0e0e0;
    --footer-link-hover: #ffffff;

    /* Typography */
    --font-main:         'Kalpurush', serif;
    --font-size-base:    16px;
    --line-height-base:  1.8;
    --font-size-sm:      0.9rem;
    --font-size-body:    0.95rem;
    --font-size-hero:    2.5rem;
    --font-size-hero-sm: 1.8rem;

    /* Spacing & Shape */
    --radius-sm:         4px;
    --radius-md:         8px;
    --radius-lg:         12px;
    --radius-xl:         15px;
    --radius-pill:       20px;
    --radius-circle:     50%;

    /* Shadows */
    --shadow-xs:   0 2px 4px  rgba(0,0,0,0.05);
    --shadow-sm:   0 4px 6px  rgba(0,0,0,0.10);
    --shadow-md:   0 5px 10px rgba(0,0,0,0.10);
    --shadow-lg:   0 10px 30px rgba(0,0,0,0.05);
    --shadow-card: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-nav:  0 4px 6px  rgba(0,0,0,0.10);
}

/* ── Global Reset ── */
*:not(i):not(span[class*="fa"]):not([class*="fa-"]) {
    font-family: var(--font-main) !important;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--text-dark);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding-top: 70px;
}

a { color: var(--primary-color); transition: all 0.3s ease; }
a:hover { color: var(--secondary-color); }

/* ── Page Loader ── */
.page-loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}
.page-loader.loaded {
    opacity: 0;
    pointer-events: none;
}
.loader-spinner {
    width: 50px; height: 50px;
    border: 4px solid var(--primary-light);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Skip to Content ── */
.skip-to-content {
    position: absolute;
    left: -9999px;
    top: 5px;
    z-index: 100000;
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-md);
}
.skip-to-content:focus {
    left: 10px;
}

/* ── Navbar ── */
.navbar {
    background-color: var(--primary-color);
    box-shadow: var(--shadow-nav);
    min-height: 66px;
    padding: 8px 0;
    z-index: 1050;
}
.navbar-brand img {
    max-height: 48px;
    width: auto;
}
.nav-link {
    color: #fff !important;
    font-weight: 700;
    font-size: 1rem;
    margin-left: 8px;
    padding: 8px 12px !important;
    transition: all 0.3s;
}
.nav-link:hover { color: var(--accent-yellow) !important; }
.nav-link.active-link { color: var(--accent-yellow) !important; }

/* Navbar Login Button */
.nav-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: var(--primary-color) !important;
    border: none;
    border-radius: 50px;
    padding: 9px 24px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(255,255,255,0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.nav-login-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(144,42,139,0.08), transparent);
    transition: left 0.5s ease;
}
.nav-login-btn:hover {
    background: var(--accent-yellow);
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255,202,40,0.4);
    text-decoration: none;
}
.nav-login-btn:hover::before {
    left: 100%;
}
.nav-login-btn i {
    font-size: 1.1rem;
}

/* Navbar User Profile */
.nav-user-profile {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.12);
    padding: 5px 15px;
    border-radius: 30px;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}
.nav-user-profile:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.nav-user-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.85rem;
    margin-right: 10px;
}

/* Dropdown */
.dropdown-menu {
    border-radius: var(--radius-md);
    border: none;
    box-shadow: var(--shadow-md);
    padding: 0;
    min-width: 220px;
    overflow: hidden;
}
.dropdown-item {
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.2s;
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover {
    background-color: var(--primary-color);
    color: #fff;
}
.dropdown-item i { width: 20px; margin-right: 8px; }

/* Mobile Navbar */
.navbar-toggler {
    border-color: rgba(255,255,255,0.5);
    padding: 8px 12px;
}
.navbar-toggler-icon { filter: invert(1); }

@media (max-width: 991px) {
    body {
        padding-top: 56px;
    }
    .navbar {
        min-height: 56px;
        padding: 6px 0;
    }
    .navbar-brand img {
        max-height: 38px;
    }
    .navbar-collapse {
        background-color: var(--white);
        padding: 15px;
        border-radius: var(--radius-md);
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        margin-top: 10px;
        position: relative;
        z-index: 1000;
    }
    .navbar-nav .nav-link {
        color: var(--primary-color) !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid var(--border-light);
        margin-left: 0;
        font-size: 1rem;
    }
    .navbar-nav .nav-link:last-child { border-bottom: none; }
    .dropdown-menu { border: none; box-shadow: none; padding-left: 15px; }
    .nav-login-btn {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
}

/* ── Hero Section ── */
.hero-section {
    padding: 50px 0;
    background-color: var(--light-bg);
    border-bottom: 5px solid var(--secondary-color);
}
.hero-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: var(--font-size-hero);
}
.hero-date-display {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 5px;
}

/* Status Badge */
.status-badge {
    font-size: 0.9rem;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 600;
    color: white;
}
.status-open {
    background-color: var(--success-color);
    box-shadow: 0 0 0 0 var(--success-pulse);
    animation: pulse-green 2s infinite;
}
.status-closed { background-color: var(--danger-color); }

@keyframes pulse-green {
    0%   { transform: scale(0.95); box-shadow: 0 0 0 0 var(--success-pulse); }
    70%  { transform: scale(1); box-shadow: 0 0 0 10px rgba(25,135,84,0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(25,135,84,0); }
}

.call-cta {
    background: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    display: inline-block;
    box-shadow: var(--shadow-sm);
}

/* Breaking News Ticker */
.breaking-ticker {
    background: rgba(0,0,0,0.1);
    padding: 8px 15px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 15px;
    border-radius: var(--radius-md);
}
.ticker-label {
    background: var(--danger-color);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
    margin-right: 15px;
}
.ticker-content {
    overflow: hidden;
    flex: 1;
}
.ticker-content a {
    color: var(--text-dark);
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
    animation: ticker-scroll 20s linear infinite;
}
.ticker-content a:hover { color: var(--primary-color); }
@keyframes ticker-scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ── Service Charge Section ── */
.service-charge-section {
    padding: 60px 0;
    background-color: var(--primary-light);
    border-bottom: 1px solid #ddd;
}
.fees-card {
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    padding: 20px;
    height: 100%;
    background: var(--card-bg);
    box-shadow: var(--shadow-xs);
}
.fees-title {
    color: var(--primary-color);
    font-weight: 700;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.fees-list-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    align-items: center;
}
.fees-list-item:last-child { border-bottom: none; }
.fees-price {
    font-weight: bold;
    color: var(--primary-color);
    min-width: 90px;
    text-align: right;
    white-space: nowrap;
}

/* ── Services Grid ── */
.services-section { padding: 60px 0; background: var(--white); }

.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}
.service-link:hover { text-decoration: none; color: inherit; }

.service-card {
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}
.service-icon {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 12px;
}
.service-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* ── Counter Section ── */
.counter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}
.counter-card {
    text-align: center;
    padding: 20px 10px;
}
.counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}
.counter-label {
    font-size: 0.95rem;
    opacity: 0.9;
}
.counter-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

/* ── Cards (Blog, News, Events) ── */
.content-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: all 0.3s ease;
    height: 100%;
}
.content-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-color);
}
.content-card .card-img-top {
    height: 200px;
    object-fit: cover;
    width: 100%;
}
.content-card .card-body { padding: 20px; }
.content-card .card-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.content-card .card-title a {
    color: var(--text-dark);
    text-decoration: none;
}
.content-card .card-title a:hover { color: var(--primary-color); }
.content-card .card-text {
    color: var(--text-muted);
    font-size: var(--font-size-body);
}
.content-card .card-meta {
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

/* ── Section Headers ── */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}
.section-header .section-divider {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 15px;
    border-radius: 2px;
}
.section-header-left {
    border-left: 5px solid var(--secondary-color);
    padding-left: 15px;
    margin-bottom: 30px;
}
.section-header-left h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0;
}

/* ── Government Fees / Info Cards ── */
.info-card {
    border: none;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.info-card .card-header {
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    padding: 15px 20px;
}
.info-card .card-body { padding: 0; }

/* ── LSFC Center Finder ── */
.finder-section {
    padding: 60px 0;
    background: var(--white);
}
.finder-form .form-select,
.finder-form .form-control {
    background: var(--light-bg);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-lg);
    padding: 14px 18px;
    font-size: 1.05rem;
    transition: all 0.3s;
}
.finder-form .form-select:focus,
.finder-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

/* ── Forms (Global) ── */
.form-control, .form-select {
    background: var(--light-bg);
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    padding: 14px 18px;
    font-size: 1.05rem;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--primary-glow);
    outline: none;
}
.form-label {
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

/* ── Buttons ── */
.btn-primary-custom {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 14px 30px;
    box-shadow: 0 4px 15px var(--primary-shadow-sm);
    transition: all 0.3s ease;
}
.btn-primary-custom:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--primary-shadow-md);
    color: white;
}
.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    border-radius: var(--radius-lg);
    font-weight: 700;
    padding: 12px 28px;
    transition: all 0.3s;
}
.btn-outline-custom:hover {
    background: var(--primary-color);
    color: white;
}
.btn-pill {
    border-radius: 50px;
}

/* ── Important Links Section ── */
.important-links {
    padding: 60px 0;
    background: var(--light-bg);
}
.link-card {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
    margin-bottom: 12px;
}
.link-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    color: var(--primary-color);
    transform: translateX(5px);
}
.link-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    width: 30px;
}

/* ── Contact Section ── */
.contact-section {
    padding: 80px 0;
    background: var(--primary-light);
    border-top: 5px solid var(--secondary-color);
}
.contact-box {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    height: 100%;
}
.map-container {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 5px solid var(--white);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ── Newsletter ── */
.newsletter-section {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}
.newsletter-input {
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    border-radius: 50px 0 0 50px;
    padding: 14px 24px;
    font-size: 1rem;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.7); }
.newsletter-input:focus {
    background: rgba(255,255,255,0.25);
    border-color: var(--accent-yellow);
    box-shadow: none;
    color: white;
}
.newsletter-btn {
    background: var(--accent-yellow);
    color: var(--secondary-color);
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 14px 30px;
    font-weight: 700;
}
.newsletter-btn:hover {
    background: #ffd740;
    color: var(--secondary-color);
}

/* ── Footer ── */
.footer-section {
    background-color: var(--footer-bg);
    color: #fff;
    padding: 60px 0 20px 0;
}
.footer-title {
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.2);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}
.footer-links a:hover {
    color: var(--footer-link-hover);
    padding-left: 5px;
}
.footer-links a i { margin-right: 8px; width: 16px; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: var(--footer-text);
}
.footer-contact-item i {
    margin-right: 12px;
    margin-top: 3px;
    color: var(--accent-gold);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: rgba(255,255,255,0.7);
}
.footer-hotline {
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--success-color);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    transition: all 0.3s;
}
.footer-hotline:hover {
    background: #157347;
    color: white;
    transform: scale(1.05);
}

/* ── WhatsApp Float ── */
.whatsapp-float {
    position: fixed;
    width: 60px; height: 60px;
    bottom: 25px; right: 25px;
    background-color: var(--whatsapp-green);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    background-color: var(--whatsapp-dark);
    color: #fff;
    transform: scale(1.1);
}

/* ── Scroll to Top ── */
.scroll-top-btn {
    position: fixed;
    bottom: 100px; right: 30px;
    width: 45px; height: 45px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}
.scroll-top-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* ── Breadcrumb ── */
.breadcrumb-section {
    background: var(--primary-light);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}
.breadcrumb-section .breadcrumb {
    margin-bottom: 0;
    background: transparent;
    padding: 0;
}
.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}
.breadcrumb-item.active { color: var(--text-muted); }

/* ── Page Title ── */
.page-title-bg {
    background-color: var(--primary-light);
    padding: 15px 20px;
    border-left: 6px solid var(--primary-color);
    border-radius: var(--radius-sm);
    color: var(--primary-color);
    box-shadow: var(--shadow-xs);
    margin-bottom: 25px;
}

/* ── Alerts ── */
.alert {
    border-radius: var(--radius-md);
    font-size: 0.95rem;
}

/* ── Pagination ── */
.page-link {
    color: var(--primary-color);
    border-color: var(--border-medium);
}
.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ── Land Service Guide Accordion ── */
.guide-accordion .accordion-button {
    font-weight: 700;
    color: var(--text-dark);
    background: var(--white);
}
.guide-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary-color);
}
.guide-accordion .accordion-button:focus {
    box-shadow: 0 0 0 3px var(--primary-glow);
}

/* ── Testimonial Cards ── */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow-xs);
    border-left: 4px solid var(--primary-color);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--primary-light);
    position: absolute;
    top: -5px; left: 15px;
    font-family: Georgia, serif !important;
}

/* ── Cookie Consent ── */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,0.9);
    color: white;
    padding: 15px 30px;
    z-index: 99998;
    display: none;
}
.cookie-banner.show { display: flex; }

/* ── Print Styles ── */
@media print {
    .navbar, .footer-section, .whatsapp-float, .scroll-top-btn,
    .breaking-ticker, .cookie-banner { display: none !important; }
    body { padding-top: 0; }
    .content-card { box-shadow: none; border: 1px solid #ddd; }
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .contact-box { margin-bottom: 30px; }
    .map-container { min-height: 350px; }
}
@media (max-width: 768px) {
    .hero-title { font-size: var(--font-size-hero-sm); }
    .services-section { padding: 40px 15px; }
    .counter-number { font-size: 2rem; }
    .section-header h2 { font-size: 1.5rem; }
    body { padding-top: 75px; }
}
@media (max-width: 576px) {
    .fees-list-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .fees-price {
        margin-top: 5px;
        text-align: left;
    }
}



/* ── Admin Panel Sidebar ── */
.admin-sidebar {
    width: 260px;
    min-height: calc(100vh - 85px);
    background: var(--white);
    border-right: 1px solid var(--border-light);
    box-shadow: 2px 0 8px rgba(0,0,0,0.04);
    position: sticky;
    top: 85px;
    overflow-y: auto;
}
.admin-sidebar .nav-link {
    color: var(--text-dark) !important;
    padding: 10px 15px !important;
    margin: 2px 8px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.admin-sidebar .nav-link:hover {
    background: var(--primary-light);
    color: var(--primary-color) !important;
}
.admin-sidebar .nav-link.active,
.admin-sidebar .nav-link[aria-current="page"] {
    background: var(--primary-color);
    color: white !important;
}
.admin-sidebar .nav-link i {
    width: 20px;
    text-align: center;
    font-size: 0.85rem;
}

/* ── Admin Tables ── */
.table thead th {
    background: var(--primary-light);
    color: var(--primary-color);
    font-weight: 700;
    border-bottom: 2px solid var(--primary-color);
    font-size: 0.9rem;
    white-space: nowrap;
}
.table td {
    vertical-align: middle;
    font-size: 0.9rem;
}

/* ── Profile Page ── */
.profile-avatar-large {
    width: 100px; height: 100px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px var(--primary-shadow-sm);
}

/* ── Notification Badge ── */
.notification-badge {
    position: absolute;
    top: -5px; right: -5px;
    background: var(--danger-color);
    color: white;
    font-size: 0.65rem;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* ── Status Badges ── */
.badge-submitted { background: #6c757d; }
.badge-under-review { background: #0dcaf0; color: #000; }
.badge-processing { background: #ffc107; color: #000; }
.badge-completed { background: #198754; }
.badge-rejected { background: #dc3545; }

/* ── Drive Manager ── */
.drive-storage-bar .progress {
    height: 24px;
    border-radius: 12px;
    background: #e9ecef;
}
.drive-storage-bar .progress-bar {
    border-radius: 12px;
    transition: width 0.6s ease;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ── Responsive Admin ── */
@media (max-width: 991px) {
    .admin-sidebar {
        width: 100%;
        min-height: auto;
        position: static;
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }
    .admin-sidebar .nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px;
        padding: 8px !important;
    }
    .admin-sidebar .nav-link {
        padding: 8px 12px !important;
        margin: 0;
        font-size: 0.8rem;
    }
}

/* ══════════════════════════════════════════
   AUTH PAGES — Premium Split-Screen Design
   ══════════════════════════════════════════ */

/* Auth Container */
.auth-page {
    min-height: calc(100vh - 85px);
    display: flex;
    align-items: stretch;
    background: var(--light-bg);
}

/* Decorative Brand Panel (Left) */
.auth-brand-panel {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--secondary-color) 50%, #3d1039 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.auth-brand-panel::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 50%);
    animation: auth-glow 8s ease-in-out infinite;
}
.auth-brand-panel::after {
    content: '';
    position: absolute;
    bottom: -30px; right: -30px;
    width: 200px; height: 200px;
    border: 3px solid rgba(255,255,255,0.08);
    border-radius: 50%;
}
@keyframes auth-glow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5%, -3%); }
}
.auth-brand-logo {
    max-height: 80px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.auth-brand-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.auth-brand-subtitle {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.7;
    max-width: 320px;
    position: relative;
    z-index: 1;
}
.auth-brand-features {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
    text-align: left;
    position: relative;
    z-index: 1;
}
.auth-brand-features li {
    padding: 8px 0;
    font-size: 0.95rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 10px;
}
.auth-brand-features li i {
    color: var(--accent-yellow);
    font-size: 0.85rem;
    width: 20px;
    text-align: center;
}

/* Geometric decorations */
.auth-brand-panel .geo-circle {
    position: absolute;
    border: 2px solid rgba(255,255,255,0.06);
    border-radius: 50%;
}
.auth-brand-panel .geo-circle-1 {
    width: 300px; height: 300px;
    top: -80px; left: -80px;
}
.auth-brand-panel .geo-circle-2 {
    width: 150px; height: 150px;
    bottom: 60px; right: -40px;
}
.auth-brand-panel .geo-circle-3 {
    width: 80px; height: 80px;
    top: 40%; left: 70%;
    background: rgba(255,255,255,0.03);
}

/* Form Panel (Right) */
.auth-form-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: var(--white);
    flex: 1;
}
.auth-form-wrapper {
    width: 100%;
    max-width: 460px;
}
.auth-form-header {
    margin-bottom: 32px;
}
.auth-form-header h2 {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.7rem;
    margin-bottom: 8px;
}
.auth-form-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Auth Form Inputs */
.auth-form .form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.auth-form .input-group {
    position: relative;
}
.auth-form .input-group-text {
    background: var(--primary-light);
    border: 2px solid var(--border-light);
    border-right: none;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    padding: 12px 14px;
    color: var(--primary-color);
    transition: border-color 0.3s ease;
}
.auth-form .form-control {
    border: 2px solid var(--border-light);
    border-left: none;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    padding: 12px 16px;
    font-size: 1rem;
    background: var(--white);
    box-shadow: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.auth-form .input-group:focus-within .input-group-text {
    border-color: var(--primary-color);
    background: var(--primary-light);
}
.auth-form .input-group:focus-within .form-control {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-glow);
}
.auth-form .form-control:not(.input-group .form-control) {
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 12px 16px;
}
.auth-form .form-control:not(.input-group .form-control):focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-glow);
}
.auth-form .form-select {
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 12px 16px;
}
.auth-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

/* Auth Submit Button */
.auth-form .btn-auth-submit {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    border: none;
    border-radius: var(--radius-lg);
    padding: 14px 30px;
    font-size: 1.05rem;
    font-weight: 700;
    width: 100%;
    box-shadow: 0 4px 15px var(--primary-shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.auth-form .btn-auth-submit::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}
.auth-form .btn-auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-shadow-md);
    color: #fff;
}
.auth-form .btn-auth-submit:hover::before {
    left: 100%;
}

/* Google OAuth Button */
.btn-google-auth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    border: 2px solid var(--border-medium);
    border-radius: var(--radius-lg);
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-google-auth:hover {
    border-color: #DB4437;
    background: #fef7f6;
    color: #DB4437;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(219,68,55,0.15);
}
.btn-google-auth .google-icon {
    width: 20px; height: 20px;
}

/* Auth Divider */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    gap: 15px;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-medium);
}
.auth-divider span {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Auth Footer Links */
.auth-footer-text {
    text-align: center;
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.auth-footer-text a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}
.auth-footer-text a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Auth Page Responsive */
@media (max-width: 991px) {
    .auth-page {
        flex-direction: column;
    }
    .auth-brand-panel {
        padding: 40px 25px;
        min-height: auto;
    }
    .auth-brand-title { font-size: 1.4rem; }
    .auth-brand-features { display: none; }
    .auth-form-panel { padding: 30px 20px; }
}
@media (max-width: 576px) {
    .auth-brand-panel { padding: 30px 20px; }
    .auth-brand-logo { max-height: 50px; }
    .auth-brand-title { font-size: 1.2rem; }
    .auth-brand-subtitle { font-size: 0.9rem; }
    .auth-form-wrapper { max-width: 100%; }
    .auth-form-header h2 { font-size: 1.4rem; }
}

