/* --- 1. RESET & VARIABLES --- */
:root {
    --zolt-blue: #003399;
    --zolt-green: #009739;
    --dark-text: #111111;
    --grey-text: #555555;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

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

/* --- 2. NAVBAR & MEGA MENU --- */
.navbar {
    height: 80px;
    background: var(--white);
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;

    position: sticky;
    top: 0;

    z-index: 10000;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* HEADER LOGO IMAGE */
.logo {
    display: flex;
    align-items: center;
    height: 80px;          /* same as navbar height */
}

.logo-img {
    height: 92px;          /* adjust this if you want bigger/smaller */
    width: auto;
    display: block;
}






.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-link {
    font-family: var(--font-head);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: var(--dark-text);
    padding: 28px 0; 
    border-bottom: 3px solid transparent;
    cursor: pointer;
}

.nav-link:hover {
    border-bottom: 3px solid var(--zolt-blue);
    color: var(--zolt-blue);
}

.nav-icons {
    display: flex;
    gap: 20px;
    font-size: 18px;
    color: var(--dark-text);
}

#search-trigger { cursor: pointer; }
.hamburger { display: none; cursor: pointer; }

/* --- 3. HERO CAROUSEL --- */
.hero-slider {
    position: relative;
    height: 85vh; 
    width: 100%;
    overflow: visible; /* 🔥 IMPORTANT */
    background: #000;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.slide.active { opacity: 1; z-index: 2; }

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 800px;
    padding-left: 40px;
}

.hero-content h4 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content h1 {
    font-family: var(--font-head);
    font-size: 70px; 
    line-height: 1;
    font-weight: 700;
    margin-bottom: 35px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.btn {
    display: inline-block;
    padding: 15px 45px;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    transition: all 0.3s;
    text-align: center;
}

.btn-group { display: flex; gap: 15px; }

.btn-white { background: var(--white); color: var(--dark-text); }
.btn-white:hover { background: #ddd; transform: translateY(-2px); }

.btn-outline { border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark-text); }

.slider-dots {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 12px; z-index: 10;
}

.dot {
    width: 14px; height: 14px;
    border: 2px solid white; border-radius: 50%;
    cursor: pointer; transition: 0.3s;
    background: transparent;
}
.dot.active { background: var(--white); transform: scale(1.2); }

/* --- 4. NEW SECTIONS (Service Split) --- */
.section-title-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-center h2 {
    font-family: var(--font-head);
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.divider {
    width: 60px; height: 4px;
    background: var(--zolt-blue);
    margin: 0 auto;
}

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

.service-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 50px;
    transition: transform 0.3s;
}

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

.service-icon {
    font-size: 40px;
    color: var(--zolt-blue);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-head);
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.service-list {
    margin: 20px 0;
    padding-left: 20px;
    color: #555;
}
.service-list li { margin-bottom: 8px; }

.link-arrow {
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--zolt-blue);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.courses-grid {
    grid-template-columns: repeat(3, 1fr);  
    gap: 24px;
}


@media (max-width: 1024px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }

    .courses-grid .feature-box {
        padding: 16px 12px;
    }

    .courses-grid .feature-box h4 {
        font-size: 16px;
        line-height: 1.3;
    }

    .courses-grid .feature-box p {
        font-size: 14px;
    }
}

.feature-box i {
    font-size: 40px;
    color: var(--zolt-green);
    margin-bottom: 20px;
}

.feature-box h4 {
    font-family: var(--font-head);
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Page Headers */
.page-header {
    height: 40vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background-color: #111;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
}

.header-content { position: relative; z-index: 2; }
.header-content h1 { font-family: var(--font-head); font-size: 50px; text-transform: uppercase; }

/* Content Areas */
.content-section { padding: 80px 0; }

.text-container {
    max-width: 900px;
    margin: 0 auto;
}
.text-container h3 {
    font-family: var(--font-head);
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--zolt-blue);
}
.text-container ul { margin-left: 20px; margin-bottom: 20px; }
.text-container li { margin-bottom: 10px; }

/* Footer */
.site-footer {
    background: #111;
    color: white;
    padding: 60px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid #333;
    padding-bottom: 40px;
}
/* On desktop: wrapper should NOT act like its own column */
.footer-columns-mobile {
    display: contents;
}


.footer-brand h2 { font-family: var(--font-head); color: var(--zolt-green); margin-bottom: 15px; }
.contact-info { margin-top: 10px; color: #ccc; }
.contact-info i { margin-right: 10px; color: var(--zolt-blue); }

.footer-nav-col h4 {
    font-family: var(--font-head);
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-nav-col a {
    display: block;
    color: #888;
    margin-bottom: 10px;
}
.footer-nav-col a:hover { color: white; }

.footer-legal { margin-top: 20px; font-size: 12px; color: #666; text-align: center; }

/* Search Overlay */
.search-overlay {
    position: fixed !important;
    top: 0; left: 0; width: 100%; height: 100vh;
    background-color: rgba(255,255,255,0.98);
    opacity: 0; visibility: hidden; z-index: 99999;
    display: flex; justify-content: center; align-items: flex-start;
    padding-top: 150px;
    transition: 0.5s;
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-container { width: 60%; position: relative; }
.search-overlay input {
    width: 100%; padding: 20px 0; font-size: 40px;
    border: none; border-bottom: 2px solid #ddd;
    background: transparent; font-family: var(--font-head);
    text-transform: uppercase; outline: none;
}
.close-search { position: absolute; top: 30px; right: 50px; font-size: 50px; cursor: pointer; }



/* ... KEEP ALL PREVIOUS CSS ... */

/* --- 11. EXPANDED HOME SECTIONS (Add to bottom) --- */

/* About Split Section */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.about-img {
    position: relative;
}
.about-img img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.about-img::before {
    content: '';
    position: absolute;
    top: -20px; left: -20px;
    width: 100px; height: 100px;
    border-top: 5px solid var(--zolt-blue);
    border-left: 5px solid var(--zolt-blue);
    z-index: -1;
}

/* Product Showcase Grid */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.showcase-item {
    position: relative;
    height: 350px;
    overflow: hidden;
    cursor: pointer;
}

.showcase-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 30px 20px;
    color: white;
    transform: translateY(20px);
    transition: 0.3s;
}

.showcase-item:hover img { transform: scale(1.1); }
.showcase-item:hover .showcase-overlay { transform: translateY(0); }

.showcase-overlay h3 {
    font-family: var(--font-head);
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

/* Training Dark Section */
.training-strip {
    background: #1a1a1a;
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Circuit board pattern overlay */
.training-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(#333 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}

.training-flex {
    position: relative; z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.training-content { max-width: 600px; }
.training-content h2 { font-family: var(--font-head); font-size: 48px; margin-bottom: 20px; }
.training-content p { color: #aaa; margin-bottom: 30px; font-size: 18px; }

.course-tags {
    display: flex; gap: 15px; flex-wrap: wrap;
}
.c-tag {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--zolt-blue), #0044cc);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2 {
    font-family: var(--font-head);
    font-size: 42px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}
/* =======================
   MOBILE (<= 768px)
   ======================= */
@media (max-width: 768px) {

    /* GENERAL */
    body {
        font-size: 15px;
    }

    .content-section {
        padding: 48px 0;
    }

    .section-title-center h2 {
        font-size: 26px;
    }

    /* NAVBAR & LOGO */
    .navbar {
        height: 70px;
    }

    .logo-img {
        height: 60px;
    }



    /* HERO SECTION (make text + buttons smaller) */
    .hero-slider {
        height: 60vh;
        min-height: 430px;
    }

    .hero-content {
        padding: 0 16px;
        max-width: 100%;
    }

    .hero-content h4 {
        font-size: 14px;
        letter-spacing: 1px;
        margin-bottom: 6px;
    }

    .hero-content h1 {
    font-size: 24px;      /* smaller so it fits */
    line-height: 1.05;
    margin-bottom: 14px;
    max-width: 18ch;      /* keeps it to about 2–3 lines */
}


    .hero-content p {
        font-size: 14px;
        max-width: 100%;
    }

    .btn {
        padding: 10px 22px;
        font-size: 13px;
        letter-spacing: 0.5px;
    }

    .btn-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* ABOUT: image below text on phone */
    .about-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text {
        order: 1;
    }

    .about-img {
        order: 2;
    }

    .about-img img {
        max-width: 95%;
        margin: 0 auto;
    }

    /* IMPORTS / PRODUCT CARDS (1 per row, smaller image) */
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-item {
        height: 230px;
    }

    /* GENERIC TOP IMAGES (like big racket / monitor) */
    .content-section .container > img {
        max-width: 92%;
        margin: 0 auto 20px;
    }

    /* TRAINING STRIP (dark section) */
    .training-strip {
        padding: 60px 0;
    }

    .training-flex {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .training-content h2 {
        font-size: 30px;
    }

    .training-content p {
        font-size: 15px;
    }

    .course-tags {
        justify-content: center;
    }

    .training-img img {
        max-width: 90%;
        margin: 10px auto 0;
    }

    /* WHY ZOLT IMAGE ABOVE SECTION – shrink it */
    .why-image img,
    .why-zolt-img {
        max-width: 92%;
        margin: 0 auto 16px;
        display: block;
    }

    /* CTA BANNER (blue) */
    .cta-banner {
        padding: 40px 0;
    }

    .cta-banner h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .cta-banner p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .cta-banner .btn-group {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .cta-banner .btn-group .btn {
        width: 100%;
        padding: 12px 0;
    }

    /* FOOTER */
    .site-footer {
        padding: 40px 0 10px;
    }

    .footer-top {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 18px;
        padding-bottom: 20px;
    }

    .footer-brand h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    /* SPORTS + TRAINING side-by-side below address */
    .footer-columns-mobile {
        display: flex;
        justify-content: center;
        gap: 32px;
        margin-top: 10px;
    }

    .footer-columns-mobile .footer-nav-col {
        text-align: left;
    }

    .footer-nav-col h4 {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .footer-nav-col a {
        margin-bottom: 6px;
        font-size: 15px;
    }
}
@media (max-width: 768px) {

    .features-grid {
        grid-template-columns: 1fr 1fr;   
        gap: 16px;
    }

    .feature-box h4 {
        font-size: 14px;
    }

    .feature-box p {
        font-size: 13px;
    }
}
@media (max-width: 768px) {


    .services-split {
        grid-template-columns: 1fr;   
        gap: 24px;                   
    }

    .service-card {
        padding: 32px 18px;          
        text-align: left;           
    }
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 22px;
    right: 22px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    z-index: 9999;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe5d;
}
/* =====================================================
   NAVBAR + DROPDOWN (FINAL – PRODUCTION SAFE)
   ===================================================== */

/* Navbar must stay above all sections */

/* Allow dropdown to overflow correctly */
.navbar,
.navbar .container,
.navbar .nav-flex {
    overflow: visible !important;
}

/* Dropdown parent */
.nav-links .dropdown {
    position: relative;
}

/* Arrow icon */
.nav-links .dropdown-toggle i {
    font-size: 12px;
    margin-left: 6px;
}

/* Dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;

    z-index: 20000;
}

/* Dropdown items */
.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu li a:hover {
    background: #f2f6ff;
    color: var(--zolt-blue);
}

/* Divider */
.dropdown-menu .divider {
    height: 1px;
    background: #eee;
    margin: 6px 0;
}

/* Show dropdown on hover (desktop) */
.nav-links .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Ensure hero never overlaps navbar */
.hero-slider,
.page-header {
    position: relative;
    z-index: 1;
}

/* =========================
   MOBILE BEHAVIOR
   ========================= */
/* =========================
   MOBILE DROPDOWN (CLICK TO OPEN)
   ========================= */
@media (max-width: 900px) {

    /* Hide dropdown by default */
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: transparent;
        padding: 8px 0 8px 15px;
        min-width: auto;
    }

    /* Show only when active */
    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 8px 0;
        font-size: 14px;
    }

    /* Add visual arrow */
    .dropdown-toggle::after {
        content: "▾";
        font-size: 14px;
        margin-left: 6px;
    }
}
/* =========================
   MOBILE NAV MENU (JS CONTROLLED)
   ========================= */
@media (max-width: 900px) {

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 20px;
        border-bottom: 1px solid #ddd;
        z-index: 10001;
    }

    /* When hamburger is clicked */
    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        padding: 12px 0;
        text-align: center;
    }

    .nav-links .nav-link {
        padding: 10px 0;
        border-bottom: none;
    }
}

/* =========================
   HAMBURGER ICON (VISIBLE)
   ========================= */

.hamburger {
    width: 28px;
    height: 22px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #111;
    border-radius: 2px;
}

/* Show hamburger on mobile */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }
}

@media (max-width: 900px) {
    .nav-icons,
    .hamburger {
        align-self: center;
    }
}

.email-form-wrapper{
    max-width:880px;
    margin:50px auto 0;
    background:#ffffff;
    padding:45px 50px;
    border-radius:16px;
    box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

#zoltContactForm{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    font-size:14px;
    font-weight:600;
    margin-bottom:6px;
    color:#222;
}

#zoltContactForm input,
#zoltContactForm textarea{
    padding:14px 16px;
    font-size:15px;
    border-radius:10px;
    border:1px solid #ddd;
    font-family:inherit;
    transition:.25s;
}

#zoltContactForm textarea{
    min-height:140px;
    resize:vertical;
}

#zoltContactForm input:focus,
#zoltContactForm textarea:focus{
    border-color:var(--zolt-blue);
    outline:none;
    box-shadow:0 0 0 3px rgba(0,102,255,.15);
}

#zoltContactForm .form-group:nth-child(4),
#zoltContactForm .form-group:nth-child(5){
    grid-column:1 / -1;
}

.btn-submit{
    grid-column:1 / -1;
    margin-top:10px;
    background:linear-gradient(135deg,var(--zolt-blue),#003fa3);
    color:#fff;
    border:none;
    padding:16px;
    font-size:16px;
    font-weight:600;
    border-radius:12px;
    cursor:pointer;
    transition:.3s;
}

.btn-submit:hover{
    transform:translateY(-2px);
    box-shadow:0 15px 30px rgba(0,0,0,.2);
}

#formStatus{
    grid-column:1 / -1;
    font-size:14px;
    margin-top:8px;
}

/* Mobile */
@media(max-width:768px){
    #zoltContactForm{
        grid-template-columns:1fr;
    }
}






/* =========================
   NESTED DROPDOWN MENU
   ========================= */

/* Parent item with nested menu */
.nested-dropdown {
    position: relative;
}

/* Right arrow for items with submenus */
.has-submenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.has-submenu i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* Nested menu (hidden by default) */
.nested-menu {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 200px;
    background: #ffffff;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    
    /* Hide initially */
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    
    z-index: 20001;
}

/* Show nested menu on hover */
.nested-dropdown:hover .nested-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Arrow rotation on hover */
.nested-dropdown:hover .has-submenu i {
    transform: rotate(90deg);
}

/* Nested menu items */
.nested-menu li {
    list-style: none;
}

.nested-menu li a {
    display: block;
    padding: 10px 18px;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.nested-menu li a:hover {
    background: #f2f6ff;
    color: var(--zolt-blue);
}

/* =========================
   MOBILE ADJUSTMENTS
   ========================= */
@media (max-width: 900px) {
    /* For mobile, show nested menu inline */
    .nested-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: transparent;
        padding: 8px 0 8px 15px;
        min-width: auto;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    /* Add mobile toggle */
    .has-submenu::after {
        content: "▾";
        font-size: 14px;
        margin-left: 6px;
    }
    
    .nested-dropdown.active .nested-menu {
        display: block;
    }
}



/* =========================
   ENHANCED NESTED DROPDOWN STYLES
   ========================= */

/* Color dots for shuttlecocks */
.color-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

/* Nested menu with better styling */
.nested-menu {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    min-width: 220px;
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    border: 1px solid #eee;
    
    /* Animation */
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.25s ease;
    
    /* Ensure it stays above everything */
    z-index: 20002;
}

/* Show on hover */
.nested-dropdown:hover .nested-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Nested menu items */
.nested-menu li {
    list-style: none;
}

.nested-menu li a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.nested-menu li a:hover {
    background: #f8f9ff;
    color: var(--zolt-blue);
    border-left: 3px solid var(--zolt-blue);
    padding-left: 25px;
}

/* Icons in menu */
.nested-menu li a i {
    margin-right: 10px;
    font-size: 14px;
    color: var(--zolt-blue);
    width: 20px;
    text-align: center;
}

/* Divider in dropdown */
.dropdown-menu .divider {
    height: 1px;
    background: #eee;
    margin: 8px 0;
    overflow: hidden;
}

/* Main dropdown items */
.dropdown-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    font-size: 15px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background: #f8f9ff;
    color: var(--zolt-blue);
    padding-left: 25px;
}

.dropdown-menu li a i {
    margin-right: 12px;
    font-size: 16px;
    color: var(--zolt-blue);
    width: 20px;
    text-align: center;
}

/* Arrow for submenu */
.has-submenu i.fa-chevron-right {
    margin-left: auto;
    font-size: 11px;
    color: #999;
    transition: transform 0.3s ease;
}

.nested-dropdown:hover .has-submenu i.fa-chevron-right {
    transform: rotate(90deg);
    color: var(--zolt-blue);
}

/* =========================
   MOBILE RESPONSIVE ADJUSTMENTS
   ========================= */
@media (max-width: 900px) {
    /* On mobile, show nested menu inline */
    .nested-menu {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        background: #f8f8f8;
        border-radius: 4px;
        margin: 5px 0 5px 15px;
        padding: 8px 0;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    /* Mobile toggle indicator */
    .has-submenu::after {
        content: "▾";
        font-size: 14px;
        margin-left: auto;
        color: #999;
    }
    
    /* Show when active (mobile) */
    .nested-dropdown.active .nested-menu {
        display: block;
    }
    
    .nested-menu li a {
        padding: 8px 15px;
        font-size: 13px;
    }
}