/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --danger-color: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-login {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.btn-login:hover {
    background-color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #7946c2;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: darkblue;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* Sections */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Services Grid */
.services-overview {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature p {
    color: var(--text-light);
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    background-color: var(--bg-light);
    text-align: center;
}

.cta h2 {
    margin-bottom: 1rem;
}

.cta p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Content Pages */
.content-page, .about-content, .services-detail, .pricing-content, .contact-content {
    padding: 3rem 0;
}

.content-page h2, .about-content h2, .services-detail h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem 0;
    color: var(--primary-color);
}

.content-page h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.75rem 0;
    color: var(--text-dark);
}

.content-page p, .about-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: white;
}

.content-page ul, .about-content ul, .services-detail ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* About Page */
.about-intro {
    margin-bottom: 3rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.mission, .vision {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.07);
}

.value-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.specialization {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

/* Services Detail */
.service-detail {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.service-detail:last-child {
    border-bottom: none;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-card {
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.price-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-card li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--bg-light);
}

.pricing-card li:before {
    content: "✓ ";
    color: var(--success-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.additional-services {
    margin-top: 4rem;
}

.service-pricing {
    max-width: 800px;
    margin: 2rem auto;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    padding: 1.25rem;
    background-color: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.service-name {
    font-weight: 500;
    color: var(--text-dark);
}

.service-price {
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-note {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form-section, .contact-info-section {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.info-block {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.info-block:last-child {
    border-bottom: none;
}

.info-block h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.info-block p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-group-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.text-danger {
    color: var(--danger-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.alert-danger {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Login Page */
.login-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    padding: 2rem;
}

.login-container {
    max-width: 500px;
    width: 100%;
}

.login-box {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.login-box h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.login-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.login-links {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.login-links a {
    color: var(--primary-color);
    text-decoration: none;
}

.login-links a:hover {
    text-decoration: underline;
}

.login-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.login-info p {
    margin-bottom: 0.75rem;
}

.login-info ul {
    margin-left: 1.5rem;
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p, .footer-section ul {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

/* Responsive Design */
/*@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .services-grid, .features-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .login-box {
        padding: 2rem 1.5rem;
    }
}*/

.status-badge {
    padding: 0.4em 0.8em;
    border-radius: 1em;
    color: #fff;
    font-size: 0.88em;
    font-weight: 700;
    display: inline-block;
}

.status-draft {
    background: #6366f1;
}

.status-inprogress {
    background: #f59e42;
}

.status-completed {
    background: #10b981;
}

.status-rejected {
    background: #ef4444;
}

.status-pending {
    background: #fbbf24;
}

.status-failed {
    background: #ef4444;
}

.status-refunded {
    background: #64748b;
}

/* Navigation buttons */
.btn-login, .btn-logout, .btn-dashboard {
    background: var(--primary-color);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

    .btn-login:hover, .btn-dashboard:hover {
        background: var(--secondary-color);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

.btn-logout {
    background: #ef4444;
}

    .btn-logout:hover {
        background: #dc2626;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(239, 68, 68, 0.3);
    }

.btn-dashboard {
    background: #10b981;
}

    .btn-dashboard:hover {
        background: #059669;
    }

/* Remove default form styling in navbar */
.nav-menu form {
    margin: 0;
    padding: 0;
}


































.btn-profile {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-profile:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }




/* ============================================
   Enhanced Select Dropdown Styling
   ============================================ */

.form-select {
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 0.375rem;
    background-color: #fff;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
}

    /* Hover State */
    .form-select:hover {
        border-color: #007bff;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.1);
        background-color: #f8f9fa;
    }

    /* Focus State */
    .form-select:focus {
        border-color: #007bff;
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }

    /* Disabled State */
    .form-select:disabled {
        background-color: #e9ecef;
        opacity: 1;
        color: #6c757d;
        cursor: not-allowed;
    }

    /* Option Styling */
    .form-select option {
        padding: 0.5rem;
        margin: 0.25rem 0;
        background-color: #fff;
        color: #333;
        font-weight: 500;
    }

        .form-select option:hover {
            background-color: #007bff;
            color: white;
        }

        .form-select option:checked {
            background: linear-gradient(#007bff, #007bff);
            background-color: #007bff;
            color: white;
            font-weight: 600;
        }

/* ============================================
   State Dropdown Specific Styling
   ============================================ */

.state-select {
    min-width: 150px;
    font-size: 0.95rem;
}

/* Contact Method Dropdown */
.contact-method-select {
    min-width: 180px;
}

/* ============================================
   Group Select with Icon (Advanced)
   ============================================ */

.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

    .select-wrapper.with-icon {
        position: relative;
    }

        .select-wrapper.with-icon .form-select {
            padding-left: 2.5rem;
        }

    .select-wrapper .select-icon {
        position: absolute;
        left: 0.75rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.1rem;
        color: #007bff;
        pointer-events: none;
    }

/* ============================================
   Animated Dropdown Enhancement
   ============================================ */

.form-select.animated {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Dropdown with Label Enhancement
   ============================================ */

.form-group .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

    .form-group .form-label::after {
        content: '';
        display: inline-block;
        margin-left: 0.25rem;
    }

.form-group.required .form-label::after {
    content: '*';
    color: #dc3545;
    font-weight: bold;
}

/* ============================================
   Grouped Options Styling
   ============================================ */

.form-select optgroup {
    background-color: #f8f9fa;
    color: #333;
    font-weight: 600;
    font-style: normal;
    padding: 0.5rem;
    border-bottom: 1px solid #dee2e6;
}

/* ============================================
   Responsive Dropdown
   ============================================ */

@media (max-width: 576px) {
    .form-select {
        font-size: 16px; /* Prevents zoom on mobile */
        padding: 0.875rem 2.5rem 0.875rem 1rem;
    }

        .form-select option {
            padding: 0.75rem;
        }
}

/* ============================================
   Dark Mode Support
   ============================================ */

@media (prefers-color-scheme: dark) {
    .form-select {
        background-color: #2d2d2d;
        color: #e0e0e0;
        border-color: #444;
    }

        .form-select:hover {
            background-color: #3a3a3a;
            border-color: #007bff;
        }

        .form-select:focus {
            border-color: #0056b3;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.2);
        }

        .form-select option {
            background-color: #2d2d2d;
            color: #e0e0e0;
        }

            .form-select option:checked {
                background-color: #0056b3;
            }
}








.btn-notifications {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-notifications:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }

.badge {
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}





/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: var(--primary-color);
        margin: 3px 0;
        transition: all 0.3s ease;
        border-radius: 3px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

/* Navigation Wrapper */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Account Menu Styles */
.account-menu {
    position: relative;
}

.account-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    color: var(--primary-color);
    padding: 0.5rem;
    transition: color 0.3s;
}

    .account-icon-btn:hover {
        color: var(--secondary-color);
    }

.user-name {
    font-size: 0.9rem;
    font-weight: 500;
}

.account-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    min-width: 200px;
    z-index: 1000;
    overflow: hidden;
}

    .account-dropdown.show {
        display: block;
    }

    .account-dropdown a,
    .account-dropdown form {
        display: block;
        width: 100%;
    }

    .account-dropdown a,
    .logout-btn {
        padding: 0.75rem 1.25rem;
        color: var(--text-dark);
        text-decoration: none;
        transition: background-color 0.3s;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background: none;
        border: none;
        width: 100%;
        text-align: left;
        cursor: pointer;
        font-size: 0.95rem;
    }

        .account-dropdown a:hover,
        .logout-btn:hover {
            background-color: var(--bg-light);
        }

.auth-buttons {
    display: flex;
    gap: 0.5rem;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

        .nav-wrapper.active {
            right: 0;
        }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

        .nav-menu li {
            width: 100%;
            border-bottom: 1px solid var(--border-color);
        }

        .nav-menu a {
            display: block;
            padding: 1rem 0;
            width: 100%;
        }

    .account-menu {
        width: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 2px solid var(--border-color);
    }

    .account-icon-btn {
        width: 100%;
        justify-content: flex-start;
        padding: 1rem 0;
    }

    .account-dropdown {
        position: static;
        box-shadow: none;
        margin-top: 0.5rem;
        border: 1px solid var(--border-color);
    }

    .mobile-only {
        display: list-item;
    }

    .desktop-only {
        display: none;
    }

    body.menu-open {
        overflow: hidden;
    }

        /* Overlay when menu is open */
        body.menu-open::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0,0,0,0.5);
            z-index: 998;
        }

    .navbar .container {
        position: relative;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .services-grid, .features-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .login-box {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        width: 100%;
        right: -100%;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }
}


/* Progress Tracker Styles */
.progress-tracker {
    background: var(--color-surface);
    padding: var(--space-32) var(--space-24);
    border-radius: var(--radius-lg);
    margin: var(--space-16) 0;
    width: 100%;
    border: 1px solid var(--color-card-border);
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-24);
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--color-secondary);
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    transition: all var(--duration-normal) var(--ease-standard);
    border: 3px solid var(--color-border);
}

.progress-step.completed .step-icon {
    background: var(--color-success);
    color: var(--color-white);
    border-color: var(--color-success);
    box-shadow: 0 0 0 4px rgba(var(--color-success-rgb), 0.15);
}

.progress-step.current .step-icon {
    background: var(--color-primary);
    color: var(--color-btn-primary-text);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px var(--color-focus-ring);
    animation: pulse 2s infinite;
}

.progress-step.rejected .step-icon {
    background: var(--color-error);
    color: var(--color-white);
    border-color: var(--color-error);
    box-shadow: 0 0 0 4px rgba(var(--color-error-rgb), 0.2);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 4px var(--color-focus-ring);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(var(--color-primary), 0.1);
    }
}

.step-label {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-secondary);
    text-align: center;
    white-space: nowrap;
}

.progress-step.completed .step-label {
    color: var(--color-success);
}

.progress-step.current .step-label {
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
}

.progress-step.rejected .step-label {
    color: var(--color-error);
}

.progress-connector {
    flex: 1;
    height: 3px;
    background: var(--color-border);
    position: relative;
    margin: 0 -5px;
    z-index: 1;
    border-radius: var(--radius-full);
}

    .progress-connector.completed {
        background: linear-gradient(to right, var(--color-success), var(--color-success));
    }

/* Progress Status Message */
.progress-status {
    display: flex;
    align-items: center;
    gap: var(--space-16);
    flex-wrap: wrap;
}

.status-message {
    padding: var(--space-12) var(--space-16);
    border-radius: var(--radius-base);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
    display: inline-flex;
    align-items: center;
    gap: var(--space-8);
    flex: 1;
    transition: all var(--duration-fast) var(--ease-standard);
}

    .status-message i {
        font-size: var(--font-size-base);
    }

.status-draft {
    background: var(--color-bg-1);
    color: var(--color-primary);
    border: 1px solid rgba(var(--color-teal-500-rgb), 0.2);
}

.status-submitted {
    background: var(--color-bg-2);
    color: var(--color-warning);
    border: 1px solid rgba(var(--color-warning-rgb), 0.2);
}

.status-inreview {
    background: var(--color-bg-7);
    color: var(--color-primary);
    border: 1px solid rgba(var(--color-teal-500-rgb), 0.2);
}

.status-preparation {
    background: var(--color-bg-5);
    color: var(--color-primary);
    border: 1px solid rgba(var(--color-teal-500-rgb), 0.2);
}

.status-revision {
    background: var(--color-bg-2);
    color: var(--color-warning);
    border: 2px solid var(--color-warning);
}

.status-payment {
    background: var(--color-bg-2);
    color: var(--color-warning);
    border: 2px solid var(--color-warning);
}

.status-filing {
    background: var(--color-bg-1);
    color: var(--color-primary);
    border: 1px solid rgba(var(--color-teal-500-rgb), 0.2);
}

.status-complete {
    background: var(--color-bg-3);
    color: var(--color-success);
    border: 1px solid rgba(var(--color-success-rgb), 0.2);
}

.status-rejected {
    background: var(--color-bg-4);
    color: var(--color-error);
    border: 2px solid var(--color-error);
}

.btn-payment-link {
    background: var(--color-warning);
    color: var(--color-white);
    padding: var(--space-8) var(--space-16);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    display: inline-flex;
    align-items: center;
    gap: var(--space-8);
    transition: all var(--duration-normal) var(--ease-standard);
    font-size: var(--font-size-sm);
    border: none;
}

    .btn-payment-link:hover {
        background: var(--color-orange-500);
        transform: translateY(-2px);
        box-shadow: 0 4px 6px rgba(var(--color-warning-rgb), 0.3);
    }

/* Update year header to accommodate progress tracker */
.year-header {
    display: flex;
    flex-direction: column;
    padding: var(--space-20);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-standard);
    background: linear-gradient(135deg, var(--color-surface), var(--color-secondary));
}

    .year-header:hover {
        background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-hover));
    }

    .year-header > .year-info {
        display: flex;
        align-items: center;
        gap: var(--space-16);
        margin-bottom: var(--space-8);
    }

/* Enhanced Year Group */
.year-group {
    margin-bottom: var(--space-32);
    border: 2px solid var(--color-card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-surface);
    transition: all var(--duration-normal) var(--ease-standard);
    box-shadow: var(--shadow-sm);
}

    .year-group:hover {
        border-color: var(--color-primary);
        box-shadow: var(--shadow-md);
    }

    /* Highlight active/current year */
    .year-group.has-pending {
        border-color: var(--color-warning);
        box-shadow: 0 0 0 3px rgba(var(--color-warning-rgb), 0.15);
    }

    .year-group.completed {
        border-color: var(--color-success);
        background: linear-gradient(to right, rgba(var(--color-success-rgb), 0.05), var(--color-surface));
    }

/* Responsive Design */
@media (max-width: 1200px) {
    .progress-steps {
        overflow-x: auto;
        padding-bottom: var(--space-8);
    }

    .progress-step {
        min-width: 80px;
    }
}

@media (max-width: 768px) {
    .progress-tracker {
        padding: var(--space-16);
    }

    .progress-steps {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-base);
    }

    .step-label {
        font-size: var(--font-size-xs);
    }

    .status-message {
        font-size: var(--font-size-xs);
        padding: var(--space-8) var(--space-12);
    }

    .progress-status {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-payment-link {
        width: 100%;
        justify-content: center;
    }

    .year-header {
        padding: var(--space-16);
    }

        .year-header > .year-info {
            gap: var(--space-12);
            margin-bottom: var(--space-6);
        }
}

/* Mobile Portrait Responsive Breakpoint */
@media (max-width: 480px) {
    .progress-tracker {
        padding: var(--space-12);
        margin: var(--space-8) 0;
    }

    .progress-steps {
        margin-bottom: var(--space-16);
        gap: var(--space-8);
    }

    .step-icon {
        width: 36px;
        height: 36px;
        font-size: var(--font-size-sm);
        border-width: 2px;
    }

    .step-label {
        font-size: var(--font-size-xs);
        max-width: 60px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .progress-connector {
        height: 2px;
        margin: 0 -3px;
    }

    .status-message {
        font-size: var(--font-size-xs);
        padding: var(--space-6) var(--space-8);
        gap: var(--space-4);
    }

    .progress-status {
        gap: var(--space-8);
    }

    .btn-payment-link {
        padding: var(--space-6) var(--space-12);
        font-size: var(--font-size-xs);
        gap: var(--space-4);
    }

    .year-header {
        padding: var(--space-12);
    }

        .year-header > .year-info {
            gap: var(--space-8);
            margin-bottom: var(--space-4);
            flex-wrap: wrap;
        }

    .year-group {
        margin-bottom: var(--space-24);
        border-width: 1px;
    }
}



