/* General Body Styles */
body {
    font-family: sans-serif;
    margin: 0;
}

/* Header Styling */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
   background-color: #FFD700; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative; /* Needed for absolute positioning of the mobile menu */
}

/* Logo Styling */
.logo img {
    height: 50px; /* Adjust height as needed */
    display: block;
}

/* Navigation Menu (Desktop) */
.nav-menu-wrapper nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-menu-wrapper nav li {
    margin-left: 20px;
}

.nav-menu-wrapper nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 5px;
    transition: color 0.3s;
}

.nav-menu-wrapper nav a:hover {
    color: #d9534f; /* A sample hover color */
}

/* Hamburger Menu Button (Initially hidden on desktop) */
.menu-toggle {
    display: none; /* Hide on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    position: relative;
    transition: background-color 0s 0.2s; /* Delay disappearance of middle bar */
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: transform 0.2s ease-in-out;
}

.hamburger-icon::before {
    top: -8px;
}

.hamburger-icon::after {
    bottom: -8px;
}

/* --- Mobile View --- */
@media (max-width: 768px) {
    /* Show the hamburger menu button */
    .menu-toggle {
        display: block;
        z-index: 1001; /* Ensure it's on top of other content */
    }
    
    /* Hide the navigation menu by default on mobile */
    .nav-menu-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
       background-color: #FFD700; 
        padding-top: 70px; /* Space for the header */
        display: none; /* Hide it completely */
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    /* This class will be toggled by JavaScript to show the menu */
    .nav-menu-wrapper.is-active {
        display: block;
    }
    
    /* Style mobile navigation links */
    .nav-menu-wrapper nav ul {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu-wrapper nav li {
        margin: 0;
        width: 100%;
    }

    .nav-menu-wrapper nav a {
        display: block;
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid #ddd;
    }
    
    /* Animation for the hamburger icon turning into an 'X' */
    .menu-toggle.is-active .hamburger-icon {
        background-color: transparent; /* Middle bar disappears */
    }

    .menu-toggle.is-active .hamburger-icon::before {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .menu-toggle.is-active .hamburger-icon::after {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}
        /* All your consistent CSS styles go here */
        /* Global Styles */
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #f9f9f9;
            animation: fadeInPage 0.6s ease-in-out;
        }

        @keyframes fadeInPage {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Header Styles */
        header {
            background-color: #FFD700; /* Yellow */
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            z-index: 10;
        }
        
        .logo img {
            display: block;
            height: 40px; /* Adjust logo height */
        }

        /* Navigation Menu Wrapper for mobile toggle */
        .nav-menu-wrapper {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        nav ul li {
            margin-left: 20px;
        }

        nav ul li a {
            text-decoration: none;
            color: #333; 
            font-weight: 500;
            padding: 8px 12px; 
            border-radius: 4px; 
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
        }

        nav ul li a:hover {
            background-color: #333;
            color: #FFD700;
            transform: translateY(-2px);
        }
        
        /* Specific style for the Order link */
        nav ul li a[href="order.php"] { 
            background-color: #000000; 
            color: #FFFFFF; 
        }

        nav ul li a[href="order.php"]:hover {
            background-color: #222222; 
            color: #FFD700;
        }
        
        .language-switcher {
            display: flex;
            align-items: center;
             z-index: 10;
        }
        
        .language-switcher select {
            padding: 5px;
            border-radius: 4px;
            border: 1px solid #ccc;
        }

        /* Hamburger Menu Icon Styles */
        .menu-toggle {
            display: none; 
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1010; 
        }

        .hamburger-icon {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #333;
            position: relative;
            transition: background-color 0s 0.3s; 
        }

        .hamburger-icon::before,
        .hamburger-icon::after {
            content: '';
            display: block;
            width: 25px;
            height: 3px;
            background-color: #333;
            position: absolute;
            transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
        }

        .hamburger-icon::before { top: -8px; }
        .hamburger-icon::after { top: 8px; }

        .menu-toggle.active .hamburger-icon { background-color: transparent; }
        .menu-toggle.active .hamburger-icon::before { top: 0; transform: rotate(45deg); }
        .menu-toggle.active .hamburger-icon::after { top: 0; transform: rotate(-45deg); }
        
        /* Add other consistent styles here (e.g., footer styles) */
        
        /* Responsive Header Styles */
        @media (max-width: 768px) {
            .menu-toggle { display: block; }
            .nav-menu-wrapper {
                display: none; 
                position: absolute;
                top: 100%; 
                left: 0;
                width: 100%;
                background-color: #FFD700; 
                flex-direction: column;
                align-items: stretch; 
                padding: 10px 0;
                box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            }
            .nav-menu-wrapper.active { display: flex; }
            nav ul { flex-direction: column; width: 100%; align-items: center; }
            nav ul li { margin-left: 0; width: 100%; text-align: center; }
            nav ul li a { display: block; padding: 15px 20px; border-bottom: 1px solid rgba(51,51,51,0.1); }
            nav ul li:last-child a { border-bottom: none; }
            .language-switcher { justify-content: center; padding: 10px 0; }
        }
/* Global Styles */
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            animation: fadeInPage 0.6s ease-in-out;
        }

        @keyframes fadeInPage {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Header Styles */
        header {
            background-color: #FFD700; /* Yellow */
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            animation: slideInFromLeft 0.7s ease-out;
            z-index: 10; /* Ensure logo is above mobile menu background */
        }

        @keyframes slideInFromLeft {
            from { transform: translateX(-50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        /* Navigation Menu Wrapper for mobile toggle */
        .nav-menu-wrapper {
            display: flex; /* Default for desktop */
            align-items: center;
            gap: 20px; /* Gap between nav and language switcher */
        }
        
        nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            animation: fadeInNav 0.7s ease-out 0.2s;
            animation-fill-mode: backwards; 
        }

        @keyframes fadeInNav {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        nav ul li {
            margin-left: 20px;
        }

        nav ul li:first-child {
            margin-left: 0; /* Remove margin for the first item if nav-menu-wrapper handles spacing */
        }
        
        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 8px 12px; 
            border-radius: 4px; 
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
        }

        nav ul li a:hover {
            background-color: #333;
            color: #FFD700;
            transform: translateY(-2px);
        }
        
        nav ul li a[href="#order-link"] { 
            background-color: #000000; 
            color: #FFFFFF; 
        }

        nav ul li a[href="#order-link"]:hover {
            background-color: #222222; 
            color: #FFD700;
        }
        
        .language-switcher {
            display: flex;
            align-items: center;
            animation: slideInFromRight 0.7s ease-out;
             z-index: 10; /* Ensure switcher is above mobile menu background */
        }

        @keyframes slideInFromRight {
            from { transform: translateX(50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        .language-switcher select {
            padding: 5px;
            border-radius: 4px;
            border: 1px solid #ccc;
            transition: box-shadow 0.3s ease;
        }

        .language-switcher select:focus {
            box-shadow: 0 0 5px rgba(255,215,0,0.7);
            outline: none;
        }

        /* Hamburger Menu Icon Styles */
        .menu-toggle {
            display: none; /* Hidden by default on larger screens */
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1010; /* Above nav-menu-wrapper */
        }

        .hamburger-icon {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #333;
            position: relative;
            transition: background-color 0s 0.3s; /* Delay background change for close icon */
        }

        .hamburger-icon::before,
        .hamburger-icon::after {
            content: '';
            display: block;
            width: 25px;
            height: 3px;
            background-color: #333;
            position: absolute;
            transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
        }

        .hamburger-icon::before {
            top: -8px;
        }

        .hamburger-icon::after {
            top: 8px;
        }

        /* Active state for hamburger (transform to X) */
        .menu-toggle.active .hamburger-icon {
            background-color: transparent; /* Middle bar disappears */
        }
        .menu-toggle.active .hamburger-icon::before {
            top: 0;
            transform: rotate(45deg);
        }
        .menu-toggle.active .hamburger-icon::after {
            top: 0;
            transform: rotate(-45deg);
        }
        
        /* Hero Section */
        .hero {
            background-color: #000; /* Black */
            background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 20px;
            text-align: center;
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0,0,0,0.5);
            animation: overlayPulse 3s infinite alternate ease-in-out;
        }

        @keyframes overlayPulse {
            from { background-color: rgba(0,0,0,0.4); }
            to { background-color: rgba(0,0,0,0.6); }
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            animation: heroTextFadeInUp 1s ease-out 0.3s;
            animation-fill-mode: backwards;
        }

        @keyframes heroTextFadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .search-options {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            animation: heroSearchFadeInUp 1s ease-out 0.6s;
            animation-fill-mode: backwards;
        }
         @keyframes heroSearchFadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .search-box, .location-btn {
            padding: 12px 20px;
            border-radius: 30px;
            border: none;
            font-size: 1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .search-box:focus, .location-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        .search-box {
            width: 300px;
            padding-left: 40px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"/><path d="M21 21l-4.35-4.35"/></svg>');
            background-repeat: no-repeat;
            background-position: 15px center;
        }
        
        .location-btn {
            background-color: #FFD700;
            color: #333;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        /* Branches Section */
        .branches {
            background-color: #FFD700; /* Yellow */
            padding: 60px 20px;
            text-align: center;
        }
        
        .branches h2 {
            font-size: 2rem;
            margin-bottom: 40px;
            color: #333;
            animation: fadeInDown 0.8s ease-out;
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .branch-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .branch-card {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: popIn 0.5s ease-out forwards;
            opacity: 0; 
        }

        .branch-card:nth-child(1) { animation-delay: 0.1s; }
        .branch-card:nth-child(2) { animation-delay: 0.2s; }
        .branch-card:nth-child(3) { animation-delay: 0.3s; }
        .branch-card:nth-child(4) { animation-delay: 0.4s; }
        .branch-card:nth-child(5) { animation-delay: 0.5s; }
        .branch-card:nth-child(6) { animation-delay: 0.6s; }
        .branch-card:nth-child(7) { animation-delay: 0.7s; }
        .branch-card:nth-child(8) { animation-delay: 0.8s; }


        @keyframes popIn {
            from { opacity: 0; transform: scale(0.8) translateY(20px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }

        .branch-card:hover {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        }
        
        .branch-card h3 {
            margin-top: 0;
            color: #333;
        }
        
        .branch-card p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .view-details-btn {
            background-color: #333;
            color: white;
            border: none;
            padding: 10px 18px;
            border-radius: 20px; 
            font-size: 0.9rem;
            cursor: pointer;
            font-weight: bold;
            margin-top: 15px;
            display: inline-block; 
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .view-details-btn:hover {
            background-color: #555;
            transform: scale(1.05);
        }
        
        .see-more {
            margin-top: 40px;
        }
        
        .see-more-btn {
            background-color: #333;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 1rem;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.3s ease;
            animation: pulseButton 2s infinite ease-in-out;
        }

        @keyframes pulseButton {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .see-more-btn:hover {
            background-color: #555;
            animation-play-state: paused; 
        }
        
        /* Footer */
        footer {
            background-color: #333;
            color: white;
            padding: 40px 20px;
            text-align: center;
            animation: fadeInUpFooter 0.8s ease-out;
        }

        @keyframes fadeInUpFooter {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: left;
        }
        
        .footer-column h3 {
            margin-top: 0;
            font-size: 1.2rem;
            color: #FFD700; 
        }
        
        .footer-column ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease, padding-left 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: #FFD700; 
            padding-left: 5px; 
        }
        
        .copyright {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #555;
            font-size: 0.9rem;
            color: #aaa;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block; /* Show hamburger */
            }

            .nav-menu-wrapper {
                display: none; /* Hide menu by default on mobile */
                position: absolute;
                top: 100%; /* Position below the header */
                left: 0;
                width: 100%;
                background-color: #FFD700; /* Same as header or slightly different */
                flex-direction: column;
                align-items: stretch; /* Stretch items to full width */
                padding: 10px 0;
                box-shadow: 0 2px 5px rgba(0,0,0,0.1);
                animation: slideDownMenu 0.3s ease-in-out;
            }

            .nav-menu-wrapper.active {
                display: flex; /* Show when active */
            }
            
            @keyframes slideDownMenu {
                from { opacity: 0; transform: translateY(-20px); }
                to { opacity: 1; transform: translateY(0); }
            }

            nav ul {
                flex-direction: column;
                width: 100%;
                align-items: center; /* Center nav items */
                animation: none; /* Disable previous nav animation on mobile */
            }

            nav ul li {
                margin-left: 0;
                width: 100%;
                text-align: center; /* Center text of list items */
            }

            nav ul li a {
                display: block; /* Make links take full width for easier tapping */
                padding: 15px 20px;
                border-bottom: 1px solid rgba(51,51,51,0.1); /* Separator lines */
            }
            nav ul li:last-child a {
                 border-bottom: none;
            }
            nav ul li a:hover {
                background-color: #e6c300; /* Slightly darker yellow for hover */
                color: #333;
                transform: translateY(0); /* Disable hover transform on mobile */
            }
            nav ul li a[href="#order-link"]:hover {
                 background-color: #111;
                 color: #FFD700;
            }


            .language-switcher {
                justify-content: center; /* Center language switcher in mobile menu */
                padding: 10px 0;
                animation: none; /* Disable previous animation */
            }

            .branch-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
            .search-options {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            .search-box {
                width: 80%;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            .branch-grid {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
             .footer-column ul {
                display: inline-block; 
                text-align: left; 
            }
            .logo { font-size: 20px; }
        }


        /* menu css */
                .menu-toggle {
            display: none; /* Hidden by default on larger screens */
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1010; /* Above nav-menu-wrapper */
        }

        .hamburger-icon {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #333;
            position: relative;
            transition: background-color 0s 0.3s; /* Delay background change for close icon */
        }

        .hamburger-icon::before,
        .hamburger-icon::after {
            content: '';
            display: block;
            width: 25px;
            height: 3px;
            background-color: #333;
            position: absolute;
            transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
        }

        .hamburger-icon::before {
            top: -8px;
        }

        .hamburger-icon::after {
            top: 8px;
        }

        /* Active state for hamburger (transform to X) */
        .menu-toggle.active .hamburger-icon {
            background-color: transparent; /* Middle bar disappears */
        }
        .menu-toggle.active .hamburger-icon::before {
            top: 0;
            transform: rotate(45deg);
        }
        .menu-toggle.active .hamburger-icon::after {
            top: 0;
            transform: rotate(-45deg);
        }
        
        /* Menu Page Specific Styles */
        .menu-header {
            background-color: #000;
            color: white;
            text-align: center;
            padding: 60px 20px;
        }
        
        .menu-header h1 {
            font-size: 2.5rem;
            margin: 0;
        }
        
        .menu-categories {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .category-btn {
            background-color: #FFD700;
            color: #333;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .category-btn.active {
            background-color: #333;
            color: white;
        }
        
        .category-btn:hover {
            background-color: #e6c200;
        }
        
        .menu-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        
        .menu-section {
            margin-bottom: 60px;
        }
        
        .menu-section h2 {
            font-size: 1.8rem;
            color: #333;
            border-bottom: 2px solid #FFD700;
            padding-bottom: 10px;
            margin-bottom: 30px;
        }
        
        .menu-items {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .menu-item {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .menu-item:hover {
            transform: translateY(-5px);
        }
        
        .menu-item-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .menu-item-content {
            padding: 20px;
        }
        
        .menu-item-title {
            font-size: 1.3rem;
            margin: 0 0 10px 0;
            color: #333;
        }
        
        .menu-item-desc {
            color: #666;
            margin: 0 0 15px 0;
            line-height: 1.5;
        }
        
        .menu-item-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .menu-item-price {
            font-size: 1.2rem;
            font-weight: bold;
            color: #333;
        }
        
        .order-btn {
            background-color: #FFD700;
            color: #333;
            border: none;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .order-btn:hover {
            background-color: #e6c200;
        }
        
        /* Footer (consistent with home page) */
        footer {
            background-color: #333;
            color: white;
            padding: 40px 20px;
            text-align: center;
            animation: fadeInUpFooter 0.8s ease-out;
        }

        @keyframes fadeInUpFooter {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: left;
        }
        
        .footer-column h3 {
            margin-top: 0;
            font-size: 1.2rem;
            color: #FFD700; /* Yellow titles for footer */
        }
        
        .footer-column ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease, padding-left 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: #FFD700; /* Yellow on hover */
            padding-left: 5px; /* Slight indent on hover */
        }
        
        .copyright {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #555;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block; /* Show hamburger */
            }

            .nav-menu-wrapper {
                display: none; /* Hide menu by default on mobile */
                position: absolute;
                top: 100%; /* Position below the header */
                left: 0;
                width: 100%;
                background-color: #FFD700; /* Same as header or slightly different */
                flex-direction: column;
                align-items: stretch; /* Stretch items to full width */
                padding: 10px 0;
                box-shadow: 0 2px 5px rgba(0,0,0,0.1);
                animation: slideDownMenu 0.3s ease-in-out;
            }

            .nav-menu-wrapper.active {
                display: flex; /* Show when active */
            }
            
            @keyframes slideDownMenu {
                from { opacity: 0; transform: translateY(-20px); }
                to { opacity: 1; transform: translateY(0); }
            }

            nav ul {
                flex-direction: column;
                width: 100%;
                align-items: center; /* Center nav items */
                animation: none; /* Disable previous nav animation on mobile */
            }

            nav ul li {
                margin-left: 0;
                width: 100%;
                text-align: center; /* Center text of list items */
            }

            nav ul li a {
                display: block; /* Make links take full width for easier tapping */
                padding: 15px 20px;
                border-bottom: 1px solid rgba(51,51,51,0.1); /* Separator lines */
            }
            nav ul li:last-child a {
                 border-bottom: none;
            }
            nav ul li a:hover {
                background-color: #e6c300; /* Slightly darker yellow for hover */
                color: #333;
                transform: translateY(0); /* Disable hover transform on mobile */
            }
            nav ul li a:nth-child(6):hover {
                 background-color: #111;
                 color: #FFD700;
            }


            .language-switcher {
                justify-content: center; /* Center language switcher in mobile menu */
                padding: 10px 0;
                animation: none; /* Disable previous animation */
            }

            .menu-items {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 480px) {
            .menu-items {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
             .footer-column ul {
                display: inline-block; 
                text-align: left; 
            }
            .logo { font-size: 20px; }
        }

        /* location css */

        
        .hamburger-icon {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #333;
            position: relative;
            transition: background-color 0s 0.3s; 
        }

        .hamburger-icon::before,
        .hamburger-icon::after {
            content: '';
            display: block;
            width: 25px;
            height: 3px;
            background-color: #333;
            position: absolute;
            transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
        }

        .hamburger-icon::before {
            top: -8px;
        }

        .hamburger-icon::after {
            top: 8px;
        }

        .menu-toggle.active .hamburger-icon {
            background-color: transparent; 
        }
        .menu-toggle.active .hamburger-icon::before {
            top: 0;
            transform: rotate(45deg);
        }
        .menu-toggle.active .hamburger-icon::after {
            top: 0;
            transform: rotate(-45deg);
        }
        
      /* Location Page Specific Styles */
.location-header {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.location-header h1 {
    font-size: 2.5rem;
    margin: 0;
}

.location-container {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    gap: 30px;
}

.location-search {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.location-map {
    flex: 1;
    min-height: 400px;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.location-search .search-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.location-search .search-box,
.location-search .location-btn {
    padding: 12px 20px;
    border-radius: 30px;
    border: none;
    font-size: 1rem;
    box-sizing: border-box;
}

.location-search .search-box {
    width: 100%;
    padding-left: 40px;
    border: 1px solid #ccc;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"/><path d="M21 21l-4.35-4.35"/></svg>');
    background-repeat: no-repeat;
    background-position: 15px center;
}

.location-search .location-btn {
    background-color: #FFD700;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.search-results {
    margin-top: 30px;
}

.search-results h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
}

.branch-result {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s ease;
}

.branch-result:hover {
    background-color: #eee;
    transform: translateX(5px);
}

.branch-result h3 {
    margin: 0 0 5px 0;
    color: #333;
}

.branch-result p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.branch-distance {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
    color: #666;
    font-size: 0.85rem;
}

#map {
    width: 100%;
    height: 100%;
}

.location-map {
    flex: 1;
    min-height: 400px; /* This is important */
    height: auto; 
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

#map {
    width: 100%;
    height: 100%; /* This will make it fill the .location-map container */
}

/* Responsive Styles for Mobile */
@media (max-width: 768px) {
    .location-header {
        padding: 40px 15px;
    }

    .location-header h1 {
        font-size: 2rem;
    }

    .location-container {
        flex-direction: column;
        margin: 20px auto;
        padding: 0 15px;
        gap: 20px;
    }

    .location-search {
        padding: 20px;
    }

    .location-map {
        min-height: 300px;
    }

    .search-results h2 {
        font-size: 1.3rem;
    }

    .branch-result {
        padding: 12px;
    }
}