/* ======================================== */
/* 1. GLOBAL & SETUP STYLES               */
/* ======================================== */
:root {
    --brand-blue: #0095DA;
    --brand-yellow: #FFC72C;
    --brand-red: #D81E34;
    --brand-dark-blue: #007AB8;
    --light-gray: #f3f4f6;
    --white: #ffffff;
    --text-dark: #1f2937;
    --text-light: #f8fafc;
    --secondary-text-color: #bdc3c7;
    --success-green: #16a34a;
}

html.smooth-scroll {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

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

.section-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--brand-dark-blue);
}

.section-heading.alt-color {
    color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.title-underline {
    height: 4px;
    width: 80px;
    background-color: var(--brand-blue);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.section-heading.alt-color .title-underline {
    background-color: var(--brand-yellow);
}

.hidden {
    display: none !important;
}


/* ======================================== */
/* 2. HEADER & NAVIGATION                   */
/* ======================================== */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    height: 8px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-yellow), var(--brand-red));
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1.5rem;
}

.contact-info,
.social-media {
    display: none; /* Hidden by default, shown on larger screens */
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #4B5563;
}

.contact-info i,
.social-media i {
    color: var(--brand-blue);
}

.logo-container img {
    height: 4rem;
    transition: transform 0.3s ease;
}
.logo-container img:hover {
    transform: scale(1.05);
}

.main-nav-container {
    border-top: 1px solid var(--light-gray);
}

.main-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: var(--brand-dark-blue);
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.nav-item:hover {
    background-color: var(--light-gray);
    color: var(--brand-blue);
}

/* New style for the content wrapper */
.nav-item-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-icon {
    font-size: 1.25rem;
}

.nav-item-dropdown {
    position: relative;
}

.dropdown-arrow {
    margin-left: 0.5rem; /* Memberi jarak antara teks dan panah */
    transition: transform 0.3s ease;
}

.dropdown-arrow.rotate-up {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    margin-top: 0.5rem;
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 10;
    min-width: 200px;
    padding: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
}

.dropdown-menu a:hover {
    background-color: var(--light-gray);
}

.hamburger-menu-icon {
    display: none; /* Shown on mobile */
    font-size: 1.75rem;
    color: var(--brand-dark-blue);
    cursor: pointer;
}


/* ======================================== */
/* 3. SECTIONS & COMPONENTS               */
/* ======================================== */

/* --- Promo Carousel --- */
.promo-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--light-gray);
    height: 550px;
}

.promo-slides-container {
    display: flex;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 1.5rem;
    z-index: 10;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-button:hover {
    background-color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev { left: 1.5rem; }
.carousel-button.next { right: 1.5rem; }

/* --- Logo Ticker --- */
.logo-ticker {
    background-color: var(--brand-dark-blue);
    padding: 1.5rem 0;
    white-space: nowrap;
    overflow: hidden;
}

.ticker-wrap { display: inline-block; }

.ticker-track {
    display: inline-flex;
    animation: ticker-scroll 40s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 2.5rem;
    color: var(--white);
    font-weight: 600;
}

.ticker-icon {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    color: var(--brand-yellow);
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-ticker:hover .ticker-track {
    animation-play-state: paused;
}

/* --- About Inspired Section --- */
.about-inspired {
    background-color: var(--white);
    padding: 6rem 1rem;
    overflow: hidden;
}

.about-inspired-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.about-inspired-image-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.image-card img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    object-fit: cover;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.info-box-1, .info-box-2 {
    position: absolute;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    font-weight: 600;
    text-align: center;
    z-index: 3;
    transition: transform 0.3s ease;
}
.info-box-1:hover, .info-box-2:hover {
    transform: scale(1.05);
}

.info-box-1 { top: 2rem; left: -2.5rem; }
.info-box-2 { bottom: 2rem; right: -2rem; }

.info-box-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.1;
}

.info-box-1 .info-box-number { color: var(--success-green); }
.info-box-2 .info-box-number { color: var(--brand-blue); }

.swirl-graphic {
    position: absolute;
    top: -2rem;
    left: -1rem;
    width: 120px;
    z-index: 1;
    opacity: 0.8;
}

.about-inspired {
    background-image: url('Asset/effect2.png');
    background-size: cover;
}
.about-inspired-content .eyebrow-text {
    font-family: 'Poppins', black;
    font-weight: 700;
    font-size: 45px;
    color: var(--brand-blue);
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
    margin-top: 0rem;
}

.about-inspired-content .section-title {
    margin-bottom: 2rem;
    font-weight: 300;
    font-size: 25px;
}

.about-inspired-content .intro-paragraph {
    font-size: 1.1rem;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-button-inspired {
    display: inline-block;
    background-color: var(--brand-yellow);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-button-inspired:hover {
    background-color: var(--brand-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(216, 30, 52, 0.3);
}

/* --- Vision & Mission Section --- */
.vision-mission-section {
    padding: 5rem 1rem;
    background-color: var(--light-gray);
    background-image: url('Asset/school\ 2.png');
    background-size: cover;
}

.section-title1 {
    text-align: center;
    font-size: 35px;
    margin-bottom: 2rem;
    color: var(--white);
}

.title-underline1 {
    height: 4px;
    width: 100px;
    background-color: var(--brand-yellow);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.vision-card,
.mission-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.07);
    border-top: 5px solid;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.vision-card { border-color: var(--brand-yellow); }
.mission-card { border-color: var(--brand-yellow); }

.card-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.card-icon-wrapper1 {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.vision-card .card-icon-wrapper { background-color: var(--brand-yellow); }
.mission-card .card-icon-wrapper1 { background-color: var(--brand-yellow); }

.vision-card h3,
.mission-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--brand-blue)
}

.vision-card p,
.mission-card ul li {
    color: #4B5563;
    line-height: 1.7;
}

.mission-card ul {
    list-style: none;
    padding: 0;
}

.mission-card ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.mission-card ul li i {
    color: var(--success-green);
    margin-right: 0.75rem;
    margin-top: 0.3rem;
}

/* --- Styling Section Utama --- */
.why-love-us {
  padding: 80px 0;
  background-color: #f8f9fa; /* Warna latar belakang bisa disesuaikan */
}

.section-container {
  max-width: 1280px; /* Membuat kontainer lebih lebar */
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Styling Judul Section --- */
.section-title-container {
  text-align: center;
  margin-bottom: 60px; /* Jarak lebih besar ke konten */
}

.section-title-container h2 {
  font-size: 35px;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 15px;
}

.title-underline {
  width: 80px;
  height: 4px;
  background-color: var(--brand-yellow); /* Warna kuning untuk garis bawah */
  margin: 0 auto;
  border-radius: 2px;
}

/* --- Layout Grid untuk Fitur --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px; /* Jarak antar kotak lebih besar */
}

/* --- Styling untuk Setiap Kotak Fitur (Box) --- */
.feature-box {
  background-color: #ffffff;
  padding: 40px; /* Padding lebih besar */
  border-radius: 12px;
  border: 1px solid #e5e7eb; /* Garis tepi tipis */
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  display: flex;
  flex-direction: column;
  border-bottom-width: 4px;
}

/* Updated border colors based on the desired image */
.feature-box.feature-orange { border-bottom-color: var(--brand-blue); } /* Biru */
.feature-box.feature-blue { border-bottom-color: var(--brand-blue); } /* Oranye */
.feature-box.feature-red { border-bottom-color: var(--brand-blue); } /* Biru Muda/Cyan */
.feature-box.feature-amber { border-bottom-color: var(--brand-blue); } /* Kuning/Amber */

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.07), 0 4px 6px -4px rgb(0 0 0 / 0.07);
}

/* --- Definisi Warna untuk Setiap Jenis Kotak --- */
.feature-box.feature-orange { --feature-color:  var(--brand-yellow); }
.feature-box.feature-blue   { --feature-color:  var(--brand-yellow); }
.feature-box.feature-red    { --feature-color:  var(--brand-yellow); }
.feature-box.feature-amber  { --feature-color:  var(--brand-yellow); }

/* --- Styling Konten di Dalam Kotak --- */
.feature-box-content {
  display: flex;
  align-items: flex-start; /* Ikon dan teks sejajar di atas */
  gap: 25px; /* Jarak antara ikon dan blok teks */
}

/* --- Styling Ikon SVG --- */
.feature-icon {
  flex-shrink: 0; /* Mencegah ikon menyusut */
  width: 48px;  /* Ukuran ikon diperbesar */
  height: 48px;
  color: var(--feature-color); /* Mengambil warna dari variabel */
}

/* --- Styling Teks --- */
.feature-text h3 {
  font-size: 24px; /* Ukuran judul lebih besar */
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--feature-color); /* Judul sekarang juga berwarna */
}

.feature-text p {
  font-size: 16px;
  color: #6b7280; /* Warna teks paragraf */
  line-height: 1.6;
  margin: 0;
}


/* --- Responsive Design --- */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr; /* Tetap 1 kolom di layar kecil */
  }
}

/* --- OUR PROGRAMS --- */
.our-programs-v2 { padding: 10rem 1rem; background-color: var(--white); }


.program-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.filter-btn {
    background-color: var(--light-gray);
    color: var(--secondary-text-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: var(--brand-dark-blue);
    color: var(--white);
}

.filter-btn.active {
    background-color: var(--brand-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 149, 218, 0.3);
}

.programs-grid-v2 {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.program-card-v2 {
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid var(--light-gray);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; 
    flex-direction: column; 
}
.program-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.card-image-v2 { 
    position: relative; 
}
.card-image-v2 img { width: 100%; height: 200px; object-fit: cover; }
.duration-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.card-body-v2 {
    padding: 1.5rem;
    flex-grow: 1; 
}
.card-title-v2 { font-size: 1.25rem; font-weight: 600; margin: 0 0 0.5rem; }
.card-description-v2 { color: var(--secondary-text-color); font-size: 0.95rem; }

.card-footer-v2 {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--light-gray);
    font-size: 0.9rem;
    color: var(--secondary-text-color);
    font-weight: 500;
}
.card-footer-v2 i { margin-right: 0.5rem; color: var(--brand-blue); }

/* Old program section hidden */
.our-programs { display: none; }


/* ======================================== */
/* 4. FOOTER                                */
/* ======================================== */
.site-footer-v2 {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 60px 0 20px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.site-footer-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--brand-red), var(--brand-yellow), var(--brand-blue));
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
    margin-bottom: 20px;
}

.footer-section {
    padding: 0;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.footer-about p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--secondary-text-color);
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.4em;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--brand-blue);
    border-radius: 2px;
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--secondary-text-color);
    text-decoration: none;
    font-size: 1.05em;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--brand-blue);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: var(--secondary-text-color);
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--brand-yellow);
    font-size: 1.2em;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--text-light);
    font-size: 1.3em;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.social-icons a:hover {
    color: var(--text-dark);
    background-color: var(--brand-yellow);
    transform: translateY(-5px) scale(1.1);
    border-color: var(--brand-yellow);
}

.footer-bottom {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.9em;
    color: #95a5a6;
    margin: 5px 0;
}

.footer-bottom-links a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 0.9em;
    margin: 0 8px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--brand-blue);
}

.footer-bottom-links span {
    color: #95a5a6;
}

/* ======================================== */
/* 5. UTILITIES & ANIMATIONS              */
/* ======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--brand-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--brand-dark-blue);
    transform: scale(1.1);
}

/* AOS Animation Defaults */
[data-aos] {
    transition-property: transform, opacity;
}


/* ======================================== */
/* 6. RESPONSIVE MEDIA QUERIES            */
/* ======================================== */
@media (max-width: 991px) {
    .main-nav { flex-direction: column; align-items: stretch; }
    .main-nav.is-open { display: flex; }
    .main-nav:not(.is-open) { display: none; }
    .hamburger-menu-icon { display: block; }
    
    .nav-item {
        justify-content: flex-start;
        padding: 0; /* Reset padding on the container */
        border-bottom: 1px solid var(--light-gray);
    }
    
    /* Apply padding to the inner link instead */
    .nav-item-dropdown > a.nav-item,
    .main-nav > a.nav-item {
        padding: 1rem 1.5rem;
    }

    /* --- MOBILE DROPDOWN STYLES --- */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background-color: #e9ecef;
        padding-left: 2.5rem;
        display: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .dropdown-menu.open {
        display: block;
    }

    .nav-item-dropdown {
        position: relative; 
        flex-wrap: wrap;
    }

    .nav-item-dropdown > .nav-item {
        border-bottom: none;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0; /* Reset gap from desktop */
    }
    
    /* PERBAIKAN: Pastikan panah tidak memiliki margin kiri di mobile */
    .nav-item-dropdown > .nav-item .dropdown-arrow {
        margin-left: 0;
    }
    
    .nav-item-toggle {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 58px;
        cursor: pointer;
        z-index: 5;
    }
    /* --- END MOBILE DROPDOWN STYLES --- */


    .promo-carousel { height: 60vh; }
    .about-inspired-grid { grid-template-columns: 1fr; }
    .info-box-1 { left: 0; }
    .info-box-2 { right: 0; }
    .footer-top { text-align: center; }
    .footer-section h3::after { left: 50%; transform: translateX(-50%); }
    .social-icons, .footer-bottom { justify-content: center; }
}

@media (min-width: 992px) {
    .contact-info, .social-media { display: flex; }
    .logo-container { flex-grow: 0; }
    .main-nav { display: flex !important; }
    .hamburger-menu-icon { display: none; }
    .about-inspired-grid { grid-template-columns: 45% 1fr; }
    .vision-mission-grid { grid-template-columns: 1fr 1fr; }
    /* Hide mobile-only toggle on desktop */
    .nav-item-toggle { display: none; }
}
