/* ========================================
   STATEREVENUE PUBLIC CSS
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Announcement Bar */
.announcement-bar {
    background: #ffc107;
    color: #000;
    padding: 10px;
    text-align: center;
    font-weight: 500;
}

/* Navigation */
.navbar-custom {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f1724 100%);
    padding: 15px 0;
}

.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    color: white !important;
}

/* Navbar Toggler Fix */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler-icon i {
    font-size: 1.5rem;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 80px 0;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero .btn-hero {
    background: #0d6efd;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
}

/* Stats Section */
.stats-section {
    background: white;
    padding: 60px 0;
    margin-top: -40px;
    border-radius: 40px 40px 0 0;
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0d6efd;
}

/* Government Message */
.government-message {
    background: linear-gradient(135deg, #1a1a2e, #0f1724);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin-top: 30px;
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 50px;
    color: #0d6efd;
    margin-bottom: 20px;
}

/* How It Works */
.how-it-works {
    padding: 60px 0;
}

.step-card {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Activity Feed */
.activity-feed {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.activity-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* Onboarding Card */
.onboard-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin: 30px 0;
}

.fee-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: #1a1a2e;
    color: white;
    padding: 40px 0;
}

footer a {
    color: #ffc107;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        background: linear-gradient(135deg, #1a1a2e 0%, #0f1724 100%);
        border-radius: 15px;
        margin-top: 15px;
        padding: 15px;
        position: absolute;
        top: 65px;
        left: 15px;
        right: 15px;
        z-index: 1000;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }
    
    .navbar-nav {
        width: 100%;
    }
    
    .nav-item {
        text-align: center;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .stat-number {
        font-size: 1.8rem;
    }
    .onboard-card {
        padding: 25px 20px;
    }
}