:root {
    --primary-color: #0088cc;
    --primary-gradient: linear-gradient(135deg, #0088cc 0%, #00aaff 100%);
    --secondary-color: #f15a24;
    --secondary-gradient: linear-gradient(135deg, #f15a24 0%, #ff7e5f 100%);
    --accent-color: #ff3b3b;
    --bg-light: #f4f7f9;
    --text-dark: #1a1a1b;
    --text-muted: #5f6368;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 45px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navbar */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

/* Top Nav */
.top-nav {
    background-color: var(--bg-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lang-switch {
    display: flex;
    gap: 5px;
}

.lang {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    background: #ccc;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
}

.lang.active {
    background: var(--primary-color);
}

.top-right-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}

.top-link:hover {
    color: var(--primary-color);
}

.donate-btn {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(255, 59, 59, 0.3);
    animation: pulse-red 2.5s infinite;
}

.donate-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 59, 59, 0.4);
    background: #ff2525;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 59, 59, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0);
    }
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.search-trigger {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

/* Second Nav */
.second-nav {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: var(--shadow);
}

.second-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-menu {
    display: flex;
    gap: 30px;
    flex: 1;
}

.right-menu {
    justify-content: flex-end;
}

.nav-item {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-item:hover::after {
    width: 100%;
}

.nav-item:hover {
    color: var(--secondary-color);
}

.logo-container {
    background: var(--white);
    padding: 0;
    border-radius: 50%;
    margin-top: -30px;
    margin-bottom: -30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border: 4px solid var(--white);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: none;
}

.logo-container a {
    display: block;
    width: 100%;
    height: 100%;
}

.logo-container:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.main-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Map Section */
.content-wrapper.map-full-width {
    padding: 0;
    width: 100%;
}

.map-container-relative {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Fixes side panel overflow */
}


#map {
    height: 60vh;
    /* Reduced height as requested */
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    filter: brightness(0.9) contrast(1.1);
    z-index: 5;
}

.map-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
    pointer-events: none;
    animation: slide-in-right 1s ease-out;
}

.map-badge i {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

@keyframes slide-in-right {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Search Section */
.search-section {
    background: var(--white);
    padding: 60px 0;
    margin-top: -50px;
    /* Overlap with map slightly for dynamic look */
    position: relative;
    z-index: 10;
}

.search-card {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-medium);
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.search-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
}

.search-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.search-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.search-input-group {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border-radius: 100px;
    padding: 10px 12px 10px 30px;
    transition: var(--transition);
    border: 2px solid #edf2f7;
}

.search-input-group:focus-within {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 136, 204, 0.1);
}

.search-icon {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-right: 20px;
}

.search-input-group input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-size: 1.15rem;
    font-family: inherit;
    font-weight: 500;
    color: var(--text-dark);
}

.search-btn {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(241, 90, 36, 0.3);
}

.search-btn:hover {
    transform: translateX(3px);
    background: #e04b1a;
    box-shadow: 0 6px 20px rgba(241, 90, 36, 0.4);
}

.search-suggestions {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-height: 250px;
    overflow-y: auto;
    border-radius: 12px;
}

.suggestion-item {
    background: var(--white);
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 8px;
    text-align: left;
    transition: var(--transition);
    border: 1px solid transparent;
}

.suggestion-item:hover {
    background: #f0f7ff;
    border-color: var(--primary-color);
    padding-left: 25px;
}

/* Provinces Slider Section */
.provinces-section {
    background: #f0f4f8;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.provinces-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 20px 5px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.provinces-slider::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.province-box {
    flex: 0 0 170px;
    height: 110px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid #edf2f7;
    user-select: none;
    box-shadow: var(--shadow-soft);
}

.province-box:hover {
    background: var(--primary-gradient);
    color: var(--white);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 136, 204, 0.25);
    border-color: transparent;
}

.province-name {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.province-plate {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.7;
    margin-top: 5px;
}

.slider-nav {
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 5;
    flex-shrink: 0;
}

.slider-nav:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 6px 15px rgba(0, 136, 204, 0.3);
}

/* Leaflet Overrides */
.leaflet-container {
    background: #f0f0f0;
}

/* Responsive */
/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 10px 25px rgba(0, 136, 204, 0.3);
    z-index: 2000;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 136, 204, 0.4);
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .second-nav-content {
        justify-content: center;
    }

    .logo-container {
        margin-top: 0;
        margin-bottom: 0;
    }
}

/* ========================================
   FOOTER STYLES - Modern & Voluminous Design
   ======================================== */

.main-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements */
.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 180, 216, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.main-footer .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

/* Column Styles */
.footer-col {
    animation: fadeInUp 0.8s ease-out;
}

.footer-col h2,
.footer-col h3,
.footer-col h4 {
    margin-bottom: 25px;
    font-weight: 700;
}

/* Organization Info Column */
.info-col .footer-brand {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #00d4ff;
    text-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
    font-weight: 800;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #00d4ff;
    transition: all 0.3s ease;
}

.contact-info li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-left-color: #ff6b6b;
}

.contact-info b {
    display: block;
    color: #00d4ff;
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #00d4ff;
}

/* Social Media Column */
.social-col .footer-title {
    font-size: 1.3rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
}

.social-col .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #ff6b6b);
    border-radius: 2px;
}

.footer-social-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-links li {
    margin-bottom: 15px;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.footer-social-links a:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: #00d4ff;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.footer-social-links i {
    font-size: 1.3rem;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

/* Newsletter Column */
.newsletter-col .footer-title {
    font-size: 1.3rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
}

.newsletter-col .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #00d4ff);
    border-radius: 2px;
}

.newsletter-desc {
    margin-bottom: 25px;
    color: #b8c1ec;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.newsletter-form input::placeholder {
    color: #8892b0;
}

.newsletter-form button {
    padding: 15px 30px;
    background: linear-gradient(135deg, #00d4ff, #0096c7);
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #0096c7, #00d4ff);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.newsletter-form button i {
    font-size: 1.1rem;
}

/* Site Statistics */
.site-stats {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.stats-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #00d4ff;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: scale(1.05);
}

.stat-item i {
    font-size: 2rem;
    color: #00d4ff;
    margin-bottom: 10px;
    display: block;
}

.stat-item span {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.stat-item small {
    display: block;
    color: #b8c1ec;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    text-align: center;
    margin: 0;
    color: #b8c1ec;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-footer {
        padding: 50px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info-col .footer-brand {
        font-size: 1.2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 40px 0 0;
    }

    .footer-grid {
        gap: 30px;
    }

    .contact-info li {
        padding: 12px;
    }

    .footer-social-links a {
        padding: 12px 15px;
    }

    .site-stats {
        padding: 20px;
    }
}

/* Marker Cluster Customization */
.marker-cluster-small {
    background-color: rgba(0, 136, 204, 0.6);
}

.marker-cluster-small div {
    background-color: rgba(0, 136, 204, 0.6);
    color: white;
}

.marker-cluster-medium {
    background-color: rgba(241, 90, 36, 0.6);
}

.marker-cluster-medium div {
    background-color: rgba(241, 90, 36, 0.6);
    color: white;
}

.marker-cluster-large {
    background-color: rgba(255, 59, 59, 0.6);
}

.marker-cluster-large div {
    background-color: rgba(255, 59, 59, 0.6);
    color: white;
}

/* Map Popup Styling */
.popup-content {
    min-width: 200px;
    max-width: 250px;
    font-family: 'Outfit', sans-serif;
}

.popup-image {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #eee;
}

.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.popup-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 12px;
}

.popup-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.popup-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.gmaps-btn {
    background: #4285F4;
    color: white;
}

.gmaps-btn:hover {
    background: #3367D6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.wiki-btn {
    background: #f8f9fa;
    color: #202124;
    border: 1px solid #dadce0;
}

.wiki-btn:hover {
    background: #f1f3f4;
    transform: translateY(-2px);
}

.leaflet-popup-content-wrapper {
    border-radius: 20px;
    padding: 15px;
    box-shadow: var(--shadow-medium);
}

.leaflet-popup-tip {
    background: white;
}

/* Contact Page Specific Styles */
.contact-page-section {
    padding: 60px 0;
    background: #d1d5db;
}

.contact-card {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    text-align: center;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.info-icon {
    width: 80px;
    height: 80px;
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #0088cc;
    transition: var(--transition);
}

.info-item:hover .info-icon {
    transform: scale(1.1);
    background: #0088cc;
    color: white;
    border-color: #0088cc;
}

.info-item p {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.contact-desc {
    padding: 25px;
    background: #f8fafc;
    border-left: 5px solid #0088cc;
    border-radius: 12px;
    margin-bottom: 40px;
}

.contact-desc p {
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    background: #f8fafc;
    border: 2px solid #edf2f7;
    border-radius: 12px;
    outline: none;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0088cc;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 136, 204, 0.1);
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.captcha-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.captcha-box {
    background: #eee;
    padding: 10px 20px;
    font-weight: 700;
    letter-spacing: 5px;
    font-size: 1.2rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    color: #555;
    user-select: none;
}

.captcha-group input {
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    width: 180px;
}

.submit-btn {
    background: #0088cc;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.submit-btn:hover {
    background: #0077b3;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
}

.small-map #map {
    height: 400px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* --- About Page Styles --- */
.about-page-wrapper {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
}

.about-hero {
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background: transparent;
    /* Background is now on the wrapper */
}

.about-hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.about-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.about-main-section {
    padding-bottom: 100px;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 45px;
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    color: white;
}

.about-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-card i {
    font-size: 3.5rem;
    color: var(--gold-vibrant);
    margin-bottom: 30px;
    display: block;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.about-card h3 {
    font-size: 1.9rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-text-section {
    padding: 80px 50px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 80px;
    color: white;
}

.about-content-inner {
    max-width: 900px;
    margin: 0 auto;
}

.about-content-inner h2 {
    font-size: 2.8rem;
    color: var(--gold-vibrant);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 800;
}

.about-content-inner p {
    font-size: 1.2rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .about-hero {
        height: 350px;
    }

    .about-hero-content h1 {
        font-size: 2.8rem;
    }

    .about-text-section {
        padding: 40px 25px;
        border-radius: 20px;
        margin: 0 15px 40px;
    }
}

/* ========================================
   SIDE PANEL (GOOGLE MAPS STYLE)
   ======================================== */

.side-panel {
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    width: 400px;
    background: var(--white);
    z-index: 1001;
    border-radius: 25px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transform: translateX(calc(100% + 40px));
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.side-panel.active {
    transform: translateX(0);
}

.close-panel-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.close-panel-btn:hover {
    background: var(--white);
    transform: rotate(90deg);
    color: var(--accent-color);
}

.panel-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.panel-image {
    width: 100%;
    height: 250px;
    background: #f1f5f9;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.panel-image:hover img {
    transform: scale(1.05);
}

.panel-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.panel-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

.panel-actions {
    display: flex;
    gap: 12px;
}

.panel-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 15px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.panel-btn.primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.panel-btn.primary:hover {
    background: #0077b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

/* ========================================
   LOGIN PAGE STYLES
   ======================================== */

.login-wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../../assets/images/about-bg.jpg') no-repeat center center/cover;
    position: relative;
}

.login-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Dark overlay */
    backdrop-filter: blur(8px);
}

.login-container {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    margin: 20px;
}

.login-header {
    text-align: center;
    margin-bottom: 35px;
}

.login-logo {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 136, 204, 0.3);
}

.login-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 800;
}

.login-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.login-form .input-group {
    position: relative;
    margin-bottom: 20px;
}

.login-form .input-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
}

.login-form input {
    width: 100%;
    padding: 16px 16px 16px 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    background: #f8fafc;
}

.login-form input:focus {
    border-color: var(--primary-color);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 136, 204, 0.1);
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    cursor: pointer;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.login-btn {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: none;
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 136, 204, 0.4);
}

.login-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.login-footer p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.login-footer a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

/* Navbar Login Link */
.login-nav-link {
    color: var(--text-dark) !important;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    text-decoration: none;
    font-weight: 600;
}

.login-nav-link:hover {
    color: var(--primary-color) !important;
    text-shadow: none;
}




.panel-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin: 10px 0;
}

.panel-info-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.info-item-mini i {
    width: 20px;
    color: var(--primary-color);
}

.panel-description-wrapper {
    background: #f8fafc;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.panel-desc {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    opacity: 0.9;
}

/* Responsive adjustment for side panel */
@media (max-width: 600px) {
    .side-panel {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
        top: auto;
        bottom: 20px;
        height: 70vh;
        transform: translateY(calc(100% + 40px));
    }

    .side-panel.active {
        transform: translateY(0);
    }
}

/* ========================================
   TOAST NOTIFICATION STYLES
   ======================================== */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.toast {
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid #4ade80;
    /* Green success border */
}

.toast.show {
    transform: translateX(0);
}

.toast-icon {
    width: 30px;
    height: 30px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    flex-shrink: 0;
}

.toast-content h4 {
    margin: 0 0 5px 0;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
}

.toast-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.toast-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #94a3b8;
    cursor: pointer;
    transition: 0.2s;
    background: none;
    border: none;
    font-size: 1rem;
}

.toast-close:hover {
    color: #64748b;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: #4ade80;
    /* Green */
    width: 100%;
    transform-origin: left;
    transform: scaleX(1);
}

.toast-progress.animating {
    animation: toastProgress linear forwards;
}

/* ========================================
   CMS LIVE EDITOR STYLES
   ======================================== */
.cms-editing-body {
    padding-bottom: 80px;
    /* Space for toolbar */
}

/* Active Editable Element */
.cms-editable-active {
    outline: 2px dashed #3b82f6;
    outline-offset: 4px;
    cursor: text;
    border-radius: 4px;
    background: rgba(59, 130, 246, 0.05);
    transition: all 0.2s ease;
    position: relative;
}

.cms-editable-active:hover {
    outline-color: #2563eb;
    background: rgba(59, 130, 246, 0.1);
}

.cms-editable-active:focus {
    outline: 2px solid #2563eb;
    background: white;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Editor Toolbar */
.cms-toolbar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    /* Hidden by default */
    background: #1e293b;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cms-toolbar.show {
    transform: translateX(-50%) translateY(0);
}

.cms-status {
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cms-status-dot {
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.cms-action-btn {
    background: white;
    color: #1e293b;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.cms-action-btn:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes toastProgress {
    to {
        transform: scaleX(0);
    }
}

@keyframes fadeUpOut {
    0% {
        opacity: 0;
        transform: translate(-50%, 10px);
    }

    20% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    80% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
}