/* ===== CSS Variables ===== */
:root {
    /* Government/Civic Portal - Saffron & Navy Theme */
    --background: hsl(210, 20%, 98%);
    --foreground: hsl(222, 47%, 11%);
    
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(222, 47%, 11%);
    
    --popover: hsl(0, 0%, 100%);
    --popover-foreground: hsl(222, 47%, 11%);
    
    /* Primary - Deep Saffron/Orange */
    --primary: hsl(24, 95%, 53%);
    --primary-light: hsl(24, 95%, 60%);
    --primary-dark: hsl(24, 95%, 45%);
    --primary-foreground: hsl(0, 0%, 100%);
    
    /* Secondary - Navy Blue */
    --secondary: hsl(222, 47%, 20%);
    --secondary-light: hsl(222, 30%, 35%);
    --secondary-foreground: hsl(0, 0%, 100%);
    
    --muted: hsl(210, 20%, 96%);
    --muted-foreground: hsl(215, 16%, 47%);
    
    /* Accent - Teal/Green for success */
    --accent: hsl(166, 76%, 36%);
    --accent-foreground: hsl(0, 0%, 100%);
    
    --destructive: hsl(0, 84%, 60%);
    --destructive-foreground: hsl(0, 0%, 100%);
    
    --border: hsl(214, 32%, 91%);
    --input: hsl(214, 32%, 91%);
    --ring: hsl(24, 95%, 53%);
    
    /* Custom colors */
    --saffron: hsl(24, 95%, 53%);
    --saffron-light: hsl(24, 95%, 95%);
    --navy: hsl(222, 47%, 20%);
    --navy-light: hsl(222, 30%, 40%);
    --gold: hsl(43, 96%, 56%);
    --cream: hsl(42, 100%, 97%);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(24, 95%, 53%) 0%, hsl(43, 96%, 56%) 100%);
    --gradient-secondary: linear-gradient(135deg, hsl(222, 47%, 20%) 0%, hsl(222, 30%, 35%) 100%);
    --gradient-hero: linear-gradient(135deg, hsl(222, 47%, 15%) 0%, hsl(222, 47%, 25%) 50%, hsla(24, 95%, 53%, 0.1) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 hsla(222, 47%, 11%, 0.05);
    --shadow-md: 0 4px 6px -1px hsla(222, 47%, 11%, 0.1), 0 2px 4px -2px hsla(222, 47%, 11%, 0.1);
    --shadow-lg: 0 10px 15px -3px hsla(222, 47%, 11%, 0.1), 0 4px 6px -4px hsla(222, 47%, 11%, 0.1);
    --shadow-xl: 0 20px 25px -5px hsla(222, 47%, 11%, 0.1), 0 8px 10px -6px hsla(222, 47%, 11%, 0.1);
    --shadow-glow: 0 0 40px hsla(24, 95%, 53%, 0.3);
    
    /* Spacing */
    --container-width: 1200px;
    --header-height: 72px;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans', system-ui, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 70px; /* Space for mobile bottom nav */
}

@media (min-width: 1024px) {
    body {
        padding-bottom: 0;
    }
}

main {
    flex-grow: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== Utility Classes ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hidden {
    display: none !important;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg-primary {
    background: var(--gradient-primary);
}

.gradient-bg-secondary {
    background: var(--gradient-secondary);
}

.bg-cream {
    background-color: var(--cream);
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes heroSlide {
    0%, 20% { opacity: 1; }
    25%, 95% { opacity: 0; }
    100% { opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-slide-in {
    animation: slideIn 0.6s ease-out forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    cursor: pointer;
    white-space: nowrap;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--secondary-foreground);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-outline-light {
    background: hsla(222, 47%, 20%, 0.5);
    backdrop-filter: blur(10px);
    color: var(--secondary-foreground);
    border: 2px solid hsla(255, 255%, 255%, 0.3);
}

.btn-outline-light:hover {
    background: hsla(255, 255%, 255%, 0.1);
    border-color: hsla(255, 255%, 255%, 0.5);
}

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

.btn-white:hover {
    background: hsla(0, 0%, 100%, 0.9);
    transform: translateY(-2px);
}

/* ===== Announcement Bar ===== */
.announcement-bar {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.5rem 0;
    overflow: hidden;
}

.announcement-container {
    display: flex;
    align-items: center;
}

.announcement-label {
    flex-shrink: 0;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-right: 1px solid hsla(0, 0%, 100%, 0.2);
    font-weight: 500;
    font-size: 0.875rem;
}

.marquee-wrapper {
    overflow: hidden;
    flex-grow: 1;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    padding: 0 1rem;
    font-size: 0.875rem;
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--gradient-secondary);
    color: var(--secondary-foreground);
    padding: 0.5rem 0;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-right {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .top-bar-right {
        display: flex;
    }
}

.top-bar-right a {
    transition: color var(--transition-fast);
}

.top-bar-right a:hover {
    color: var(--primary);
}

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: hsla(0, 0%, 100%, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .logo-img {
        width: 44px;
        height: 44px;
    }
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .logo-icon {
        width: 44px;
        height: 44px;
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.2;
}

@media (min-width: 640px) {
    .logo-title {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .logo-title {
        font-size: 1.125rem;
    }
}

.logo-subtitle {
    font-size: 0.6875rem;
    color: var(--primary);
    font-weight: 600;
}

@media (min-width: 640px) {
    .logo-subtitle {
        font-size: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .logo-subtitle {
        font-size: 0.8125rem;
    }
}

/* Navigation */
.nav-desktop {
    display: none;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: var(--foreground);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    background: hsla(24, 95%, 53%, 0.1);
    color: var(--primary);
}

.nav-link.active {
    background: var(--primary);
    color: var(--primary-foreground);
}

/* Dropdown */
.nav-item {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.25rem;
    min-width: 16rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    z-index: 50;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid hsla(214, 32%, 91%, 0.5);
    transition: all var(--transition-fast);
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover {
    background: hsla(24, 95%, 53%, 0.1);
    color: var(--primary);
}

.dropdown-link span {
    display: block;
    font-weight: 500;
}

.dropdown-link small {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Header CTA */
.header-cta {
    display: none;
}

@media (min-width: 1024px) {
    .header-cta {
        display: block;
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    padding: 0.5rem;
    color: var(--foreground);
    border-radius: var(--radius-md);
}

.mobile-menu-btn:hover {
    background: var(--muted);
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn .close-icon {
    display: none;
}

.mobile-menu-btn.active .menu-icon {
    display: none;
}

.mobile-menu-btn.active .close-icon {
    display: block;
}

.nav-mobile {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    box-shadow: var(--shadow-lg);
}

.nav-link-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    font-weight: 500;
    color: var(--foreground);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.nav-link-mobile:hover,
.nav-link-mobile.active {
    background: hsla(24, 95%, 53%, 0.1);
    color: var(--primary);
}

.nav-link-mobile.active {
    background: var(--primary);
    color: var(--primary-foreground);
}

.mobile-dropdown {
    margin-left: 1rem;
    margin-top: 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.mobile-dropdown a {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color var(--transition-fast);
}

.mobile-dropdown a:hover {
    color: var(--primary);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsla(222, 47%, 20%, 0.95), hsla(222, 47%, 20%, 0.8), hsla(222, 47%, 20%, 0.4));
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.hero-text {
    max-width: 42rem;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: hsla(24, 95%, 53%, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--secondary-foreground);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-foreground);
    line-height: 1.1;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-title .text-primary {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: hsla(0, 0%, 100%, 0.8);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-description {
    font-size: 1rem;
    color: hsla(0, 0%, 100%, 0.7);
    margin-bottom: 2rem;
    max-width: 32rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-helpline {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: hsla(0, 0%, 100%, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    max-width: fit-content;
}

.helpline-icon {
    padding: 0.75rem;
    background: var(--primary);
    border-radius: var(--radius-lg);
    color: var(--primary-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
}

.helpline-text p:first-child {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.7);
    margin-bottom: 0.125rem;
}

.helpline-text p:last-child {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-foreground);
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 20;
}

.slide-indicator {
    width: 12px;
    height: 12px;
    border-radius: 9999px;
    background: hsla(0, 0%, 100%, 0.5);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.slide-indicator.active {
    background: var(--primary);
    width: 2rem;
}

.slide-indicator:hover {
    background: hsla(0, 0%, 100%, 0.8);
}

/* ===== Section Styles ===== */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--saffron-light);
    color: var(--primary);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-title .text-primary {
    color: var(--primary);
}

.section-description {
    font-size: 1rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
}

/* ===== Cards ===== */
.card {
    background: var(--card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: hsla(24, 95%, 53%, 0.3);
}

.card-content {
    padding: 1.5rem;
}

/* ===== Services Section ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    padding: 1.5rem;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: hsla(24, 95%, 53%, 0.3);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
    transition: transform var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.service-card .title-hi {
    font-size: 0.875rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    transition: gap var(--transition-fast);
}

.service-link:hover {
    gap: 0.5rem;
}

/* ===== Leadership Section ===== */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.leader-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.leader-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.leader-image {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.leader-card:hover .leader-image img {
    transform: scale(1.05);
}

.leader-info {
    padding: 1.5rem;
    text-align: center;
}

.leader-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.leader-info .title-hi {
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.leader-info .role {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ===== Quick Links Section ===== */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .quick-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .quick-links-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.quick-link-card {
    display: block;
    padding: 1rem;
    background: var(--card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--transition-normal);
}

.quick-link-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: hsla(24, 95%, 53%, 0.3);
}

.quick-link-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    background: hsla(24, 95%, 53%, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: background var(--transition-fast);
}

.quick-link-card:hover .quick-link-icon {
    background: hsla(24, 95%, 53%, 0.2);
}

.quick-link-card h3 {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.quick-link-card .title-hi {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

/* ===== Notice & About Section ===== */
.notice-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .notice-about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.notice-board {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    height: 100%;
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.notice-header-icon {
    padding: 0.5rem;
    background: hsla(24, 95%, 53%, 0.1);
    border-radius: var(--radius-lg);
    color: var(--primary);
}

.notice-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.notice-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.notice-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: hsla(210, 20%, 96%, 0.5);
    border-radius: var(--radius-lg);
    transition: background var(--transition-fast);
    cursor: pointer;
}

.notice-item:hover {
    background: var(--muted);
}

.notice-number {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.notice-item p {
    font-size: 0.875rem;
    color: var(--foreground);
}

.notice-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
}

.notice-link:hover {
    gap: 0.5rem;
}

/* About Card */
.about-card {
    background: var(--gradient-secondary);
    color: var(--secondary-foreground);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    height: 100%;
}

.about-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-card p {
    opacity: 0.9;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.about-card p.small {
    font-size: 0.875rem;
    opacity: 0.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.about-stat {
    text-align: center;
    padding: 0.75rem;
    background: hsla(0, 0%, 100%, 0.1);
    border-radius: var(--radius-lg);
}

.about-stat .number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.about-stat .label {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 4rem 0;
    background: var(--gradient-primary);
    text-align: center;
}

.cta-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta-section h2 {
        font-size: 1.875rem;
    }
}

.cta-section p {
    color: hsla(0, 0%, 100%, 0.8);
    margin-bottom: 1.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

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

/* ===== Footer ===== */
.footer {
    background: var(--gradient-secondary);
    color: var(--secondary-foreground);
}

.footer-main {
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    font-weight: 700;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .footer-logo {
        width: 44px;
        height: 44px;
    }
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: var(--radius-md);
}

@media (min-width: 640px) {
    .footer-logo-img {
        width: 44px;
        height: 44px;
    }
}

.footer-brand-text h3 {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .footer-brand-text h3 {
        font-size: 1rem;
    }
}

.footer-brand-text p {
    font-size: 0.75rem;
    opacity: 0.8;
}

@media (min-width: 640px) {
    .footer-brand-text p {
        font-size: 0.8125rem;
    }
}

.footer-brand-text .footer-hindi {
    color: var(--primary);
    font-weight: 600;
    opacity: 1;
    font-size: 0.6875rem;
}

@media (min-width: 640px) {
    .footer-brand-text .footer-hindi {
        font-size: 0.75rem;
    }
}

.footer-about p {
    font-size: 0.875rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.app-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: hsla(0, 0%, 100%, 0.1);
    border-radius: var(--radius-lg);
    font-size: 0.75rem;
    transition: background var(--transition-fast);
}

.app-btn:hover {
    background: var(--primary);
}

.footer h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    opacity: 0.8;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 0.125rem;
}

.contact-item p,
.contact-item a {
    font-size: 0.875rem;
    opacity: 0.8;
}

.contact-item a:hover {
    color: var(--primary);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    padding: 1rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-bottom .credit {
    opacity: 0.6;
}

/* ===== Page Hero ===== */
.page-hero {
    padding: 5rem 0;
    background: var(--gradient-secondary);
    text-align: center;
}

.page-hero .container {
    max-width: 48rem;
}

.page-hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: hsla(24, 95%, 53%, 0.2);
    color: var(--secondary-foreground);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-foreground);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .page-hero h1 {
        font-size: 3rem;
    }
}

.page-hero h1 .text-primary {
    color: var(--primary);
}

.page-hero p {
    font-size: 1.125rem;
    color: hsla(0, 0%, 100%, 0.8);
}

/* ===== About Page ===== */
.about-hero {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsla(222, 47%, 20%, 0.95), hsla(222, 47%, 20%, 0.85), hsla(222, 47%, 20%, 0.7));
}

.about-hero-content {
    position: relative;
    z-index: 10;
    max-width: 42rem;
}

/* Mission Vision Cards */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mv-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    border: 2px solid hsla(24, 95%, 53%, 0.2);
    padding: 2rem;
    height: 100%;
}

.mv-card.accent {
    border-color: hsla(166, 76%, 36%, 0.2);
}

.mv-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mv-icon {
    padding: 0.75rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    color: var(--primary-foreground);
}

.mv-icon.accent {
    background: var(--accent);
}

.mv-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.mv-card p {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* About Stats Card */
.about-stats-card {
    background: var(--gradient-secondary);
    color: var(--secondary-foreground);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-item svg {
    color: var(--primary);
}

.stat-item .value {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-item .label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Timeline */
.timeline {
    max-width: 48rem;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    font-weight: 700;
    font-size: 1.125rem;
}

.timeline-content {
    flex-grow: 1;
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 1rem;
}

.timeline-content p {
    font-weight: 500;
    color: var(--foreground);
}

/* ===== Gallery Page ===== */
.gallery-filter {
    padding: 1.5rem 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 40;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: var(--muted);
    color: var(--muted-foreground);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    background: hsla(210, 20%, 96%, 0.8);
}

.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--muted);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(222, 47%, 20%, 0.9), transparent, transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h3 {
    color: var(--secondary-foreground);
    font-weight: 600;
}

.gallery-info p {
    color: var(--primary);
    font-size: 0.875rem;
}

.gallery-zoom {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem;
    background: hsla(0, 0%, 100%, 0.9);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: hsla(222, 47%, 20%, 0.95);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem;
    background: hsla(0, 0%, 100%, 0.2);
    border-radius: var(--radius-lg);
    color: var(--secondary-foreground);
    transition: background var(--transition-fast);
}

.lightbox-close:hover {
    background: hsla(0, 0%, 100%, 0.4);
}

.lightbox-content {
    max-width: 64rem;
    width: 100%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    margin: 0 auto;
}

.lightbox-info {
    margin-top: 1rem;
}

.lightbox-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-foreground);
}

.lightbox-info p {
    color: var(--primary);
}

/* ===== Contact Page ===== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contact-info-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-normal);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: hsla(24, 95%, 53%, 0.3);
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
}

.contact-info-card h3 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.contact-info-card .title-hi {
    font-size: 0.875rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.contact-info-card p {
    font-size: 0.875rem;
}

.contact-info-card p:first-of-type:not(.title-hi) {
    color: var(--foreground);
    font-weight: 500;
}

.contact-info-card p:last-of-type {
    color: var(--muted-foreground);
}

/* Contact Form */
.contact-form-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .contact-form-section {
        grid-template-columns: 1fr 1fr;
    }
}

.form-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-header-icon {
    padding: 0.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: var(--primary-foreground);
}

.form-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    font-family: inherit;
    font-size: 1rem;
    background: var(--background);
    color: var(--foreground);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(24, 95%, 53%, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted-foreground);
}

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

/* Map Section */
.map-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-container {
    background: var(--card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16/9;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.quick-contact-card {
    background: var(--gradient-secondary);
    color: var(--secondary-foreground);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

.quick-contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: hsla(0, 0%, 100%, 0.1);
    border-radius: var(--radius-xl);
    margin-bottom: 1rem;
    transition: background var(--transition-fast);
}

.quick-contact-item:hover {
    background: hsla(0, 0%, 100%, 0.2);
}

.quick-contact-item:last-child {
    margin-bottom: 0;
}

.quick-contact-icon {
    padding: 0.75rem;
    background: var(--primary);
    border-radius: var(--radius-lg);
    color: var(--primary-foreground);
}

.quick-contact-item .details p:first-child {
    font-weight: 700;
    font-size: 1.125rem;
}

.quick-contact-item .details p:last-child {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ===== Tax Collector Page ===== */
.search-card {
    max-width: 48rem;
    margin: 0 auto;
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.search-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.search-header-icon {
    padding: 0.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: var(--primary-foreground);
}

.search-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.search-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .search-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.search-buttons {
    display: flex;
    gap: 1rem;
}

.search-buttons .btn {
    flex: 1;
}

/* Tax Collector Cards */
.collector-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .collector-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .collector-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.collector-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.collector-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.collector-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--muted);
}

.collector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.collector-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
}

.collector-info {
    padding: 1.25rem;
}

.collector-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.collector-info .name-hi {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.collector-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.collector-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.collector-detail-icon {
    padding: 0.5rem;
    background: hsla(24, 95%, 53%, 0.1);
    border-radius: var(--radius-lg);
    color: var(--primary);
}

.collector-detail span {
    font-weight: 500;
    color: var(--foreground);
}

/* ===== Services Page ===== */
.quick-actions {
    padding: 2rem 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
}

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

.service-category {
    margin-bottom: 4rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-icon {
    padding: 0.75rem;
    border-radius: var(--radius-xl);
    color: var(--primary-foreground);
}

.category-icon.primary {
    background: var(--gradient-primary);
}

.category-icon.accent {
    background: var(--accent);
}

.category-icon.secondary {
    background: var(--gradient-secondary);
}

.category-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.category-header .title-hi {
    color: var(--primary);
}

.service-items-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .service-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .service-items-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-item-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    padding: 1.5rem;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.service-item-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: hsla(24, 95%, 53%, 0.3);
}

.service-item-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
    transition: color var(--transition-fast);
}

.service-item-card:hover h3 {
    color: var(--primary);
}

.service-item-card .title-hi {
    font-size: 0.875rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.service-item-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.service-item-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
}

.service-item-link.disabled {
    color: var(--muted-foreground);
}

/* Help CTA Card */
.help-cta-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 2rem 3rem;
    text-align: center;
}

@media (min-width: 768px) {
    .help-cta-card {
        padding: 3rem 4rem;
    }
}

.help-cta-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .help-cta-card h2 {
        font-size: 1.875rem;
    }
}

.help-cta-card p {
    color: hsla(0, 0%, 100%, 0.8);
    max-width: 36rem;
    margin: 0 auto 1.5rem;
}

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

/* ===== 404 Page ===== */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.error-content h1 {
    font-size: 6rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.error-content p {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

/* ===== Responsive Fixes ===== */
@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* ===== Page Hero (Inner Pages) ===== */
.page-hero {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.page-hero.gradient-secondary {
    background: var(--gradient-secondary);
    color: var(--secondary-foreground);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsla(222, 47%, 20%, 0.95), hsla(222, 47%, 20%, 0.85), hsla(222, 47%, 20%, 0.7));
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.page-hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: hsla(24, 95%, 53%, 0.2);
    color: var(--secondary-foreground);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.page-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-foreground);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .page-hero-title {
        font-size: 3rem;
    }
}

.page-hero-subtitle {
    color: hsla(0, 0%, 100%, 0.8);
    font-size: 1.125rem;
}

/* ===== About Page Styles ===== */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.card-bordered {
    border: 2px solid hsla(24, 95%, 53%, 0.2);
}

.card-bordered-accent {
    border: 2px solid hsla(166, 76%, 36%, 0.2);
}

.card-icon-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.gradient-primary {
    background: var(--gradient-primary);
}

.bg-accent {
    background: var(--accent);
}

.gradient-secondary {
    background: var(--gradient-secondary);
}

.text-muted {
    color: var(--muted-foreground);
}

.text-highlight {
    color: var(--foreground);
    font-weight: 500;
}

/* About Details Grid */
.about-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .about-details-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.about-main-content p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.section-title-left {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.about-stats-card {
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    color: var(--secondary-foreground);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-item svg {
    color: var(--primary);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Timeline */
.timeline {
    max-width: 48rem;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.timeline-content {
    flex-grow: 1;
    background: var(--card);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.timeline-content p {
    font-weight: 500;
    color: var(--foreground);
}

/* CTA Phone */
.cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--primary-foreground);
    font-size: 1.5rem;
    font-weight: 700;
}

/* ===== Services Page Styles ===== */
.quick-action-bar {
    padding: 1.5rem 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
}

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

.service-category {
    margin-bottom: 4rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.category-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

.service-item {
    display: block;
    background: var(--card);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.service-item:hover {
    border-color: hsla(24, 95%, 53%, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-item.disabled {
    pointer-events: none;
    opacity: 0.7;
}

.service-item.disabled:hover {
    transform: none;
}

.service-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
    transition: color var(--transition-fast);
}

.service-item:hover h3 {
    color: var(--primary);
}

.service-item p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.service-link.muted {
    color: var(--muted-foreground);
}

/* CTA Card */
.cta-card {
    padding: 3rem;
    border-radius: var(--radius-xl);
    text-align: center;
}

@media (min-width: 768px) {
    .cta-card {
        padding: 4rem;
    }
}

.cta-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
}

.cta-card p {
    color: hsla(0, 0%, 100%, 0.8);
    max-width: 36rem;
    margin: 0 auto 1.5rem;
}

/* ===== Contact Page Styles ===== */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--card);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.contact-info-card:hover {
    border-color: hsla(24, 95%, 53%, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.contact-info-card h3 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.contact-detail {
    font-weight: 600;
    color: var(--foreground);
}

.contact-sub {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Contact Form */
.contact-form-card {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.form-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: inherit;
    background: var(--background);
    color: var(--foreground);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(24, 95%, 53%, 0.1);
}

.btn-full {
    width: 100%;
}

/* Map Card */
.map-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Quick Contact */
.quick-contact-card {
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    color: var(--secondary-foreground);
}

.quick-contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: hsla(0, 0%, 100%, 0.1);
    border-radius: var(--radius-xl);
    margin-bottom: 1rem;
    transition: background var(--transition-fast);
}

.quick-contact-item:last-child {
    margin-bottom: 0;
}

.quick-contact-item:hover {
    background: hsla(0, 0%, 100%, 0.2);
}

.qc-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.qc-title {
    font-weight: 700;
    font-size: 1.125rem;
}

.qc-sub {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ===== Gallery Page Styles ===== */
.gallery-filter {
    padding: 1rem 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: var(--header-height);
    z-index: 40;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
    background: var(--muted);
    color: var(--muted-foreground);
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    background: hsla(210, 20%, 93%);
}

.filter-btn.active {
    background: var(--gradient-primary);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--muted);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(222, 47%, 20%, 0.9), transparent, transparent);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-weight: 600;
    color: white;
}

.gallery-overlay p {
    color: var(--primary);
    font-size: 0.875rem;
}

.zoom-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: hsla(0, 0%, 100%, 0.9);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: hsla(222, 47%, 20%, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    background: hsla(0, 0%, 100%, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background var(--transition-fast);
}

.lightbox-close:hover {
    background: hsla(0, 0%, 100%, 0.4);
}

.lightbox-content {
    max-width: 56rem;
    width: 100%;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.lightbox-caption {
    margin-top: 1rem;
    text-align: center;
}

.lightbox-caption h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.lightbox-caption p {
    color: var(--primary);
}

/* ===== Tax Collector Page Styles ===== */
.search-card {
    max-width: 48rem;
    margin: 0 auto;
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.search-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.search-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.search-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-buttons {
    display: flex;
    gap: 1rem;
}

.search-buttons .btn:first-child {
    flex: 1;
}

/* Collectors Grid */
.collectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.collector-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.collector-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.collector-photo {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--muted);
}

.collector-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.collector-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
}

.collector-info {
    padding: 1.5rem;
}

.collector-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.collector-details {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.detail-item svg {
    flex-shrink: 0;
    color: var(--primary);
}

.detail-item a {
    color: var(--foreground);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.detail-item a:hover {
    color: var(--primary);
}

.no-results {
    text-align: center;
    padding: 3rem;
    background: var(--card);
    border-radius: var(--radius-xl);
}

.no-results p {
    color: var(--muted-foreground);
}

/* ===== Text Utilities ===== */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

/* ===== Mobile Bottom Navigation ===== */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--card);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0.5rem 0.25rem;
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0));
    box-shadow: 0 -4px 20px hsla(222, 47%, 11%, 0.1);
}

@media (min-width: 1024px) {
    .mobile-bottom-nav {
        display: none;
    }
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.625rem;
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    min-width: 56px;
}

.bottom-nav-item svg {
    transition: transform var(--transition-fast);
}

.bottom-nav-item:hover {
    color: var(--primary);
}

.bottom-nav-item:hover svg {
    transform: scale(1.1);
}

.bottom-nav-item.active {
    color: var(--primary);
}

.bottom-nav-item.active svg {
    transform: scale(1.1);
}

.bottom-nav-item span {
    line-height: 1;
}

/* Center CTA Button */
.bottom-nav-cta {
    position: relative;
    margin-top: -1.5rem;
}

.bottom-nav-cta .cta-circle {
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    box-shadow: 0 4px 15px hsla(24, 95%, 53%, 0.4);
    transition: all var(--transition-fast);
}

.bottom-nav-cta:hover .cta-circle {
    transform: scale(1.1);
    box-shadow: 0 6px 20px hsla(24, 95%, 53%, 0.5);
}

.bottom-nav-cta span {
    color: var(--primary);
    font-weight: 600;
}

/* ===== Mobile Optimizations ===== */
@media (max-width: 1023px) {
    /* Hide header navigation on mobile */
    .nav-desktop,
    .header-cta,
    .mobile-menu-btn {
        display: none !important;
    }
    
    .header-content {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 0.875rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        gap: 1.5rem;
    }
    
    .announcement-bar {
        display: none;
    }
    
    .top-bar {
        font-size: 0.75rem;
        padding: 0.375rem 0;
    }
}

/* ===== Mobile Menu Overlay ===== */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: all var(--transition-normal);
}

.mobile-menu-overlay.active {
    visibility: visible;
    opacity: 1;
}

.mobile-menu-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: hsla(222, 47%, 11%, 0.6);
    backdrop-filter: blur(4px);
}

.mobile-menu-panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 85%;
    max-width: 320px;
    background: var(--card);
    box-shadow: -10px 0 30px hsla(222, 47%, 11%, 0.2);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition-normal) cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    background: var(--gradient-secondary);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-menu-logo-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    object-fit: contain;
    background: var(--card);
    padding: 4px;
}

.mobile-menu-title {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-foreground);
    line-height: 1.2;
}

.mobile-menu-subtitle {
    display: block;
    font-size: 0.75rem;
    color: hsla(0, 0%, 100%, 0.8);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: hsla(0, 0%, 100%, 0.1);
    color: var(--primary-foreground);
    transition: all var(--transition-fast);
}

.mobile-menu-close:hover {
    background: hsla(0, 0%, 100%, 0.2);
}

.mobile-menu-nav {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
    color: var(--foreground);
    font-weight: 500;
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
}

.mobile-menu-link:hover {
    background: var(--muted);
    border-left-color: var(--primary);
}

.mobile-menu-link.active {
    background: var(--saffron-light);
    color: var(--primary);
    border-left-color: var(--primary);
}

.mobile-menu-link svg {
    flex-shrink: 0;
    color: var(--muted-foreground);
}

.mobile-menu-link.active svg {
    color: var(--primary);
}

.mobile-menu-link span {
    flex: 1;
    font-size: 0.9375rem;
}

.mobile-menu-link small {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-weight: 400;
}

.mobile-menu-footer {
    padding: 1rem;
    border-top: 1px solid var(--border);
    background: var(--muted);
}

.mobile-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    font-weight: 600;
    border-radius: var(--radius-lg);
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 15px hsla(24, 95%, 53%, 0.3);
    transition: all var(--transition-fast);
}

.mobile-menu-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px hsla(24, 95%, 53%, 0.4);
}

.mobile-menu-helpline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

.mobile-menu-helpline svg {
    color: var(--primary);
}

@media (min-width: 1024px) {
    .mobile-menu-overlay {
        display: none;
    }
}
