/**
 * Basic CSS Structure
 * 
 * Add your custom styles here.
 * This file provides minimal structure - customize as needed.
 */

/* TikTok Sans Expanded Font Faces */
@font-face {
    font-family: 'TikTok Sans Expanded';
    src: url('/public/assets/fonts/static/TikTokSans_Expanded-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TikTok Sans Expanded';
    src: url('/public/assets/fonts/static/TikTokSans_Expanded-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TikTok Sans Expanded';
    src: url('/public/assets/fonts/static/TikTokSans_Expanded-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root{
    --main-hor-padding:3rem;
    --darkgreen:rgba(38,53,45,1);
    --lightgreen:rgba(25,225,112,1);
    --darkergreen:rgba(20,36,27, 1);
    --maincolor:rgba(20,36,27,1);
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'TikTok Sans Expanded', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.total_wrapper {
    display: flex;background:#fff;
    flex-direction: column;
    width:100%;max-width:2400px;
    margin:0 auto;
}

/* Container */
.container {
    width:100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 var(--main-hor-padding);
}

/* Header */
header {
    background-color: #fff;
    padding: 10px  0;
    /* border-bottom: 1px solid #dee2e6; */
    position: relative;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem 0;
    position: relative;
}

/* Logo */
.header-logo {
    flex-shrink: 0;
    margin-right:auto;
}

.header-logo img {
    height: auto;
    max-height: 50px;
    width: auto;
    display: block;
}

/* Desktop Navigation */
.main-nav {
    /* flex: 1; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li:has(ul)::after {content:" ";
display: block;position: absolute;
width:8px;height:4px;
bottom:0;left:calc(50% - 4px);
background:url(/public/assets/images/menu_close.png) no-repeat left center;}

.main-nav ul li:has(ul).open::after,
    .main-nav ul li:has(ul):hover::after {
    transform: rotate(180deg);
}

.main-nav ul li a {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: rgb(20, 36, 27);
    transition: color 0.3s, background-color 0.3s;
    font-family: "TikTok Sans Expanded", sans-serif;
    font-weight: 500;
    font-size: 17px;
    transition: .5s;
}
.main-nav ul li a:after {content: ".";}

.main-nav ul li a:hover {
    color: var(--lightgreen);
}

.main-nav ul li.active > a {
    color:  var(--lightgreen);
}

/* Desktop Submenu */
.main-nav ul li ul {
    display: none;
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    background-color: var(--darkgreen);
    border: 0;
    box-shadow: none;
    min-width: 180px;
    z-index: 1000;
    margin-top: 0;
    list-style: none;
    padding: 10px 0;
}

/* Ensure contact icon doesn't appear in submenus */
.main-nav ul li ul li.contact {
    display: none;
}

.main-nav ul li:hover > ul {
    display: block;
}

.main-nav ul li ul:hover {
    display: block;
}

.main-nav ul li ul li {
    width: 100%;
}

.main-nav ul li ul li a {
    padding: 0.75rem 1rem;
    text-align: center;
    border-bottom: 0;
    font-size: 14px;
    color: rgb(167,170,168);
    font-family: "TikTok Sans Expanded", sans-serif;
    font-weight: 500;
    transition: color 0.3s, background-color 0.3s;
}

.main-nav ul li ul li a:hover {
    color: rgb(255,255,255);
    /* background-color: rgba(0, 0, 0, 0.02); */
}

.main-nav ul li ul li.active > a {
    color: #fff;
    /* background-color: rgb(35, 31, 32); */
}

.main-nav ul li ul li:last-child a {
    border-bottom: none;
}

/* Contact Icon in Menu */
.main-nav ul li.contact {
    margin-left: 1.5em;margin-right: 1.5em;
}

.main-nav ul li.contact a {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
}
.main-nav ul li.contact a:after {content: "";}
.main-nav ul li.contact a img {
    /* width: 20px;
    height: 20px; */
    object-fit: contain;
}

/* Language Selector */
.language-selector {
    position: relative;
    margin-left: 1rem;
    cursor: pointer;
    text-transform: uppercase;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: "TikTok Sans Expanded", sans-serif;
    font-weight: 500;
    font-size: 10px;
    color: rgb(20, 36, 27);
    padding: 0.25rem 0.5rem;
}

.lang-arrow {
    font-size: 8px;
    transform: rotate(90deg);
    transition: transform 0.3s;
}

.language-selector:hover .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    min-width: 80px;
    z-index: 1000;
    /* margin-top: 4px; */
    list-style: none;
    padding: 0;
}

.language-selector:hover .lang-dropdown {
    display: block;
}

.lang-dropdown li {
    margin: 0;
}

.lang-dropdown li a {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: rgb(20, 36, 27);
    font-family: "TikTok Sans Expanded", sans-serif;
    font-weight: 500;
    font-size: 10px;
    transition: background-color 0.3s;
}

.lang-dropdown li a:hover {
    background-color: #f0f0f0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 1rem;
    position: fixed;
    top: 2rem;
    right: var(--main-hor-padding);
    width: 24px;
    height: 20px;
    justify-content: center;
    z-index: 10001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 4px;
    background-color: rgb(20, 36, 27);
    transition: all 0.3s ease;
    position: absolute;
}

.mobile-menu-toggle span:first-child {
    top: 4px;
}

.mobile-menu-toggle span:last-child {
    bottom: 4px;
}

/* Rotate bars to form X when menu is open */
.mobile-menu-toggle.active span:first-child {
    top: 8px;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:last-child {
    bottom: 8px;
    transform: rotate(-45deg);
}

/* Change color to white when menu is open (for visibility on dark background) */
.mobile-nav.active ~ .container .mobile-menu-toggle span,
.mobile-menu-toggle.active span {
    background-color: #fff;
}

/* Rotate bars to form X when menu is open */
.mobile-nav.active ~ .container .mobile-menu-toggle span:first-child,
body:has(.mobile-nav.active) .mobile-menu-toggle span:first-child {
    top: 8px;
    transform: rotate(45deg);
}

.mobile-nav.active ~ .container .mobile-menu-toggle span:last-child,
body:has(.mobile-nav.active) .mobile-menu-toggle span:last-child {
    bottom: 8px;
    transform: rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgb(26, 32, 26);
    z-index: 10000;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.mobile-lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-family: "TikTok Sans Expanded", sans-serif;
    font-weight: 500;
    font-size: 14px;
}

.mobile-lang-arrow {
    font-size: 12px;
}


.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-list > li > a {
    display: block;
    padding: 1rem 1em 1rem 2rem;
    color: #fff;
    text-decoration: none;
    font-family: "TikTok Sans Expanded", sans-serif;
    font-weight: 500;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}

.mobile-menu-list > li > a:hover,
.mobile-menu-list > li.active > a {
    /* background-color: rgba(255, 255, 255, 0.1); */
    color: rgb(25, 225, 112);
}

.mobile-menu-list > li.active > a {
    color: rgb(25, 225, 112);
}

/* Mobile Submenu */
.mobile-menu-list ul {
    /* display: none; */
    list-style: none;
    padding: 0;
    margin: 0;
    /* background-color: rgba(0, 0, 0, 0.2); */
}

.mobile-menu-list li > ul {
    display: block;
    background-color: inherit;
}
.mobile-menu-list li>ul li {
    border:0;
    font-size: 0.9
}
.mobile-menu-list ul li a {
    padding: 0 1rem 0 2.5rem;
    border: 0;
    /* font-size: 0.9em; */
    color: #fff;
}

.mobile-menu-list ul ul {
    margin-bottom: 0;
}
.mobile-menu-list ul ul ul {
    margin: 0 0 20px 20px;
}

.mobile-menu-list ul ul li a {
    /* padding: .5rem 1rem .5rem 4.5rem; */
    border: 0;
    font-size: 0.9em;
    color: #a7aaa8;
}
/* Mobile menu items with children */
.mobile-menu-list > li.has-children > a {
    position: relative;
    padding-right: 3rem;
}

.mobile-menu-list > li.has-children > a::before {
    content: '▼';
    position: absolute;
    left: 1rem;
    font-size: 10px;
    transition: transform 0.3s;
    color: #fff;
}

.mobile-menu-list > li.has-children.open > a::before {
    transform: rotate(180deg);
    content: '▲';
}

.mobile-menu-list > li.has-children > a {
    padding-left: 3rem;
}
@media (max-width: 1200px) {
    :root {
        --main-hor-padding:2rem;
    }
    .main-nav ul li a {padding:.05rem .25rem;}
    .main-nav ul li.contact {margin-left: .5em;margin-right: .5em;}
    .language-selector {margin-left: 0;}
}


/* Responsive Styles */
@media (max-width: 900px) {
    :root {
        --main-hor-padding: 1rem;
    }
    .main-nav {
        display: none;
    }
    
    .language-selector {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .header-content {
        padding: 0.75rem 0;
    }
    
    .header-logo img {
        max-height: 40px;
    }
}

/* Navigation (legacy support) */
nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

nav ul li {
    position: relative;
}

nav ul li a {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

nav ul li a:hover {
    color:  var(--lightgreen);
}

nav ul li.active > a {
    color:  var(--lightgreen);
    /* font-weight: bold; */
}

/* Submenu */
nav ul li ul {
    display: none;
    position: absolute;
    top: calc(100% - 1px); /* Slight overlap to prevent gap */
    left: 0;
    background-color: #fff;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    min-width: 200px;
    z-index: 1000;
    margin-top: 0;
}

/* Show submenu on hover - only when cursor is over the parent menu item */
nav ul li:hover > ul {
    display: block;
}

/* Ensure submenu stays visible when hovering over it */
nav ul li ul:hover {
    display: block;
}

nav ul li ul li {
    width: 100%;
}

nav ul li ul li a {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f0f0f0;
}

nav ul li ul li:last-child a {
    border-bottom: none;
}

/* Main Content */
main {
    padding: 0 0 2rem 0;
    min-height: 60vh;
    background-color: #fff
}

/* Footer */
footer {
    color: #fff;
    background-color: var(--darkgreen);
    padding: 2rem 0;
    border-bottom: 16px solid var(--darkergreen);
    
}
footer a {
    color: #fff;
    text-decoration: none;
}
footer .container {max-width: 1200px;
    padding:50px var(--main-hor-padding) 0 var(--main-hor-padding);
    /* display: flex;justify-content: space-between;align-items: flex-start; */
    }

div.footer-content {display: flex;justify-content: space-between;align-items: stretch;
gap:10%;}
div.footer-content .left {width: 40%;}
div.footer-content .right {width: 50%;position: relative;padding:0 0 0 0;}
div.footer-content .right a.gravity {font-size:16px;color:rgb(123,129,125);font-weight: 700;
display:block;position:absolute;bottom:0;right:0;text-decoration: none;
padding:0 0 0 30px;background:url(/public/assets/images/cross_white.png) no-repeat left center;}


/* Footer Details */
footer .details {border-left:1px solid rgba(181,184,182,1);
    margin:50px 0 0;
    padding:0 0 20px 30px;}
footer .details div {margin-bottom:30px;}
footer .details div label {
    font-weight: 400;
    color: rgb(181, 184, 182);
    font-size: 14px;
}
footer .details div label::after {
    content: ".";
}
footer .details div p {
    font-weight: 300;
    font-size: 25px;
    color: rgb(225, 227, 225);
}

footer .details div a.address span.google-map{
    padding-left:25px;
    background:url(/public/assets/images/cross_white.png) no-repeat left center;
    display:block;
    font-weight: 700;font-size:11px;
    color:var(--lightgreen);letter-spacing:2.2px;
}

footer .details div ul.social {
    list-style: none;display: flex;
    justify-content: flex-start;
    padding:10px 0 0 0;
    margin:0;
}
footer .details div ul.social li {
    display: inline-block;
    margin-right: 10px;
}
footer .details div ul.social li a{
    height:19px;text-indent:-9999px;overflow:hidden;
    display: inline-block;
    margin-right: 15px;
}
footer .details div ul.social li a.fb{
    width: 10px;background:url(/public/assets/images/footer_facebook.png) no-repeat left center;
}
footer .details div ul.social li a.ig{
    width:19px;background:url(/public/assets/images/footer_instagram.png) no-repeat left center;
}
footer .details div ul.social li a.linkedin{
    width:18px;background:url(/public/assets/images/footer_linkedin.png) no-repeat left center;
}

/* Contact Form */
footer .form {
    flex: 1;
    max-width: 525px;
}

footer .form .form-heading {
    font-size: 14px;
    font-family: 'TikTok Sans Expanded', sans-serif;
    color: rgb(181, 184, 182);
    font-weight: 400;
    margin-bottom: 20px;
}
footer .form .form-heading:after {content:".";}

footer .form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

footer .form input,
footer .form textarea {
    border-radius: 2px;
    background-color: rgb(225, 227, 225);
    box-shadow: inset 0px 0px 4px 0px rgba(0, 0, 0, 0.35);
    border: none;
    padding: 12px 15px;
    font-family: 'TikTok Sans Expanded', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    color: rgb(138, 143, 140);
    width: 100%;
    height: 49px;
    box-sizing: border-box;
}

footer .form textarea {
    height: auto;
    min-height: 120px;
    resize: vertical;
}

footer .form input::placeholder,
footer .form textarea::placeholder {
    color: rgb(138, 143, 140);
    opacity: 1;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

footer .form .submit-btn {
    background-color: rgb(58, 71, 64);
    border: 2px solid rgb(225, 227, 225);
    border-style: solid;
    width: 84px;
    height: 39px;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    margin-top: 10px;
}

footer .form .submit-btn:hover {
    opacity: 0.8;
}

footer .form .submit-btn img {
    display: block;
    height: auto;
    max-width: 100%;
}

footer .form .submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

footer .form .form-message {
    margin-top: 10px;
    padding: 10px;
    font-size: 14px;
    font-weight: 400;
    display: none;
}

footer .form .form-message.success {
    color: var(--lightgreen);
    display: block;
}

footer .form .form-message.error {
    color: #ff6b6b;
    display: block;
}

/* Article Content */
.article-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.article-content h1::after {content:".";}

.article-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content p {
    margin-bottom: 1rem;
}

/* Banner Images - Full Width Before Header */
.article-banners {
    width: 100%;
    margin: 0 0 2rem 0;
}

.banner-single img {
    width: 100%;
    height: auto;
    display: block;
}

/* Banner Carousel - Swiper */
.banner-carousel {
    width: 100%;
    height: 500px;
    background: #f5f5f5;
}

.banner-carousel .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.banner-carousel .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Swiper Navigation Buttons */
.banner-carousel .swiper-button-prev,
.banner-carousel .swiper-button-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    color: white;
    transition: background 0.3s ease;
}

.banner-carousel .swiper-button-prev:after,
.banner-carousel .swiper-button-next:after {
    font-size: 20px;
    font-weight: bold;
}

.banner-carousel .swiper-button-prev:hover,
.banner-carousel .swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Swiper Pagination */
.banner-carousel .swiper-pagination {
    bottom: 20px;
}

.banner-carousel .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.banner-carousel .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 1);
    width: 24px;
    border-radius: 6px;
}

/* Mobile Banner Carousel */
@media (max-width: 768px) {
    .banner-carousel {
        height: 300px;
    }
    
    .banner-carousel .swiper-button-prev,
    .banner-carousel .swiper-button-next {
        width: 40px;
        height: 40px;
    }
    
    .banner-carousel .swiper-button-prev:after,
    .banner-carousel .swiper-button-next:after {
        font-size: 16px;
    }
    
    .banner-carousel .swiper-pagination {
        bottom: 10px;
    }
}

/* Main Images - Float Right with Text Wrapping */
.article-text-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding:2em 0 2em;
    font-weight: 500;font-size:17px;
    color:var(--darkergreen);
}


/* .article-text-wrapper .text h2 {mar} */


.article-text-wrapper .text ul {
    margin: 1em 0 2em 0;
    list-style: none;
    padding-left: 0;
}

.article-text-wrapper .text ul li {
    position: relative;
    padding-left: 2em;
    margin-bottom: 0.75em;
}

.article-text-wrapper .text ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.3em;
    width: 16px;
    height: 16px;
    background-image: url('/public/assets/images/cross_black.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.article-main-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.article-main-images .main-image {
    margin: 0;
}

.article-main-images a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-main-images a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Magnifying glass hover effect disabled for main images */

.article-main-images img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.article-main-images a:hover img {
    opacity: 0.8;
}

.article-main-images figcaption {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Desktop: Main images float right with text wrapping */
@media (min-width: 769px) {
    .article-text-wrapper {
        display: block;
        position: relative;
    }
    
    .article-main-images {
        float: right;
        width: 40%;
        max-width: 500px;
        margin: 0 0 1.5rem 2rem;
    }
    
    /* Clear float after text */
    .article-text-wrapper::after {
        content: "";
        display: table;
        clear: both;
    }
}

/* Mobile: Main images appear before text */
@media (max-width: 768px) {
    .article-text-wrapper {
        display: flex;
        flex-direction: column;
    }
    
    .article-main-images {
        order: -1;
        width: 100%;
    }
}

/* Photo Gallery */
.photo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
    justify-content: center;
}

.photo-gallery figure {
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
}

.photo-gallery a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-gallery a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* .photo-gallery a::after {
    content: "🔍";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.photo-gallery a:hover::after {
    opacity: 0.9;
} */

.photo-gallery img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.photo-gallery a:hover img {
    opacity: 0.8;
}

.photo-gallery figcaption {
    margin-top: 0.5rem;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* Article List */
.article-list {
    margin: 3rem 0;
}

.article-list-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.article-list-item {
    display: block;
    background: #fff;
    text-decoration: none;
    color: inherit;
}

.article-list-thumbnail {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #f5f5f5;
}

.article-list-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.article-list-content {
    padding: 1.5rem 1.5rem 1.5rem 0;
    position: relative;
}

.article-list-subtitle {
    font-size: 13px;
    font-family: "tiktok sans expanded", sans-serif;
    color: rgb(20, 36, 27);
    font-weight: 400;
    margin: 0 0 0.5rem 0;
    padding: 0;
}

.article-list-title {
    font-size: 25px;
    font-family: "tiktok sans expanded", sans-serif;
    color: rgb(20, 36, 27);
    line-height: 1.2;
    font-weight: 500;
    margin: 0 0 1rem 0;
    position: relative;
    padding-left: 2rem;
}

.article-list-title::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 17px;
    height: 17px;
    background-image: url('../images/cross_black_mob_button.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.article-list-shorttext {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .article-list-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Submenu Index - Similar to article-list-items but with different styling */
.submenu-index-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    justify-items: center;
    align-items: center;
}

.submenu-index-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
    max-width: 250px;
}

.submenu-index-thumbnail {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 1rem;
}

.submenu-index-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.submenu-index-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: inherit;
    line-height: 1.3;
}

/* Mobile Responsive for Submenu Index */
@media (max-width: 768px) {
    .submenu-index-items {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .submenu-index-item {
        max-width: 100%;
    }
}

/* Article List Pagination */
.article-list-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 3rem 0 2rem;
    flex-wrap: wrap;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    font-family: "TikTok Sans Expanded", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--darkergreen);
    text-decoration: none;
    border: 2px solid var(--darkergreen);
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
}

.pagination-link:hover {
    background-color: var(--lightgreen);
    border-color: var(--lightgreen);
    color: var(--darkergreen);
    transform: translateY(-2px);
}

.pagination-link.pagination-current {
    background-color: var(--darkergreen);
    color: var(--lightgreen);
    border-color: var(--darkergreen);
    cursor: default;
    font-weight: 700;
}

.pagination-link.pagination-prev,
.pagination-link.pagination-next {
    padding: 0 1.5rem;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.pagination-link.pagination-prev::before {
    content: "←";
    margin-right: 0.5rem;
    font-size: 16px;
}

.pagination-link.pagination-next::after {
    content: "→";
    margin-left: 0.5rem;
    font-size: 16px;
}

.pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    font-size: 18px;
    color: var(--darkergreen);
    font-weight: 700;
    letter-spacing: 2px;
}

/* Pagination Mobile Responsive */
@media (max-width: 768px) {
    .article-list-pagination {
        gap: 0.25rem;
        margin: 2rem 0 1rem;
    }
    
    .pagination-link {
        min-width: 40px;
        height: 40px;
        padding: 0 0.75rem;
        font-size: 14px;
    }
    
    .pagination-link.pagination-prev,
    .pagination-link.pagination-next {
        padding: 0 1rem;
        font-size: 13px;
    }
    
    .pagination-ellipsis {
        min-width: 30px;
        height: 40px;
        font-size: 16px;
    }
}

/* Downloads & Links Section */
.downloads-links-section {
    margin: 3rem 0;
    max-width:1000px;
}

.downloads-list,
.links-list {
    border-top: 1px solid var(--darkergreen);
    border-bottom: 1px solid var(--darkergreen);
}

.download-item,
.link-item {
    border-bottom: 1px solid var(--darkergreen);
    transition: background-color 0.2s ease;
}

.download-item:last-child,
.link-item:last-child {
    border-bottom: none;
}

.download-item:hover,
.link-item:hover {
    background-color: #f8f9fa;
}

.download-item a,
.link-item a {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem 1rem 1.25rem 3rem;
    text-decoration: none;
    color: var(--darkergreen);
    transition: color 0.2s ease;
    position: relative;
}

.download-item a::before,
.link-item a::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 2.25rem;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url('/public/assets/images/cross_black.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: filter 0.2s ease;
}

.download-item:hover a,
.link-item:hover a {
    color: var(--lightgreen);
}

.download-item:hover a::before,
.link-item:hover a::before {
    filter: brightness(0) saturate(100%) invert(68%) sepia(35%) saturate(1234%) hue-rotate(71deg) brightness(94%) contrast(87%);
}

.download-title,
.link-title {
    font-size: 22px;
    font-weight: 700;
    flex: 1;
}

.download-meta,
.link-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 14px;
    font-weight: 600;
    color: var(--darkergreen);
    padding-top: 0.5em;
}

.file-size,
.file-type,
.link-type {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.file-size::after {
    content: "•";
    margin-left: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .download-item a,
    .link-item a {
        flex-direction: column;
        align-items: flex-start;
        gap: 0 0.5rem;
        padding: 1rem 1rem 1rem 2.5rem;
    }
    
    .download-item a::before,
    .link-item a::before {
        left: 0.5rem;
        width: 14px;
        height: 14px;
    }
    
    .download-title,
    .link-title {
        font-size: 18px;
    }
    
    .download-meta,
    .link-meta {
        font-size: 12px;
    }
    
    .download-item a::before,
    .link-item a::before {
        top: 1.85rem;
    }
}

/* Responsive */
@media (max-width: 800px) {
    /* Footer responsive layout */
    div.footer-content {
        flex-direction: column;
        gap: 40px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    div.footer-content .left {
        width: 100%;
    }
    
    div.footer-content .right {
        width: 100%;
        padding: 0 0 40px;;
    }
    
    
    footer .form {
        max-width: 100%;
    }
    
    footer .form input,
    footer .form textarea {
        width: 100%;
    }
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }
    
    nav ul li ul {
        position: static;
        box-shadow: none;
        border: none;
    }
}
.home main .container {padding:0}
.home-hero {display: flex;align-items: stretch;
    justify-content: space-between;
}
.home-hero .moto {
    width: 300px;
    box-sizing: border-box;
    padding: 2em 1em 1em var(--main-hor-padding);
    position: relative;
    line-height: 1.2;
    font-size: 20px;
    color: var(--maincolor);
}
.home-hero .moto h2 {
    font-weight: 300;
    line-height: 1.2;
    font-size: 20px;
    color: var(--maincolor);
}
.home-hero .moto h2:after {content:".";font-weight: 900;}
.home-hero .moto div {content:"";
    position: absolute;bottom:0;left:var(--main-hor-padding);
}
.home-hero .videowrapper {width:calc(100% - 300px);height: 700px;position: relative;
    display: flex;align-content: center;justify-content: flex-end;}
.home-hero .videowrapper video {position:absolute;z-index:0;
    top:0;left:0;right:0;bottom:0;width:100%;height: 700px;object-fit: cover;}

.video-wrapper-inner {position: relative;z-index:1;
    /* width:100%;height:100%; */
    display: flex;box-sizing: border-box;
    align-self: center;
    margin-right:6rem;
    justify-content: flex-end;
    color:#fff;font-size:14px;line-height:1.714;
    font-weight: 900;text-align: right;
    max-width:310px;
}
.video-wrapper-inner h2{
    font-weight: 900;font-size:50px;
}
.video-wrapper-inner h2:after{content:".";}
.video-wrapper-inner p {font-weight: 400;font-size:14px;line-height:1.714;}

.video-wrapper-inner a.button {
    margin-top:1em;
    text-decoration: none;
    display: inline-block;margin-left:auto;
    color:var(--lightgreen);
    border:2px solid var(--lightgreen);
    font-weight: 900;
    font-size: 20px;
    padding:.5em 1em .5em 1em;
}
.video-wrapper-inner a.button:hover {color:#fff;border-color:#fff;}
.video-wrapper-inner a.button span::before {
    content: "";
    display:inline-block;width:16px;height:16px;
    margin-right:.5em;
    background:url(/public/assets/images/cross_white.png) no-repeat left center;
}
.video-wrapper-inner a.button span::after {content:"";}

/* Responsive Video Styles - Show desktop by default, hide mobile */
.video-mobile {
    display: none;
}

.video-desktop {
    display: block;
}

/* Show mobile video on small screens, hide desktop */
@media (max-width: 768px) {
    .home-hero .moto {width:250px;}
    .home-hero .videowrapper {width:calc(100% - 250px);}
        .video-wrapper-inner {margin-right:2rem;}
    .video-mobile {
        display: block;
    }
    
    .video-desktop {
        display: none;
    }
}

@media (max-width: 600px) {
    .home-hero {flex-direction: column;}
    .home-hero .moto {width:100%;}
    .home-hero .videowrapper {width:100%;}
.home-hero .moto div {display: none;}
.home-hero .moto h2 {margin-bottom:3rem;}
}

/* Home Welcome Section */
.home_welcome {
    display: flex;
    align-items: stretch;
    min-height: 500px;
    margin: 115px auto 115px 0;
    max-width:1500px;
    gap:70px;
    padding: 0;
    transition: all 0.3s ease;
}

.home_welcome .imagewrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
    width:50%;max-width:650px;
}

.home_welcome .imagewrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home_welcome .textwrapper {
    flex: 1;
    transition: all 0.3s ease;
    padding: 0 70px 50px 0 ;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* background-color: #fff; */
    position: relative;
}

.home_welcome .textwrapper h2 {
    border-top:3px solid var(--darkergreen);
        border-bottom:1px solid var(--darkergreen);
    font-family: "TikTok Sans Expanded", sans-serif;
    font-size: 50px;
    font-weight: 900;
    color: var(--darkergreen);
    padding:20px;
    margin: 0 0 50px 0;
    line-height: 1.2;
    position: relative;
}
.home_welcome .textwrapper h2::after {content:".";}


/* Body paragraphs */
.home_welcome .textwrapper p {
    font-family: "TikTok Sans Expanded", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgb(20, 36, 27);
    line-height: 1.733;
    margin: 0 0 1rem 0;
}

/* Read More link */
.home_welcome .textwrapper a {
    font-family: "TikTok Sans Expanded", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgb(20, 36, 27);
    text-decoration: none;
    align-self: flex-end;
    margin-top: auto;
    transition: color 0.3s;
}

.home_welcome .textwrapper a:hover {
    color: var(--lightgreen);
}

.home_welcome .textwrapper a::before {
    content: "+ ";
}
@media (max-width: 1080px) {
    .home_welcome {
        gap:35px;
    }
.home_welcome .textwrapper h2 {
    font-size: 40px;
}
    .home_welcome .textwrapper {
        padding: 0 35px 0 0;
    }
}
/* Mobile Styles */
@media (max-width: 600px) {
    .home_welcome {
        flex-direction: column;
        min-height: auto;
    }
    
    .home_welcome .imagewrapper {
        width: 100%;
        height: 300px;
        flex: none;
    }
    
    .home_welcome .textwrapper {
        padding: 2rem 1.5rem;
        flex: none;
    }
    
    .home_welcome .textwrapper h2 {
        font-size: 36px;
        margin-bottom: 2rem;
    }
    
    .home_welcome .textwrapper::before {
        width: 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .home_welcome .textwrapper h2::before {
        width: 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .home_welcome .textwrapper p {
        font-size: 14px;
        margin-bottom: 1rem;
    }
    
    .home_welcome .textwrapper a {
        align-self: flex-start;
        margin-top: 1rem;
    }
}

/* Breadcrumbs */
.breadcrumbs {
    position: relative;
    margin:2rem var(--main-hor-padding);
    padding: 0 0 0 420px;
    transition: .2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.breadcrumbs:before {content:"";
    transition: .2s;
    position: absolute;
    top:1.6em;left:0;width:400px;border-bottom:2px solid var(--darkergreen);
    height:1px;
}

.breadcrumbs .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.breadcrumbs ol {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    gap: 0.2rem;
    flex-wrap: wrap;
    align-items: center;
    flex: 1;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
}

.breadcrumbs li a {
    text-decoration: none;
    color: #666;
    font-weight: 600;
    transition: color 0.2s ease;
}

.breadcrumbs li a:hover {
    color: var(--lightgreen);
    /* text-decoration: underline; */
}

.breadcrumbs li .separator {
    color: #999;
    font-weight: 300;
}

.breadcrumbs li .current {
    color: #333;
    font-weight: 400;
}

/* Breadcrumb Dropdown */
.breadcrumbs li.has-dropdown {
    position: relative;
}

.breadcrumb-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-left: 4px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--darkergreen);
    vertical-align: middle;
    transition: all 0.2s ease;
    border-radius: 3px;
}

.breadcrumb-dropdown-toggle:hover {
    background-color: rgba(25,225,112,0.15);
    color: var(--darkergreen);
}

.breadcrumb-dropdown-toggle svg {
    transition: transform 0.2s ease;
}

.breadcrumb-dropdown-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.breadcrumb-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    z-index: 1000;
    animation: breadcrumbDropdownFadeIn 0.2s ease;
}

@keyframes breadcrumbDropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.breadcrumb-dropdown.active {
    display: block;
}

.breadcrumb-dropdown li {
    margin: 0;
    padding: 0;
}

.breadcrumb-dropdown a {
    display: block;
    padding: 10px 20px;
    color: var(--darkergreen);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.breadcrumb-dropdown a:hover {
    background-color: rgba(25,225,112,0.1);
    border-left-color: var(--lightgreen);
    padding-left: 23px;
}

/* Close dropdown when clicking outside */
.breadcrumb-dropdown-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: none;
}

.breadcrumb-dropdown-backdrop.active {
    display: block;
}

/* Share Button */
.share-button-wrapper {
    position: relative;
    flex-shrink: 0;
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.share-button:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.share-button img {
    height: 20px;
    width: auto;
    display: block;
}

.share-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.share-button-wrapper:hover .share-dropdown,
.share-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    text-align: left;
    transition: background 0.2s ease;
}

.share-option:hover {
    background: #f5f5f5;
}

.share-option svg {
    flex-shrink: 0;
}

.share-option[data-share="copy"]:hover {
    background: #e8f5e9;
    color: #2e7d32;
}

.share-option[data-share="facebook"]:hover {
    background: #e3f2fd;
    color: #1877f2;
}

.share-option[data-share="twitter"]:hover {
    background: #e1f5fe;
    color: #000;
}

.share-option[data-share="linkedin"]:hover {
    background: #e3f2fd;
    color: #0077b5;
}

.share-option[data-share="whatsapp"]:hover {
    background: #e8f5e9;
    color: #25d366;
}

.share-option[data-share="email"]:hover {
    background: #fff3e0;
    color: #f57c00;
}

@media (max-width: 1100px) {
    .breadcrumbs {padding: 0 0 0 0px;}
    .breadcrumbs:before {width:0;}
    .breadcrumbs {margin:1rem var(--main-hor-padding);}
}

@media (max-width: 768px) {
    .breadcrumbs {
        gap: 1rem;
    }
    
    .breadcrumbs ol {
        margin: 0.5rem 0;
    }
    
    .share-button img {
        height: 20px;
    }
}

/* Submenu Horizontal (Any Level) */
.submenu-horizontal {
    background-color: transparent;
    border-bottom: none;
    padding: 0;
    margin: 1rem 0 1.5rem 0;
}

.submenu-horizontal ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-start;
    align-items: center;
}

.submenu-horizontal li {
    margin: 0;
    padding: 0;
}

.submenu-horizontal li:not(:last-child)::after {
    content: "/";
    margin-left: 0.5rem;
    color: #999;
    font-weight: 300;
}

.submenu-horizontal a {
    display: inline-block;
    padding: 0;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.2s ease;
    position: relative;
}

.submenu-horizontal a:hover {
    color: var(--darkergreen);
    text-decoration: underline;
}

.submenu-horizontal li.active a,
.submenu-horizontal a.active {
    font-weight: 600;
    color: var(--darkergreen);
}

@media (max-width: 1024px) {
    .submenu-horizontal {
        margin: 0.875rem 0 1.25rem 0;
    }
    
    .submenu-horizontal a {
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .submenu-horizontal {
        margin: 0.75rem 0 1rem 0;
    }
    
    .submenu-horizontal ul {
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        gap: 0.4rem;
    }
    
    .submenu-horizontal ul::-webkit-scrollbar {
        height: 3px;
    }
    
    .submenu-horizontal ul::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    
    .submenu-horizontal ul::-webkit-scrollbar-thumb {
        background: var(--lightgreen);
        border-radius: 3px;
    }
    
    .submenu-horizontal a {
        font-size: 0.8125rem;
        white-space: nowrap;
    }
    
    .submenu-horizontal li:not(:last-child)::after {
        margin-left: 0.4rem;
    }
}

@media (max-width: 480px) {
    .submenu-horizontal a {
        font-size: 0.8rem;
    }
}

/* Logo Carousel */
.carousel {
    padding: 4rem 2rem;
    background-color: #fff;
    margin: 0 auto;
    width: 100%;
    max-width: 1400px;
}

.logo-carousel {
    width: 100%;
    padding-bottom: 3rem;
}

.logo-carousel .swiper-wrapper {
    align-items: center;
}

.logo-carousel .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    transition: opacity 0.3s, transform 0.3s;
}

.logo-item img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-carousel .swiper-slide-active .logo-item img,
.logo-carousel .swiper-slide:hover .logo-item img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Swiper Pagination Dots */
.logo-carousel .swiper-pagination {
    position: relative;
    margin-top: 2rem;
    bottom: 0;
}

.logo-carousel .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(25, 225, 112, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.logo-carousel .swiper-pagination-bullet-active {
    background-color: var(--lightgreen);
    width: 24px;
    border-radius: 6px;
}

/* Mobile Carousel Styles */
@media (max-width: 768px) {
    .carousel {
        padding: 2rem 1rem;
    }
    
    .logo-item {
        padding: 0.5rem;
    }
    
    .logo-item img {
        max-height: 60px;
    }
    
    .logo-carousel .swiper-pagination {
        margin-top: 1.5rem;
    }
}