/* ===== SIMPLE HAMBURGER FIX ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Reset for consistency */
html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* ===== NAVBAR FIX - SIMPLE & CLEAN ===== */
.navBar {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 0;
    margin: 0;
}

.Nav_container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    position: relative;
    margin: 0 auto;
    max-width: 1400px;
}

/* ===== RESPONSIVE LOGO FIX ===== */
.logo {
    color: #2A5D32;
    margin: 0;
    font-weight: 700;
    z-index: 1001;
    flex: 1;
    min-width: 0; /* Allow logo to shrink */
    max-width: calc(100% - 60px); /* Leave space for hamburger */
}

.logo a {
    color: inherit;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: clamp(1.2rem, 2.2vw, 1.8rem); /* INCREASED from 0.85rem to 1.2rem */
    padding-right: 10px;
}

/* Tablet logo size */
@media screen and (max-width: 1024px) {
    .logo a {
        font-size: clamp(1.1rem, 2.5vw, 1.6rem); /* INCREASED */
    }
}

/* Mobile logo size - adjusted for "Omega Kids Learning Academy" */
@media screen and (max-width: 767px) {
    .Nav_container {
        height: 60px;
        padding: 0 15px;
    }
    
    .logo {
        max-width: calc(100% - 50px);
    }
    
    .logo a {
        font-size: clamp(0.9rem, 3.5vw, 1.2rem); /* INCREASED from 0.8rem to 0.9rem */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Small Mobile - more aggressive truncation */
@media screen and (max-width: 480px) {
    .logo a {
        font-size: clamp(0.85rem, 4vw, 1rem); /* INCREASED from 0.75rem to 0.85rem */
    }
}

/* Extra Small Mobile - even smaller */
@media screen and (max-width: 360px) {
    .logo a {
        font-size: 0.8rem; /* INCREASED from 0.7rem to 0.8rem */
        max-width: 160px;
    }
}

/* HAMBURGER BUTTON - SIMPLE & CLEAN */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    width: 40px;
    height: 40px;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0; /* Prevent hamburger from shrinking */
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #2A5D32;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* X animation when active */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.Nav_links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.Nav_links a {
    color: #2B1B0F;
    text-decoration: none;
    position: relative;
    padding-bottom: 6px;
    font-weight: 500;
    font-size: 1.2rem; /* INCREASED from 1rem to 1.2rem */
    transition: color 0.3s ease;
}

.Nav_links a:hover {
    color: #2A5D32;
}

.Nav_links a::before,
.Nav_links a::after {
    content: "";
    position: absolute;
    height: 2px;
    background: #2A5D32;
    bottom: 0;
    width: 50%;
    transform: scaleX(0);
    transition: transform 240ms cubic-bezier(.2,.9,.2,1);
}

.Nav_links a::before { left: 0; transform-origin: left; }
.Nav_links a::after { right: 0; transform-origin: right; }
.Nav_links a:hover::before,
.Nav_links a:hover::after { transform: scaleX(1); }

/* ===== HEADER/HERO SECTION ===== */
.header {
    width: 100%;
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #ffffff;
}

.text {
    flex: 1;
    padding: 0 5%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.text h1 {
    font-size: clamp(2.5rem, 4vw, 3.8rem); /* INCREASED from 3.3vw */
    padding-bottom: 1.5vw;
    color: #2B1B0F;
    line-height: 1.15;
    margin: 0 0 18px 0;
    white-space: pre-line;
    letter-spacing: -0.2px;
}

/* ADD THIS NEW SECTION - Feature List Styling */
.feature-list {
    list-style: none;
    margin: 15px 0 25px 0;
    padding: 0;
}

.feature-list li {
    color: #2A5D32;
    font-size: clamp(1.1rem, 1.8vw, 1.4rem); /* INCREASED size */
    font-weight: 600;
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.feature-list li::before {
    content: "✓";
    color: #2ecc71;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.3rem;
}

.text button {
    width: 180px; /* INCREASED from 160px */
    height: 55px; /* INCREASED from 50px */
    border-radius: 30px;
    border: none;
    font-size: 1.1rem; /* INCREASED from 1rem */
    background-color: #2A5D32;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    font-weight: 600;
}

.text p {
    margin: 0;
    margin-top: 8px;
    color: #445053;
    font-size: clamp(1rem, 1.2vw, 1.2rem); /* INCREASED from 0.95rem */
    line-height: 1.6;
    opacity: 0.95;
}

.text button:hover {
    background-color: #1e4724;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 93, 50, 0.3);
}

.image {
    flex: 1;
    height: 80vh;
    overflow: hidden;
    position: relative;
}

.image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image .slider-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    animation: slide-fade 12s linear infinite;
}

.image .slider-img:nth-of-type(1) { animation-delay: 0s; }
.image .slider-img:nth-of-type(2) { animation-delay: 4s; }
.image .slider-img:nth-of-type(3) { animation-delay: 8s; }

@keyframes slide-fade {
    0% { opacity: 0; }
    8% { opacity: 1; }
    33% { opacity: 1; }
    41% { opacity: 0; }
    100% { opacity: 0; }
}

/* ===== STORY SECTION ===== */
.story {
    width: 100%;
    padding: 80px 5%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    background: #ffffff;
}

.Story_text {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.Story_text h1 {
    font-size: clamp(2.5rem, 3.5vw, 3.5rem); /* INCREASED from clamp(2rem, 3vw, 3rem) */
    padding-bottom: 2vw;
    color: #2B1B0F;
    margin-bottom: 20px;
}

.Story_text p {
    font-size: 1.2rem; /* INCREASED from 1.1rem */
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
}

.qoute {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.qoute1 {
    position: relative;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #2ecc71;
}

.qoute1 p {
    margin: 0;
    color: #222;
    font-size: 1.2rem; /* INCREASED from 1.1rem */
    line-height: 1.6;
    font-style: italic;
}

.qoute1::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 3rem;
    color: rgba(0,0,0,0.03);
    pointer-events: none;
}

/* ===== CARDS SECTION ===== */
.centers_section { 
    padding: 80px 5%; 
    background: transparent; 
}

.centers_container {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.center-card {
    flex: 1;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(16,24,40,0.06);
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #111;
    min-height: 350px;
    transition: all 0.3s ease;
}

.center-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(16,24,40,0.1);
}

.card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.card-image img { 
    display: block; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.card-head { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.center-card h3 { 
    margin: 0; 
    font-size: 1.5rem; /* INCREASED from 1.3rem */
    font-weight: 700; 
    color: #2A5D32;
}

.center-card p { 
    margin: 0; 
    color: #444; 
    font-size: 1.1rem; /* INCREASED from 1rem */
    line-height: 1.6; 
    flex-grow: 1;
}

.center-btn {
    display: inline-block;
    margin-top: auto;
    background: #2ecc71;
    color: white;
    padding: 14px 20px; /* INCREASED padding */
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.1rem; /* INCREASED from 1rem */
    border: none;
    cursor: pointer;
}

.center-btn:hover { 
    background: #26b86a; 
    transform: translateY(-3px);
}

/* ===== CTA SECTION ===== */
.footer {
    width: 100%;
    background-color: rgb(0, 84, 27);
    padding: 80px 5%;
    text-align: center;
    color: white;
}

.footer h1 {
    font-size: clamp(2.2rem, 3vw, 3.2rem); /* INCREASED from clamp(1.8rem, 2.5vw, 2.8rem) */
    color: white;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.3;
}

.footer p {
    color: white;
    font-size: clamp(1.2rem, 1.4vw, 1.4rem); /* INCREASED from clamp(1rem, 1.2vw, 1.2rem) */
    text-align: center;
    max-width: 800px;
    line-height: 1.6;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.footer button {
    width: 200px; /* INCREASED from 180px */
    height: 55px; /* INCREASED from 50px */
    border-radius: 5px;
    border: none;
    font-size: 1.1rem; /* INCREASED from 1rem */
    background-color: white;
    color: rgb(0, 84, 27);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer button:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

/* ===== FOOTER ===== */
.clean_footer {
    background: #071217;
    color: #f7f7f7;
    padding: 60px 5%;
    font-family: Poppins, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.clean_top .lets-chat {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem); /* INCREASED from clamp(1.5rem, 2vw, 2rem) */
    font-weight: 600;
    margin: 0;
}

.clean_middle {
    width: 100%;
    display: flex;
    justify-content: center;
}

.clean_contact {
    text-align: center;
    line-height: 1.6;
    font-size: clamp(1rem, 1.2vw, 1.2rem); /* INCREASED from clamp(0.9rem, 1vw, 1.1rem) */
}

.clean_contact .addr,
.clean_contact .phone {
    margin-bottom: 10px;
}

.clean_bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.clean-sep {
    width: 60%;
    max-width: 720px;
    height: 1px;
    background: rgba(255,255,255,0.06);
    border: none;
}

.clean_copyright {
    font-size: 1rem; /* INCREASED from 0.9rem */
    color: rgba(255,255,255,0.8);
    text-align: center;
}

.clean_nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.clean_nav a {
    color: #f7f7f7;
    text-decoration: none;
    font-size: 1rem; /* INCREASED from 0.9rem */
    position: relative;
    padding-bottom: 4px;
}

.clean_nav a:hover {
    color: #2ecc71;
}

.clean_nav .sep { 
    color: rgba(255,255,255,0.5); 
}

/* ===== RESPONSIVE FIXES ===== */

/* Tablet: 768px to 1024px */
@media screen and (max-width: 1024px) {
    /* Navbar */
    .navBar {
        padding: 0;
    }
    
    .Nav_container {
        height: 70px;
        padding: 0 20px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Hide links by default, show when active */
    .Nav_links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .Nav_links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .Nav_links li {
        width: 100%;
        text-align: center;
    }
    
    .Nav_links a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        font-size: 1.2rem; /* INCREASED from 1.1rem */
        border-bottom: 1px solid #f0f0f0;
    }
    
    .Nav_links a:last-child {
        border-bottom: none;
    }
    
    .Nav_links a:hover {
        background-color: #f8f9fa;
    }
    
    /* Header */
    .header {
        flex-direction: column;
        min-height: auto;
        padding: 60px 20px;
        gap: 40px;
    }
    
    .text {
        max-width: 100%;
        padding: 0;
        align-items: center;
        text-align: center;
    }
    
    .text h1 {
        font-size: 2.8rem; /* INCREASED from 2.5rem */
        margin-bottom: 20px;
    }
    
    .feature-list {
        text-align: left;
        display: inline-block;
    }
    
    .feature-list li {
        font-size: 1.2rem;
    }
    
    .text button {
        margin-top: 30px;
    }
    
    .image {
        width: 100%;
        height: 400px;
        order: -1;
    }
    
    /* Story */
    .story {
        flex-direction: column;
        padding: 60px 20px;
        gap: 40px;
    }
    
    .Story_text h1 {
        font-size: 2.5rem; /* INCREASED from 2.2rem */
    }
    
    .qoute {
        width: 100%;
    }
    
    /* Cards */
    .centers_container {
        flex-direction: column;
        gap: 30px;
    }
    
    .center-card {
        width: 100%;
        min-height: auto;
    }
    
    .center-card:not(:last-child) {
        border-bottom: 1px solid rgba(16,24,40,0.04);
        padding-bottom: 30px;
    }
    
    /* Footer CTA */
    .footer {
        padding: 60px 20px;
    }
    
    .footer h1 {
        font-size: 2.3rem; /* INCREASED from 2rem */
    }
}

/* Mobile: 480px to 767px */
@media screen and (max-width: 767px) {
    /* Navbar */
    .Nav_container {
        height: 60px;
        padding: 0 15px;
    }
    
    .menu-toggle {
        width: 36px;
        height: 36px;
    }
    
    .menu-toggle span {
        width: 22px;
        height: 2px;
        margin: 2px 0;
    }
    
    .Nav_links {
        top: 60px;
    }
    
    /* Header */
    .header {
        padding: 40px 15px;
        gap: 30px;
    }
    
    .text h1 {
        font-size: 2rem; /* INCREASED from 1.8rem */
        margin-bottom: 15px;
    }
    
    .feature-list li {
        font-size: 1.1rem;
    }
    
    .image {
        height: 300px;
    }
    
    /* Story */
    .story {
        padding: 40px 15px;
        gap: 30px;
    }
    
    .Story_text h1 {
        font-size: 2rem; /* INCREASED from 1.8rem */
    }
    
    .Story_text p {
        font-size: 1.1rem; /* INCREASED from 1rem */
    }
    
    .qoute1 {
        padding: 20px;
    }
    
    .qoute1 p {
        font-size: 1.1rem; /* INCREASED from 1rem */
    }
    
    /* Cards */
    .centers_container {
        gap: 25px;
    }
    
    .center-card {
        padding: 20px;
    }
    
    .center-card h3 {
        font-size: 1.3rem; /* INCREASED from 1.2rem */
    }
    
    .center-card p {
        font-size: 1rem; /* INCREASED from 0.95rem */
    }
    
    .center-btn {
        font-size: 1rem;
        padding: 12px;
    }
    
    /* Footer CTA */
    .footer {
        padding: 40px 15px;
    }
    
    .footer h1 {
        font-size: 1.8rem; /* INCREASED from 1.6rem */
        margin-bottom: 20px;
    }
    
    .footer p {
        font-size: 1.1rem; /* INCREASED from 1rem */
        margin-bottom: 30px;
    }
    
    .footer button {
        width: 100%;
        max-width: 250px;
    }
    
    /* Clean Footer */
    .clean_footer {
        padding: 40px 15px;
    }
    
    .clean_top .lets-chat {
        font-size: 1.6rem; /* INCREASED from 1.4rem */
    }
    
    .clean_contact {
        font-size: 1rem; /* INCREASED from 0.85rem */
    }
    
    .clean_nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .clean_nav .sep {
        display: none;
    }
    
    .clean_nav a {
        font-size: 1rem; /* INCREASED from 0.85rem */
    }
}

/* Small Mobile: below 480px */
@media screen and (max-width: 480px) {
    /* Header */
    .text h1 {
        font-size: 1.8rem; /* INCREASED from 1.6rem */
    }
    
    .feature-list li {
        font-size: 1rem;
    }
    
    .text button {
        width: 100%;
        max-width: 200px;
        height: 45px;
        font-size: 0.95rem;
    }
    
    .image {
        height: 250px;
    }
    
    /* Story */
    .Story_text h1 {
        font-size: 1.8rem; /* INCREASED from 1.6rem */
    }
    
    .Story_text p {
        font-size: 1rem;
    }
    
    .qoute1 p {
        font-size: 1rem;
    }
    
    /* Cards */
    .center-card h3 {
        font-size: 1.2rem; /* INCREASED from 1.1rem */
    }
    
    .center-card p {
        font-size: 0.95rem;
    }
    
    /* Footer CTA */
    .footer h1 {
        font-size: 1.6rem; /* INCREASED from 1.4rem */
    }
    
    .footer p {
        font-size: 1rem; /* INCREASED from 0.95rem */
    }
}

/* Desktop: Hide hamburger */
@media screen and (min-width: 1025px) {
    .menu-toggle {
        display: none !important;
    }
    
    .Nav_links {
        display: flex !important;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background: transparent !important;
    }
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scrolling */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Make buttons tap-friendly on mobile */
@media (max-width: 767px) {
    button, 
    .center-btn, 
    .text button, 
    .footer button,
    .menu-toggle {
        min-height: 44px;
        min-width: 44px;
    }
    
    .Nav_links a {
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Fix for mobile layout spacing */
@media screen and (max-width: 767px) {
    body {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    .navBar {
        position: sticky;
        top: 0;
    }
    
    .header {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}
/* ===== CARDS SECTION - WITH ONE CENTER BUTTON ===== */
.centers_section { 
    padding: 80px 5%; 
    background: transparent; 
    position: relative;
}

.centers_container {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto 50px auto; /* Added bottom margin for button */
}

.center-card {
    flex: 1;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(16,24,40,0.06);
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #111;
    min-height: 350px;
    transition: all 0.3s ease;
}

.center-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(16,24,40,0.1);
}

.card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.card-image img { 
    display: block; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.card-head { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.center-card h3 { 
    margin: 0; 
    font-size: 1.5rem; 
    font-weight: 700; 
    color: #2A5D32;
}

.center-card p { 
    margin: 0; 
    color: #444; 
    font-size: 1.1rem; 
    line-height: 1.6; 
    flex-grow: 1;
}

/* REMOVED .center-btn from each card */

/* NEW: One centered button for the entire section */
.section-center-btn {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.section-center-btn a {
    display: inline-block;
    background: #2ecc71;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    text-align: center;
    border: none;
    cursor: pointer;
}

.section-center-btn a:hover {
    background: #26b86a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
}

/* Responsive for mobile */
@media screen and (max-width: 767px) {
    .section-center-btn a {
        padding: 14px 30px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
    }
}
/* ===== FIX FOR MOBILE NAVBAR ===== */

/* Force hamburger to show on mobile */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex !important;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1002;
    }
    
    /* Hide navigation links by default on mobile */
    .Nav_links {
        position: fixed !important;
        top: 60px;
        left: 0;
        right: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        display: flex !important;
    }
    
    /* Show when active class is added */
    .Nav_links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .Nav_links li {
        width: 100%;
        text-align: center;
    }
    
    .Nav_links a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        font-size: 1.2rem;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .Nav_links a:last-child {
        border-bottom: none;
    }
}

/* Desktop - hide hamburger */
@media screen and (min-width: 769px) {
    .menu-toggle {
        display: none !important;
    }
    
    .Nav_links {
        display: flex !important;
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
    }
}