/*INDEX.html*/
:root {
    --lgu-green: #0e5e36;
    --lgu-green-light: #4CAF50;
    --lgu-yellow: #ffea07;
    --text-black: #000000;
    --text-white: #ffffff;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1; 
}

::-webkit-scrollbar-thumb {
    background: #0E5E36;
    border-radius: 6px;
    border: 3px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: #084226;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── HAMBURGER BUTTON ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: 2px solid var(--lgu-green);
    border-radius: 8px;
    cursor: pointer;
    padding: 6px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2.5px;
    background-color: var(--lgu-green);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── MOBILE NAV ── */
@media (max-width: 960px) {
    .top-nav {
        position: relative;
        padding: 0;
    }

    .nav-flex {
        flex-wrap: nowrap;
        align-items: center;
        padding: 10px 16px;
        gap: 10px;
        position: relative;
    }

    .nav-brand { margin-right: 0; flex-shrink: 0; }

    .brand-text {
        margin-left: 0 !important;
        font-size: 2.2rem !important;
        letter-spacing: -1px;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .nav-right-group { display: none !important; }

    .nav-links {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        margin: 0;
        padding: 0;
        gap: 0;
        background: #fff;
        border-top: 2px solid var(--lgu-green);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        z-index: 998;
        list-style: none;
    }
    .nav-links.open { display: flex !important; }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    .nav-links li:last-child { border-bottom: none; }

    .nav-links li a,
    .nav-links li .dropbtn {
        display: flex !important;
        align-items: center;
        padding: 14px 20px;
        font-size: 1rem !important;
        font-weight: 700;
        color: var(--lgu-green) !important;
        text-decoration: none;
        white-space: normal;
        transition: background 0.2s, padding-left 0.2s;
    }
    .nav-links li a:hover,
    .nav-links li .dropbtn:hover {
        background-color: #f0faf4;
        padding-left: 28px;
        color: var(--lgu-green) !important;
    }

    .dropdown-content {
        position: static !important;
        display: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        border-left: 4px solid var(--lgu-yellow);
        margin-left: 20px;
        animation: none !important;
        min-width: unset;
    }
    .dropdown.open .dropdown-content { display: block !important; }
    .dropdown:hover .dropdown-content { display: none !important; }
    .dropdown.open:hover .dropdown-content { display: block !important; }

    .dropdown-content a {
        font-size: 0.9rem !important;
        padding: 11px 16px;
        color: #333 !important;
        border-bottom: 1px solid #f5f5f5;
    }
    .dropdown-content a:last-child { border-bottom: none; }
}

/* ── OFFICES HEADER FIX ── */
.offices-header {
    color: var(--lgu-green) !important;
    -webkit-text-stroke: 0 !important;
    text-shadow: none !important;
}

/* ── HERO MIN-HEIGHT MOBILE ── */
@media (max-width: 900px) {
    .hero-section { min-height: 400px; }
}

/* ── FOOTER MIN-WIDTH FIX ── */
@media (max-width: 768px) {
    .footer-brand { min-width: unset !important; width: 100%; }
}

/* ── HOTLINES SECTION ── */
.hotlines-section {
    padding: 2rem 0;
    background: transparent;
}
.hotlines-header {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    color: var(--lgu-green);
    text-transform: uppercase;
    margin-bottom: 50px;
}
.hotlines-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
}
.hotline-card {
    background: #fff;
    border: 2px solid #2c7a4d;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    text-align: center;
    min-width: 180px;
    max-width: 200px;
    flex: 1 1 160px;
    box-shadow: 0 4px 12px rgba(44, 122, 77, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}
.hotline-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(44, 122, 77, 0.2);
}
.hotline-icon {
    font-size: 2rem;
    color: #f4b41a;
    margin-bottom: 0.6rem;
}
.hotline-card h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2c7a4d;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hotline-card p {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin: 2px 0;
}
@media (max-width: 600px) {
    .hotlines-header { font-size: 1.8rem; }
    .hotline-card {
        min-width: 140px;
        max-width: 100%;
        flex: 1 1 45%;
        padding: 1rem;
    }
}

.top-nav {
    background-color: var(--text-white);
    padding: 5px 0;
    border-bottom: 1px solid #ddd;

    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.nav-flex {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-brand {
    margin-right: 100px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown .dropbtn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 4px;
    top: 100%;
    left: 0;
    overflow: hidden;
    animation: fadeIn 0.2s ease-in-out;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--lgu-green);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

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

.dropdown-content a:hover {
    background-color: var(--lgu-green);
    padding-left: 20px;
}

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

.brand-text {
    font-weight: 900;
    font-size: 3.7rem;
    color: var(--lgu-green);
    letter-spacing: -2px;
    line-height: 1;
    margin-left: -300px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.brand-text:hover {
    color: var(--lgu-yellow);
    text-shadow: 0 0 15px rgba(255, 234, 7, 0.5);
    transform: scale(1.05);
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin-top: 12px;
    margin-left: -70px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-black);
    font-weight: 700;
    font-size: 1.7rem;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--lgu-yellow);
}

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-left: auto;
    padding-left: 40px;
}

.pst-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0.8rem;
    text-align: right;
    color: var(--text-black);
    line-height: 1.2;
    min-width: 160px;
}

.pst-label {
    display: block;
    font-weight: 800;
    color: var(--lgu-green);
    font-size: 1.0rem;
}

.pst-time {
    display: block;
    font-weight: 800;
    white-space: nowrap;
    font-size: 0.90rem;
}

.search-container input {
    padding: 12px 12px;
    border-radius: 10px;
    border: 2px solid #555;
    outline: none;
    font-size: 0.9rem;
    font-weight: 700;
    width: 220px;
}

.green-header {
    background-color: var(--lgu-green);
    color: white;
    padding: 15px 0;
    position: relative;
    z-index: 20;
}

.green-header .container {
    max-width: 100%;
    padding: 0 50px;
    position: relative;
}

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

.brand-pill {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0 50px 50px 0;
    padding: 10px 40px 10px 0;
    margin-left: -50px;
    padding-left: 50px;
    gap: 20px;
}

.logos-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.vertical-divider {
    width: 3px;
    height: 60px;
    background-color: white;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.municipality-text h2 {
    color: white;
    font-size: 2.0rem;
    line-height: 1;
    font-weight: 800;
    text-shadow: 2px 3px 2px rgba(0, 0, 0, 0.8);
    margin: 0;
}

.municipality-text h2 span {
    font-weight: 800;
    font-size: 2.0rem;
    display: block;
    margin-top: 3px;
}

.slogan-group {
    position: absolute;
    right: 50px;
    top: 55%;
    transform: translateY(-50%);
    z-index: 25;
}

.hero-section {
    position: relative;
    height: 850px;
    width: 100%;
    background:
        linear-gradient(to bottom, rgba(76, 175, 80, 0.2), rgba(14, 94, 54, 0.9)),
        url('../../assets/Background-Mayor.png');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
    z-index: 1;
}

.hero-content-grid {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.hero-text-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 900px;
}

.graphic-logo-placeholder {
    height: 420px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.province-graphic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.district-text {
    font-size: 1.5rem;
    color: #f0f0f0;
    font-style: italic;
    margin-top: 0;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.festival-text {
    color: var(--lgu-yellow);
    font-weight: 900;
    font-size: 3.0rem;
    text-transform: uppercase;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 25px;
}

.mayor-name-group {
    margin-top: 10px;
}

.mayor-name-group h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
    line-height: 1.1;
    text-transform: uppercase;
    white-space: nowrap;
}

.mayor-name-group p {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ccc;
    text-transform: uppercase;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    margin-top: 5px;
}

.mayor-cutout {
    height: 112%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(-10px 0 20px rgba(0, 0, 0, 0.4));
}

.news-section {
    background-image:
    linear-gradient(
        to bottom,
        rgba(14, 94, 54, 0.9) 0%,
        rgba(14, 94, 54, 0.9) 1%,
        rgba(0, 128, 0, 0) 70%
    ),
    url('../../assets/news-section.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0 60px 0;
    width: 100%;
}

.news-header {
    text-align: center;
    color: #ffea07;
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 30px;
    letter-spacing: 1px;
    -webkit-text-stroke: 1px #ffffff;
}

.news-grid {
    display: flex;
    justify-content: center; 
    align-items: stretch;
    gap: 30px; 
    margin-bottom: 40px;
    flex-wrap: wrap;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
    opacity: 1;
    transform: translateX(0);
}

.news-grid.slide-out-left {
    opacity: 0;
    transform: translateX(-50px);
}

.news-grid.slide-out-right {
    opacity: 0;
    transform: translateX(50px);
}

.news-card {
    width: 31%;
    background: transparent;
    display: flex;
    flex-direction: column;
}

.news-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-image-box {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: transparent;
    border: none;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
}

.news-date {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 5px;
}

.news-title {
    color: #0e5e36;
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 10px;
    min-height: auto;
}

.news-desc {
    font-size: 1.00rem;
    font-weight: 500;
    line-height: 1.5;
    color: #333;
    margin-bottom: 10px;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    display: inline-block;
    padding: 10px 30px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: capitalize;
    margin-top: auto;
    align-self: flex-start;
}

.btn-filled {
    background-color: #0e5e36;
    color: white;
    border: 2px solid #0e5e36;
}

.btn-filled:hover {
    background-color: #083b22;
}

.btn-outline {
    background-color: transparent;
    color: #0e5e36;
    border: 2px solid #0e5e36;
}

.btn-outline:hover {
    background-color: #0e5e36;
    color: white;
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 50px;
    padding-bottom: 20px;
}

.page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--lgu-green);
    background-color: white;
    border: 2px solid var(--lgu-green);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.page-btn:hover {
    background-color: var(--lgu-green);
    color: #ffea07;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(14, 94, 54, 0.3);
    border-color: var(--lgu-green);
}

.page-btn.active {
    background-color: var(--lgu-green);
    color: white;
    pointer-events: none;
    transform: none;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.2);
}

.page-btn[style*="pointer-events:none"] {
    opacity: 0.4;
    background-color: #eee;
    border-color: #ccc;
    color: #999;
    box-shadow: none;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: white;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    overflow-y: auto; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: translateY(0);
}

.close-modal-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    width: 35px;
    height: 35px;
    background-color: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: #555;
    cursor: pointer;
    z-index: 20;
    transition: all 0.2s ease;
}

.close-modal-btn:hover {
    background-color: #ff4d4d;
    color: white;
}

.modal-img-container {
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.modal-img-container img {
    width: auto; 
    height: auto;
    max-width: 100%; 
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.news-desc-full {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    margin-top: 15px;
    white-space: pre-wrap;
}

.desc-link {
    color: #007bff !important;
    text-decoration: underline !important;
    font-weight: 700;
    cursor: pointer;
    word-break: break-all;
}

.desc-link:hover {
    color: #0056b3 !important;
}

.desc-hashtag {
    color: #0e5e36 !important;
    font-weight: 800;
}

.awards-section {
    background-image:
        linear-gradient(
            to bottom,
            rgba(14, 94, 54, 0.9) 0%,
            rgba(14, 94, 54, 0.9) 1%,
            rgba(0, 128, 0, 0) 70%
        ),
        linear-gradient(rgba(255, 255, 255, 0.295), rgba(255, 255, 255, 0.295)),
        url('../../assets/awards-background.png');
        
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
}

.awards-header {
    font-size: 3rem;
    font-weight: 900;
    color: #ffea07; 
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    -webkit-text-stroke: 1px #ffffff;
    margin-bottom: 50px;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1380px; 
    margin: 0 auto;
    padding: 0 20px; 
    box-sizing: border-box;
    overflow: visible;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    margin: 0 auto;
    width: fit-content;
    transition: transform 0.5s ease-in-out;
    list-style: none;
}

.award-card {
    min-width: 280px; 
    max-width: 280px;
    background: transparent;
    text-align: center;
    flex-shrink: 0;
}

.award-img-box {
    height: 250px;
    width: 100%;
    display: flex;
    align-items: flex-end; 
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.award-img-box img {
    max-height: 100%;
    max-width: 100%;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3)); 
}

.award-card:hover .award-img-box {
    transform: translateY(-10px) scale(1.05); 
}

.award-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0e5e36;
    line-height: 1.0;
    padding: 0 10px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    
    width: 50px;
    height: 50px;
    border-radius: 50%;
    
    background: white;
    border: 3px solid #0e5e36; 
    color: #0e5e36;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #0e5e36;
    color: #ffea07;
    border-color: #0e5e36;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.left {
    left: -60px; 
}
.carousel-btn.right {
    right: -60px;
    left: auto; 
}

@media (max-width: 1200px) {
    .pst-wrapper {
        display: none;
    }
    .hero-text-center {
        width: 55%;
        left: 2%;
    }
    .mayor-name-group h1 {
        font-size: 2rem;
        white-space: normal;
    }
    .graphic-logo-placeholder {
        height: 250px;
    }
}

@media (max-width: 900px) {
    .green-header .container {
        padding: 0 15px;
        flex-direction: column;
        gap: 15px;
    }
    .brand-pill {
        margin-left: 0;
        padding-left: 20px;
        border-radius: 50px;
        width: 100%;
        justify-content: center;
    }
    .slogan-group {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    .hero-section {
        height: auto;
        padding: 60px 0;
    }
    .hero-text-center {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 90%;
        margin: 0 auto 30px auto;
    }
    .graphic-logo-placeholder {
        height: auto;
        max-height: 200px;
    }
    .province-graphic {
        object-fit: contain;
    }
    .news-grid {
        flex-direction: column;
    }
    .news-card {
        width: 100%;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .carousel-wrapper {
        padding: 0 40px;
    }
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .carousel-btn.left { left: 5px; }
    .carousel-btn.right { right: 5px; }
}

.main-footer {
    background-color: var(--lgu-green);
    color: white;
    padding-top: 50px;
    margin-top: 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand {
    flex: 2; 
    display: flex;
    flex-direction: row; 
    align-items: center; 
    gap: 10px; 
    min-width: 550px;
}

.footer-brand-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.footer-brand-text h3 {
    font-size: 1.3rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 5px;
}

.footer-brand-text h3 span {
    font-size: 1.5rem;
    display: block;
}

.footer-brand-text p {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--lgu-yellow);
    font-style: italic;
}

.npc-seal {
    height: 200px;
    width: auto;
    background: none;
    padding: 0;
    border: none;
    transition: transform 0.3s ease;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

.npc-seal:hover {
    transform: scale(1.03);
}

.footer-links, .footer-contact {
    flex: 1;
    min-width: 220px;
}

.footer-links h4, .footer-contact h4 {
    color: var(--lgu-yellow);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--lgu-yellow);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--lgu-yellow);
    margin-top: 4px;
    width: 20px;
    text-align: center;
}

.footer-socials {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a i {
    color: var(--lgu-yellow) !important;
    font-size: 1.2rem;
}

.footer-socials a:hover {
    background-color: var(--lgu-yellow);
    transform: translateY(-3px);
}

.footer-socials a:hover i {
    color: var(--lgu-green) !important;
}

.footer-bottom {
    background-color: #083b22;
    padding: 25px 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

@media (max-width: 1100px) {
    .footer-brand {
        min-width: 100%;
        justify-content: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 900px) {
    .footer-grid {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    
    .footer-brand {
        flex-direction: column; 
        align-items: center;
        gap: 30px;
    }

    .footer-brand-main {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-socials {
        justify-content: center;
    }
    
    .npc-seal {
        height: 130px;
    }
}

.offices-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
    text-align: center;
}

.offices-header {
    font-size: 3rem;
    font-weight: 900;
    color: var(--lgu-yellow);
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    -webkit-text-stroke: 1px #ffffff;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    justify-items: center;
    align-items: start;
    width: 100%;
}

.office-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 250px;
    background: transparent;
}

.office-card:hover {
    transform: translateY(-10px); 
}
.office-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 50%; 
    filter: drop-shadow(0 8px 10px rgba(0,0,0,0.15));
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    background-color: white; 
    padding: 5px; 
}

.office-card:hover .office-logo {
    transform: scale(1.05); 
    filter: drop-shadow(0 12px 15px rgba(0,0,0,0.25));
}

.office-name {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--lgu-green);
    text-transform: uppercase;
    line-height: 1.3;
    margin-top: 10px;
}

#officials-modal .modal-content {
    background-color: #fff;
    border: 4px solid var(--lgu-green); 
}

#official-modal-title {
    color: var(--lgu-green);
    font-size: 2rem;
    line-height: 1.2;
    -webkit-text-stroke: 0;
    text-shadow: none;
}

@media (max-width: 1200px) {
    .offices-grid {
        grid-template-columns: repeat(3, 1fr); 
    }
}

@media (max-width: 900px) {
    .offices-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 30px;
    }
    .offices-header {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .offices-grid {
        grid-template-columns: 1fr;
    }
    .office-card {
        max-width: 100%;
        flex-direction: row; 
        text-align: left;
        align-items: center;
        padding: 10px 20px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    .office-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 0;
        margin-right: 20px;
    }
    .office-name {
        font-size: 0.95rem;
        margin-top: 0;
    }
}

/*VISION-MISSION.html*/
.sub-header {
    background-color: var(--lgu-green);
    color: white;
    padding: 60px 0 40px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.sub-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 3px 4px 4px rgba(0, 0, 0, 0.6); 
}

.sub-header p {
    font-size: 1.3rem;      
    font-weight: 500;
    color: #ffea07;
    opacity: 1;
    letter-spacing: 1px;
    margin-top: 5px;
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.5);
}

.vm-section {
    padding: 80px 0;
    background-color: white;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    border-top: 5px solid var(--lgu-yellow);
    transition: transform 0.3s ease;
}

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

.vm-icon {
    font-size: 3rem;
    color: var(--lgu-green);
    margin-bottom: 20px;
    background: #e8f5e9;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.vm-card h2 {
    color: var(--lgu-green);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.vm-card p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
    text-align: justify; 
    text-justify: inter-word;
}

.goals-section {
    padding: 60px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--lgu-green);
    font-weight: 800;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--lgu-yellow);
    margin: 10px auto 0;
}

.goals-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444;
    font-size: 1.05rem;
    text-align: justify;
}

.goals-subtitle {
    margin-top: 30px;
    margin-bottom: 20px;
    color: var(--lgu-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.goals-list {
    list-style: none;
    padding: 0;
}

.goals-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    font-size: 1.05rem;
    color: #444;
}

.goals-list li span {
    font-weight: 700;
    color: #d4a017;
    margin-right: 10px;
}

.ambisyon-callout {
    margin-top: 60px;
    background-color: #f8fcf8;
    border-left: 5px solid var(--lgu-yellow);
    padding: 30px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.ambisyon-icon-small {
    font-size: 2.5rem;
    color: var(--lgu-green);
    flex-shrink: 0;
    margin-top: 5px;
}

.ambisyon-text h4 {
    color: var(--lgu-green);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.ambisyon-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: left; 
}

.seal-section {
    padding: 40px 0;
    background-color: white;
    border-bottom: 1px solid white;
}

.seal-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; 
    gap: 60px;
    align-items: center; 
}

.seal-main-display {
    text-align: center;
    position: relative;
}

.founding-year-box {
    margin-bottom: 30px;
    text-align: center;
}

.founding-year {
    font-size: 6rem;
    font-weight: 900;
    color: var(--lgu-green); 
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.founding-text {
    font-size: 1.2rem;
    color: black;
    font-weight: 600;
    margin: 0;
    opacity: 0.9;
}

.main-seal-img {
    width: 100%;
    max-width: 480px; 
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    transition: transform 0.5s ease;
}

.main-seal-img:hover {
    transform: scale(1.05);
}

.seal-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.symbol-item {
    display: flex;
    align-items: center; 
    gap: 30px; 
    padding: 25px; 
    background-color: #fcfcfc;
    border-radius: 12px;
    border-left: 6px solid var(--lgu-green); 
    box-shadow: 0 4px 6px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    position: relative;
}

.symbol-item:hover {
    background-color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transform: translateX(10px) scale(1.02);
    border-left-color: var(--lgu-yellow);
}

.click-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--lgu-green);
    font-weight: 600;
    margin-top: 5px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.symbol-item:hover .click-hint {
    opacity: 1;
}

.symbol-icon {
    flex-shrink: 0;
    width: 110px;  
    height: 110px; 
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    border: 2px solid #e0e0e0; 
    padding: 15px; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.symbol-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.symbol-text h4 {
    color: var(--lgu-green);
    font-size: 1.4rem; 
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.symbol-text p {
    font-size: 1.05rem; 
    color: #444;
    line-height: 1.6;
    margin: 0;
}

.seal-colors-box {
    margin-top: 30px;
    background-color: var(--lgu-green);
    color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(14, 94, 54, 0.25);
    border: 1px solid rgba(255,255,255,0.1);
}

.seal-colors-box h4 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 800;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding-bottom: 10px;
    color: var(--lgu-yellow);
    display: flex;
    align-items: center;
    gap: 10px;
}

.seal-colors-box ul {
    list-style: none;
    padding: 0;
}

.seal-colors-box li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.color-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid white;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.seal-modal-content {
    background-color: white;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    padding: 40px;
    position: relative;
    text-align: center;
    border-top: 8px solid var(--lgu-green);
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.modal-overlay.show .seal-modal-content {
    transform: scale(1);
    opacity: 1;
}

.seal-modal-icon-box {
    width: 150px;
    height: 150px;
    background: #f8fcf8;
    border-radius: 50%;
    margin: 0 auto 25px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--lgu-yellow);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.seal-modal-icon-box img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

#seal-modal-title {
    color: var(--lgu-green);
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.seal-divider {
    width: 60px;
    height: 4px;
    background: var(--lgu-yellow);
    border: none;
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

#seal-modal-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
}

@media (max-width: 900px) {
    .seal-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .seal-main-display {
        order: -1; 
    }

    .main-seal-img {
        max-width: 300px;
    }
    
    .symbol-item {
        flex-direction: row; 
        padding: 20px;
    }

    .symbol-icon {
        width: 90px;  
        height: 90px;
    }
}

@media (max-width: 768px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }
    
    .sub-header h1 {
        font-size: 2rem;
    }
    
    .vm-card {
        padding: 30px 20px;
    }

    .ambisyon-callout {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .ambisyon-text p {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .symbol-item {
        flex-direction: column; 
        text-align: center;
        gap: 15px;
    }

    .symbol-text h4 {
        font-size: 1.2rem;
    }
    
    .seal-modal-content {
        padding: 30px 20px;
    }
    
    .seal-modal-icon-box {
        width: 120px;
        height: 120px;
    }
}

/*HISTORY.html*/

.history-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    background-image: url('../../assets/lgusanmanuelfront.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 59, 34, 0.5);
}

.hero-text-container {
    position: relative;
    z-index: 2;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    backdrop-filter: blur(3px);
}

.history-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    text-shadow: 3px 4px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.history-hero p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffea07;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.history-section {
    padding: 80px 0;
    background: #f4f4f4;
}

.history-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.history-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--lgu-green);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--lgu-yellow);
    border: 4px solid var(--lgu-green);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.left::after {
    right: -14px;
}

.right::after {
    left: -14px;
}

.timeline-item .content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-top: 4px solid var(--lgu-green);
}

.timeline-item h2 {
    color: var(--lgu-green);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.timeline-item p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.leadership-box {
    background: white;
    padding: 40px;
    margin-top: 80px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid var(--lgu-yellow);
}

.leadership-box h2 {
    color: var(--lgu-green);
    font-size: 2rem;
    margin-bottom: 20px;
}

.leadership-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.leadership-box hr {
    border: 0;
    height: 1px;
    background: #ddd;
    margin: 20px auto;
    width: 50%;
}

@media screen and (max-width: 768px) {
    .history-hero {
        height: 50vh;
    }
    .history-hero h1 {
        font-size: 2.2rem;
    }
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 17px;
    }
    
    .left::after, .right::after {
        left: 17px;
    }
    
    .right {
        left: 0%;
    }
}

/*BARANGAYS.html*/

.gis-wrapper {
    display: flex;
    height: calc(100vh - 90px); 
    width: 100%;
    position: relative;
    overflow: hidden;
}

.gis-sidebar {
    width: 320px;
    background-color: #f8f9fa;
    border-right: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    z-index: 20;
    box-shadow: 4px 0 15px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.sidebar-top {
    background-color: var(--lgu-green);
    padding: 20px;
    color: white;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sidebar-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    background: white;
    object-fit: cover;
    display: block;
}

.user-profile h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.user-profile span {
    font-size: 0.8rem;
    opacity: 0.9;
}

.sidebar-content {
    padding: 20px;
    flex-grow: 1;
    overflow-y: auto;
}

.sidebar-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #888;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 5px;
}

.brgy-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    margin-bottom: 25px;
    border: 1px solid #e0e0e0;
}

.brgy-card h2 {
    color: var(--lgu-green);
    margin: 0 0 20px 0;
    font-size: 1.4rem;
    font-weight: 800;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.stat-icon {
    width: 35px;
    height: 35px;
    background: #e8f5e9;
    color: var(--lgu-green);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-weight: 700;
    font-size: 1rem;
    color: #333;
}

.stat-lbl {
    font-size: 0.75rem;
    color: #777;
    text-transform: uppercase;
}

.reset-btn {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    border: 1px solid var(--lgu-green);
    background: white;
    color: var(--lgu-green);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.reset-btn:hover {
    background: var(--lgu-green);
    color: white;
}

.legend-box {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
    max-height: 300px;
    overflow-y: auto; 
}

.l-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #555;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
}

.l-item:hover {
    background-color: #f0f0f0;
}

path.leaflet-interactive:focus {
    outline: none;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    display: inline-block;
    flex-shrink: 0;
}

#map {
    flex-grow: 1;
    height: 100%;
    background: #e5e5e5;
    z-index: 1;
}

.map-tooltip {
    background: transparent;
    border: none;
    box-shadow: none;
    font-weight: 700;
    color: #333;
    font-size: 0.8rem;
    text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
}

@media(max-width: 768px) {
    .gis-wrapper { flex-direction: column-reverse; height: auto; min-height: 100vh; }
    .gis-sidebar { width: 100%; height: auto; border-right: none; border-top: 1px solid #ddd; }
    #map { height: 60vh; }
}

/*POI.html*/
.poi-editorial-section {
    padding: 100px 0;
    background-color: #fbfbfb;
    overflow-x: hidden;
}
.poi-editorial-wrapper {
    display: flex;
    flex-direction: column;
    gap: 120px;
}
.poi-feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
}
.poi-feature-row:nth-child(even) {
    flex-direction: row-reverse;
}
.poi-img-col {
    flex: 1;
    position: relative;
}
.poi-img-wrapper {
    position: relative;
    border-radius: 15px;
    z-index: 2;
}
.poi-img-wrapper img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}
.poi-feature-row:hover .poi-img-wrapper img {
    transform: scale(1.02) translateY(-5px);
}
.poi-decor-box {
    position: absolute;
    top: 25px;
    left: -25px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--lgu-yellow);
    border-radius: 15px;
    z-index: 1;
    transition: all 0.5s ease;
}
.poi-feature-row:nth-child(even) .poi-decor-box {
    left: 25px;
    border-color: var(--lgu-green);
}
.poi-feature-row:hover .poi-decor-box {
    top: 15px;
    left: -15px;
}
.poi-feature-row:nth-child(even):hover .poi-decor-box {
    left: 15px;
}
.poi-text-col {
    flex: 1;
    padding: 20px;
}
.poi-feature-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--lgu-green);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 5px;
    letter-spacing: -1px;
}
.poi-feature-divider {
    width: 80px;
    height: 5px;
    background-color: var(--lgu-yellow);
    margin: 20px 0 30px 0;
    border-radius: 3px;
}
.poi-feature-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 35px;
}
.poi-text-col .read-more-btn {
    padding: 12px 35px;
    font-size: 1.1rem;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}
@media (max-width: 960px) {
    .poi-feature-row,
    .poi-feature-row:nth-child(even) {
        flex-direction: column;
        gap: 40px;
    }
    .poi-editorial-wrapper {
        gap: 80px;
    }
    .poi-img-wrapper img {
        aspect-ratio: 16 / 9;
    }
    .poi-decor-box {
        top: 15px;
        left: 15px;
    }
    .poi-feature-row:nth-child(even) .poi-decor-box {
        left: -15px;
    }
    .poi-text-col {
        padding: 0;
        text-align: center;
    }
    .poi-feature-divider {
        margin: 20px auto 30px auto;
    }
}
@media (max-width: 600px) {
    .poi-feature-title {
        font-size: 2.2rem;
    }
}
.poi-fullscreen-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.poi-fs-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.poi-fs-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.poi-fs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, rgba(14, 94, 54, 0.8) 100%);
}
.poi-fs-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: white;
    padding: 0 20px;
    transform: translateY(-20px);
}
.poi-fs-tagline {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lgu-yellow);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}
.poi-fs-title {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.4);
}
.poi-fs-title span {
    color: transparent;
    -webkit-text-stroke: 2px var(--lgu-yellow);
    text-shadow: none;
}
.poi-fs-desc {
    font-size: 1.25rem;
    line-height: 1.8;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.poi-fs-btn {
    display: inline-block;
    background-color: var(--lgu-green);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 15px 45px;
    border: 2px solid var(--lgu-green);
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.poi-fs-btn:hover {
    background-color: transparent;
    color: var(--lgu-yellow);
    border-color: var(--lgu-yellow);
    transform: translateY(-3px);
}
.poi-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: white;
    text-align: center;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
}
.poi-scroll-indicator:hover {
    opacity: 1;
    color: var(--lgu-yellow);
}
.scroll-text {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}
.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}
@media (max-width: 900px) {
    .poi-fs-title { font-size: 4.5rem; }
}
@media (max-width: 600px) {
    .poi-fs-title { 
        font-size: 3.2rem; 
    }
    .poi-fs-title span {
        -webkit-text-stroke: 1px var(--lgu-yellow);
    }
    .poi-fs-desc { 
        font-size: 1.1rem; 
    }
}