/* ACCORDION WRAPPER */
.accordion {
    width: 100%;
    margin-top: 20px;
}

/* EACH ITEM */
.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 0;
}

/* HEADER STYLE */
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* TITLE TEXT (DEFAULT) */
.accordion-header span:first-child {
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    transition: 0.3s ease;
}

/* ICON (+) */
.accordion-header .icon {
    font-size: 28px;
    font-weight: 300;
    color: #35a535;
    /* green */
    transition: 0.3s ease;
}

/* ACTIVE / OPEN ITEM */
.accordion-item.active .accordion-header span:first-child {
    color: #35a535;
    /* green heading */
}

.accordion-item.active .icon {
    transform: rotate(0deg);
    /* turns + into X (like – ) */
}

/* CONTENT BOX */
.accordion-content {
    color: #cccccc;
    font-size: 18px;
    line-height: 30px;
    padding-top: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

/* ACTIVE CONTENT */
.accordion-item.active .accordion-content {
    max-height: 300px;
}











/* navbar */
/* Hamburger button */
.hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: transparent;
    color: #fff;
    display: none;
    /* hidden by default on desktop */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    font-size: 24px;
    user-select: none;
}

/* Menu overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    opacity: 0.8;
    background: #55e039;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: height 0.5s ease;
    z-index: 1000;
}

/* Open state */
.menu-overlay.open {
    height: 100%;
}

/* Menu items */
.menu-overlay ul {
    list-style: none;
    text-align: center;
}

.menu-overlay ul li {
    margin: 20px 0;
}

.menu-overlay ul li a {
    font-style: bold;
    color: #000000;
    font-size: small;
    /* transition: color 0.3s; */
}

.menu-overlay ul li a:hover {
    color: #2b561d;
}



/* Media query for mobile view */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        /* show hamburger on mobile */
    }
}

/* Optional: hide menu overlay on desktop */
@media (min-width: 769px) {
    .menu-overlay {
        display: none;
    }
}





ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {
    position: relative;
}

/* Main links */
ul li a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

ul li a:hover {
    color: #f0a500;
}

/* Dropdown menu */
/* Dropdown menu */
.dropdown-menu {
    display: none;
    /* still hidden by default */
    background: transparent;
    /* give a solid background to avoid flicker */
    margin-top: 5px;
    transition: max-height 0.3s ease;
    /* smooth animation if needed */
    overflow: hidden;
}

/* Dropdown links */
.dropdown-menu li a {
    font-size: 16px;
    padding: 8px 15px;
    display: block;
    transition: color;
}

/* Hover effect */
.dropdown-menu li a:hover {
    color: #69f329;
    background-color: transparent;
}

/* Show dropdown on parent hover (desktop) */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Dropdown toggle plus/minus */
.dropdown-toggle::after {
    content: " +";
    float: right;
    transition: transform 0.3s;
}

.dropdown.open .dropdown-toggle::after {
    content: " −";
    transform: rotate(180deg);
    /* optional rotation */
}



/* newsletter */

.newsletter input[type="email"] {
    border-radius: 15px;
    padding: 10px 1rem;
    background: transparent;
}


button.new {
    background: transparent !important;
    border: none !important;
}

button.active {
    background: #35a535 !important;
    color: #000;
}


#langSelect, #userType, #section{
    background: transparent;
    color: white;
    border-radius: 3px;
}
#langSelect option, #userType option{
    background-color: #222;
    color: white;
    border-radius: 3px;
}

.details{
    background: transparent;
    color: white;
    border-radius: 3px;
}

.details option {
    background-color: #222;
    color: white;
    border-radius: 3px;
}