/* 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;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.main-content {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.main-content.visible {
    opacity: 1;
}

.loading-content {
    text-align: center;
}

.logo-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #4A90E2;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: rotate 2s linear infinite, pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(74, 144, 226, 0.3);
}

.logo-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.2) 0%, transparent 70%);
    animation: glow 2s infinite;
}

.loading-logo {
    width: 80px;
    height: auto;
    animation: logoScale 1.5s ease-in-out infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

@keyframes logoScale {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Navigation - Enhanced Responsive Design - FIXED */
.navbar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.1) !important;
    border-bottom: 1px solid rgba(74, 144, 226, 0.1) !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%) !important;
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.15) !important;
    border-bottom: 1px solid rgba(74, 144, 226, 0.2) !important;
}

.nav-container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 70px !important;
    position: relative !important;
    width: 100% !important;
}

.nav-logo {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    padding: 6px 12px !important;
    border-radius: 40px !important;
    position: relative !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
}

.nav-logo:hover {
    transform: translateY(-1px) !important;
    background: rgba(74, 144, 226, 0.05) !important;
}

.nav-logo img {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid rgba(74, 144, 226, 0.3) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 10px rgba(74, 144, 226, 0.2) !important;
}

.nav-logo:hover img {
    border-color: #4A90E2 !important;
    transform: rotate(3deg) scale(1.05) !important;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3) !important;
}

.nav-logo span {
    font-weight: 700 !important;
    background: linear-gradient(135deg, #4A90E2, #357abd) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-size: 1.1rem !important;
    letter-spacing: -0.3px !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
}

.nav-menu {
    display: flex !important;
    gap: 4px !important;
    align-items: center !important;
    background: rgba(74, 144, 226, 0.05) !important;
    padding: 6px !important;
    border-radius: 40px !important;
    border: 1px solid rgba(74, 144, 226, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    flex-wrap: nowrap !important;
}

.nav-link {
    text-decoration: none !important;
    color: #4A90E2 !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    padding: 8px 12px !important;
    border-radius: 25px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    border: 1px solid transparent !important;
}

.nav-link::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, #4A90E2, #357abd) !important;
    transition: left 0.4s ease !important;
    z-index: -1 !important;
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0 !important;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.hamburger {
    display: none !important;
    flex-direction: column !important;
    cursor: pointer !important;
    padding: 10px !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    background: rgba(74, 144, 226, 0.05) !important;
    border: 1px solid rgba(74, 144, 226, 0.1) !important;
    backdrop-filter: blur(10px) !important;
}

.hamburger span {
    width: 24px !important;
    height: 3px !important;
    background: linear-gradient(135deg, #4A90E2, #357abd) !important;
    margin: 2px 0 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 2px !important;
    transform-origin: center !important;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.nav-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
    transition: left 0.6s ease;
}

.nav-logo:hover::before {
    left: 100%;
}

.nav-logo:hover {
    transform: translateY(-1px);
    background: rgba(74, 144, 226, 0.05);
}

.nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(74, 144, 226, 0.2);
}

.nav-logo:hover img {
    border-color: #4A90E2;
    transform: rotate(3deg) scale(1.05);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.nav-logo span {
    font-weight: 700;
    background: linear-gradient(135deg, #4A90E2, #357abd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    letter-spacing: -0.3px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-logo:hover span {
    transform: translateX(2px);
}

.nav-menu {
    display: flex;
    gap: 4px;
    align-items: center;
    background: rgba(74, 144, 226, 0.05);
    padding: 6px;
    border-radius: 40px;
    border: 1px solid rgba(74, 144, 226, 0.1);
    backdrop-filter: blur(10px);
}

.nav-link {
    text-decoration: none;
    color: #4A90E2;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 16px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    border: 1px solid transparent;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4A90E2, #357abd);
    transition: left 0.4s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 50%;
}

/* Language Switcher */
.language-switcher {
    margin-left: 15px;
    flex-shrink: 0;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(74, 144, 226, 0.05);
    padding: 4px;
    border-radius: 25px;
    border: 1px solid rgba(74, 144, 226, 0.1);
    backdrop-filter: blur(10px);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    border: none;
    background: transparent;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    font-weight: 500;
    color: #4A90E2;
    white-space: nowrap;
}

.lang-btn:hover {
    background: rgba(74, 144, 226, 0.1);
    color: #357abd;
    transform: translateY(-1px);
}

.lang-btn.active {
    background: linear-gradient(135deg, #4A90E2, #357abd);
    color: white;
    box-shadow: 0 2px 10px rgba(74, 144, 226, 0.3);
}


.lang-separator {
    color: #ccc;
    font-weight: 300;
}

.flag {
    font-size: 1rem;
}

/* Hamburger Menu - Enhanced */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(74, 144, 226, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.1);
    backdrop-filter: blur(10px);
}

.hamburger:hover {
    background: rgba(74, 144, 226, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2);
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: linear-gradient(135deg, #4A90E2, #357abd);
    margin: 2px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    transform-origin: center;
}

.hamburger.active {
    background: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.2);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: linear-gradient(135deg, #dc3545, #c82333);
}

/* Navbar Animation on Scroll */
@keyframes navSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar {
    animation: navSlideDown 0.6s ease-out;
}

/* Glowing Effect */
.nav-menu::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #4A90E2, #357abd, #4A90E2);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-menu:hover::before {
    opacity: 0.1;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    display: flex;
    gap: 30px;
    align-items: center;
}

.mp-photo img {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mp-info h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.mp-info h2 {
    font-size: 1.3rem;
    color: #4A90E2;
    margin-bottom: 15px;
    font-weight: 500;
}

.tagline {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-btn {
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    min-width: 250px;
    text-decoration: none;
}

.action-btn.primary {
    background: #4A90E2;
    color: white;
}

.action-btn.secondary {
    background: #28a745;
    color: white;
}

.action-btn.tertiary {
    background: #17a2b8;
    color: white;
}

.action-btn.quaternary {
    background: #6f42c1;
    color: white;
}

.action-btn.emergency {
    background: #dc3545;
    color: white;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Page Content */
.page-content {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
}

.page-header {
    background: linear-gradient(135deg, #4A90E2, #357abd);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Cards */
.card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.card-icon {
    font-size: 3rem;
    color: #4A90E2;
    margin-bottom: 20px;
    text-align: center;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
}

.card-btn {
    width: 100%;
    padding: 12px 20px;
    background: #4A90E2;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: 600;
}

.card-btn:hover {
    background: #357abd;
}

/* Forms */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 20px;
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #4A90E2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #4A90E2;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #357abd;
}

/* Tables */
.table-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    background: #4A90E2;
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.data-table td {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}

.data-table tr:hover {
    background: #f8f9fa;
}

.progress-bar {
    position: relative;
    background: #e9ecef;
    height: 25px;
    border-radius: 12px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 12px;
    transition: width 0.3s ease;
}

.progress-bar span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

/* Statistics */
.statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, #4A90E2, #357abd);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* News Cards */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.news-card-header {
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.news-date {
    color: #4A90E2;
    font-weight: 600;
    font-size: 0.9rem;
}

.news-card-body {
    padding: 20px;
}

.news-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.news-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-btn {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #357abd;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contact-card i {
    font-size: 3rem;
    color: #4A90E2;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.contact-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-btn {
    padding: 10px 20px;
    background: #4A90E2;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.contact-btn:hover {
    background: #357abd;
}

.contact-btn.whatsapp {
    background: #25d366;
}

.contact-btn.whatsapp:hover {
    background: #1da851;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: white;
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
}

.map-placeholder {
    height: 400px;
    background: #f8f9fa;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px dashed #dee2e6;
}

.map-placeholder i {
    font-size: 4rem;
    color: #4A90E2;
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: #666;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #4A90E2;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #4A90E2;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4A90E2;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact i {
    color: #4A90E2;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

.modal h2 {
    margin-bottom: 30px;
    color: #333;
    font-size: 1.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: 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;
    }

    .nav-menu a {
        padding: 15px;
        display: block;
        border-bottom: 1px solid #eee;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-left {
        flex-direction: column;
        text-align: center;
    }

    .mp-info h1 {
        font-size: 2rem;
    }

    .action-buttons {
        align-items: center;
    }

    .action-btn {
        min-width: 280px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .table-container {
        overflow-x: auto;
    }

    .data-table {
        min-width: 600px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid,
    .card-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

    .mp-info h1 {
        font-size: 1.8rem;
    }

    .mp-info h2 {
        font-size: 1.1rem;
    }

    .action-btn {
        min-width: 100%;
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }
}

/* Utility Classes */
.hidden {
    opacity: 0;
    pointer-events: none;
}

.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}


/* 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;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in;
}

.bell-icon {
    font-size: 2rem;
    color: #4A90E2;
    animation: pulse 1.5s infinite;
}

.bell-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 2s infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes glow {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    width: 40px;
    height: auto;
}

.nav-logo span {
    font-weight: 600;
    color: #4A90E2;
    font-size: 1.1rem;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4A90E2;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4A90E2;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    display: flex;
    gap: 30px;
    align-items: center;
}

.mp-photo img {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mp-info h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.mp-info h2 {
    font-size: 1.3rem;
    color: #4A90E2;
    margin-bottom: 15px;
    font-weight: 500;
}

.tagline {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-btn {
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    min-width: 250px;
}

.action-btn.primary {
    background: #4A90E2;
    color: white;
}

.action-btn.secondary {
    background: #28a745;
    color: white;
}

.action-btn.tertiary {
    background: #17a2b8;
    color: white;
}

.action-btn.quaternary {
    background: #6f42c1;
    color: white;
}

.action-btn.emergency {
    background: #dc3545;
    color: white;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Quick Report Section */
.quick-report {
    padding: 80px 0;
    background: white;
}

.quick-report h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
}

.report-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.file-input,
.form-select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.file-input:focus,
.form-select:focus,
textarea:focus {
    outline: none;
    border-color: #4A90E2;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #4A90E2;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #357abd;
}

/* I
llegal Activity Section */
.illegal-activity {
    padding: 80px 0;
    background: #f8f9fa;
}

.illegal-activity h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.activity-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.activity-card i {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 20px;
}

.activity-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.activity-card p {
    color: #666;
    line-height: 1.6;
}

/* Citizen Services */
.citizen-services {
    padding: 80px 0;
    background: white;
}

.citizen-services h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: #4A90E2;
    transform: translateY(-3px);
}

.service-card i {
    font-size: 3rem;
    color: #4A90E2;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-btn {
    padding: 10px 20px;
    background: #4A90E2;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.service-btn:hover {
    background: #357abd;
}

/* Development Projects */
.development-projects {
    padding: 80px 0;
    background: #f8f9fa;
}

.development-projects h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
}

.projects-table-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.projects-table {
    width: 100%;
    border-collapse: collapse;
}

.projects-table th {
    background: #4A90E2;
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.projects-table td {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}

.projects-table tr:hover {
    background: #f8f9fa;
}

.progress-bar {
    position: relative;
    background: #e9ecef;
    height: 25px;
    border-radius: 12px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 12px;
    transition: width 0.3s ease;
}

.progress-bar span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

/* Latest Updates */
.latest-updates {
    padding: 80px 0;
    background: white;
}

.latest-updates h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.update-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 5px solid #4A90E2;
}

.update-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.update-icon {
    margin-bottom: 20px;
}

.update-icon i {
    font-size: 2.5rem;
    color: #4A90E2;
}

.update-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.update-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.update-date {
    color: #999;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, #4A90E2, #357abd);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Meeting Request */
.meeting-request {
    padding: 80px 0;
    background: #f8f9fa;
}

.meeting-request h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
}

.meeting-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.meeting-card input,
.meeting-card select,
.meeting-card textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.meeting-card input:focus,
.meeting-card select:focus,
.meeting-card textarea:focus {
    outline: none;
    border-color: #4A90E2;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
}

.map-placeholder {
    height: 400px;
    background: #f8f9fa;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px dashed #dee2e6;
    position: relative;
}

.map-placeholder i {
    font-size: 4rem;
    color: #4A90E2;
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.map-legend {
    display: flex;
    gap: 30px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color {
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.legend-color.complaint {
    background: #dc3545;
}

.legend-color.project {
    background: #28a745;
}

.legend-color.alert {
    background: #ffc107;
}

/* 
Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contact-card i {
    font-size: 3rem;
    color: #4A90E2;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.contact-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-btn {
    padding: 10px 20px;
    background: #4A90E2;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background: #357abd;
}

.contact-btn.whatsapp {
    background: #25d366;
}

.contact-btn.whatsapp:hover {
    background: #1da851;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #4A90E2;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #4A90E2;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4A90E2;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact i {
    color: #4A90E2;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

.modal h2 {
    margin-bottom: 30px;
    color: #333;
    font-size: 1.8rem;
}

.emergency-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.emergency-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #dc3545;
}

.emergency-item i {
    font-size: 2rem;
    color: #dc3545;
    margin-bottom: 10px;
}

.emergency-item span {
    font-weight: 600;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: 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;
    }

    .nav-menu a {
        padding: 15px;
        display: block;
        border-bottom: 1px solid #eee;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-left {
        flex-direction: column;
        text-align: center;
    }

    .mp-info h1 {
        font-size: 2rem;
    }

    .action-buttons {
        align-items: center;
    }

    .action-btn {
        min-width: 280px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .projects-table-container {
        overflow-x: auto;
    }

    .projects-table {
        min-width: 600px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 30px 20px;
    }

    .emergency-contacts {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

    .mp-info h1 {
        font-size: 1.8rem;
    }

    .mp-info h2 {
        font-size: 1.1rem;
    }

    .action-btn {
        min-width: 100%;
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    section {
        padding: 60px 0 !important;
    }

    h2 {
        font-size: 2rem !important;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Utility Classes */
.hidden {
    opacity: 0;
    pointer-events: none;
}

.fade-in {
    animation: fadeIn 0.6s ease-in;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Languag
e Switcher Styles */
.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(74, 144, 226, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid rgba(74, 144, 226, 0.2);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px 8px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: #333;
}

.lang-btn:hover {
    background: rgba(74, 144, 226, 0.1);
    transform: translateY(-1px);
}

.lang-btn.active {
    background: #4A90E2;
    color: white;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

.lang-btn .flag {
    font-size: 1rem;
}

.lang-btn .lang-text {
    font-weight: 500;
    white-space: nowrap;
}

.lang-separator {
    color: #4A90E2;
    font-weight: 300;
    opacity: 0.6;
}

/* Language transition effects */
body {
    transition: opacity 0.3s ease;
}

[data-key] {
    transition: all 0.2s ease;
}

/* Mobile responsive language switcher */
@media (max-width: 768px) {
    .language-switcher {
        position: fixed;
        top: 15px;
        right: 60px;
        z-index: 1001;
        margin: 0;
    }

    .lang-toggle {
        padding: 6px 8px;
        gap: 6px;
    }

    .lang-btn {
        padding: 3px 6px;
        font-size: 0.8rem;
    }

    .lang-btn .lang-text {
        display: none;
    }

    .lang-btn .flag {
        font-size: 1.2rem;
    }

    .lang-separator {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .language-switcher {
        right: 50px;
        top: 12px;
    }

    .lang-toggle {
        padding: 4px 6px;
        gap: 4px;
    }

    .lang-btn {
        padding: 2px 4px;
    }

    .lang-btn .flag {
        font-size: 1rem;
    }
}

/* Enh
anced Mobile Navigation Styles */
@media (max-width: 768px) {
    .navbar .nav-container {
        padding: 0 20px;
        height: 70px;
    }

    .navbar .nav-logo img {
        width: 35px;
        height: 35px;
    }

    .navbar .nav-logo span {
        font-size: 1rem;
    }

    .navbar .hamburger {
        display: flex;
        z-index: 1001;
    }

    .navbar .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        padding: 30px 20px;
        gap: 0;
        border: none;
        border-radius: 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .navbar .nav-menu.active {
        left: 0;
    }

    .navbar .nav-menu .nav-link {
        padding: 18px 30px;
        margin: 8px 0;
        display: block;
        border-radius: 15px;
        font-size: 1.1rem;
        border: 2px solid transparent;
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

    .navbar .nav-menu .nav-link:hover,
    .navbar .nav-menu .nav-link.active {
        background: linear-gradient(135deg, #4A90E2, #357abd) !important;
        color: white !important;
        transform: translateX(10px);
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
    }

    .navbar .language-switcher {
        margin: 30px 0 0 0;
        display: flex;
        justify-content: center;
    }

    .navbar .lang-toggle {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        padding: 10px;
        border-radius: 25px;
        border: 2px solid rgba(74, 144, 226, 0.2);
    }

    .navbar .lang-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Enha
nced Responsive Navigation - Override */
@media (max-width: 768px) {
    .navbar .nav-container {
        padding: 0 15px !important;
        height: 70px !important;
    }

    .navbar .nav-logo {
        gap: 8px !important;
        padding: 4px 8px !important;
    }

    .navbar .nav-logo img {
        width: 35px !important;
        height: 35px !important;
    }

    .navbar .nav-logo span {
        font-size: 1rem !important;
    }

    .navbar .hamburger {
        display: flex !important;
        z-index: 1001 !important;
        padding: 8px !important;
    }

    .navbar .nav-menu {
        position: fixed !important;
        left: -100% !important;
        top: 70px !important;
        flex-direction: column !important;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%) !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
        width: 100% !important;
        text-align: center !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: 0 10px 40px rgba(74, 144, 226, 0.2) !important;
        border-bottom: 2px solid rgba(74, 144, 226, 0.1) !important;
        padding: 40px 20px !important;
        gap: 12px !important;
        border-radius: 0 !important;
        height: calc(100vh - 70px) !important;
        overflow-y: auto !important;
    }

    .navbar .nav-menu.active {
        left: 0 !important;
    }

    .navbar .nav-menu .nav-link {
        padding: 16px 25px !important;
        margin: 0 auto !important;
        display: block !important;
        border-radius: 20px !important;
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        border: 2px solid rgba(74, 144, 226, 0.1) !important;
        background: rgba(74, 144, 226, 0.05) !important;
        backdrop-filter: blur(10px) !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        color: #4A90E2 !important;
        width: 100% !important;
        max-width: 300px !important;
    }

    .navbar .nav-menu .nav-link::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100% !important;
        background: linear-gradient(135deg, #4A90E2, #357abd) !important;
        transition: left 0.4s ease !important;
        z-index: -1 !important;
        border-radius: 20px !important;
    }

    .navbar .nav-menu .nav-link:hover::before,
    .navbar .nav-menu .nav-link.active::before {
        left: 0 !important;
    }

    .navbar .nav-menu .nav-link:hover,
    .navbar .nav-menu .nav-link.active {
        color: white !important;
        transform: translateX(8px) scale(1.02) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
        box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4) !important;
    }

    .navbar .language-switcher {
        margin: 30px auto 0 !important;
        display: flex !important;
        justify-content: center !important;
    }

    .navbar .lang-toggle {
        background: rgba(74, 144, 226, 0.08) !important;
        backdrop-filter: blur(15px) !important;
        padding: 8px !important;
        border-radius: 25px !important;
        border: 2px solid rgba(74, 144, 226, 0.2) !important;
    }

    .navbar .lang-btn {
        padding: 8px 12px !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
    }
}

@media (max-width: 480px) {
    .navbar .nav-container {
        padding: 0 12px !important;
    }

    .navbar .nav-logo span {
        font-size: 0.9rem !important;
    }

    .navbar .nav-menu {
        padding: 30px 15px !important;
    }

    .navbar .nav-menu .nav-link {
        padding: 14px 20px !important;
        font-size: 1rem !important;
        max-width: 280px !important;
    }

    .navbar .hamburger {
        padding: 6px !important;
    }

    .navbar .hamburger span {
        width: 22px !important;
        height: 2.5px !important;
    }
}