@font-face {
    font-family: 'Futura';
    src: url('futura.eot');
    src: url('futura.eot?#iefix') format('embedded-opentype'),
    url('futura.woff') format('woff'),
    url('futura.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html {
    overflow-x: hidden;
}

/* ============================================
   Accessibility - Screen Reader Only Text
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================
   Accessibility - Skip Navigation Link
   ============================================ */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #819D30;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
    font-weight: 600;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   Accessibility - Focus Indicators
   ============================================ */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
[tabindex]:focus {
    outline: 3px solid #819D30;
    outline-offset: 2px;
    box-shadow: 0 0 0 5px #ffffff;
}

/* Dark mode focus */
.dark a:focus,
.dark button:focus,
.dark input:focus,
.dark textarea:focus,
.dark select:focus,
.dark [tabindex]:focus {
    outline-color: #feff04;
    box-shadow: 0 0 0 5px #000000;
}

/* Focus visible for modern browsers */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid #819D30;
    outline-offset: 2px;
    box-shadow: 0 0 0 5px #ffffff;
}

.dark a:focus-visible,
.dark button:focus-visible,
.dark input:focus-visible,
.dark textarea:focus-visible,
.dark select:focus-visible,
.dark [tabindex]:focus-visible {
    outline-color: #feff04;
    box-shadow: 0 0 0 5px #000000;
}

/* Mobile menu button focus */
.mobile-menu:focus {
    outline: 3px solid #819D30;
    outline-offset: 2px;
    box-shadow: 0 0 0 5px #ffffff;
}

.dark .mobile-menu:focus {
    outline-color: #feff04;
    box-shadow: 0 0 0 5px #000000;
}

.page-content h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-content h2 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-content h3 {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-content h4 {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-content p span {
    font-size: 16px !important;
    font-family: poppins, sans-serif !important;
}

.page-content .ticket-button {
    margin-top: 10px;
    font-size: 14px !important;
}

nav,
.logo-wrap a {
    transition: .3s ease-in-out;
}

.header-sticky-wrapper.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 40;
    background: rgba(255, 255, 255, 0.98);
}

.dark .header-sticky-wrapper.sticky {
    background: rgba(0, 0, 0, 0.98);
}

main.sticky {
    padding-top: 100px;
}

@media screen and (min-width: 768px) {
    main.sticky {
        padding-top: 110px;
    }
}

.logo-wrap.sticky {
    position: fixed;
    top: 0;
    z-index: 100;
}

.logo-wrap.sticky a {
    width: 120px;
    height: 120px;
    z-index: 100;
}

@media screen and (max-width: 767px) {
    .logo-wrap.sticky a {
        width: 80px;
        height: 80px;
        z-index: 100;
    }
}

body {
    position: relative;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: url(/assets/front/images/bg-light.png?9db7a28…) 50%;
    font-family: Ubuntu, sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #393939;
}

main {
    flex: 1;
}

.logo {
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 100%, 50% 90%, 0 100%, 0 0);
    clip-path: polygon(50% 0%, 100% 0, 100% 100%, 50% 90%, 0 100%, 0 0);
}

.video-banner {
    position: relative;
    width: 100%;
    height: 90dvh;
    overflow: hidden;
}

/* ============================================
   Video Control Button
   ============================================ */
.video-control-btn {
    position: absolute;
    bottom: 100px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: white;
}

.video-control-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: white;
    transform: scale(1.1);
}

.video-control-btn:active {
    transform: scale(0.95);
}

.video-control-btn svg {
    pointer-events: none;
}

/* Dark mode */
.dark .video-control-btn {
    background: rgba(254, 255, 4, 0.2);
    border-color: #feff04;
    color: #feff04;
}

.dark .video-control-btn:hover {
    background: rgba(254, 255, 4, 0.3);
    border-color: #feff04;
}

/* Mobile responsive */
@media screen and (max-width: 767px) {
    .video-control-btn {
        width: 48px;
        height: 48px;
        bottom: 100px;
        left: 16px;
    }

    .video-control-btn svg {
        width: 20px;
        height: 20px;
    }
}

.gallery-image .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all .3s ease-in-out;
    z-index: 10;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0);
}

/* Dark mode - always show overlay with better contrast */
html.dark .gallery-image .overlay {
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(2px);
}

.gallery-image .overlay p {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    transition: all .3s ease-in-out;
    text-align: center;
    padding: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Dark mode - always show text with high contrast */
html.dark .gallery-image .overlay p {
    color: #feff04;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 1),
                 0 0 20px rgba(254, 255, 4, 0.4);
    letter-spacing: 0.05em;
}

.gallery-image:hover .overlay {
    background-color: rgba(0, 0, 0, 0.6);
}

/* Dark mode hover - even darker for more contrast */
html.dark .gallery-image:hover .overlay {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.gallery-image:hover .overlay p {
    color: white;
}

/* Dark mode hover - brighter yellow with glow */
html.dark .gallery-image:hover .overlay p {
    color: #feff04;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 1),
                 0 0 30px rgba(254, 255, 4, 0.6),
                 0 0 40px rgba(254, 255, 4, 0.4);
    transform: scale(1.05);
}

/* Focus state for accessibility */
.gallery-link:focus .gallery-image .overlay {
    background-color: rgba(0, 0, 0, 0.7);
}

html.dark .gallery-link:focus .gallery-image .overlay {
    background-color: rgba(0, 0, 0, 0.9);
    border: 2px solid #feff04;
}

.gallery-link:focus .gallery-image .overlay p {
    color: white;
}

html.dark .gallery-link:focus .gallery-image .overlay p {
    color: #feff04;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 1),
                 0 0 30px rgba(254, 255, 4, 0.8);
}

.swiper {
    overflow: visible !important;
}

.swiper-pagination {
    bottom: -35px !important;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: #819D30 !important;
}

@media screen and (max-width: 767px) {
    .video-banner {
        height: 340px;
    }
}

.video-banner video {
    position: absolute;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.shadow-basic {
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}

.swiper-slide {
    text-align: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: start;
}

.swiper-wrapper {
    transition-timing-function: linear !important;
}

.mobile-menu {
    width: 25px;
    height: 25px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: all .5s ease-in-out;
    cursor: pointer;
}

.nav-worlds-toggle,
.nav-programs-toggle {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 0.65em;
    padding: 0 4px;
    opacity: 0.8;
    transition: transform .2s ease;
    vertical-align: middle;
    line-height: 1;
}

.nav-worlds-toggle.open,
.nav-programs-toggle.open {
    transform: rotate(180deg);
}

@media screen and (min-width: 1024px) {
    .nav-worlds-toggle,
    .nav-programs-toggle {
        display: none;
    }

    #nav-worlds-item:hover #nav-worlds-dropdown,
    #nav-programs-item:hover #nav-programs-dropdown {
        display: block !important;
    }
}

.language-flag {
    display: none;
}


.oval {
    display: flex;
    bottom: -130px;
    left: -90px;
    position: fixed;
    width: 450px;
    height: 250px;
    background-color: #427c85;
    border-radius: 50%;
    box-shadow: -5px -5px 30px rgba(0, 0, 0, .3);
    text-align: center;
    z-index: 99999;
}

.oval:hover {
    cursor: pointer;
}

.icon-container {
    position: absolute;
    top: 25px;
    left: 130px;
}

.icon-text {
    text-align: left;
    width: 180px;
    top: 15px;
    left: 95px;
    position: absolute;
    color: #fff;
}

.icon-text small {
    font-size: 10px;
}

.icon-bg {
    background-color: #fff;
    border-radius: 50%;
    animation: pulseAnimation 2s infinite;
    width: 70px;
    height: 70px;
    line-height: 82px;
    rotate: -45deg;
}

.icon-bg i {
    color: #427c85;
}

@keyframes pulseAnimation {

    /*
    0% {
        transform: scale(.8);
        border-color: transparent;
    }
    50% {
        transform: scale(1.3);
        border-color: #427c85;
    }
    100% {
        transform: scale(.8);
        border-color: transparent;
    }*/
    0% {
        box-shadow: rgb(255, 255, 255) 0px 0px 0px 0px;
    }

    70% {
        box-shadow: rgba(255, 255, 255, 0.6) 0px 0px 0px 8px;
    }

    100% {
        box-shadow: rgba(255, 255, 255, 0.01) 0px 0px 0px 10px;
    }
}


.icon-close {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 9999999;
    border-radius: 50%;
    background-color: #fff;
    padding: 5px;
}

.icon-close:hover {
    cursor: pointer;
}

.hidden-lg {
    display: none;
}

.first-aid {
    position: fixed;
    top: 100px;
    right: 10px;
    z-index: 9999;
}

.first-aid img {
    width: 48px;
    height: 48px;
    transition: transform 0.3s;
    border-radius: 10px;
}

.first-aid img:hover {
    cursor: pointer;
    animation: zoom 0.3s ease-in-out infinite alternate;
}

.first-aid .bubble {
    position: absolute;
    top: -95px;
    left: -35px;
    width: 200px;
    transform: translateX(-50%);
    padding: 8px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 4px;
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

.hidden {
    display: none;
}


.d-none {
    display: none;
}

.modal-overlay {
    z-index: -1;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.modal.open .modal-overlay {
    z-index: 10;
    opacity: 1;
}

#firstaid-modal .phone {
    margin-top: 10px;
    display: block;
    text-align: center;
    font-weight: bold;
    color: #4A6B15;
}

.dark #firstaid-modal .phone {
    color: yellow;
}

.close-modal {
}

@media screen and (max-width: 1024px) {

    .first-aid img {
        width: 32px;
        height: 32px;
    }

    .first-aid .bubble {
        left: -66px;
    }

    .hidden-lg {
        display: block;
    }

    .hidden-sm {
        display: none;
    }

    .oval {
        bottom: 25px;
        left: 65px;
        width: 165px;
        height: 50px;
        border-radius: 0;
        text-align: center;
    }

    .icon-container {
        top: -12px;
        left: -53px;
    }

    .icon-text {
        top: 25px;
        left: 85px;
    }

    .icon-close {
        top: -9px;
        right: -9px;
    }

    .lang-item li {
        margin-left: 6px;
    }

    .language-flag {
        display: inline-block;
    }

    .language-text {
        display: none;
    }

    .mobile-menu-holder {
        position: absolute;
        left: 0;
        right: 0;
        top: 35px;
        height: 0;
        overflow: hidden;
        background-color: #78a000;
        transition: all .3s ease-in-out;
        z-index: 20;
    }

    .header-sticky-wrapper.sticky .mobile-menu-holder:not(.open) {
        height: 0 !important;
        overflow: hidden !important;
    }

    html.dark .mobile-menu-holder {
        background-color: #000 !important;
        color: #feff04 !important;
    }

    html.dark .mobile-menu-holder.open {
        border-top: 1px #feff04 solid !important;
        border-bottom: 1px #feff04 solid !important;
    }

    .mobile-menu-holder.open {
        height: 520px;
        padding: 20px;
    }

    h1 {
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .mobile-menu-holder.open {
        height: 340px;
    }

}

.mobile-menu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    border-radius: 1px;
    background: #fff;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

html.dark .mobile-menu span {
    background: #feff04 !important;
}

.mobile-menu span:first-child {
    top: 6px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.mobile-menu span:nth-child(2) {
    top: 12px;
}

.mobile-menu span:nth-child(3) {
    top: 18px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}


.mobile-menu.open span:first-child {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0;
    left: 0;
    width: 25px;
}

.mobile-menu.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.mobile-menu.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 18px;
    left: 0;
    width: 25px;
}

.article-title {
    height: 56px;
    overflow: hidden;
}

.article-lead {
    height: 92px;
    overflow: hidden;
}

.text-lg p {
    text-align: left !important;
    font-size: 13px !important;
    padding-bottom: 28px;
}

.text-lg span {
    font-size: 15px !important;
}

.article-meta {
    display: block;
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 15px;
}

.article-image {
    position: relative;
}

.article-date {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 14px;
    background-color: rgba(255, 255, 255, .7);
    border-radius: 5px;
    padding: 3px 5px;
}

.container.container-sm {
    max-width: 1140px !important;
}

.box-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    border-bottom: 1px solid rgb(244, 240, 235);
}

.download-document {
    display: flex;
    border: 1px solid rgb(244, 240, 235);
    padding: 5px 15px;
    border-radius: 0.375rem;
}

.download-document img {
    margin-right: 10px;
}

.download-document:hover {
    background-color: rgb(244, 240, 235);
}

html.dark .download-document img {
    display: none;
}

html.dark .download-document:hover {
    background-color: rgb(254, 255, 4);
    color: #000;
}

ul.sitemap {
}

.sitemap li {
    list-style: circle;
}

.ticket-title {
    height: 40px;
}

.text-tickets p, .text-tickets h4, .text-tickets p span {
    text-align: left !important;
    font-size: 16px !important;
    font-family: poppins, sans-serif !important;
}

.lg\:text-base {
    font-size: 0.9rem !important;
    line-height: 1.5rem !important;
}

.md\:text-4xl {
    font-size: 2rem !important;
    line-height: 2.5rem;
}

@media screen and (min-width: 1460px) {
    .container {
        max-width: 1240px !important;
    }
}

h4.ticket-title {
    height: 60px;
    font-size: 20px;
    font-weight: bold;
}

.ticket-description {
    display: block;
}

.ticket-price {
    display: block;
}

.ticket-button {
    background-color: #35636c;
    color: #fff;
    font-weight: bold;
    border-radius: 0.375rem;
    padding: 15px 50px;
    display: inline-block;
    margin-bottom: 20px;
}

.mbm-10 {
    bottom: 21px;
}

footer {
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.footer-logo img {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-menu {
    text-transform: uppercase;
}

.footer-menu-item a {
    position: relative;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.footer-arrow {
    transition: transform 0.2s ease;
    opacity: 0.7;
}

.footer-menu-item a:hover .footer-arrow {
    transform: translateX(2px);
    opacity: 1;
}

.footer-menu-item a span {
    position: relative;
}

.footer-menu-item a span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.footer-menu-item a:hover span::after {
    width: 100%;
}

.footer-menu-item a:hover {
    opacity: 0.95;
}

.toTop {
    border-radius: 8px;
    transition: all 0.3s ease;
}

.toTop:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

:is(.dark .dark\:bg-black) p,
:is(.dark .dark\:bg-black) ul {
    color: yellow;
}

:is(.dark .dark\:bg-black) .ticket-button {
    background-color: yellow;
    color: #000;
}

.overflow-hidden {
    height: 115px;
    overflow: hidden;
}

.hotel-card-header.overflow-hidden {
    height: 260px;
    overflow: hidden;
}

.show-more-btn {
    margin-top: 20px;
}

/* ========== MODERN PROGRAM BOX STYLES ========== */

/* Programs grid layout */
.programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 28px;
}

@media screen and (min-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

.program-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 24px;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(129, 157, 48, 0.03) 0%, rgba(66, 124, 133, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.program-card:hover::before {
    opacity: 1;
}

.program-card:hover {
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

/* Dark mode program card */
html.dark .program-card {
    background: #000;
    border: 2px solid #feff04;
    box-shadow: none;
}


/* Program image wrapper */
.program-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.program-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

@media screen and (max-width: 1024px) {
    .program-image-container {
        height: 300px;
    }
}

@media screen and (max-width: 767px) {
    .program-image-container {
        height: 220px;
    }
}

.program-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Image overlay effects
.program-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 0, 0, 0.5) 100%
    );
    opacity: 0.7;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 2;
} */



/* Program content */
.program-content {
    position: relative;
    padding: 28px 32px;
    z-index: 4;
}

@media screen and (max-width: 767px) {
    .program-content {
        padding: 20px 24px;
    }
}

/* Modern program title */
.program-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #393939;
    position: relative;
    padding-bottom: 16px;
}

.program-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #819D30 0%, #427c85 100%);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.program-card:hover .program-title::after {
    width: 100px;
}

html.dark .program-title {
    color: #feff04;
}

html.dark .program-title::after {
    background: #feff04;
}

/* Program description */
.program-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
}

html.dark .program-description {
    color: #feff04;
    font-size: 16px;
}

/* Show more button modern style */
.show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #4A6B15 0%, #3a5510 100%);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(129, 157, 48, 0.3);
    position: relative;
    overflow: hidden;
}

.show-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #3a5510 0%, #2d4410 100%);
    transition: width 0.4s ease;
    z-index: 0;
}

.show-more-btn:hover::before {
    width: 100%;
}

.show-more-btn span {
    position: relative;
    z-index: 1;
}

.show-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 107, 21, 0.4);
}

html.dark .show-more-btn {
    background: #feff04;
    color: #000;
    font-size: 15px;
    box-shadow: none;
}

html.dark .show-more-btn::before {
    background: #feff04;
}

html.dark .show-more-btn:hover {
    box-shadow: none;
}

/* Page intro box modernization */
.page-intro-box {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-top: 24px;
}

html.dark .page-intro-box {
    background: #000;
    border: 2px solid #feff04;
}

.page-intro-image {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

@media screen and (max-width: 1024px) {
    .page-intro-image {
        height: 350px;
    }
}

@media screen and (max-width: 767px) {
    .page-intro-image {
        height: 250px;
    }
}

.page-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.page-intro-box:hover .page-intro-image img {
    transform: scale(1.05);
}

.page-intro-content {
    padding: 28px 32px;
}

@media screen and (max-width: 767px) {
    .page-intro-content {
        padding: 20px 24px;
    }
}

/* ========== END MODERN PROGRAM BOX STYLES ========== */

/* ========== ARTICLES LIST GRID STYLES ========== */
.articles-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
    .articles-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media screen and (min-width: 1200px) {
    .articles-list-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 36px;
    }
}

/* Pagination wrapper with playful styling */
.pagination-wrapper {
    margin-top: 48px;
    padding: 32px 0;
    border-top: 2px dashed rgba(129, 157, 48, 0.2);
    position: relative;
}

html.dark .pagination-wrapper {
    border-top-color: #feff04;
}

.pagination-wrapper::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 12px;
    background: #fff;
    border: 2px solid #819D30;
    border-radius: 50%;
}

html.dark .pagination-wrapper::before {
    background: #000;
    border-color: #feff04;
}

/* ========== END ARTICLES LIST GRID STYLES ========== */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.page-item {
    list-style: none;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0.5rem 1rem;
    border: 2px solid #e5e5e5;
    background-color: #fff;
    color: #393939;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, #819D30 0%, #6a8227 100%);
    color: #fff;
    border-color: #819D30;
    box-shadow: 0 4px 12px rgba(129, 157, 48, 0.3);
    transform: translateY(-2px);
}

.page-link:hover:not(.page-item.active .page-link) {
    background-color: #f8f8f8;
    border-color: #4A6B15;
    color: #4A6B15;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-link img {
    vertical-align: middle;
    display: inline-block;
}

/* Dark mode pagination */
html.dark .page-link {
    background-color: #000;
    border-color: #feff04;
    color: #feff04;
    font-size: 15px;
}

html.dark .page-item.active .page-link {
    background: #feff04;
    color: #000;
    border-color: #feff04;
    box-shadow: none;
}

html.dark .page-link:hover:not(.page-item.active .page-link) {
    background-color: #feff04;
    border-color: #feff04;
    color: #000;
}

/* Responsive pagination */
@media screen and (max-width: 767px) {
    .page-link {
        min-width: 38px;
        height: 38px;
        padding: 0.4rem 0.8rem;
        font-size: 13px;
    }

    .pagination {
        gap: 0.4rem;
    }
}

.article-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/* Modern article card styles */
.article-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Dark mode article card */
html.dark .article-card {
    background: #000;
    border: 2px solid #feff04;
    box-shadow: none;
}

html.dark .article-card:hover {
    box-shadow: none;
    border-color: #feff04;
}

/* Image wrapper */
.article-image-wrapper {
    position: relative;
    overflow: hidden;
}

.article-image-container {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.article-image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-card:hover .article-image-main {
    transform: scale(1.08);
}

/* Image overlay gradient */
.article-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.article-card:hover .article-image-overlay {
    opacity: 0.8;
}

/* Modern date badge */
.article-date-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 4px 10px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #393939;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
    height: 20px;
}

.article-date-badge i {
    font-size: 13px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.article-date-badge span {
    line-height: 1;
    display: inline-block;
}

.article-card:hover .article-date-badge {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 1);
}

html.dark .article-date-badge {
    background: #feff04;
    color: #000;
    font-size: 12px;
}

html.dark .article-card:hover .article-date-badge {
    background: #feff04;
}

/* Article content */
.article-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Modern title */
.article-title-modern {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    height: 56px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.article-title-modern a {
    color: #393939;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-title-modern a:hover {
    color: #819D30;
}

html.dark .article-title-modern a {
    color: #feff04;
}

html.dark .article-title-modern a:hover {
    color: #feff04;
}

/* Modern lead text */
.article-lead-modern {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    height: 92px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

html.dark .article-lead-modern {
    color: #feff04;
    font-size: 15px;
}

/* Article footer */
.article-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f1f1f1;
}

html.dark .article-footer {
    border-top-color: #feff04;
}

/* Modern read more button */
.article-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4A6B15;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.article-read-more span {
    position: relative;
}

.article-read-more span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #819D30;
    transition: width 0.3s ease;
}

.article-read-more:hover span::after {
    width: 100%;
}

.article-read-more i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.article-read-more:hover {
    color: #6a8227;
}

.article-read-more:hover i {
    transform: translateX(4px);
}

html.dark .article-read-more {
    color: #feff04;
}

html.dark .article-read-more span::after {
    background: #feff04;
}

html.dark .article-read-more:hover {
    color: #feff04;
}

/* Responsive adjustments */
@media screen and (max-width: 767px) {
    .article-image-container {
        height: 200px;
    }

    .article-content {
        padding: 20px;
    }

    .article-title-modern {
        font-size: 18px;
    }

    .article-date-badge {
        top: 8px;
        right: 8px;
        padding: 3px 8px;
        font-size: 10px;
        gap: 3px;
    }

    .article-date-badge i {
        font-size: 12px;
    }
}

/* Modern "View All" button */
.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #819D30 0%, #6a8227 100%);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(129, 157, 48, 0.3);
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.view-all-btn:hover::before {
    left: 100%;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(129, 157, 48, 0.4);
}

.view-all-btn i {
    font-size: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

/* Dark mode view all button */
html.dark .view-all-btn {
    background: #feff04;
    color: #000;
    font-size: 17px;
    box-shadow: none;
}

html.dark .view-all-btn:hover {
    box-shadow: none;
}

/* Responsive button */
@media screen and (max-width: 767px) {
    .view-all-btn {
        font-size: 14px;
        padding: 12px 24px;
    }
}

/* Article grid layout improvements */
.grid .article-card {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.grid .article-card:nth-child(1) {
    animation-delay: 0.1s;
}

.grid .article-card:nth-child(2) {
    animation-delay: 0.2s;
}

.grid .article-card:nth-child(3) {
    animation-delay: 0.3s;
}

.grid .article-card:nth-child(4) {
    animation-delay: 0.1s;
}

.grid .article-card:nth-child(5) {
    animation-delay: 0.2s;
}

.grid .article-card:nth-child(6) {
    animation-delay: 0.3s;
}

.grid .article-card:nth-child(7) {
    animation-delay: 0.1s;
}

.grid .article-card:nth-child(8) {
    animation-delay: 0.2s;
}

.grid .article-card:nth-child(9) {
    animation-delay: 0.3s;
}

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

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

/* Better gap for article grids */
.grid.gap-4 {
    gap: 1.5rem;
}

@media screen and (min-width: 768px) {
    .grid.gap-4 {
        gap: 2rem;
    }
}

/* Our World Hero Slider */
.our-world-hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: url(/assets/front/images/bg-dark.png) center center;
}

.our-world-swiper {
    width: 100%;
    height: 400px;
    position: relative;
}

.our-world-slide {
    position: relative;
    width: 100%;
    height: 400px;
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
}

.our-world-slide .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

.our-world-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Futura', sans-serif;
}

.our-world-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 0.8s ease-out;
    text-align: center;
}

html.dark .our-world-title {
    color: #feff04;
    font-size: 2.2rem;
}

.our-world-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #819D30;
    margin-bottom: 1rem;
    text-align: center;
}

html.dark .our-world-subtitle {
    color: #feff04;
}

.our-world-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}

html.dark .our-world-divider {
    background: rgba(255, 255, 255, 0.5);
}

.our-world-params {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    width: 100%;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.param-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background: transparent;
    padding: 0;
}

.param-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-size: 3rem;
    color: #fff;
    line-height: 1;
}

html.dark .param-value {
    color: #feff04;
    font-size: 3.2rem;
}

.param-value .counter {
    font-family: 'Arial', sans-serif;
}

.param-text-value {
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    word-break: break-word;
}

html.dark .param-text-value {
    color: #feff04;
    font-size: 1.6rem;
}

.param-unit-small {
    font-size: 0.875rem;
    font-weight: 400;
    color: #fff;
    opacity: 0.9;
}

html.dark .param-unit-small {
    color: #feff04;
    font-size: 1rem;
}

.param-lion-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    margin-left: 2px;
    align-self: center;
}

.param-value .param-unit {
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    margin-left: 2px;
}

html.dark .param-value .param-unit {
    color: #feff04;
    font-size: 1.7rem;
}

.param-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

html.dark .param-icon {
    filter: brightness(0) invert(1) sepia(1) saturate(10000%) hue-rotate(30deg);
}

.param-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.param-label {
    display: none;
}

/* Food and Drink Parameters */
.our-world-food-drink {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    margin-top: 1rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.food-drink-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.food-drink-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

html.dark .food-drink-icon {
    filter: brightness(0) invert(1) sepia(1) saturate(10000%) hue-rotate(30deg);
}

.food-drink-value {
    font-size: 4rem;
    color: #3fa2ac;
    line-height: 1.5;
    font-weight: 100;
}

.food-drink-item .param-unit-small {
    line-height: 1.5;
}

html.dark .food-drink-value {
    color: #feff04;
}

/* Pagination dots */
.our-world-pagination {
    position: absolute !important;
    bottom: 50% !important;
    transform: translateY(50%) !important;
    left: 40px !important;
    right: auto !important;
    top: auto !important;
    width: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    z-index: 10 !important;
}

.our-world-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 !important;
    transition: all 0.3s ease;
}

.our-world-pagination .swiper-pagination-bullet-active {
    background: #fff;
    height: 40px;
    border-radius: 6px;
}

html.dark .our-world-pagination .swiper-pagination-bullet {
    background: #feff04;
}

html.dark .our-world-pagination .swiper-pagination-bullet-active {
    background: #feff04;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

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

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

/* Responsive */
@media screen and (max-width: 1024px) {
    .our-world-slide .container {
        gap: 2rem;
    }

    .our-world-content {
        max-width: 350px;
    }

    .our-world-title {
        font-size: 2.5rem;
    }

    .our-world-subtitle {
        font-size: 1.25rem;
    }

    .our-world-params {
        gap: 2rem;
    }

    .param-value {
        font-size: 2.5rem;
    }

    .param-unit-small {
        font-size: 0.75rem;
    }

    .param-lion-icon {
        width: 24px;
        height: 24px;
    }

    .param-value .param-unit {
        font-size: 1.25rem;
    }

    .param-icon {
        width: 28px;
        height: 28px;
    }

    .our-world-food-drink {
        gap: 1.5rem;
    }

    .food-drink-icon {
        width: 32px;
        height: 32px;
    }

    .food-drink-value {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 768px) {
    .our-world-hero {
        min-height: auto;
    }

    .our-world-swiper {
        height: 300px;
    }

    .our-world-slide {
        height: 300px;
        background-size: cover;
        background-position: center center;
    }

    .our-world-content {
        display: none;
    }

    .our-world-pagination {
        flex-direction: row !important;
        left: 50% !important;
        bottom: 20px !important;
        transform: translateX(-50%) !important;
        gap: 8px !important;
    }

    .our-world-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: rgba(255, 255, 255, 0.5);
    }

    .our-world-pagination .swiper-pagination-bullet-active {
        background: #fff;
        width: 40px;
        height: 12px;
        border-radius: 6px;
    }
}

/* Worlds List Section */
.worlds-list-section {
    width: 100%;
    background: #6b8a09;
    padding: 0;
    position: relative;
    overflow: hidden;
}

html.dark .worlds-list-section {
    background: #feff04;
}

.worlds-list {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    min-height: 100px;
}

/* 1200px felett: teljes szélesség, arányos elosztás, nincs scroll */
@media screen and (min-width: 1201px) {
    .worlds-list {
        overflow-x: visible;
    }

    .world-item {
        flex: 1;
        min-width: 0 !important;
        flex-shrink: 1;
    }

    .world-separator {
        display: none;
    }
}

/* 1200px alatt: scrollozható, fix szélességű gombok */
@media screen and (max-width: 1200px) {
    .world-item {
        min-width: 100px;
    }
}

/* Custom scrollbar */
.worlds-list::-webkit-scrollbar {
    height: 8px;
}

.worlds-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.worlds-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.worlds-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

html.dark .worlds-list::-webkit-scrollbar-thumb {
    background: #feff04;
}

html.dark .worlds-list::-webkit-scrollbar-thumb:hover {
    background: #feff04;
}

.world-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.1rem 1rem;
    min-width: 60px;
    background: transparent;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex-shrink: 0;
}

.world-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.world-item:hover .world-icon {
    background-position: 0 -50px;
    transform: scale(1.08);
}

.world-item:hover .world-name {
    transform: translateY(-3px);
}

html.dark .world-item:hover {
    background: #000;
    border: 1px solid #feff04;
}

.world-icon {
    width: 40px;
    height: 50px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 40px 100px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.world-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #425700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

/* 1200px alatt: a szöveg ne törjön, de ne lépjen ki */
@media screen and (max-width: 1200px) {
    .world-name {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
}

/* 1200px felett: a szöveg törhet ha kell */
@media screen and (min-width: 1201px) {
    .world-name {
        white-space: normal;
        word-wrap: break-word;
        hyphens: auto;
    }
}

.world-item:hover .world-name {
    color: #E7D200;
}

html.dark .world-name {
    color: #425700;
}

html.dark .world-item:hover .world-name {
    color: #E7D200;
}

.world-separator {
    width: 1px;
    height: 80px;
    background: #425700;
    flex-shrink: 0;
    align-self: center;
    display: block;
}

html.dark .world-separator {
    background: #425700;
}

/* Responsive Worlds List - Mobile (768px alatt) */
@media screen and (max-width: 768px) {
    .world-item {
        padding: 0.5rem 0.75rem;
        min-width: 80px;
        gap: 0.375rem;
    }

    .world-name {
        font-size: 0.7rem;
    }

    .world-icon {
        width: 35px;
        height: 44px;
        background-size: 35px 88px;
    }

    .world-item:hover .world-icon {
        background-position: 0 -44px;
    }
}

/* World Detail Hero */
.world-detail-hero {
    width: 100%;
    height: 60vh;
    max-height: 400px;
    position: relative;
    overflow: hidden;
}

.world-hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
    .world-detail-hero {
        height: 40vh;
        min-height: 300px;
    }
}

/* Animal Detail Hero */
.animal-detail-hero {
    width: 100%;
    height: 430px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.animal-hero-content-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    padding: 0 1rem;
}

.animal-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.animal-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.animal-detail-hero .container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.animal-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    margin-top: 0;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Futura', sans-serif;
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.animal-hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: .5rem;
    text-align: center;
    letter-spacing: 0.1em;
}

html.dark .animal-hero-title {
    color: #feff04;
    font-size: 2.7rem;
}

.animal-hero-divider {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    margin: .5rem 0;
}

html.dark .animal-hero-divider {
    background: rgba(255, 255, 255, 0.5);
}

/* Conservation Status Icons */
.conservation-status {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.status-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.status-icon.active {
    background: #4db8a8;
    border-color: #4db8a8;
    color: #fff;
    box-shadow: 0 0 15px rgba(77, 184, 168, 0.5);
}

/* Text Parameters */
.animal-text-params {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.text-param-row {
    display: flex;
    align-items: baseline;
    text-align: left;
}

.text-param-label {
    font-size: 1rem;
    font-weight: 700;
    color: #feff04;
    margin-right: 0.5rem;
    min-width: fit-content;
}

html.dark .text-param-label {
    color: #feff04;
}

.text-param-value {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
}

html.dark .text-param-value {
    color: #feff04;
    font-size: 1.1rem;
}

/* Numeric Parameters (Big Numbers) */
.animal-numeric-params {
    display: flex;
    gap: 3rem;
    margin-top: .5rem;
    justify-content: center;
}

.numeric-param-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.numeric-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.numeric-minus {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    font-family: 'Arial', sans-serif;
}

html.dark .numeric-minus {
    color: #feff04;
    font-size: 2.2rem;
}

.numeric-value .counter {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    font-family: 'Arial', sans-serif;
}

html.dark .numeric-value .counter {
    color: #feff04;
    font-size: 2.2rem;
}

.numeric-unit {
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    opacity: 0.9;
}

html.dark .numeric-unit {
    color: #feff04;
    font-size: 1.7rem;
}

.numeric-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.numeric-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

@media screen and (max-width: 1024px) {
    .animal-hero-content {
        max-width: 400px;
    }

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

    .numeric-minus,
    .numeric-value .counter {
        font-size: 3rem;
    }

    .numeric-unit {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 768px) {
    .animal-detail-hero {
        height: auto;
        min-height: auto;
        flex-direction: column;
        align-items: stretch;
    }

    .animal-hero-image {
        position: relative;
        width: 100%;
        height: 259px;
        min-height: auto;
    }

    .animal-hero-image::after {
        display: none;
    }

    .animal-hero-content-wrapper {
        position: relative;
        z-index: 1;
        width: 100%;
        padding: 0;
        justify-content: center;
    }

    .animal-hero-content {
        max-width: 100%;
        padding: 2rem 1.5rem;
        margin: 0;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: none;
        border-radius: 0;
    }

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

    .conservation-status {
        gap: 0.5rem;
    }

    .status-icon {
        width: 40px;
        height: 40px;
        font-size: 0.65rem;
    }

    .text-param-label,
    .text-param-value {
        font-size: 0.875rem;
    }

    .animal-numeric-params {
        gap: 2rem;
    }

    .numeric-minus,
    .numeric-value .counter {
        font-size: 2.5rem;
    }

    .numeric-unit {
        font-size: 1rem;
    }

    .numeric-icon {
        width: 50px;
        height: 50px;
    }
}

/* Active state for world items */
.world-item.active {
    background: rgba(255, 255, 255, 0.2);
}

html.dark .world-item.active {
    background: #000;
    border: 2px solid #feff04;
}

.world-item.active .world-icon {
    background-position: 0 -50px;
}

.world-item.active .world-name {
    color: #E7D200;
}

.world-page-content p {
    font-size: 16px;
}

/* YouTube Video Iframe Styling */
.world-page-content iframe {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    margin: 2rem auto;
    display: block;
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.world-page-content iframe:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

html.dark .world-page-content iframe {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

html.dark .world-page-content iframe:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 768px) {
    .world-page-content iframe {
        max-width: 100%;
        margin: 1.5rem auto;
        border-radius: 12px;
    }
}

/* ========================================
   PLAYFUL MODERN INFOBAR STYLES
   ======================================== */

.infobar-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    background: #fff;
    padding: 1rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: visible;
}

html.dark .infobar-container {
    background: #000;
    border: 2px solid #feff04;
    box-shadow: none;
}

/* Playful Card Styles */
.infobar-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 0.75rem;
    border-right: 2px solid rgba(129, 157, 48, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.infobar-card:last-child {
    border-right: none;
}

/* mobile */
@media screen and (max-width: 768px) {
    .infobar-card {
        border-right: none;
        border-bottom: 2px solid rgba(129, 157, 48, 0.1);
    }

    .infobar-card:nth-child(2n) {
        border-right: none;
    }

    .infobar-card:last-child {
        border-bottom: none;
    }
}


@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.infobar-card:hover::before {
    opacity: 1;
}
/*
.infobar-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(129, 157, 48, 0.15);
    border-color: rgba(129, 157, 48, 0.2);
    background: linear-gradient(135deg, rgba(129, 157, 48, 0.08) 0%, rgba(129, 157, 48, 0.12) 100%);
}
*/
html.dark .infobar-card {
    background: #000;
    border: 2px solid #feff04;
}

html.dark .infobar-card::before {
    background: #feff04;
}

html.dark .infobar-card:hover {
    background: #000;
    border-color: #feff04;
    box-shadow: none;
}

/* Card Header with Playful Icons */
.infobar-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.infobar-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.infobar-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 18px;
    background: inherit;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.infobar-card:hover .infobar-icon-wrapper {
    transform: rotate(-8deg) scale(1.15);
}

.infobar-card:hover .infobar-icon-wrapper::after {
    opacity: 0.3;
    animation: pulse-ring 1.5s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Colorful Icon Backgrounds */
.infobar-icon-clock {
    background: linear-gradient(135deg, #a7c945 0%, #a0bb4c 100%);
    color: white;
}

.infobar-icon-ticket {
    background: linear-gradient(135deg, #a7c945 0%, #a0bb4c 100%);
    color: white;
}

.infobar-icon-program {
    background: linear-gradient(135deg, #a7c945 0%, #a0bb4c 100%);
    color: white;
}

.infobar-icon-transport {
    background: linear-gradient(135deg, #a7c945 0%, #a0bb4c 100%);
    color: white;
}

html.dark .infobar-icon-clock,
html.dark .infobar-icon-ticket,
html.dark .infobar-icon-program,
html.dark .infobar-icon-transport {
    background: #feff04;
    color: #000;
    box-shadow: none;
}

.infobar-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #393939;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

html.dark .infobar-card-title {
    color: #feff04;
}

/* Card Content */
.infobar-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    /*min-height: 100px;*/
}

/* Programs and Tickets content should grow to push details link to bottom */
.program-schedules,
.ticket-prices {
    flex: 1;
}

.infobar-main-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: #819D30;
    line-height: 1.2;
}

html.dark .infobar-main-text {
    color: #feff04;
}

.infobar-sub-text {
    font-size: 1rem;
    font-weight: 700;
    color: #666;
}

.infobar-sub-text-2 {
    font-size: 13px;
    font-weight: 500;
    color: #666;
}

html.dark .infobar-sub-text {
    color: #feff04;
    font-size: 17px;
}

/* Status Badges */
.infobar-status {
    margin-top: 0.5rem;
}

.infobar-status-open,
.infobar-status-closed {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.infobar-status-open {
    background: linear-gradient(135deg, #70882c 0%, #c1d38c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(129, 157, 48, 0.3);
}

html.dark .infobar-status-open {
    background: #4b621a;
    color: #feff04;
    box-shadow: none;
}

.infobar-status-open::before {
    content: '●';
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.infobar-status-closed {
    color: #000;
    border: 1px solid #000;
}

html.dark .infobar-status-closed {
    background: #4b621a;
    color: #feff04;
    box-shadow: none;
}

/* Transport Buttons */
.infobar-transport-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 164px;
}

.infobar-transport-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.175rem 1.25rem;
    background: linear-gradient(135deg, rgba(129, 157, 48, 0.1) 0%, rgba(129, 157, 48, 0.15) 100%);
    border: 2px solid rgba(129, 157, 48, 0.2);
    border-radius: 16px;
    color: #4A6B15;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.infobar-transport-btn:hover {
    transform: translateX(4px);
    background: linear-gradient(135deg, #819D30 0%, #6a8227 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(129, 157, 48, 0.3);
}

.infobar-transport-btn i {
    font-size: 1.5rem;
}

html.dark .infobar-transport-btn {
    background: #000;
    border: 2px solid #feff04;
    color: #feff04;
}

html.dark .infobar-transport-btn:hover {
    background: #feff04;
    color: #000;
    box-shadow: none;
}

/* Details Link */
.infobar-details-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4A6B15;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-end;
    position: relative;
}

.infobar-details-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4A6B15;
    transition: width 0.3s ease;
}

.infobar-details-link:hover::after {
    width: calc(100% - 28px);
}

.infobar-details-link:hover {
    gap: 0.75rem;
}

.infobar-details-link i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.infobar-details-link:hover i {
    transform: translateX(4px);
}

html.dark .infobar-details-link {
    color: #feff04;
}

html.dark .infobar-details-link::after {
    background: #feff04;
}

/* Floating Ticket Button (Desktop) */
.infobar-floating-ticket {
    position: absolute;
    top: -150px;
    right: -90px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #819D30 0%, #6a8227 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 20px 60px rgba(129, 157, 48, 0.4);
    transform: rotate(12deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    animation: float-ticket 3s ease-in-out infinite;
}

@keyframes float-ticket {
    0%, 100% {
        transform: rotate(12deg) translateY(0);
    }
    50% {
        transform: rotate(12deg) translateY(-10px);
    }
}

.infobar-floating-ticket:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 30px 80px rgba(129, 157, 48, 0.5);
    animation-play-state: paused;
}

.infobar-ticket-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    transform: rotate(-12deg);
    transition: transform 0.4s ease;
}

.infobar-floating-ticket:hover .infobar-ticket-content {
    transform: rotate(0deg);
}

.infobar-ticket-icon {
    font-size: 3rem;
    color: white;
    line-height: 32px;
    animation: bounce-ticket 2s ease-in-out infinite;
}

@keyframes bounce-ticket {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.infobar-ticket-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.infobar-ticket-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.infobar-ticket-pulse {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 3px solid rgba(129, 157, 48, 0.5);
    animation: pulse-expand 2s ease-out infinite;
}

@keyframes pulse-expand {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

html.dark .infobar-floating-ticket {
    background: #feff04;
    box-shadow: none;
}

html.dark .infobar-ticket-icon,
html.dark .infobar-ticket-title,
html.dark .infobar-ticket-subtitle {
    color: #000;
}

html.dark .infobar-ticket-pulse {
    border-color: #feff04;
}

/* Mobile Ticket Button */
.infobar-mobile-ticket {
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #819D30 0%, #6a8227 100%);
    border-radius: 16px 16px 0 0;
    color: white;
    text-decoration: none;
    box-shadow: 0 -4px 20px rgba(129, 157, 48, 0.3);
    transition: all 0.3s ease;
}

.infobar-mobile-ticket:hover {
    background: linear-gradient(135deg, #6a8227 0%, #819D30 100%);
    box-shadow: 0 -8px 30px rgba(129, 157, 48, 0.4);
}

html.dark .infobar-mobile-ticket {
    background: #feff04;
    color: #000;
    box-shadow: none;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .infobar-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .infobar-floating-ticket {
        top: -120px;
        right: -30px;
        width: 200px;
        height: 200px;
    }
}

@media screen and (max-width: 768px) {
    .infobar-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
        margin-top: 40px;
    }

    .infobar-card {
        padding: 1.5rem;
    }

    .infobar-icon-wrapper {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .infobar-main-text {
        font-size: 1.5rem;
    }

    .infobar-card-content {
        min-height: 80px;
    }
}

/* ========================================
   PLAYFUL SECTION HEADERS (ACTUALS & POSTS)
   ======================================== */

/* Section spacing optimization */

.section-posts {
    padding: 2rem 0;
}

.section-actuals {
    padding: 2rem 0 0 0;
}

/* Playful Section Header */
.section-header-playful {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
}

/* Icon Bubble */
.section-icon-bubble {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #aac566 0%, #cbdaa7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(129, 157, 48, 0.4);
    animation: float-bubble 3s ease-in-out infinite;
    position: relative;
}

.section-icon-bubble::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #aac566 0%, #cbdaa7 100%);
    opacity: 0.3;
    animation: pulse-bubble 2s ease-out infinite;
    z-index: -1;
}

@keyframes float-bubble {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes pulse-bubble {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Different color for news section */
.section-icon-news {
    background: linear-gradient(135deg, #4FACFE 0%, #00F2FE 100%);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
}

.section-icon-news::before {
    background: linear-gradient(135deg, #4FACFE 0%, #00F2FE 100%);
}

html.dark .section-icon-bubble {
    background: #feff04;
    color: #000;
    box-shadow: none;
}

/* Section Title */
.section-title-playful {
    font-size: 2rem;
    font-weight: 700;
    color: #417C85;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    position: relative;
    padding: 0 2rem;
}

.section-title-playful::before,
.section-title-playful::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #819D30;
    opacity: 0.6;
    animation: sparkle 2s ease-in-out infinite;
}

.section-title-playful::before {
    left: 0;
}

.section-title-playful::after {
    right: 0;
    animation-delay: 1s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.6;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
    }
}

html.dark .section-title-playful {
    color: #feff04;
}

html.dark .section-title-playful::before,
html.dark .section-title-playful::after {
    color: #feff04;
}

/* Decoration Line */
.section-decoration-line {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg,
    transparent 0%,
    #819D30 20%,
    #6a8227 50%,
    #819D30 80%,
    transparent 100%);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.section-decoration-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: slide-shine 3s ease-in-out infinite;
}

@keyframes slide-shine {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

html.dark .section-decoration-line {
    background: #feff04;
}

/* Playful View All Button */
.view-all-btn-playful {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #4A6B15 0%, #3a5510 100%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(129, 157, 48, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.view-all-btn-playful::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.view-all-btn-playful:hover::before {
    width: 300px;
    height: 300px;
}

.view-all-btn-playful:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(129, 157, 48, 0.4);
}

.view-all-btn-playful i {
    font-size: 1.5rem;
    transition: transform 0.4s ease;
}

.view-all-btn-playful:hover i {
    transform: translateX(8px);
}

.btn-playful-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.view-all-btn-playful:hover .btn-playful-shine {
    left: 200%;
}

html.dark .view-all-btn-playful {
    background: #feff04;
    color: #000;
    font-size: 1.2rem;
    box-shadow: none;
}

html.dark .view-all-btn-playful:hover {
    box-shadow: none;
}

/* Optimize carousel spacing */
.events-swiper,
.news-swiper {
    padding-bottom: 3rem;
}

.events-swiper .swiper-pagination,
.news-swiper .swiper-pagination {
    bottom: 0 !important;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .section-actuals,
    .section-posts {
        padding: 1.5rem 0;
    }

    .section-header-playful {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .section-icon-bubble {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .section-title-playful {
        font-size: 1.5rem;
        padding: 0 1.5rem;
    }

    .section-title-playful::before,
    .section-title-playful::after {
        font-size: 1rem;
    }

    .section-decoration-line {
        width: 150px;
        height: 3px;
    }

    .view-all-btn-playful {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* ========================================
   COMPACT ARTICLE CARDS (Carousel Version)
   ======================================== */

.article-card-compact {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    width: 295px;
}

html.dark .article-card-compact {
    background: #000;
    border: 2px solid #feff04;
    box-shadow: none;
}


.article-compact-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

/* Compact Image Wrapper */
.article-compact-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.article-compact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html.dark .article-compact-overlay {
    background: linear-gradient(135deg,
    rgba(254, 255, 4, 0) 0%,
    rgba(254, 255, 4, 1) 100%);
}

.article-compact-arrow {
    font-size: 3rem;
    color: white;
    transform: translateX(-20px);
}

html.dark .article-compact-arrow {
    color: #000;
}

/* Compact Content Area */
.article-compact-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
    background: white;
    position: relative;
}

html.dark .article-compact-content {
    background: #000;
}

html.dark .article-compact-content::before {
    background: #feff04;
}

/* Compact Date Badge */
.article-compact-date {
    display: inline-flex;
    margin-left: 2rem;
    align-items: center;
    gap: 0.5rem;
    padding: 0.1rem 1rem;
    background: linear-gradient(135deg, rgba(129, 157, 48, 0.1) 0%, rgba(129, 157, 48, 0.15) 100%);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4A6B15;
    align-self: flex-start;
    border: 2px solid rgba(129, 157, 48, 0.2);
    transition: all 0.3s ease;
}

.section-posts .article-compact-date {
    margin-left: 0;
}

.section-posts .article-card-compact .infobar-details-link {
    margin-right: 0;
    margin-bottom: 0;
}

.article-compact-content {
    text-align: left;
}

.article-compact-date i {
    font-size: 1rem;
}

html.dark .article-compact-date {
    background: #000;
    border: 2px solid #feff04;
    color: #feff04;
    font-size: 0.95rem;
}

html.dark .article-card-compact:hover .article-compact-date {
    background: #feff04;
    color: #000;
    border-color: #feff04;
}

.article-card-compact .infobar-details-link {
    margin-bottom: 2rem;
    margin-right: 2rem;
}

.actual-info-text {
    font-size: 13px;
    height: 56px;
    overflow: hidden;
}

.section-posts .actual-info-text {
    margin-top: .5rem;
}

/* Compact Title */
.article-compact-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    color: #393939;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
    height: 60px;
    text-align: left;
}

.section-posts .article-compact-title {
    margin-top: 1rem;
}

html.dark .article-compact-title {
    color: #feff04;
    font-size: 1.35rem;
}
/* Swiper Slide Height Fix */
.events-swiper .swiper-slide,
.news-swiper .swiper-slide {
    height: auto;
}

/* Mobile swiper - full width slides */
.events-swiper .swiper-slide,
.news-swiper .swiper-slide {
    width: 100%;
}

@media screen and (min-width: 768px) {
    .events-swiper .swiper-slide,
    .news-swiper .swiper-slide {
        width: auto;
    }
}

/* Responsive Compact Cards */
@media screen and (max-width: 768px) {

    .article-card-compact {
        width: 100%;
    }

    .article-compact-image-wrapper {
        height: 180px;
    }

    .article-compact-content {
        padding: 1.25rem;
    }

    .article-compact-title {
        font-size: 1.1rem;
    }

    .article-compact-date {
        font-size: 0.8rem;
        padding: 0.4rem 0.875rem;
    }

    .article-card-compact:hover {
        transform: translateY(-8px) rotate(0deg);
    }
}

/* Make carousel show multiple items on desktop */
@media screen and (min-width: 1024px) {
    .news-swiper .swiper-slide {
        width: 350px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .news-swiper .swiper-slide {
        width: 320px;
    }
}

/* Mobile swiper - full width slides */
.events-swiper-mobile .swiper-slide {
    width: 100%;
}

.events-swiper-mobile {
    padding-bottom: 3rem;
}

.events-swiper-mobile .swiper-pagination {
    bottom: 0 !important;
}

.events-swiper-mobile .article-compact-image-wrapper {
    height: 240px;
}

/* ========================================
   DESKTOP ACTUALS GRID LAYOUT
   ======================================== */

.actuals-desktop-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
}

/* Compact grid wrapper for articles 2-4 */
.actuals-compact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}

/* Hero Article Card (First Item - Full Width) */
.article-card-hero {
    grid-column: 1 / -1;
    display: flex;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.article-card-hero:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(129, 157, 48, 0.3);
}

html.dark .article-card-hero {
    background: #000;
    border: 3px solid #feff04;
    box-shadow: none;
}

html.dark .article-card-hero:hover {
    border-color: #feff04;
    box-shadow: none;
}

.article-hero-link {
    display: flex;
    flex-direction: row;
    width: 100%;
    text-decoration: none;
}

/* Hero Image Section (Left Side - 50%) */
.article-hero-image-wrapper {
    position: relative;
    width: 50%;
    min-height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.article-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-card-hero:hover .article-hero-image {
    transform: scale(1.1) rotate(1deg);
}

/* Hero Overlay */
.article-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
    rgba(129, 157, 48, 0) 0%,
    rgba(129, 157, 48, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-card-hero:hover .article-hero-overlay {
    opacity: 1;
}

html.dark .article-hero-overlay {
    background: linear-gradient(135deg,
    rgba(254, 255, 4, 0) 0%,
    rgba(254, 255, 4, 1) 100%);
}

.article-hero-arrow {
    font-size: 5rem;
    color: white;
    transform: translateX(-30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-card-hero:hover .article-hero-arrow {
    transform: translateX(0);
    animation: bounce-hero-arrow 0.8s ease-in-out;
}

@keyframes bounce-hero-arrow {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(15px);
    }
}

html.dark .article-hero-arrow {
    color: #000;
}

/* Hero Content Section (Right Side - 50%) */
.article-hero-content {
    width: 50%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: center;
    position: relative;
}

.article-hero-content::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: 0;
    width: 5px;
    height: 80px;
    background: linear-gradient(90deg,
    transparent 0%,
    #c8da91 25%,
    #6a8227 50%,
    #c8da91 75%,
    transparent 100%);
    border-radius: 0 3px 3px 0;
    transition: height 0.4s ease;
}

.article-card-hero:hover .article-hero-content::before {
    height: 120px;
}

html.dark .article-hero-content::before {
    background: #feff04;
}

/* Hero Date */
.article-hero-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, rgba(129, 157, 48, 0.1) 0%, rgba(129, 157, 48, 0.2) 100%);
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    color: #4A6B15;
    align-self: flex-start;
    border: 2px solid rgba(129, 157, 48, 0.3);
    transition: all 0.3s ease;
}

.article-card-hero:hover .article-hero-date {
    background: linear-gradient(135deg, #819D30 0%, #6a8227 100%);
    color: white;
    border-color: #819D30;
    transform: scale(1.05);
}

.article-hero-date i {
    font-size: 1.125rem;
}

html.dark .article-hero-date {
    background: #000;
    border: 2px solid #feff04;
    color: #feff04;
    font-size: 1.1rem;
}

html.dark .article-card-hero:hover .article-hero-date {
    background: #feff04;
    color: #000;
    border-color: #feff04;
}

/* Hero Title */
.article-hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    color: #393939;
    margin: 0;
    transition: color 0.3s ease;
}

.article-card-hero:hover .article-hero-title {
    color: #819D30;
}

html.dark .article-hero-title {
    color: #feff04;
    font-size: 2.2rem;
}

html.dark .article-card-hero:hover .article-hero-title {
    color: #feff04;
}

/* Hero Lead Text */
.article-hero-lead {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

html.dark .article-hero-lead {
    color: #feff04;
    font-size: 18px;
}

/* Hero Read More */
.article-hero-readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #4A6B15;
    font-weight: 700;
    font-size: 1.1rem;
    align-self: flex-start;
    position: relative;
    margin-top: 1rem;
}

.article-hero-readmore::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: #819D30;
    transition: width 0.4s ease;
}

.article-card-hero:hover .article-hero-readmore::after {
    width: calc(100% - 35px);
}

.article-hero-readmore i {
    font-size: 1.5rem;
    transition: transform 0.4s ease;
}

.article-card-hero:hover .article-hero-readmore i {
    transform: translateX(8px);
}

html.dark .article-hero-readmore {
    color: #feff04;
}

html.dark .article-hero-readmore::after {
    background: #feff04;
}

/* Grid Items (2-4) - Larger Compact Cards */
.actuals-desktop-grid .article-card-compact {
    min-height: 420px;
    width: 100%;
}

.actuals-desktop-grid .article-compact-image-wrapper {
    height: 250px;
}

.actuals-desktop-grid .article-compact-title {
    font-size: 1.35rem;
}

/* Responsive for smaller desktop */
@media screen and (max-width: 1200px) {
    .article-hero-content {
        padding: 2rem;
    }

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

    .article-hero-lead {
        font-size: 1rem;
    }

    .actuals-desktop-grid .article-compact-image-wrapper {
        height: 220px;
    }
}

@media screen and (max-width: 1024px) {
    .article-hero-image-wrapper {
        min-height: 350px;
    }

    .article-hero-title {
        font-size: 1.5rem;
    }

    .actuals-desktop-grid {
        gap: 1.25rem;
    }
}

html.dark body {
    background: #121212;
    color: #e0e0e0;
}

html.dark .animals-section {
    background: #1e1e1e;
}

html.dark .animals-title {
    color: #feff04;
}

.map-image {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ========================================
   HOTELS CARDS
   ======================================== */

.hotel-card {
    height: auto;
}

.hotel-card-inner {
    transition: all 0.3s ease;
}

.hotel-card-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

html.dark .hotel-card-inner:hover {
    box-shadow: 0 20px 40px rgba(254, 255, 4, 0.2);
}

.hotel-card-header {
    position: relative;
}

.hotel-image-wrapper img {
    transition: transform 0.5s ease;
}

.hotel-card-inner:hover .hotel-image-wrapper img {
    transform: scale(1.08);
}

.hotel-video {
    background: #000;
    border: 2px solid rgba(129, 157, 48, 0.1);
    transition: border-color 0.3s ease;
}

.hotel-card-inner:hover .hotel-video {
    border-color: rgba(129, 157, 48, 0.3);
}

html.dark .hotel-video {
    border-color: rgba(254, 255, 4, 0.2);
}

html.dark .hotel-card-inner:hover .hotel-video {
    border-color: rgba(254, 255, 4, 0.4);
}

.hotel-info-item {
    padding: 0.75rem;
    border-radius: 8px;
    background: rgba(129, 157, 48, 0.03);
    transition: all 0.3s ease;
}

.hotel-info-item:hover {
    background: rgba(129, 157, 48, 0.08);
    transform: translateX(4px);
}

html.dark .hotel-info-item {
    background: rgba(254, 255, 4, 0.05);
}

html.dark .hotel-info-item:hover {
    background: rgba(254, 255, 4, 0.1);
}

.hotels-swiper {
    padding-bottom: 3rem;
}

.hotels-swiper .swiper-pagination {
    bottom: 0;
}

.hotels-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #819D30;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.hotels-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.3);
}

html.dark .hotels-swiper .swiper-pagination-bullet {
    background: #feff04;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hotel-card-header h2 {
        font-size: 1.5rem;
    }

    .hotel-image-wrapper {
        height: 260px !important;
    }

    .hotel-info-item {
        padding: 0.5rem;
    }
}

/* ========================================
   CONTACT PAGE TABLE STYLES
   ======================================== */

.page-content .contact {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    margin: 2rem 0 !important;
    border: none !important;
}

.page-content .contact tbody {
    display: block;
    width: 100%;
}

.page-content .contact tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    height: auto !important;
}

.page-content .contact td {
    display: block;
    width: 100% !important;
    padding: 2rem !important;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(129, 157, 48, 0.1);
    transition: all 0.3s ease;
    height: auto !important;
    vertical-align: top !important;
    text-align: center !important;
}

.page-content .contact td:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(129, 157, 48, 0.3);
}

html.dark .page-content .contact td {
    background: #000;
    border-color: #feff04;
    box-shadow: 0 4px 20px rgba(254, 255, 4, 0.1);
}

html.dark .page-content .contact td:hover {
    box-shadow: 0 8px 30px rgba(254, 255, 4, 0.2);
}

/* Contact text styling */
.page-content .contact p {
    margin: 0.5rem 0 !important;
    line-height: 1.8 !important;
    text-align: center !important;
}

.page-content .contact p strong {
    font-weight: 700;
    color: #393939;
    display: block;
    margin: 0.25rem 0;
}

html.dark .page-content .contact p strong {
    color: #e0e0e0;
}

/* Links styling */
.page-content .contact a {
    color: #4A6B15;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-block;
}

.page-content .contact a:hover {
    color: #3a5510;
    text-decoration: underline;
    transform: scale(1.05);
}

html.dark .page-content .contact a {
    color: #feff04;
}

html.dark .page-content .contact a:hover {
    color: #fff;
}

/* Phone links special styling */
.page-content .contact a.phone,
.page-content .contact a[href^="tel:"] {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    background: rgba(129, 157, 48, 0.1);
    border-radius: 8px;
    margin: 0.25rem 0;
}

.page-content .contact a.phone:hover,
.page-content .contact a[href^="tel:"]:hover {
    background: rgba(129, 157, 48, 0.2);
    text-decoration: none;
}

html.dark .page-content .contact a.phone,
html.dark .page-content .contact a[href^="tel:"] {
    background: rgba(254, 255, 4, 0.1);
}

html.dark .page-content .contact a.phone:hover,
html.dark .page-content .contact a[href^="tel:"]:hover {
    background: rgba(254, 255, 4, 0.2);
}

/* Email links styling */
.page-content .contact a[href^="mailto:"] {
    font-size: 0.95rem;
    color: #0092E4;
    text-decoration: underline;
}

html.dark .page-content .contact a[href^="mailto:"] {
    color: #feff04;
}

/* First aid section highlight */
.page-content .contact td p strong span[style*="color: rgb(129, 157, 48)"] {
    color: #4A6B15 !important;
    font-size: 1.1rem;
}

html.dark .page-content .contact td p strong span[style*="color: rgb(129, 157, 48)"] {
    color: #feff04 !important;
}

/* Section dividers */
.page-content .contact td:first-child {
    border-right: none;
}

.page-content .contact tr:first-child td {
    position: relative;
}

html.dark .page-content .contact tr:first-child td::after {
    background: linear-gradient(90deg, transparent, #feff04, transparent);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-content .contact tr {
        gap: 1.5rem;
    }

    .page-content .contact td {
        padding: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .page-content .contact tr {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .page-content .contact td {
        padding: 1.5rem !important;
    }

    .page-content .contact td::after {
        display: none;
    }

    .page-content .contact p strong {
        font-size: 0.95rem;
    }

    .page-content .contact a.phone,
    .page-content .contact a[href^="tel:"] {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .page-content .contact td {
        padding: 1rem !important;
        border-radius: 12px;
    }

    .page-content .contact p {
        font-size: 0.9rem;
    }

    .page-content .contact p strong {
        font-size: 0.9rem;
    }

    .page-content .contact a {
        font-size: 0.9rem;
    }
}