:root {
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #1B4332 0%, #2D6A4F 50%, #40916C 100%);
    --gradient-secondary: linear-gradient(135deg, #40916C 0%, #52B788 50%, #74C69D 100%);
    --gradient-accent: linear-gradient(135deg, #2D6A4F 0%, #40916C 100%);
    --gradient-dark: linear-gradient(135deg, #0D1F17 0%, #1B4332 50%, #1C2A21 100%);
    --gradient-light: linear-gradient(135deg, #D8F3DC 0%, #B7E4C7 50%, #95D5B2 100%);
    --gradient-hero-overlay: linear-gradient(180deg, rgba(13, 31, 23, 0.4) 0%, rgba(27, 67, 50, 0.6) 50%, rgba(13, 31, 23, 0.8) 100%);

    /* Solid Colors */
    --leaf-green: #2D6A4F;
    --leaf-green-light: #40916C;
    --leaf-green-dark: #1B4332;
    --bg-primary: #F8FAF8;
    --bg-secondary: #FFFFFF;
    --text-primary: #1C2A21;
    --text-secondary: #4A5D53;
    --border-color: #D8F3DC;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Work Sans', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    padding-bottom: 70px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Manrope', sans-serif;
}

/* ===== TOP LINE ===== */
.top-line {
    background: var(--gradient-dark);
    padding: 8px 0;
    color: #fff;
}

.top-line .search-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 6px 16px;
    color: #fff;
    width: 220px;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.top-line .search-box::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.top-line .search-box:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--leaf-green-light);
    box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.3);
}

.top-line .search-btn {
    background: var(--gradient-accent);
    border: none;
    border-radius: 50px;
    padding: 6px 14px;
    color: #fff;
    transition: all 0.3s;
}

.top-line .search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.4);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-switcher a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 6px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.lang-switcher a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.lang-switcher a.active {
    color: #fff;
    background: var(--gradient-accent);
    border-color: var(--leaf-green-light);
}

.lang-switcher .fi {
    font-size: 1rem;
    border-radius: 2px;
}

/* ===== NAVBAR ===== */

.main-navbar {
    background: var(--gradient-primary);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(27, 67, 50, 0.3);
}

.main-navbar .navbar-brand {
    padding: 12px 0;
}

.main-navbar .navbar-brand img {
    height: 60px;
    width: 60px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text .main-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--bg-primary);
    line-height: 1.2;
}

.brand-text .sub-title {
    font-family: 'Playfair Display', serif;
    font-size: 11px;
    color: var(--bg-primary);
    letter-spacing: 1px;
}

.main-navbar .navbar-brand span {
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.main-navbar .nav-item {
    position: relative;
}

/* Nav Links */
.main-navbar .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 20px 18px !important;
    transition: all 0.3s ease;
    position: relative;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Underline effect */
.main-navbar .nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-light);
    border-radius: 3px 3px 0 0;
    transition: width 0.3s ease;
}

.main-navbar .nav-item:hover::after,
.main-navbar .nav-item.dropdown-open::after {
    width: 80%;
}

/* Dropdown Arrow Styling */
.main-navbar .dropdown-toggle::after {
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
    content: "";
    border: none;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.main-navbar .nav-item:hover .dropdown-toggle::after,
.main-navbar .nav-item.dropdown-open .dropdown-toggle::after {
    transform: rotate(45deg);
    border-color: #95D5B2;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link:focus,
.main-navbar .nav-item.dropdown-open .nav-link {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px;
}

/* Remove Bootstrap default focus styles */
.main-navbar .nav-link:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-item.dropdown-open .nav-link {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.15) !important;
}

/* Dropdown Menu */
.main-navbar .dropdown-menu {
    background: #fff;
    border: none;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 15px 40px rgba(27, 67, 50, 0.25);
    padding: 12px;
    margin-top: 0 !important;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    display: block !important;
    pointer-events: none;
}

.main-navbar .nav-item.dropdown-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.main-navbar .dropdown-item {
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.2s ease;
    border: none !important;
    outline: none !important;
}

.main-navbar .dropdown-item:hover,
.main-navbar .dropdown-item:focus {
    background: var(--gradient-light);
    color: var(--leaf-green-dark);
    transform: translateX(5px);
}

.main-navbar .dropdown-item:active,
.main-navbar .dropdown-item.active {
    background: var(--gradient-accent) !important;
    color: #fff !important;
}

.main-navbar .dropdown-item:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* ===== HERO ===== */
.hero-section {
    height: 80vh;
    min-height: 500px;
}

.hero-swiper {
    height: 100%;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* .hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero-overlay);
} */

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 1rem;
    z-index: 10;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(180deg, #fff 0%, #D8F3DC 100%);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
}

/* Hero Buttons */
.btn-hero-primary {
    background: var(--gradient-accent);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.4);
}

.btn-hero-primary:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.5);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.btn-hero-outline:hover {
    background: #fff;
    color: var(--leaf-green);
    border-color: #fff;
}

/* Swiper Styles */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    color: var(--leaf-green-dark);
    background: rgba(255, 255, 255, 0.95);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background: var(--gradient-accent);
    color: #fff;
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
}

.hero-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 12px;
    height: 12px;
    transition: all 0.3s;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--gradient-secondary);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* ===== SECTIONS ===== */
.section-padding {
    padding: 80px 0;
}

@media (min-width: 992px) {
    .section-padding {
        padding: 120px 0;
    }
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-title-center::after {
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 700px;
}

/* ===== ABOUT ===== */
.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 24px;
    border-image: var(--gradient-secondary) 1;
    box-shadow: 0 20px 50px rgba(45, 106, 79, 0.2);
}

.about-year-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 20px 28px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(27, 67, 50, 0.4);
}

.about-year-badge .year {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
}

.about-year-badge .label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-light);
    color: var(--leaf-green-dark);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== GALLERY ===== */
.gallery-section {
    background: #fff;
}

.gallery-item {
    border: 4px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.1);
    transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
    color: #fff;
    background: var(--gradient-accent);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

.gallery-swiper .swiper-button-prev::after,
.gallery-swiper .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
}

.gallery-swiper .swiper-pagination-bullet-active {
    background: var(--leaf-green);
}

/* ===== CLIMATE ===== */
.climate-card {
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.climate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.climate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(45, 106, 79, 0.15);
    border-color: var(--leaf-green-light);
}

.climate-card:hover::before {
    transform: scaleX(1);
}

.climate-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
    color: var(--leaf-green-dark);
}

.climate-value {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.climate-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ===== VIDEO ===== */
.video-section {
    background: #fff;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(45, 106, 79, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== MAP ===== */
.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
}

@media (min-width: 768px) {
    .map-section iframe {
        height: 550px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gradient-dark);
    color: #fff;
    padding: 70px 0 0;
}



.footer h5 {
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-logo-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
}

.footer p,
.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer a:hover {
    color: #95D5B2;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item i {
    color: #74C69D;
    font-size: 1.2rem;
    margin-top: 2px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--gradient-accent);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 28px 0;
    margin-top: 50px;
}

.footer-bottom p,
.footer-bottom a {
    font-size: 0.875rem;
}

/* ===== MOBILE BOTTOM NAV ===== */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border-color);
    padding: 8px 0;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
    z-index: 1040;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 576px) {
    .mobile-bottom-nav {
        display: none;
    }

    body {
        padding-bottom: 0;
    }
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.2s;
    background: none;
    border: none;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    background: var(--gradient-light);
    color: var(--leaf-green-dark);
}

.mobile-nav-item i {
    font-size: 1.25rem;
}

/* ===== OFFCANVAS ===== */
.offcanvas {
    width: 300px;
    max-width: 80vw;
}

.offcanvas-header {
    background: var(--gradient-primary);
    color: #fff;
}

.offcanvas-header .btn-close {
    filter: invert(1);
}

.offcanvas-menu-section {
    margin-bottom: 24px;
}

.offcanvas-menu-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--leaf-green);
    margin-bottom: 10px;
    padding-left: 12px;
}

.offcanvas-menu-link {
    display: block;
    padding: 12px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s;
}

.offcanvas-menu-link:hover {
    background: var(--gradient-light);
    color: var(--leaf-green-dark);
    transform: translateX(5px);
}

/* ===== UTILITIES ===== */
.text-green {
    color: var(--leaf-green) !important;
}

.bg-section {
    background: var(--bg-primary);
}

/* Gallery Section Styles - Unique prefix: pg- (park gallery) */
.pg-gallery-section {
    min-height: 100vh;
    padding: 40px 0 60px;
    display: flex;
    flex-direction: column;
    position: relative;
    background: linear-gradient(135deg, #0D1F17 0%, #1B4332 50%, #1C2A21 100%);
    color: #fff;
    font-family: 'Work Sans', sans-serif;
}

.pg-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(64, 145, 108, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(45, 106, 79, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.pg-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.pg-title {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(180deg, #fff 0%, #95D5B2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .pg-title { font-size: 3rem; }
}

.pg-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto;
}

.pg-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.pg-counter-current {
    font-size: 1.75rem;
    font-weight: 700;
    color: #40916C;
}

.pg-counter-separator {
    color: rgba(255,255,255,0.4);
}

.pg-counter-total {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
}

/* Main Swiper */
.pg-swiper {
    width: 100%;
    padding: 20px 0 40px;
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
}

.pg-swiper .swiper-wrapper {
    align-items: center;
}

.pg-swiper .swiper-slide {
    width: 280px;
    height: 360px;
    transition: all 0.4s ease;
}

@media (min-width: 640px) {
    .pg-swiper .swiper-slide {
        width: 350px;
        height: 450px;
    }
}

@media (min-width: 1024px) {
    .pg-swiper .swiper-slide {
        width: 420px;
        height: 520px;
    }
}

/* Slide Card */
.pg-slide-card {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
    border: 3px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    text-decoration: none;
}

.pg-swiper .swiper-slide-active .pg-slide-card {
    border-color: #40916C;
    box-shadow:
        0 25px 70px rgba(0,0,0,0.5),
        0 0 30px rgba(64, 145, 108, 0.3);
}

.pg-slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pg-slide-card:hover img {
    transform: scale(1.05);
}

/* Overlay */
.pg-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(13, 31, 23, 0.95) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pg-swiper .swiper-slide-active .pg-slide-overlay {
    opacity: 1;
}

/* Slide Info */
.pg-slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.4s ease;
}

.pg-swiper .swiper-slide-active .pg-slide-info {
    transform: translateY(0);
    opacity: 1;
}

.pg-slide-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.pg-slide-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
}

/* Zoom Icon */
.pg-zoom-icon {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2D6A4F 0%, #40916C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.4);
}

.pg-swiper .swiper-slide-active .pg-zoom-icon {
    opacity: 1;
    transform: scale(1);
}

.pg-slide-card:hover .pg-zoom-icon {
    transform: scale(1.1);
}

/* Navigation */
.pg-swiper .swiper-button-prev,
.pg-swiper .swiper-button-next {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2D6A4F 0%, #40916C 100%);
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.4);
    transition: all 0.3s ease;
}

.pg-swiper .swiper-button-prev:hover,
.pg-swiper .swiper-button-next:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(45, 106, 79, 0.5);
}

.pg-swiper .swiper-button-prev::after,
.pg-swiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
}

.pg-swiper .swiper-button-prev {
    left: 15px;
}

.pg-swiper .swiper-button-next {
    right: 15px;
}

@media (min-width: 1024px) {
    .pg-swiper .swiper-button-prev { left: 40px; }
    .pg-swiper .swiper-button-next { right: 40px; }
}

/* Pagination */
.pg-pagination {
    position: relative !important;
    margin-top: 25px;
    bottom: auto !important;
}

.pg-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.3);
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 5px !important;
}

.pg-pagination .swiper-pagination-bullet-active {
    background: #40916C;
    width: 28px;
    border-radius: 5px;
}

/* Thumbnails */
.pg-thumbs-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 15px 0;
    position: relative;
    z-index: 10;
}

.pg-thumbs .swiper-slide {
    width: 70px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.pg-thumbs .swiper-slide-thumb-active {
    border-color: #40916C;
    opacity: 1;
}

.pg-thumbs .swiper-slide:hover {
    opacity: 0.7;
}

.pg-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Keyboard Hint */
.pg-hint {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 40px;
    backdrop-filter: blur(10px);
    z-index: 100;
}

.pg-hint-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.pg-hint-key {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

@media (max-width: 640px) {
    .pg-hint { display: none; }
}

/* Fancybox custom */
.fancybox__container {
    --fancybox-bg: rgba(13, 31, 23, 0.97);
}

.search-wrapper {
    z-index: 1050;
}

.search-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 40px;
    padding: 8px 20px;
    color: var(--text-primary);
    transition: all 0.3s ease;
    width: 200px;
}

.search-box:focus {
    width: 280px;
    background: #fff;
    outline: none;
    border-color: var(--leaf-green);
    box-shadow: 0 0 15px rgba(45, 106, 79, 0.2);
}

.search-btn {
    background: var(--gradient-accent);
    border: none;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.search-btn:hover {
    transform: scale(1.1);
}

/* Dropdown */
.search-results-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 320px;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    animation: slideIn 0.3s ease-out;
}

.result-item {
    padding: 12px 20px;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item:hover {
    background: var(--gradient-light);
}

.result-item i {
    color: var(--leaf-green);
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.made-by {
    margin-top: 10px;
}

.made-by p {
    color: var(--bg-secondary);
}

.made-by a {
    padding-left: 5px;
}

.news-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(27, 67, 50, 0.12);
    border-color: var(--leaf-green-light);
}

.news-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-image-wrapper img {
    transform: scale(1.08);
}

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-accent);
    color: white;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.news-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-title {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.news-link {
    color: var(--leaf-green);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-link i {
    transition: transform 0.3s ease;
}

.news-link:hover {
    color: var(--leaf-green-light);
}

.news-link:hover i {
    transform: translateX(5px);
}

.btn-hero-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-hero-primary:hover {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: 0 10px 20px rgba(45, 106, 79, 0.3);
    transform: scale(1.02);
}
