:root {
    --primary-color: #00A779;
    --primary-dark: #008d66;
    --secondary-color: #F7941D;
    --dark-color: #1A3056;
    --light-color: #F8F9FA;
    --light-primary: rgba(0, 167, 121, 0.1);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

/* Import Plus Jakarta Sans font */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #2D2D2D;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    background-color: white;
    padding: 0.5rem 1rem;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .navbar-brand img {
        height: 48px;
        width: auto;
    }

.navbar-brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.2;
    margin: 0;
    color: var(--dark-color);
}

.brand-subtitle {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark-color);
    margin: 0;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 600;
    padding: 1rem 1.25rem;
    position: relative;
    transition: var(--transition);
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--primary-color);
    }

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        right: 50%;
        height: 3px;
        background-color: var(--primary-color);
        transition: var(--transition);
        opacity: 0;
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        left: 0;
        right: 0;
        opacity: 1;
    }

    .login-btn {
        background-color: var(--primary-color);
        color: white !important;
        border-radius: 30px;
        padding: 0.6rem 1.8rem !important;
        font-weight: 600;
        transition: var(--transition);
        border: 2px solid var(--primary-color);
    }

    .login-btn:hover {
        background-color: white;
        color: var(--primary-color) !important;
    }

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    background: linear-gradient(rgba(26, 48, 86, 0.7), rgba(0, 167, 121, 0.7)), url('https://images.unsplash.com/photo-1555899434-94d1368aa7af?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    padding: 2rem;
    color: white;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.7s;
}

.hero-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(247, 148, 29, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.9s;
}

    .hero-btn:hover {
        background-color: white;
        color: var(--secondary-color);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(247, 148, 29, 0.4);
    }

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 48, 86, 0.9), rgba(0, 167, 121, 0.9));
    opacity: 1;
    animation: fadeOverlay 1.5s ease forwards;
}

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

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

@keyframes fadeOverlay {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    position: relative;
    padding: 1rem;
}

    .section-title::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: var(--primary-color);
        border-radius: 2px;
    }

.sub-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    position: relative;
    padding: 0.2rem;
}

    .sub-section-title::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: var(--primary-color);
        border-radius: 2px;
    }

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
    color: #666;
    font-size: 1.1rem;
}

/* Quote Block */
.quote-block {
    background-color: var(--light-primary);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem auto;
    max-width: 800px;
    position: relative;
    box-shadow: var(--box-shadow);
}

    .quote-block::before,
    .quote-block::after {
        content: '"';
        position: absolute;
        font-size: 6rem;
        color: var(--primary-color);
        opacity: 0.2;
        line-height: 1;
    }

    .quote-block::before {
        top: -10px;
        left: 20px;
    }

    .quote-block::after {
        bottom: -50px;
        right: 20px;
    }

.quote-text {
    font-style: italic;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    color: var(--primary-dark);
    font-weight: 500;
    margin: 0;
}

/* Service Cards */
.service-grid {
    margin-top: 3rem;
}

.service-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

    .service-card:hover {
        /* transform: translateY(-10px); */
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

.service-card-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 205px;
    background: linear-gradient(to top, rgba(0, 118, 106, 0.7), rgba(0, 118, 106, 0));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-card-overlay {
    opacity: 1;
}

.service-card-body {
    padding: 1.5rem;
    position: relative;
}

.service-card-icon {
    position: absolute;
    top: -30px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 167, 121, 0.3);
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.service-card-text {
    color: #666;
    margin-bottom: 1.25rem;
}

.service-card-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

    .service-card-link i {
        margin-left: 5px;
        transition: var(--transition);
    }

    .service-card-link:hover {
        color: var(--primary-dark);
    }

        .service-card-link:hover i {
            transform: translateX(5px);
        }

/* Contact Section */
.contact-section {
    background-color: var(--light-color);
    border-radius: 50px 50px 0 0;
}

.contact-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.text-justify {
    text-align: justify;
}

.contact-card:hover .contact-icon {
    background-color: var(--primary-color);
    color: white;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-text {
    color: #666;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

    .contact-link:hover {
        color: var(--primary-dark);
    }

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-primary);
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

    .social-link:hover {
        background-color: var(--primary-color);
        color: white;
        transform: translateY(-3px);
    }

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

/* Business Hours */
.business-hours {
    background-color: var(--light-primary);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.hours-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(0, 167, 121, 0.2);
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
}

    .hours-row:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

.day {
    font-weight: 600;
    color: var(--dark-color);
}

.closed {
    color: #e74c3c;
    font-weight: 600;
}

/* Footer */
footer {
    color: white;
    padding: 5rem 0 1rem;
}

.second-footer {
    background-color: #00A779;
    color: white;
    padding: 1rem 0;
    margin-top: 3rem;
}

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

    .footer-logo img {
        height: 60px;
        width: auto;
        background-color: white;
        border-radius: 50%;
        padding: 8px;
    }

.footer-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.footer-subtitle {
    font-size: 0.7rem;
    margin: 0;
    opacity: 0.8;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

    .footer-heading::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background-color: var(--secondary-color);
        border-radius: 1.5px;
    }

.footer-text {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.footer-contact {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

    .footer-contact i {
        min-width: 20px;
        margin-right: 15px;
        margin-top: 5px;
        color: var(--secondary-color);
    }

.footer-contact-text {
    opacity: 0.8;
}

.footer-link {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

    .footer-link:hover {
        color: var(--secondary-color);
        opacity: 1;
    }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background-color: var(--primary-dark);
        transform: translateY(-5px);
        color: white;
    }

/* Responsive Adjustments */
@media (max-width: 991px) {
    .navbar {
        padding: 0.5rem;
    }

    .navbar-brand {
        gap: 0.5rem;
    }

        .navbar-brand img {
            height: 40px;
        }

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

    .brand-subtitle {
        font-size: 0.6rem;
    }

    .hero-section {
        height: 500px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .navbar-brand-text {
        display: none;
    }

    .hero-section {
        height: 450px;
        text-align: center;
        border-radius: 0 0 30px 30px;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .quote-text {
        font-size: 1.1rem;
    }

    .service-card-body {
        padding: 1.25rem;
    }

    .contact-section {
        border-radius: 30px 30px 0 0;
    }
}

@media (max-width: 575px) {
    .hero-section {
        height: 400px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .quote-block {
        padding: 1.5rem;
    }

    .quote-text {
        font-size: 1rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .contact-title {
        font-size: 1.1rem;
    }

    .map-container {
        height: 300px;
    }
}

/* Shared Slider Styling */
.services-section .carousel {
    margin-bottom: 40px;
}

.services-section .carousel-control-prev,
.services-section .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(76, 175, 80, 0.7);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.services-section .carousel-indicators button {
    background-color: #ccc;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 4px;
}

    .services-section .carousel-indicators button.active {
        background-color: #4CAF50;
    }

/* Desktop Slider */
#serviceSliderDesktop .carousel-indicators {
    bottom: -70px;
}

#serviceSliderDesktop .carousel-control-prev {
    left: -20px;
}

#serviceSliderDesktop .carousel-control-next {
    right: -20px;
}

/* Mobile Slider */
#serviceSliderMobile .service-card {
    margin: 0 auto;
    max-width: 320px;
}

#serviceSliderMobile .carousel-control-prev {
    left: -5px;
}

#serviceSliderMobile .carousel-control-next {
    right: -5px;
}

.mobile-indicators {
    bottom: -70px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 575px) {

    .services-section .carousel-control-prev,
    .services-section .carousel-control-next {
        width: 30px;
        height: 30px;
    }
}

/* Touch-friendly swipe for mobile */
.carousel-inner {
    touch-action: pan-y;
}


.breadcrumb {
    padding: 1rem 0;
    margin-bottom: 1rem;
    background-color: transparent;
}

.breadcrumb-item a {
    color: #00A779;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #666;
}


.map-container {
    position: relative;
    height: 500px;
    background-color: #f0f0f0;
}

#map {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.map-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background: white;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.map-control-btn {
    border: none;
    background: white;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
}

    .map-control-btn:hover {
        background: #f1f1f1;
    }

.data-card {
    background: white;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    height: 100%;
    transition: transform 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

    .data-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        color: inherit;
    }

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(0, 150, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

    .icon-circle i {
        font-size: 24px;
        color: #00A779;
    }

footer {
    background-color: #00A779;
    color: white;
    padding: 1rem 0;
    margin-top: 3rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
    color: white;
    text-decoration: none;
}

    .social-icon:hover {
        background-color: rgba(255, 255, 255, 0.3);
        color: white;
    }

.circle-marker {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 22px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
}

.tps-marker {
    background-color: #00A779;
}

.bank-marker {
    background-color: #4296F3;
}

.aqi-map-container {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.map-footer {
    background-color: white;
    padding: 0.75rem 1rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.map-footer-icon {
    color: #666;
    margin-right: 0.5rem;
}

.map-fullscreen-link {
    color: #4296F3;
    text-decoration: none;
    font-weight: 500;
}

/*Kualitas Lingkungan*/
.page-header {
    text-align: left;
    padding: 0.8rem 0;
    border-bottom: 3px solid var(--primary);
}

.page-description {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #666;
}

.stats-card {
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    background-color: white;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-title {
    font-size: 0.9rem;
    color: #555;
    font-weight: 600;
}

.stat-description {
    font-size: 0.8rem;
    color: #777;
}

.section-card {
    background-color: var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.section-header {
    background-color: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
}

    .section-header .icon {
        width: 36px;
        height: 36px;
        background-color: var(--primary-dark);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
    }

        .section-header .icon i {
            color: var(--primary);
            font-size: 1.2rem;
        }

.section-body {
    padding: 1.5rem;
    background-color: white;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

    .info-item-header .number {
        width: 24px;
        height: 24px;
        background-color: var(--light-green);
        color: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        font-weight: 600;
        margin-right: 0.75rem;
    }

    .info-item-header .title {
        font-weight: 600;
        color: #333;
    }

.info-item-body {
    padding-left: 2.5rem;
}

.info-list {
    list-style-type: none;
    padding-left: 1rem;
    position: relative;
}

    .info-list li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.5rem;
    }

        .info-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.65rem;
            width: 8px;
            height: 8px;
            background-color: var(--primary);
            border-radius: 50%;
        }

.info-section {
    background-color: var(--light-green);
    border-left: 4px solid var(--primary);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 0 4px 4px 0;
}

.table-container {
    margin-top: 1.5rem;
}

.table {
    font-size: 0.9rem;
}

    .table th {
        background-color: var(--light-gray);
        font-weight: 600;
    }

.status-indicator {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.status-good {
    background-color: #28a745;
}

.status-light {
    background-color: #ffc107;
}

.status-medium {
    background-color: #fd7e14;
}

.status-bad {
    background-color: #dc3545;
}

.parameter-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    color: white;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.badge-teal {
    background-color: #20c997;
}

.badge-cyan {
    background-color: #17a2b8;
}

.badge-blue {
    background-color: #007bff;
}

.badge-purple {
    background-color: #6f42c1;
}

.badge-pink {
    background-color: #e83e8c;
}

.badge-orange {
    background-color: #fd7e14;
}

.two-column-info {
    display: flex;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.column-left {
    flex: 1;
    min-width: 250px;
    margin-right: 1rem;
}

.column-right {
    flex: 2;
    min-width: 250px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

    .social-links a {
        color: white;
        background-color: rgba(255, 255, 255, 0.1);
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

        .social-links a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }

    .column-left, .column-right {
        flex: 100%;
        margin-right: 0;
    }
}

.dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: none;
    padding: 10px 0;
    margin-top: 8px;
    min-width: 250px;
}

    .dropdown-menu a {
        padding: 12px 20px;
        color: #2d3748;
        font-weight: 500;
        transition: all 0.2s ease;
    }

        .dropdown-menu a:hover {
            background-color: #f0f9f7;
            color: #00766a;
            padding-left: 24px;
        }

        .dropdown-menu a.active {
            background-color: #e6f5f3;
            color: #00766a;
            border-left: 3px solid #00766a;
        }

        /* Add a subtle divider between items */
        .dropdown-menu a:not(:last-child) {
            border-bottom: 1px solid #f2f2f2;
        }


.second-navbar {
    background-color: var(--primary-color);
}

    .second-navbar .nav-link {
        color: white;
        padding: 0.5rem 1rem;
    }

        .second-navbar .nav-link:hover {
            background-color: rgba(255,255,255,0.1);
        }

.card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    border: none;
}

.card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 15px;
}

.primary-icon {
    background-color: var(--light-primary);
    color: var(--primary-color);
}

.secondary-icon {
    background-color: var(--light-secondary);
    color: var(--secondary-color);
}

.light-blue-icon {
    background-color: rgba(100, 149, 237, 0.1);
    color: cornflowerblue;
}

.light-violet-icon {
    background-color: rgba(123, 104, 238, 0.1);
    color: mediumslateblue;
}

.data-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0;
}

.data-label {
    color: #777;
    font-size: 0.9rem;
}

.status-badge {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.status-active {
    background-color: var(--light-primary);
    color: var(--primary-color);
}

.status-operational {
    background-color: rgba(100, 149, 237, 0.1);
    color: cornflowerblue;
}

.status-repair {
    background-color: var(--light-secondary);
    color: var(--secondary-color);
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.map-controls {
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}

.tab-btn {
    background-color: transparent;
    border: 1px solid #ddd;
    color: #555;
    margin-right: 5px;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 0.85rem;
}

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

.regional-data-card {
    padding: 15px;
    border-left: 4px solid cornflowerblue;
}

.tps-table {
    font-size: 0.9rem;
}

    .tps-table th {
        font-weight: 600;
        color: #555;
    }

.feature-card {
    text-align: center;
    padding: 25px 15px;
    height: 100%;
    transition: transform 0.2s;
}

    .feature-card:hover {
        transform: translateY(-5px);
    }

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    font-size: 1.75rem;
}

.contact-section {
    background-color: #f9f9f9;
    padding: 40px 0;
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-right: 10px;
    transition: background-color 0.3s;
}

    .social-links a:hover {
        background-color: #008855;
    }

@media (max-width: 575px) {
    #footer-bottom {
        text-align: center;
    }
}

.map-container {
    position: relative;
    height: 500px;
    background-color: #f0f0f0;
}

#map {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.map-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background: white;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.map-control-btn {
    border: none;
    background: white;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
}

.map-control-btn:hover {
    background: #f1f1f1;
}

.data-card {
    background: white;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    height: 100%;
    transition: transform 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.data-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: inherit;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(0, 150, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.circle-marker {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 22px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
}

.tps-marker {
    background-color: #00A779;
}

.bank-marker {
    background-color: #4296F3;
}

.aqi-map-container {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.map-footer {
    background-color: white;
    padding: 0.75rem 1rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.map-footer-icon {
    color: #666;
    margin-right: 0.5rem;
}

.map-fullscreen-link {
    color: #4296F3;
    text-decoration: none;
    font-weight: 500;
}