/* Modern Reset & Variables */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #0f172a;
    --accent-color: #0ea5e9;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
.header {
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--secondary-color);
    color: white;
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.header-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1rem;
    transition: var(--transition);
    opacity: 0.8;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.brand-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.brand-text p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background: var(--bg-tertiary);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 0.75rem 1rem;
    display: block;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: var(--bg-tertiary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-btn,
.mobile-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    transition: var(--transition);
}

.search-btn:hover,
.mobile-toggle:hover {
    background: var(--bg-tertiary);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero-modern {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(15, 23, 42, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 650px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-2xl);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.9375rem;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.btn-primary:hover {
    background: var(--bg-tertiary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--primary-color);
}

.btn-white:hover {
    background: var(--bg-tertiary);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Stats Section */
.stats-section {
    background: var(--bg-primary);
    padding: 4rem 0;
    margin-top: -4rem;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Services Section */
.services-modern {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-2xl);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition);
}

.view-all:hover {
    gap: 0.75rem;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card-modern {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.service-card-modern h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-card-modern p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 0.75rem;
}

/* News Section */
.news-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 2rem;
}

.news-date {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.news-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.news-link:hover {
    gap: 0.75rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 5rem 0;
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer-modern {
    background: var(--secondary-color);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo i {
    font-size: 2.5rem;
    color: var(--primary-light);
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.footer-logo p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.footer-desc {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links,
.contact-list {
    list-style: none;
}

.footer-links li,
.contact-list li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 0.5rem;
}

.contact-list li {
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-list i {
    color: var(--primary-light);
    margin-top: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-primary);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stats-section {
        margin-top: 0;
        padding: 3rem 0;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid-modern,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.hidden { display: none; }

/* Add these specific fixes to your existing CSS */

/* Fix for navigation layout when dropdowns are present */
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

/* Ensure nav-actions stays aligned properly */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto; /* This pushes the actions to the right */
}

/* Fix dropdown positioning */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
    z-index: 1001;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Make sure dropdown doesn't affect layout */
.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 0.75rem 1rem;
    display: block;
    border-radius: 0;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: var(--bg-tertiary);
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-primary);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-actions {
        margin-left: 0;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        display: none;
        background: var(--bg-tertiary);
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
}

/* Additional fix for better alignment */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* Ensure proper spacing between elements */
.nav-menu + .nav-actions {
    margin-left: auto;
}

/* Fix for search button alignment */
.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: var(--bg-tertiary);
}

/* Mobile toggle button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
}

/* Add these styles to your existing style-modern.css */

/* Page Header */
.page-header-modern {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header-modern h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header-modern p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Detail Section */
.services-detail-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

/* Service Tabs */
.service-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    color: var(--text-secondary);
}

.service-tab i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.service-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.service-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.service-tab.active i {
    color: white;
}

/* Service Content */
.service-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.service-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.service-detail-info {
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.service-detail-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.0625rem;
}

/* Requirements Section */
.requirements-section,
.process-section,
.validity-section,
.meditation-info,
.application-process {
    margin-bottom: 2.5rem;
}

.requirements-section h3,
.process-section h3,
.validity-section h3,
.meditation-info h3,
.application-process h3 {
    color: var(--text-primary);
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.requirements-section h3 i,
.process-section h3 i,
.validity-section h3 i,
.meditation-info h3 i,
.application-process h3 i {
    color: var(--primary-color);
}

.requirements-list {
    list-style: none;
}

.requirements-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.requirements-list li i {
    color: var(--success-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Sidebar */
.service-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.info-card h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card h4 i {
    color: var(--primary-color);
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-card small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.info-card.highlight {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(14, 165, 233, 0.05));
    border-color: var(--primary-color);
}

.info-card ul {
    list-style: none;
    margin-top: 0.75rem;
}

.info-card ul li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
}

.info-card ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.action-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.action-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.action-card p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.action-card .btn {
    background: white;
    color: var(--primary-color);
}

/* Complaint Types Grid */
.complaint-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.complaint-type-card {
    background: var(--bg-tertiary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.complaint-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.complaint-type-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.complaint-type-card h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.complaint-type-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Validity Grid */
.validity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.validity-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
}

.validity-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.validity-item h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.validity-item p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Mediation Benefits */
.mediation-benefits {
    background: var(--bg-tertiary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-top: 1.5rem;
}

.mediation-benefits h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.mediation-benefits ul {
    list-style: none;
}

.mediation-benefits ul li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mediation-benefits ul li i {
    color: var(--success-color);
}

/* Assistance Programs */
.program-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.program-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.program-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.program-header i {
    font-size: 2rem;
}

.program-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

.program-body {
    padding: 2rem;
}

.program-body p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.program-details {
    display: grid;
    gap: 1rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
}

.detail-item strong {
    color: var(--text-primary);
    min-width: 100px;
}

.detail-item span {
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .service-tabs {
        flex-direction: column;
    }
    
    .service-tab {
        width: 100%;
        justify-content: center;
    }
    
    .service-detail-info {
        padding: 2rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .complaint-types-grid,
    .validity-grid {
        grid-template-columns: 1fr;
    }
    
    .program-header {
        flex-direction: column;
        text-align: center;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .detail-item strong {
        min-width: auto;
    }
}

/* Add these styles to your existing style-modern.css */

/* Page Badge */
.page-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-2xl);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Announcements Section */
.announcements-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

/* Announcements Controls */
.announcements-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.filter-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.filter-btn i {
    font-size: 1rem;
    color: var(--primary-color);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.filter-btn.active i {
    color: white;
}

.search-group {
    flex-shrink: 0;
}

.search-box {
    display: flex;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.search-box:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-box input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--text-primary);
}

.search-box input::placeholder {
    color: var(--text-light);
}

.search-box button {
    padding: 0.75rem 1.25rem;
    background: var(--primary-color);
    border: none;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background: var(--primary-dark);
}

/* Announcements Grid */
.announcements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.announcement-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    opacity: 1;
    transform: translateY(0);
}

.announcement-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.announcement-card.urgent {
    border-left: 4px solid var(--danger-color);
}

.announcement-card.urgent .announcement-badge.urgent {
    background: var(--danger-color);
}

.announcement-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.announcement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.announcement-card:hover .announcement-image img {
    transform: scale(1.05);
}

.announcement-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-2xl);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    z-index: 1;
}

.announcement-badge.events {
    background: var(--success-color);
}

.announcement-badge.news {
    background: var(--accent-color);
}

.announcement-badge.urgent {
    background: var(--danger-color);
}

.announcement-content {
    padding: 2rem;
}

.announcement-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.announcement-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.announcement-meta i {
    color: var(--primary-color);
}

.announcement-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.announcement-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.announcement-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.read-more-btn {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.read-more-btn:hover {
    gap: 0.75rem;
}

.announcement-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-2xl);
    font-size: 0.75rem;
    font-weight: 500;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 4rem 0;
    color: white;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-text p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.newsletter-form .form-group-inline {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--radius-lg);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

.newsletter-form .btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-form .btn:hover {
    background: var(--bg-tertiary);
    transform: translateY(-2px);
}

.form-note {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .announcements-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        justify-content: center;
    }
    
    .search-group {
        width: 100%;
    }
    
    .search-box {
        width: 100%;
    }
    
    .announcements-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form .form-group-inline {
        flex-direction: column;
    }
    
    .newsletter-form .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Animation for filtering */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.announcement-card {
    animation: fadeInUp 0.3s ease-out;
}

/* Add these styles to your existing style-modern.css */

/* Captain Section */
.captain-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.captain-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.captain-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.captain-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.captain-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
}

.captain-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.captain-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.captain-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.captain-term {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.captain-bio {
    margin-bottom: 2rem;
}

.captain-bio p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.0625rem;
}

.captain-contact {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    width: 20px;
}

.captain-social {
    display: flex;
    gap: 1rem;
}

.captain-social a {
    width: 45px;
    height: 45px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    transition: var(--transition);
}

.captain-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Officials Section */
.officials-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-center h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-header-center p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.kagawads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.official-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.official-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.official-photo {
    height: 250px;
    overflow: hidden;
}

.official-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.official-card:hover .official-photo img {
    transform: scale(1.05);
}

.official-details {
    padding: 2rem;
}

.official-details h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.official-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.committee-badge {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.1));
    color: var(--primary-color);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.committee-badge i {
    font-size: 1rem;
}

.official-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.official-contact {
    display: flex;
    gap: 1rem;
}

.official-contact a {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.official-contact a:hover {
    background: var(--primary-color);
    color: white;
}

/* SK Section */
.sk-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.sk-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.sk-image {
    height: 100%;
    min-height: 400px;
}

.sk-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sk-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sk-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.sk-position {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.sk-term {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.sk-description {
    margin-bottom: 2rem;
}

.sk-description p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.sk-projects {
    margin-bottom: 2rem;
}

.sk-projects h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.sk-projects ul {
    list-style: none;
}

.sk-projects li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sk-projects li i {
    color: var(--success-color);
}

.sk-contact .btn {
    width: fit-content;
}

/* Staff Section */
.staff-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.staff-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.staff-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.staff-card h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.staff-name {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.staff-role {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Office Hours Section */
.office-hours-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.hours-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.hours-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hours-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.75rem;
}

.hours-card h3 {
    color: var(--text-primary);
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
}

.hours-card ul {
    list-style: none;
    text-align: left;
}

.hours-card li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.hours-card li:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--text-primary);
}

.time {
    color: var(--primary-color);
    font-weight: 600;
}

.hours-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .captain-card,
    .sk-card {
        grid-template-columns: 1fr;
    }
    
    .captain-image,
    .sk-image {
        min-height: 300px;
    }
    
    .captain-info,
    .sk-info {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .kagawads-grid,
    .staff-grid,
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .captain-info h2 {
        font-size: 2rem;
    }
    
    .section-header-center h2 {
        font-size: 1.75rem;
    }
    
    .official-photo {
        height: 200px;
    }
}


/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

/* Contact Form */
.contact-form-container {
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-secondary);
}

.modern-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.required {
    color: var(--danger-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    transition: var(--transition);
    background: var(--bg-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-outline-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-secondary:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
    background: var(--bg-tertiary);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card-large {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.info-card-large h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.info-card-large > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-content h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.social-links-inline {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-links-inline a {
    width: 35px;
    height: 35px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links-inline a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.hours-list {
    margin-bottom: 1.5rem;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.hour-row:last-child {
    border-bottom: none;
}

.hour-row .day {
    font-weight: 600;
    color: var(--text-primary);
}

.hour-row .time {
    color: var(--primary-color);
    font-weight: 600;
}

.hour-row.closed .time {
    color: var(--danger-color);
}

.holiday-notice {
    background: var(--bg-tertiary);
    padding: 1rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.holiday-notice i {
    color: var(--primary-color);
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.container-fluid {
    width: 100%;
    padding: 0 1.5rem;
}

.map-header {
    text-align: center;
    margin-bottom: 2rem;
}

.map-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.map-header p {
    color: var(--text-secondary);
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-primary);
    transition: var(--transition);
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--bg-tertiary);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 3.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(14, 165, 233, 0.05));
}

.faq-item.active .faq-question h3 {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .modern-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
.page-header {
    background: linear-gradient(135deg, #1e5fd4 0%, #0d47a1 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    opacity: 0.8;
}

/* About Grid */
.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.about-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* About Us Content */
.content-section {
    padding: 80px 0;
}

.about-us-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.content-left h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 25px;
}

.content-left h3 {
    font-size: 1.5rem;
    color: #3b82f6;
    margin: 30px 0 15px;
}

.content-left p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    padding: 10px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list i {
    color: #3b82f6;
    font-size: 1.2rem;
}

.info-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid #3b82f6;
}

.info-box h3 {
    color: #3b82f6;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.info-box p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Officials Preview */
.officials-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.officials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.official-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.official-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3b82f6 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 3rem;
}

.official-card h4 {
    color: #1a1a2e;
    margin-bottom: 5px;
}

.official-card p {
    color: #666;
    font-size: 0.95rem;
}

/* History Section */
.history-section {
    padding: 80px 0;
}

.history-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.history-intro h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.history-intro p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #3b82f6, #3b82f6);
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
    width: 50%;
    padding: 0 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #3b82f6;
    border: 4px solid white;
    border-radius: 50%;
    top: 0;
    box-shadow: 0 0 0 4px #3b82f6;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -10px;
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.timeline-content h3 {
    color: #3b82f6;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* History Facts */
.history-facts {
    margin-top: 60px;
}

.history-facts h3 {
    text-align: center;
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 40px;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.fact-card {
    background: linear-gradient(135deg, #3b82f6 0%, #3b82f6 100%);
    color: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.fact-card:hover {
    transform: translateY(-5px);
}

.fact-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.fact-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.fact-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Vision & Mission Section */
.vm-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.vm-card {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.vm-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #3b82f6 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 2.5rem;
}

.vm-card h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 25px;
}

.vision-statement, .mission-statement {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
    font-style: italic;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    margin-bottom: 25px;
}

.vision-points, .mission-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vision-points li, .mission-points li {
    padding: 12px 0;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.vision-points i, .mission-points i {
    color: #3b82f6;
    margin-top: 4px;
}

/* Core Values */
.core-values {
    margin-bottom: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.value-item h3 {
    color: #1a1a2e;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Goals Section */
.goals-section {
    margin-top: 60px;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.goal-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-bottom: 4px solid transparent;
}

.goal-card:hover {
    border-bottom-color: #3b82f6;
    transform: translateY(-5px);
}

.goal-card i {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 15px;
}

.goal-card h3 {
    color: #1a1a2e;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.goal-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-us-content {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 80px;
        padding-right: 20px;
        text-align: left !important;
    }
    
    .timeline-marker {
        left: 20px !important;
        right: auto !important;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .about-grid,
    .facts-grid,
    .values-grid,
    .goals-grid {
        grid-template-columns: 1fr;
    }
}

/* Fix Navigation Bar */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #3b82f6 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin: 0;
    font-weight: 700;
}

.logo-text p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* Navigation Menu - Horizontal Layout */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover {
    background: #f0f4ff;
    color: #3b82f6;
}

.nav-menu li.active > a {
    background: #3b82f6;
    color: white;
}

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 10px;
    margin-top: 5px;
    z-index: 1000;
    overflow: hidden;
}

.dropdown-content a {
    padding: 12px 20px;
    border-radius: 0;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: #f8f9fa;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Search Icon */
.search-icon {
    cursor: pointer;
    padding: 10px;
    color: #333;
    transition: color 0.3s;
}

.search-icon:hover {
    color: #3b82f6;
}

/* Top Bar */
.top-bar {
    background: #0f172a;
    color: white;
    padding: 10px 0;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.contact-info i {
    color: #3b82f6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-wrapper {
        flex-wrap: wrap;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        padding: 15px 20px;
        border-radius: 0;
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        background: #f8f9fa;
        display: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-text p {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo {
        order: 1;
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .search-icon {
        order: 2;
    }
}

/* Service Detail Page Styles */
.service-detail-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.service-header-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3b82f6 0%, #3b82f6 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    margin-bottom: 25px;
}

.service-header-card h2 {
    color: #1a1a2e;
    margin-bottom: 15px;
    font-size: 2rem;
}

.service-header-card > p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-info-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-info-card h3 {
    color: #3b82f6;
    margin-bottom: 25px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-info-card h3 i {
    color: #3b82f6;
}

/* Requirements List */
.requirements-list {
    display: grid;
    gap: 20px;
}

.requirement-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
}

.requirement-item i {
    font-size: 2rem;
    color: #3b82f6;
    flex-shrink: 0;
}

.requirement-item h4 {
    color: #1a1a2e;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.requirement-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Process Steps */
.process-steps {
    display: grid;
    gap: 25px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #3b82f6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1a1a2e;
    margin-bottom: 5px;
    font-size: 1.15rem;
}

.step-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Complaint Types */
.complaint-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.complaint-type {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.complaint-type:hover {
    transform: translateY(-5px);
}

.complaint-type i {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 15px;
}

.complaint-type h4 {
    color: #1a1a2e;
    margin-bottom: 10px;
}

.complaint-type p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Assistance Types */
.assistance-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.assistance-item {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
}

.assistance-item i {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 15px;
}

.assistance-item h4 {
    color: #1a1a2e;
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.assistance-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.assistance-item ul li {
    padding: 5px 0;
    color: #666;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
}

.assistance-item ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

/* Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.sidebar-card h3 {
    color: #3b82f6;
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card h3 i {
    color: #3b82f6;
}

.sidebar-card > p {
    color: #666;
    margin-bottom: 10px;
}

.processing-time, .service-fee {
    font-size: 2rem;
    font-weight: bold;
    color: #3b82f6;
    margin: 10px 0;
}

.notes-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.notes-list li {
    padding: 8px 0;
    color: #666;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
}

.notes-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.2rem;
}

.sidebar-card.highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #3b82f6 100%);
    color: white;
}

.sidebar-card.highlight h3 {
    color: white;
}

.sidebar-card.highlight p {
    color: rgba(255,255,255,0.9);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 968px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        order: 2;
    }
    
    .complaint-types,
    .assistance-types {
        grid-template-columns: 1fr;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.header-content .badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.header-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.header-content p {
    font-size: 18px;
    opacity: 0.9;
}

/* Form Section */
.form-section {
    padding: 60px 0;
    background: #f8fafc;
}

.form-container {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
}

.form-header h2 {
    color: #1e293b;
    font-size: 32px;
    margin-bottom: 10px;
}

.form-header h2 i {
    color: #3b82f6;
    margin-right: 10px;
}

.form-header p {
    color: #64748b;
    font-size: 16px;
}

/* Form Styles */
.service-form h3 {
    color: #1e293b;
    font-size: 20px;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3b82f6;
}

.service-form h3:first-child {
    margin-top: 0;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #334155;
    font-weight: 600;
    font-size: 14px;
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* File Upload */
.file-upload {
    border: 2px dashed #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background: #f8fafc;
}

.file-upload input[type="file"] {
    display: block;
    margin: 0 auto 10px;
    cursor: pointer;
}

.file-hint {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #334155;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: #e2e8f0;
    color: #475569;
}

.btn-secondary:hover {
    background: #cbd5e1;
}

/* Requirements Box */
.requirements-box,
.info-box {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    padding: 25px;
    margin-top: 40px;
    border-radius: 8px;
}

.requirements-box h3,
.info-box h3 {
    color: #1e40af;
    margin-bottom: 15px;
    font-size: 20px;
}

.requirements-box h3 i,
.info-box h3 i {
    margin-right: 10px;
}

.requirements-box ul,
.info-box ul {
    list-style: none;
    padding: 0;
}

.requirements-box ul li,
.info-box ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #334155;
}

.requirements-box ul li:before,
.info-box ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.note {
    margin-top: 15px;
    padding: 15px;
    background: white;
    border-radius: 5px;
    font-size: 14px;
    color: #475569;
}

/* Responsive */
@media (max-width: 768px) {
    .form-container {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .header-content h1 {
        font-size: 32px;
    }
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: #0f172a;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
}

.contact-info span {
    margin-left: 30px;
}

.contact-info i {
    margin-right: 8px;
    color: #3b82f6;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: #3b82f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.logo-text h1 {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 2px;
}

.logo-text p {
    font-size: 13px;
    color: #64748b;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #3b82f6;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s;
}

.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    margin-top: 10px;
    padding: 10px 0;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #334155;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: #f1f5f9;
    color: #3b82f6;
    padding-left: 25px;
}

.search-icon {
    cursor: pointer;
    color: #334155;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #334155;
    transition: 0.3s;
}

/* Services Hero */
.services-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content .badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
}

.service-card h3 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 15px;
}

.service-card p {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 12px;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 10px;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 32px;
    }
}
/* Announcement Hero */
.announcement-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 60px 0 40px;
}

.announcement-header {
    max-width: 800px;
}

.announcement-header .category-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.announcement-header .category-badge.news {
    background: #06b6d4;
}

.announcement-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.meta-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    font-size: 15px;
    opacity: 0.9;
}

.meta-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Announcement Detail */
.announcement-detail {
    padding: 60px 0;
    background: #f8fafc;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

/* Article Content */
.article-content {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.featured-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body {
    padding: 40px;
}

.article-body h2 {
    color: #1e293b;
    font-size: 28px;
    margin: 35px 0 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #3b82f6;
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-body p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.article-body ul {
    margin: 15px 0 25px 25px;
}

.article-body ul li {
    color: #475569;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Objectives Grid */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.objective-card {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
}

.objective-card:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
}

.objective-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 24px;
}

.objective-card h3 {
    color: #1e293b;
    font-size: 18px;
    margin-bottom: 10px;
}

.objective-card p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

/* Components List */
.components-list {
    margin: 30px 0;
}

.component-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.component-number {
    font-size: 36px;
    font-weight: bold;
    color: #3b82f6;
    opacity: 0.3;
    line-height: 1;
}

.component-content h3 {
    color: #1e293b;
    font-size: 20px;
    margin-bottom: 12px;
}

.component-content p {
    margin-bottom: 12px;
}

.component-content ul {
    margin-left: 20px;
}

.component-content ul li {
    margin-bottom: 6px;
}

/* Timeline */
.timeline {
    margin: 30px 0;
    padding: 20px 0;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 50px;
    width: 2px;
    height: calc(100% - 20px);
    background: #e2e8f0;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    background: white;
    border: 3px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 18px;
    flex-shrink: 0;
    z-index: 1;
}

.timeline-marker.active {
    border-color: #3b82f6;
    color: #3b82f6;
    background: #eff6ff;
}

.timeline-content {
    flex: 1;
    padding-top: 5px;
}

.timeline-date {
    display: inline-block;
    background: #3b82f6;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-content h4 {
    color: #1e293b;
    font-size: 18px;
    margin-bottom: 5px;
}

.timeline-content p {
    color: #64748b;
    margin: 0;
    font-size: 14px;
}

/* Coverage Areas */
.coverage-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 25px 0;
}

.area-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    color: #1e40af;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid #dbeafe;
}

.area-tag i {
    font-size: 12px;
}

/* Budget Info */
.budget-info {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.budget-item {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.budget-label {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.budget-amount {
    font-size: 36px;
    font-weight: bold;
    color: #4ade80;
}

.budget-breakdown {
    margin-top: 20px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.breakdown-item:last-child {
    border-bottom: none;
}

.funding-source {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 14px;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    margin: 25px 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #475569;
    font-size: 15px;
}

.benefits-list li i {
    color: #10b981;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Project Gallery */
.project-gallery {
    margin: 40px 0;
}

.project-gallery h2 {
    margin-bottom: 25px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-item p {
    padding: 12px 15px;
    background: white;
    margin: 0;
    text-align: center;
    font-weight: 600;
    color: #1e293b;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 35px;
    border-radius: 12px;
    margin: 40px 0;
    border: 2px solid #3b82f6;
}

.contact-cta h3 {
    color: #1e40af;
    margin-bottom: 15px;
    font-size: 22px;
}

.contact-cta > p {
    color: #475569;
    margin-bottom: 25px;
}

.contact-details {
    display: grid;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-item strong {
    color: #1e293b;
    display: block;
    font-size: 16px;
}

.contact-item p {
    color: #64748b;
    margin: 0;
    font-size: 14px;
}

/* Share Section */
.share-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

.share-section h4 {
    color: #1e293b;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: transform 0.3s;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.email {
    background: #64748b;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.sidebar-widget h3 {
    color: #1e293b;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #3b82f6;
}

/* Related Posts */
.related-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-post {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    background: #f8fafc;
    text-decoration: none;
    transition: all 0.3s;
}

.related-post:hover {
    background: #eff6ff;
    transform: translateX(5px);
}

.related-post img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.related-content {
    flex: 1;
}

.related-content .date {
    font-size: 12px;
    color: #64748b;
    display: block;
    margin-bottom: 5px;
}

.related-content h4 {
    color: #1e293b;
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

/* Quick Links */
.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.3s;
}

.quick-links a:hover {
    background: #eff6ff;
    color: #3b82f6;
    padding-left: 15px;
}

.quick-links i {
    font-size: 12px;
    color: #3b82f6;
}

/* Status Widget */
.status-widget {
    padding: 15px 0;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.status-label {
    color: #64748b;
    font-weight: 500;
}

.status-value {
    color: #1e293b;
    font-weight: 600;
}

.status-value.ongoing {
    color: #f59e0b;
    background: #fef3c7;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 13px;
}

.progress-bar {
    width: 150px;
    height: 8px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 10px;
    transition: width 0.5s;
}

.progress-text {
    color: #3b82f6;
    font-weight: bold;
    margin-left: 10px;
}

/* Responsive */
@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        order: 2;
    }
    
    .announcement-header h1 {
        font-size: 32px;
    }
    
    .featured-image {
        height: 300px;
    }
    
    .article-body {
        padding: 25px;
    }
    
    .component-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .budget-amount {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .meta-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .objectives-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-areas {
        justify-content: center;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
/* Alert Box */
.alert-box {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
}

.alert-box.info {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    color: #1e40af;
}

.alert-box i {
    font-size: 24px;
    flex-shrink: 0;
}

.alert-box strong {
    display: block;
    margin-bottom: 5px;
}

/* Scope Sections */
.scope-sections {
    margin: 30px 0;
}

.scope-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.scope-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
}

.scope-content h3 {
    color: #1e293b;
    font-size: 20px;
    margin-bottom: 12px;
}

.scope-content ul {
    margin: 0;
    padding-left: 20px;
}

.scope-content ul li {
    margin-bottom: 8px;
    color: #475569;
}

/* Roads Table */
.roads-table {
    margin: 30px 0;
    overflow-x: auto;
}

.roads-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.roads-table thead {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.roads-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.roads-table td {
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
}

.roads-table tbody tr:hover {
    background: #f8fafc;
}

.roads-table i {
    color: #3b82f6;
    margin-right: 8px;
}

.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.completed {
    background: #d1fae5;
    color: #065f46;
}

.status-badge.in-progress {
    background: #fef3c7;
    color: #92400e;
}

.status-badge.planned {
    background: #e0e7ff;
    color: #3730a3;
}

/* Schedule Box */
.schedule-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

.schedule-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #92400e;
}

.schedule-header i {
    font-size: 24px;
}

.schedule-header h3 {
    font-size: 20px;
    margin: 0;
}

.schedule-content {
    margin-bottom: 20px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(146, 64, 14, 0.2);
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item strong {
    color: #92400e;
}

.schedule-item span {
    color: #78350f;
    font-weight: 500;
}

.schedule-note {
    display: flex;
    gap: 12px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    align-items: flex-start;
}

.schedule-note i {
    color: #f59e0b;
    font-size: 20px;
    margin-top: 2px;
}

.schedule-note p {
    margin: 0;
    color: #78350f;
    font-size: 14px;
    line-height: 1.6;
}

/* Traffic Info */
.traffic-info {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.traffic-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    border-radius: 10px;
}

.traffic-item i {
    font-size: 24px;
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 3px;
}

.traffic-item h4 {
    color: #991b1b;
    margin-bottom: 8px;
    font-size: 16px;
}

.traffic-item p {
    margin: 0;
    color: #7f1d1d;
    font-size: 14px;
    line-height: 1.6;
}

/* Community Notice */
.community-notice {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    border: 2px solid #8b5cf6;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
}

.community-notice h3 {
    color: #6d28d9;
    margin-bottom: 15px;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.community-notice > p {
    color: #5b21b6;
    margin-bottom: 20px;
}

.community-notice ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.community-notice ul li {
    padding: 10px 0 10px 35px;
    position: relative;
    color: #5b21b6;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.community-notice ul li:last-child {
    border-bottom: none;
}

.community-notice ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: bold;
    font-size: 18px;
}

/* Download Links */
.download-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8fafc;
    border-radius: 8px;
    text-decoration: none;
    color: #475569;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.download-item:hover {
    background: #eff6ff;
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateX(5px);
}

.download-item i {
    font-size: 20px;
    color: #ef4444;
}

.download-item:hover i {
    color: #3b82f6;
}

/* Timeline Enhancements */
.timeline-item.completed .timeline-marker {
    border-color: #10b981;
    color: #10b981;
    background: #d1fae5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .scope-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .roads-table table {
        font-size: 14px;
    }
    
    .roads-table th,
    .roads-table td {
        padding: 10px;
    }
    
    .schedule-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .traffic-item {
        flex-direction: column;
    }
}

/* Category Badge */
.category-badge.event {
    background: #f59e0b;
}

/* Countdown Section */
.countdown-section {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    padding: 40px 0;
    color: white;
}

.countdown-wrapper {
    text-align: center;
}

.countdown-wrapper h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.countdown-wrapper h2 i {
    margin-right: 10px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 12px;
    min-width: 100px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.countdown-number {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 8px;
}

.countdown-label {
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Alert Box Urgent */
.alert-box.urgent {
    background: #fef3c7;
    border-left-color: #f59e0b;
    color: #92400e;
}

/* Event Details Grid */
.event-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.detail-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
}

.detail-card:hover {
    border-color: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.15);
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
}

.detail-content h3 {
    color: #1e293b;
    font-size: 16px;
    margin-bottom: 5px;
}

.detail-content p {
    color: #64748b;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.detail-content small {
    color: #94a3b8;
    font-size: 12px;
}

/* Agenda Container */
.agenda-container {
    margin: 30px 0;
}

.agenda-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s;
}

.agenda-item:hover {
    background: #eff6ff;
    transform: translateX(5px);
}

.agenda-item.highlight {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left-color: #1d4ed8;
    border: 2px solid #3b82f6;
}

.agenda-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 140px;
    color: #3b82f6;
    font-weight: 600;
}

.agenda-time i {
    font-size: 20px;
}

.agenda-time span {
    font-size: 14px;
}

.agenda-content h3 {
    color: #1e293b;
    font-size: 18px;
    margin-bottom: 8px;
}

.agenda-content p {
    color: #64748b;
    margin: 0 0 10px 0;
    font-size: 14px;
}

.agenda-content ul {
    margin: 0;
    padding-left: 20px;
}

.agenda-content ul li {
    color: #475569;
    margin-bottom: 5px;
    font-size: 14px;
}

/* Topics Grid */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.topic-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
}

.topic-card:hover {
    border-color: #10b981;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.15);
}

.topic-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
}

.topic-card h3 {
    color: #1e293b;
    font-size: 18px;
    margin-bottom: 12px;
}

.topic-card ul {
    margin: 0;
    padding-left: 20px;
}

.topic-card ul li {
    color: #64748b;
    margin-bottom: 6px;
    font-size: 14px;
}

/* Reminders Box */
.reminders-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

.reminder-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(245, 158, 11, 0.3);
}

.reminder-item:last-child {
    border-bottom: none;
}

.reminder-item i {
    font-size: 24px;
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 3px;
}

.reminder-item h4 {
    color: #92400e;
    margin-bottom: 5px;
    font-size: 16px;
}

.reminder-item p {
    margin: 0;
    color: #78350f;
    font-size: 14px;
    line-height: 1.5;
}

/* Special Programs */
.special-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.program-card {
    position: relative;
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    overflow: hidden;
}

.program-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.program-badge.new {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.program-card h3 {
    color: #1e293b;
    font-size: 18px;
    margin-bottom: 10px;
    padding-right: 60px;
}

.program-card h3 i {
    color: #10b981;
    margin-right: 8px;
}

.program-card p {
    color: #64748b;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* Attendees List */
.attendees-list {
    display: grid;
    gap: 15px;
    margin: 30px 0;
}

.attendee-category {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #8b5cf6;
}

.attendee-category i {
    font-size: 24px;
    color: #8b5cf6;
    flex-shrink: 0;
    margin-top: 3px;
}

.attendee-category h4 {
    color: #1e293b;
    margin-bottom: 5px;
    font-size: 16px;
}

.attendee-category p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

/* Registration Info */
.registration-info {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    border: 2px solid #8b5cf6;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
}

.registration-info h3 {
    color: #6d28d9;
    margin-bottom: 15px;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.registration-info > p {
    color: #5b21b6;
    margin-bottom: 20px;
}

.registration-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.method {
    display: flex;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    align-items: flex-start;
}

.method i {
    font-size: 20px;
    color: #8b5cf6;
    margin-top: 3px;
}

.method strong {
    color: #6d28d9;
    display: block;
    margin-bottom: 3px;
}

.method p {
    margin: 0;
    color: #7c3aed;
    font-size: 13px;
}

.registration-note {
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    margin: 0;
    color: #6d28d9;
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    margin: 40px 0;
}

.faq-section h3 {
    color: #1e293b;
    font-size: 24px;
    margin-bottom: 25px;
}

.faq-item {
    margin-bottom: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    color: #1e293b;
}

.faq-question:hover {
    background: #eff6ff;
    color: #3b82f6;
}

.faq-question i {
    font-size: 20px;
    color: #3b82f6;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-answer.active {
    padding: 15px 20px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

/* Quick Info Box */
.quick-info-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
}

.info-row i {
    font-size: 20px;
    color: #3b82f6;
}

.info-row .label {
    display: block;
    color: #64748b;
    font-size: 13px;
    margin-bottom: 2px;
}

.info-row .value {
    color: #1e293b;
    font-weight: 600;
    font-size: 15px;
}

.info-row .value.upcoming {
    color: #f59e0b;
    background: #fef3c7;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 13px;
}

/* Related Events */
.related-events {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-event {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s;
}

.related-event:hover {
    background: #eff6ff;
    transform: translateX(5px);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 10px 12px;
    border-radius: 8px;
    min-width: 60px;
}

.event-date .day {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

.event-date .month {
    font-size: 11px;
    text-transform: uppercase;
    margin-top: 3px;
}

.event-info h4 {
    color: #1e293b;
    font-size: 14px;
    margin-bottom: 3px;
}

.event-info p {
    color: #64748b;
    font-size: 13px;
    margin: 0;
}

/* Committee Contact */
.committee-contact {
    background: #f8fafc;
    padding: 15px;
    border-radius: 8px;
}

.committee-contact p {
    margin: 0 0 10px 0;
    color: #475569;
    font-size: 14px;
}

.committee-contact p:last-child {
    margin-bottom: 0;
}

.committee-contact i {
    color: #3b82f6;
    margin-right: 8px;
    width: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .countdown-timer {
        gap: 10px;
    }
    
    .countdown-item {
        padding: 15px 20px;
        min-width: 80px;
    }
    
    .countdown-number {
        font-size: 32px;
    }
    
    .agenda-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .agenda-time {
        flex-direction: row;
        gap: 10px;
        min-width: auto;
    }
    
    .event-details-grid {
        grid-template-columns: 1fr;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .special-programs {
        grid-template-columns: 1fr;
    }
    
    .registration-methods {
        grid-template-columns: 1fr;
    }
}

/* Center the services container */
.services-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 60px 20px;
}

/* Center the services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
    padding: 0 20px;
}

/* Center individual service cards */
.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    max-width: 350px;
    width: 100%;
}

/* Center the service icon */
.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
}

/* Center service title */
.service-card h3 {
    text-align: center;
    margin-bottom: 15px;
    color: #1e293b;
}

/* Center service description */
.service-card p {
    text-align: center;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Center the learn more link/button */
.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 8px;
}

/* If using flexbox instead of grid */
.services-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Center the hero section text */
.services-hero {
    text-align: center;
    padding: 80px 20px;
}

.services-hero h1 {
    text-align: center;
}

.services-hero p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Center badge/label */
.badge {
    display: inline-block;
    text-align: center;
    margin: 0 auto 20px;
}

/* Quick Info Bar */
.quick-info-bar {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 30px 0;
    color: white;
}

.info-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.info-card i {
    font-size: 32px;
    color: #fbbf24;
}

.info-card strong {
    display: block;
    font-size: 16px;
    margin-bottom: 3px;
}

.info-card p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.service-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #10b981;
    transition: all 0.3s;
    opacity: 0;
    transform: translateX(-30px);
}

.service-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.service-item:hover {
    background: #f0fdf4;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
}

.service-content h3 {
    color: #1e293b;
    font-size: 20px;
    margin-bottom: 10px;
}

.service-content p {
    color: #64748b;
    margin-bottom: 12px;
    font-size: 14px;
}

.service-content ul {
    margin: 0;
    padding-left: 20px;
}

.service-content ul li {
    color: #475569;
    margin-bottom: 5px;
    font-size: 13px;
}

/* Schedule Box */
.schedule-box {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.schedule-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 12px;
    border: 2px solid #3b82f6;
}

.schedule-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
}

.schedule-details h3 {
    color: #1e40af;
    font-size: 20px;
    margin-bottom: 10px;
}

.schedule-details p {
    color: #475569;
    margin: 5px 0;
    font-size: 15px;
}

.schedule-details .note {
    color: #f59e0b;
    font-weight: 600;
    font-size: 13px;
    margin-top: 8px;
}

/* Requirements List */
.requirements-list {
    display: grid;
    gap: 15px;
    margin: 30px 0;
}

.requirement-item {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: #fef3c7;
    border-radius: 10px;
    border-left: 4px solid #f59e0b;
}

.requirement-item i {
    font-size: 24px;
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 3px;
}

.requirement-item h4 {
    color: #92400e;
    margin-bottom: 5px;
    font-size: 16px;
}

.requirement-item p {
    margin: 0;
    color: #78350f;
    font-size: 14px;
}

/* Eligibility Box */
.eligibility-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #166534;
    font-size: 15px;
}

.check-list li i {
    color: #10b981;
    font-size: 20px;
    flex-shrink: 0;
}

/* Reminders Grid */
.reminders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.reminder-card {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
}

.reminder-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.reminder-card:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
}

.reminder-card i {
    font-size: 40px;
    color: #3b82f6;
    margin-bottom: 15px;
}

.reminder-card h4 {
    color: #1e293b;
    font-size: 16px;
    margin-bottom: 8px;
}

.reminder-card p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Special Programs */
.special-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.program-card {
    position: relative;
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s;
}

.program-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.program-card:hover {
    border-color: #10b981;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.15);
}

.program-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.program-card h3 {
    color: #1e293b;
    font-size: 18px;
    margin-bottom: 10px;
    padding-right: 60px;
}

.program-card h3 i {
    color: #10b981;
    margin-right: 8px;
}

.program-card p {
    color: #64748b;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* Health Tips */
.health-tips {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid #ef4444;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
}

.health-tips h3 {
    color: #991b1b;
    font-size: 22px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tips-container {
    display: grid;
    gap: 15px;
}

.tip-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
}

.tip-item i {
    font-size: 24px;
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 3px;
}

.tip-item strong {
    display: block;
    color: #1e293b;
    margin-bottom: 5px;
}

.tip-item p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

/* Upcoming Dates */
.upcoming-dates {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.date-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s;
}

.date-item:hover {
    background: #eff6ff;
    transform: translateX(5px);
}

.date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 10px 12px;
    border-radius: 8px;
    min-width: 60px;
}

.date-badge .month {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
}

.date-badge .day {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

.date-info strong {
    display: block;
    color: #1e293b;
    font-size: 14px;
    margin-bottom: 3px;
}

.date-info p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
}

/* Alert Box Success */
.alert-box.success {
    background: #f0fdf4;
    border-left-color: #10b981;
    color: #166534;
}

/* Value Free */
.value.free {
    color: #10b981;
    background: #d1fae5;
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .info-cards {
        flex-direction: column;
    }
    
    .info-card {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        flex-direction: column;
    }
    
    .schedule-item {
        flex-direction: column;
    }
    
    .reminders-grid {
        grid-template-columns: 1fr;
    }
    
    .special-programs {
        grid-template-columns: 1fr;
    }
}

/* Search and Filter Container */
.search-filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
    padding: 0 5%;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.filter-btn.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

/* Search Box */
.search-box {
    display: flex;
    gap: 0;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: 300px;
}

.search-box input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    outline: none;
    font-size: 14px;
}

.search-box button {
    padding: 12px 20px;
    background: #2563eb;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-box button:hover {
    background: #1d4ed8;
}

/* Results Count */
.results-count {
    padding: 0 5%;
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

/* Announcements Grid */
.announcements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 0 5%;
    margin-bottom: 50px;
}

/* Announcement Card */
.announcement-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 0.5s ease;
}

.announcement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.announcement-card.hidden {
    display: none;
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    z-index: 1;
}

.category-badge.events {
    background: #10b981;
}

.category-badge.news {
    background: #06b6d4;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    margin: 0 0 10px;
    color: #1e293b;
    font-size: 18px;
}

.card-content p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px;
}

.card-content .date {
    color: #94a3b8;
    font-size: 13px;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
}

.no-results i {
    font-size: 48px;
    margin-bottom: 20px;
    color: #cbd5e1;
}

.no-results h3 {
    margin: 10px 0;
    color: #475569;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .search-filter-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        width: 100%;
    }
    
    .announcements-grid {
        grid-template-columns: 1fr;
    }
}

.search-btn {
    position: relative;
    z-index: 1000;
    cursor: pointer;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 25px;
    width: 250px;
    font-size: 14px;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: #2563eb;
    width: 300px;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #2563eb;
}

.search-results {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 400px;
    max-height: 500px;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border-radius: 10px;
    z-index: 1000;
    overflow: hidden;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #2563eb;
    color: white;
}

.results-header h3 {
    margin: 0;
    font-size: 16px;
}

.close-search {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.results-content {
    padding: 15px;
    max-height: 400px;
    overflow-y: auto;
}

.result-item {
    padding: 12px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.2s;
}

.result-item:hover {
    background: #f0f7ff;
}

.result-category {
    font-size: 11px;
    color: #2563eb;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 5px;
}

.result-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: #1e293b;
}

.result-excerpt {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}

.no-results {
    text-align: center;
    padding: 30px;
    color: #64748b;
}

/* Highlight search terms */
.highlight {
    background: yellow;
    padding: 2px 0;
}