/* Reset and Base Styles - Mobile First */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-blue: #87CEEB;
    --light-blue: #E0F6FF;
    --primary-green: #90EE90;
    --light-green: #F0FFF0;
    --dark-blue: #4682B4;
    --dark-green: #32CD32;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
}

/* Navigation */
.navbar {
    background: rgba(135, 206, 235, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(135, 206, 235, 0.3);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: var(--white);
    font-size: 1.8rem;
}

.logo i {
    color: var(--primary-green);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #000000;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}
/* Hero Slider */
/* Hero Slider */
.hero-slider {
    margin-top: 80px;
    position: relative;
    height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-blue), var(--light-green));
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    padding: 0 5%;
    gap: 2rem;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    flex: 1;
    max-width: 500px;
    z-index: 2;
    padding-left: 100px;
}

.slide-content h1 {
    font-size: 3.2rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.slide-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.order-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.4);
}

.slide-image {
    flex: 1;
    text-align: center;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-image img {
    width: 100%;
    max-width: 500px;
    height: 450px;
    object-fit: contain;
    border-radius: 20px;
     
    transition: transform 0.3s ease;
}

.slide-image img:hover {
    transform: scale(1.02);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 10;
}

.prev-btn, .next-btn {
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--dark-blue);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.prev-btn:hover, .next-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.prev-btn, .next-btn {
    background: rgba(255,255,255,0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--dark-blue);
    transition: background 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background: var(--white);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--white);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
}

/* About Preview Section */
.about-preview {
    padding: 120px 0;
    background: var(--light-green);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.learn-more-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Featured Menu Section */
.featured-menu {
    padding: 120px 0;
    background: var(--white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-info {
    padding: 1.5rem;
    text-align: center;
}

.menu-info h3 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.order-item-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.order-item-btn:hover {
    transform: translateY(-2px);
}

.menu-link {
    text-align: center;
}

.view-menu-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.view-menu-btn:hover {
    transform: translateY(-2px);
}
/* Customer Feedback Section */
.customer-feedback {
    padding: 120px 0;
    background: var(--light-blue);
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feedback-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feedback-item:hover {
    transform: translateY(-5px);
}

.stars {
    margin-bottom: 1rem;
}

.stars i {
    color: #FFD700;
    font-size: 1.2rem;
    margin: 0 2px;
}

.feedback-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.customer-info h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.customer-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Find Us Section */
.find-us {
    padding: 120px 0;
    background: var(--white);
}

.location-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-item i {
    font-size: 2rem;
    color: var(--primary-green);
    width: 50px;
}

.detail-item h3 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.detail-item p {
    color: var(--text-light);
}

.map-placeholder {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.footer-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-green);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(135, 206, 235, 0.98);
        backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(135, 206, 235, 0.3);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        padding: 10px 20px;
        margin: 5px 0;
        border-radius: 25px;
        display: block;
    }
    
/* Mobile Responsive - Clean Consistent Layout */
@media (max-width: 768px) {
    .hero-slider {
        height: auto;
        min-height: 550px;
        padding: 0;
        display: flex;
        align-items: center;
    }
    
    .slider-container {
        width: 100%;
        height: 550px;
        position: relative;
    }
    
    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: grid;
        grid-template-rows: 300px 1fr;
        grid-template-areas: 
            "image"
            "content";
        padding: 20px;
        gap: 0;
        align-content: center;
        justify-content: center;
    }
    
    .slide-image {
        grid-area: image;
        width: 100%;
        height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0;
    }
    
    .slide-image img {
        width: 85%;
        max-width: 350px;
        height: 260px;
        object-fit: contain;
        border-radius: 15px;
        display: block;
        margin: 0 auto;
    }
    
    .slide-content {
        grid-area: content;
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 20px 10px 0 10px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin: 0;
    }
    
    .slide-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        margin-top: 0;
    }
    
    .slide-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
        max-width: 90%;
    }
    
    .order-btn {
        padding: 12px 28px;
        font-size: 1rem;
        margin-top: 0;
    }
    
    .slider-nav {
        top: 45%;
        padding: 0 15px;
        z-index: 20;
    }
    
    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        background: rgba(255,255,255,0.95);
    }
    
    .slider-dots {
        bottom: 20px;
        z-index: 20;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}
    
    .slider-nav {
        padding: 0 15px;
    }
    
    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-dots {
        bottom: 15px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    /* About Section Mobile */
    .about-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
        text-align: left;
    }
    
    .learn-more-btn {
        display: inline-block;
        margin-top: 1rem;
    }
    
    .about-image {
        order: 1;
        width: 100%;
    }
    
    .about-image img {
        height: 280px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        display: block;
        border-radius: 12px;
    }
    
    /* Menu Grid Mobile */
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-item {
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Feedback Grid Mobile */
    .feedback-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feedback-item {
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Find Us Section Mobile */
    .location-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-details {
        order: 1;
    }
    
    .detail-item {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
        padding: 1rem;
        background: var(--white);
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        margin-bottom: 1rem;
    }
    
    .detail-item i {
        font-size: 1.5rem;
        color: var(--primary-green);
        width: 40px;
        flex-shrink: 0;
        margin-top: 0.2rem;
    }
    
    .detail-item div {
        flex: 1;
    }
    
    .detail-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        color: var(--dark-blue);
    }
    
    .detail-item p {
        font-size: 0.95rem;
        line-height: 1.4;
        margin: 0;
    }
    
    .map-placeholder {
        order: 2;
        margin-top: 1rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Section Titles Mobile */
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    /* Container Mobile */
    .container {
        padding: 0 15px;
    }
}

/* Mobile Small Screens */
@media (max-width: 480px) {
    .hero-slider {
        min-height: 450px;
        padding: 1.5rem 0;
    }
    
    .slide-content {
        max-width: 100%;
        flex: none;
        order: 2;
        text-align: center;
        padding: 0 15px;
        min-height: 180px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .slide-content h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .order-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .slide-image {
        flex: none;
        width: 100%;
        order: 1;
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 240px;
        padding: 0 10px;
    }
    
    .slide-image img {
        width: 95%;
        max-width: 350px;
        height: 220px;
        object-fit: contain;
        border-radius: 12px;
        margin: 0 auto;
        display: block;
    }
    
    .slider-nav {
        padding: 0 10px;
        top: 40%;
    }
    
    .prev-btn, .next-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .slider-dots {
        bottom: 10px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .order-btn, .order-item-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .about-image img {
        height: 250px;
        max-width: 350px;
    }
    
    .menu-info h3 {
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    .feedback-item p {
        font-size: 1rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo h2 {
        font-size: 1.5rem;
    }
    
    .detail-item,
    .contact-detail {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .detail-item h3,
    .contact-detail h3 {
        font-size: 1rem;
    }
    
    .detail-item p,
    .contact-detail p {
        font-size: 0.9rem;
    }
    
    .detail-item i,
    .contact-detail i {
        font-size: 1.3rem;
        width: 35px;
    }
}
/* About Page Styles */
.about-hero {
    margin-top: 80px;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
}

.about-hero .container {
    position: relative;
    z-index: 3;
}

.about-hero .hero-content {
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.our-story {
    padding: 120px 0;
    background: var(--white);
}

.story-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.our-values {
    padding: 120px 0;
    background: var(--light-green);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-item h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.our-team {
    padding: 120px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.role {
    color: var(--primary-green);
    font-weight: bold;
    margin-bottom: 1rem !important;
}

.member-info p {
    color: var(--text-light);
    line-height: 1.6;
}

.why-choose-us {
    padding: 120px 0;
    background: var(--light-blue);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}
/* Menu Page Styles */
.menu-hero {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.menu-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.menu-hero .hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.menu-categories {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.category-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-blue);
    color: var(--white);
}

.menu-section {
    padding: 100px 0;
}

.menu-section:nth-child(even) {
    background: var(--light-green);
}

.menu-section:nth-child(odd) {
    background: var(--white);
}

.menu-section .section-title {
    margin-bottom: 2rem;
}

.menu-grid .menu-item .description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Contact Page Styles */
.contact-hero {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.contact-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero .hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.contact-content {
    padding: 120px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-section h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-detail i {
    font-size: 2rem;
    color: var(--primary-green);
    width: 50px;
}

.contact-detail div h3 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.contact-detail div p {
    color: var(--text-light);
}

.contact-form {
    background: var(--light-green);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--dark-blue);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.hours-section {
    padding: 120px 0;
    background: var(--light-blue);
}

.hours-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.hours-content h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 2rem;
}

.hours-list {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    font-weight: bold;
    color: var(--dark-blue);
}

.hours-item .time {
    color: var(--text-light);
}

/* Responsive Design for Additional Pages */
@media (max-width: 768px) {
    /* About Page Mobile */
    .hero-content h1,
    .menu-hero .hero-content h1,
    .contact-hero .hero-content h1,
    .order-hero .hero-content h1,
    .track-hero .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-content p,
    .menu-hero .hero-content p,
    .contact-hero .hero-content p,
    .order-hero .hero-content p,
    .track-hero .hero-content p {
        font-size: 1.1rem;
    }
    
    .story-content {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }
    
    .story-text {
        order: 2;
    }
    
    .story-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .story-text p {
        font-size: 1rem;
        line-height: 1.7;
        text-align: left;
        margin-bottom: 1.5rem;
    }
    
    .story-image {
        order: 1;
        width: 100%;
    }
    
    .story-image img {
        height: 300px;
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
        display: block;
        border-radius: 12px;
    }
    
    /* Values, Features, Team Grids Mobile */
    .values-grid,
    .features-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-item,
    .feature-item,
    .team-member {
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Menu Page Mobile */
    .category-nav {
        gap: 0.5rem;
        padding: 0 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .category-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
        margin: 2px;
    }
    
    .menu-categories {
        padding: 30px 0;
    }
    
    .menu-section {
        padding: 60px 0;
    }
    
    /* Contact Page Mobile */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-section {
        order: 1;
    }
    
    .contact-info-section h2 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .contact-info-section > p {
        text-align: center;
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .contact-details {
        gap: 1rem;
    }
    
    .contact-detail {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
        padding: 1.5rem;
        background: var(--white);
        border-radius: 12px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        margin-bottom: 1rem;
    }
    
    .contact-detail i {
        font-size: 1.8rem;
        color: var(--primary-green);
        width: 50px;
        flex-shrink: 0;
        margin-top: 0.2rem;
    }
    
    .contact-detail div {
        flex: 1;
    }
    
    .contact-detail h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        color: var(--dark-blue);
    }
    
    .contact-detail p {
        font-size: 1rem;
        line-height: 1.4;
        margin: 0.3rem 0;
        color: var(--text-light);
    }
    
    .contact-form {
        order: 2;
        padding: 2rem 1.5rem;
        margin-top: 1rem;
    }
    
    .contact-form h3 {
        text-align: center;
        margin-bottom: 2rem;
        font-size: 1.5rem;
    }
    
    .hours-content {
        padding: 0 15px;
    }
    
    .hours-list {
        padding: 1.5rem;
    }
    
    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 0.8rem 0;
    }
    
    /* Order Pages Mobile */
    .order-wrapper,
    .tracking-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .order-summary {
        position: static;
        order: 2;
    }
    
    .order-form {
        order: 1;
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .order-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .item-controls {
        align-self: flex-end;
    }
    
    /* Tracking Page Mobile */
    .order-details-card,
    .order-timeline,
    .delivery-info,
    .order-items-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .timeline-item {
        padding-left: 50px;
        margin-bottom: 1.5rem;
    }
    
    .timeline-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .timeline::before {
        left: 17px;
    }
    
    .delivery-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .delivery-contact {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .ordered-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        text-align: left;
    }
    
    .item-price {
        align-self: flex-end;
        font-size: 1.2rem;
    }
    
    /* WhatsApp and Notifications Mobile */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
    
    .cart-notification {
        right: -280px;
        font-size: 0.9rem;
        padding: 12px 15px;
        max-width: 250px;
    }
    
    .cart-notification.show {
        right: 15px;
    }
    
    .delivery-notification {
        padding: 20px;
    }
    
    .notification-content {
        padding: 2rem 1.5rem;
        margin: 0 20px;
        max-width: calc(100% - 40px);
    }
    
    .notification-content i {
        font-size: 3rem;
    }
    
    .notification-content h3 {
        font-size: 1.5rem;
    }
}

/* Mobile Small Screens - Additional Pages */
@media (max-width: 480px) {
    .hero-content h1,
    .menu-hero .hero-content h1,
    .contact-hero .hero-content h1,
    .order-hero .hero-content h1,
    .track-hero .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p,
    .menu-hero .hero-content p,
    .contact-hero .hero-content p,
    .order-hero .hero-content p,
    .track-hero .hero-content p {
        font-size: 1rem;
    }
    
    .story-text h2,
    .contact-info-section h2 {
        font-size: 1.8rem;
    }
    
    .story-text p,
    .contact-info-section > p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .story-image img {
        height: 250px;
        max-width: 350px;
    }
    
    .value-item h3,
    .feature-item h3 {
        font-size: 1.3rem;
    }
    
    .member-info h3 {
        font-size: 1.2rem;
    }
    
    .category-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .contact-form h3 {
        font-size: 1.3rem;
    }
    
    .order-summary,
    .order-form,
    .order-details-card,
    .order-timeline,
    .delivery-info,
    .order-items-card {
        padding: 1rem;
    }
    
    .place-order-btn,
    .submit-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .timeline-item {
        padding-left: 45px;
    }
    
    .timeline-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .contact-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .info-row {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
    }
    
    .hours-item {
        padding: 0.5rem 0;
    }
}
/* Map Section */
.map-section {
    padding: 120px 0;
    background: var(--white);
}

.map-container {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
}
/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
    text-decoration: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 100px;
    right: -300px;
    background: var(--primary-green);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-notification.show {
    right: 20px;
}

.cart-notification i {
    font-size: 1.2rem;
}

/* Order Page Styles */
.order-hero, .track-hero {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.order-hero .hero-content h1,
.track-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.order-hero .hero-content p,
.track-hero .hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.order-section, .tracking-section {
    padding: 120px 0;
    background: var(--light-green);
}

.order-wrapper, .tracking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Order Summary */
.order-summary {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}

.order-summary h3 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.order-item:last-child {
    border-bottom: none;
}

.item-info h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.item-price {
    color: var(--dark-green);
    font-weight: bold;
}

.item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
}

.qty-btn:hover {
    background: var(--dark-blue);
}

.quantity {
    font-weight: bold;
    min-width: 20px;
    text-align: center;
}

.remove-btn {
    background: #dc3545;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
}

.remove-btn:hover {
    background: #c82333;
}

.order-total {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #eee;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.total-final {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--dark-blue);
    border-top: 1px solid #eee;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.empty-cart {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
}

.empty-cart a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: bold;
}

/* Order Form */
.order-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.order-form h3 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.place-order-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.place-order-btn:hover {
    transform: translateY(-2px);
}

/* Order Tracking Styles */
.order-details-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.order-details-card h3 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.info-row:last-child {
    border-bottom: none;
}

.label {
    font-weight: bold;
    color: var(--text-dark);
}

.value {
    color: var(--text-light);
}

/* Order Timeline */
.order-timeline {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.order-timeline h3 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ddd;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.timeline-item.completed .timeline-icon {
    background: var(--primary-green);
}

.timeline-item.active .timeline-icon {
    background: var(--primary-blue);
    animation: pulse 2s infinite;
}

.timeline-content h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.time {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Delivery Info */
.delivery-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.delivery-info h3 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.delivery-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.delivery-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.delivery-details h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.delivery-details p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.delivery-contact {
    display: flex;
    gap: 10px;
}

.contact-btn {
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: transform 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
}

.contact-btn:first-child {
    background: var(--primary-blue);
    color: white;
}

.contact-btn.whatsapp {
    background: #25D366;
    color: white;
}

/* Order Items Card */
.order-items-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.order-items-card h3 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.ordered-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.ordered-item:last-child {
    border-bottom: none;
}

.item-details h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.item-details p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.item-price {
    color: var(--dark-green);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Delivery Notification */
.delivery-notification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.delivery-notification.show {
    opacity: 1;
    visibility: visible;
}

.notification-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.notification-content i {
    font-size: 4rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.notification-content h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.notification-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.close-notification {
    background: var(--primary-blue);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
}

.close-notification:hover {
    background: var(--dark-blue);
}

/* Responsive Design for Order Pages */
@media (max-width: 768px) {
    .order-wrapper,
    .tracking-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .order-summary {
        position: static;
        order: 2;
    }
    
    .order-form {
        order: 1;
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .order-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .item-controls {
        align-self: flex-end;
        width: 100%;
        justify-content: space-between;
    }
    
    .delivery-card {
        flex-direction: column;
        text-align: center;
    }
    
    .delivery-contact {
        justify-content: center;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
    
    .cart-notification {
        right: -250px;
        font-size: 0.9rem;
        padding: 12px 15px;
    }
    
    .cart-notification.show {
        right: 15px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline::before {
        left: 17px;
    }
    
    .timeline-icon {
        width: 35px;
        height: 35px;
    }
    
    .ordered-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .item-price {
        align-self: flex-end;
    }
    
    .notification-content {
        margin: 0 20px;
        padding: 2rem 1.5rem;
    }
}
/* Additional Mobile Optimizations */
@media (max-width: 768px) {
    /* Improve touch targets */
    .order-btn, .order-item-btn, .learn-more-btn, .view-menu-btn {
        min-height: 44px;
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    /* Better spacing for mobile */
    .about-preview, .featured-menu, .customer-feedback, .find-us {
        padding: 60px 0;
    }
    
    .our-story, .our-values, .our-team, .why-choose-us {
        padding: 60px 0;
    }
    
    .menu-section {
        padding: 40px 0;
    }
    
    .contact-content, .hours-section {
        padding: 60px 0;
    }
    
    .order-section, .tracking-section {
        padding: 60px 0;
    }
    
    /* Improve form usability on mobile */
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 15px;
        border-radius: 10px;
    }
    
    /* Better mobile navigation */
    .nav-menu a {
        font-size: 1.1rem;
        padding: 15px 25px;
    }
    
    /* Improve mobile hero sections */
    .about-hero, .menu-hero, .contact-hero, .order-hero, .track-hero {
        padding: 80px 0 60px;
    }
    
    /* Better mobile cards */
    .menu-item, .feedback-item, .value-item, .feature-item, .team-member {
        border-radius: 12px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    }
    
    /* Improve mobile timeline */
    .timeline-content {
        padding-right: 10px;
    }
    
    .timeline-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Better mobile order summary */
    .order-total {
        background: var(--light-blue);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
    
    /* Improve mobile delivery info */
    .delivery-avatar img {
        width: 80px;
        height: 80px;
    }
    
    .delivery-details {
        width: 100%;
    }
    
    /* Better mobile map */
    .map-container iframe {
        height: 250px;
        border-radius: 10px;
    }
}

/* Tablet Responsive Design */
@media (min-width: 769px) and (max-width: 1024px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .feedback-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid, .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .order-wrapper, .tracking-wrapper {
        gap: 2rem;
    }
    
    .contact-wrapper {
        gap: 2rem;
    }
}

/* Large Mobile Screens */
@media (min-width: 481px) and (max-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feedback-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .slide-content h1 {
        font-size: 2.2rem;
    }
    
    .category-nav {
        gap: 0.8rem;
    }
    
    .category-btn {
        padding: 10px 18px;
        font-size: 0.95rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-slider {
        height: 400px;
    }
    
    .slide {
        padding: 1rem;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-image img {
        height: 200px;
    }
    
    .about-hero, .menu-hero, .contact-hero, .order-hero, .track-hero {
        padding: 60px 0 40px;
    }
}

/* Fix for very small screens */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .slide-content h1 {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .order-btn, .order-item-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 20px;
        bottom: 10px;
        right: 10px;
    }
    
    .cart-notification {
        right: -200px;
        font-size: 0.8rem;
        padding: 10px 12px;
    }
    
/* Additional Mobile Optimizations */
@media (max-width: 768px) {
    /* Improve touch targets */
    .order-btn, .order-item-btn, .learn-more-btn, .view-menu-btn {
        min-height: 44px;
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    /* Better spacing for mobile */
    .about-preview, .featured-menu, .customer-feedback, .find-us {
        padding: 60px 0;
    }
    
    .our-story, .our-values, .our-team, .why-choose-us {
        padding: 60px 0;
    }
    
    .menu-section {
        padding: 40px 0;
    }
    
    .contact-content, .hours-section {
        padding: 60px 0;
    }
    
    .order-section, .tracking-section {
        padding: 60px 0;
    }
    
    /* Improve form usability on mobile */
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 15px;
        border-radius: 10px;
    }
    
    /* Better mobile navigation */
    .nav-menu a {
        font-size: 1.1rem;
        padding: 15px 25px;
    }
    
    /* Improve mobile hero sections */
    .about-hero, .menu-hero, .contact-hero, .order-hero, .track-hero {
        padding: 80px 0 60px;
    }
    
    /* Better mobile cards */
    .menu-item, .feedback-item, .value-item, .feature-item, .team-member {
        border-radius: 12px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    }
    
    /* Improve mobile timeline */
    .timeline-content {
        padding-right: 10px;
    }
    
    .timeline-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Better mobile order summary */
    .order-total {
        background: var(--light-blue);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
    
    /* Improve mobile delivery info */
    .delivery-avatar img {
        width: 80px;
        height: 80px;
    }
    
    .delivery-details {
        width: 100%;
    }
    
    /* Better mobile map */
    .map-container iframe {
        height: 250px;
        border-radius: 10px;
    }
}

/* Tablet Responsive Design */
@media (min-width: 769px) and (max-width: 1024px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .feedback-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid, .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .order-wrapper, .tracking-wrapper {
        gap: 2rem;
    }
    
    .contact-wrapper {
        gap: 2rem;
    }
}

/* Large Mobile Screens */
@media (min-width: 481px) and (max-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feedback-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .slide-content h1 {
        font-size: 2.2rem;
    }
    
    .category-nav {
        gap: 0.8rem;
    }
    
    .category-btn {
        padding: 10px 18px;
        font-size: 0.95rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-slider {
        height: 400px;
    }
    
    .slide {
        padding: 1rem;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-image img {
        height: 200px;
    }
    
    .about-hero, .menu-hero, .contact-hero, .order-hero, .track-hero {
        padding: 60px 0 40px;
    }
}

/* Fix for very small screens */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .slide-content h1 {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .order-btn, .order-item-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 20px;
        bottom: 10px;
        right: 10px;
    }
    
    .cart-notification {
        right: -200px;
        font-size: 0.8rem;
        padding: 10px 12px;
    }
}
/* Additional Section Spacing Improvements */

/* Add consistent spacing between sections */
section + section {
    margin-top: 0;
}

/* Hero sections with proper spacing */
.hero-slider,
.about-hero,
.menu-hero,
.contact-hero,
.order-hero,
.track-hero {
    margin-bottom: 0;
}

/* Ensure consistent section spacing on desktop */
@media (min-width: 1025px) {
    .about-preview, 
    .featured-menu, 
    .customer-feedback, 
    .find-us,
    .our-story, 
    .our-values, 
    .our-team, 
    .why-choose-us,
    .contact-content, 
    .hours-section, 
    .map-section,
    .order-section, 
    .tracking-section {
        padding: 140px 0;
    }
    
    .menu-section {
        padding: 120px 0;
    }
    
    .menu-categories {
        padding: 80px 0;
    }
    
    .footer {
        padding: 100px 0 40px;
    }
}

/* Tablet spacing adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .about-preview, 
    .featured-menu, 
    .customer-feedback, 
    .find-us,
    .our-story, 
    .our-values, 
    .our-team, 
    .why-choose-us,
    .contact-content, 
    .hours-section, 
    .map-section,
    .order-section, 
    .tracking-section {
        padding: 100px 0;
    }
    
    .menu-section {
        padding: 80px 0;
    }
    
    .menu-categories {
        padding: 50px 0;
    }
    
    .footer {
        padding: 70px 0 25px;
    }
}

/* Small mobile spacing */
@media (max-width: 480px) {
    .about-preview, 
    .featured-menu, 
    .customer-feedback, 
    .find-us,
    .our-story, 
    .our-values, 
    .our-team, 
    .why-choose-us,
    .contact-content, 
    .hours-section, 
    .map-section,
    .order-section, 
    .tracking-section {
        padding: 60px 0;
    }
    
    .menu-section {
        padding: 50px 0;
    }
    
    .menu-categories {
        padding: 25px 0;
    }
    
    .footer {
        padding: 50px 0 20px;
    }
    
    /* Hero sections on small mobile */
    .about-hero, 
    .menu-hero, 
    .contact-hero, 
    .order-hero, 
    .track-hero {
        padding: 70px 0 50px;
    }
}
/* About Hero Mobile Responsive */
@media (max-width: 768px) {
    .about-hero {
        height: 350px;
    }
    
    .hero-overlay {
        background: url('images/banner1.jpg') no-repeat center center;
        background-size: cover;
    }
    
    .hero-overlay::after {
        background: linear-gradient(135deg, rgba(135, 206, 235, 0.8), rgba(144, 238, 144, 0.8));
    }
    
    .about-hero .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .about-hero .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 300px;
    }
    
    .hero-overlay {
        background: url('images/banner1.jpg') no-repeat center center;
        background-size: cover;
    }
    
    .hero-overlay::after {
        background: linear-gradient(135deg, rgba(135, 206, 235, 0.85), rgba(144, 238, 144, 0.85));
    }
    
    .about-hero .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .about-hero .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .about-hero {
        height: 280px;
    }
    
    .hero-overlay {
        background: url('images/banner1.jpg') no-repeat center center;
        background-size: cover;
    }
    
    .hero-overlay::after {
        background: linear-gradient(135deg, rgba(135, 206, 235, 0.9), rgba(144, 238, 144, 0.9));
    }
    
    .about-hero .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .about-hero .hero-content p {
        font-size: 0.9rem;
    }
}

/* High-resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-overlay {
        background: url('images/banner1.jpg') no-repeat center center;
        background-size: cover;
    }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .about-hero {
        height: 250px;
    }
    
    .about-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .about-hero .hero-content p {
        font-size: 1rem;
    }
}

/* Hero Slider Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-slider {
        height: 550px;
        padding: 1.5rem 0;
    }
    
    .slide {
        padding: 0 3%;
        gap: 2rem;
    }
    
    .slide-content {
        max-width: 450px;
        padding-left: 50px;
    }
    
    .slide-content h1 {
        font-size: 2.8rem !important;
        margin-bottom: 1rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
        margin-bottom: 1.8rem;
    }
    
    .order-btn {
        padding: 14px 32px;
        font-size: 1.05rem;
    }
    
    .slide-image img {
        width: 100%;
        max-width: 450px;
        height: 380px;
        object-fit: contain;
        border-radius: 18px;
    }
    
    .slider-nav {
        padding: 0 25px;
    }
    
    .prev-btn, .next-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Hero Slider Large Screens */
@media (min-width: 1200px) {
    .hero-slider {
        height: 650px;
    }
    
    .slide {
        padding: 0 8%;
        gap: 3rem;
    }
    
    .slide-content h1 {
        font-size: 3.5rem;
    }
    
    .slide-content p {
        font-size: 1.4rem;
    }
    
    .slide-image img {
        width: 100%;
        max-width: 550px;
        height: 500px;
        object-fit: contain;
    }
    
    .slider-nav {
        padding: 0 30px;
    }
    
    .prev-btn, .next-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}
/* Additional Slider Fixes */
@media (max-width: 768px) {
    .hero-slider {
        overflow: visible;
    }
    
    .slider-container {
        overflow: hidden;
    }
    
    .slide {
        min-height: 450px;
    }
    
    .slider-nav {
        display: flex;
        align-items: center;
    }
    
    .prev-btn, .next-btn {
        flex-shrink: 0;
        z-index: 15;
    }
}

/* Landscape Mobile Fixes */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-slider {
        height: 400px;
        min-height: 400px;
        padding: 1rem 0;
    }
    
    .slide {
        flex-direction: row;
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .slide-content {
        order: 1;
        flex: 1;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .slide-image {
        order: 2;
        flex: 1;
        max-width: 50%;
    }
    
    .slide-image img {
        height: 200px;
        width: 100%;
        max-width: 300px;
    }
    
    .slider-nav {
        top: 50%;
        padding: 0 10px;
    }
    
    .prev-btn, .next-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .prev-btn, .next-btn {
        background: rgba(255,255,255,0.95);
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .dot {
        width: 14px;
        height: 14px;
        margin: 0 2px;
    }
    
    .slide-image img:hover {
        transform: none;
    }
    
    .order-btn:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(50, 205, 50, 0.3);
    }
}
/* Consistent Slider Positioning Fix */
@media (max-width: 768px) {
    .slide {
        min-height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 2rem 1rem;
    }
    
    .slide-content {
        order: 2;
        flex: 0 0 auto;
        width: 100%;
        text-align: center;
        padding: 0 20px;
        margin-top: 1rem;
    }
    
    .slide-image {
        order: 1;
        flex: 0 0 auto;
        width: 100%;
        height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1rem;
    }
    
    .slide-image img {
        width: 90%;
        max-width: 400px;
        height: 280px;
        object-fit: contain;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .slide {
        min-height: 450px;
        padding: 1.5rem 0.8rem;
    }
    
    .slide-image {
        height: 250px;
    }
    
    .slide-image img {
        width: 95%;
        max-width: 350px;
        height: 220px;
    }
    
    .slide-content {
        padding: 0 15px;
    }
}
/* Override Small Mobile - Grid Layout */
@media (max-width: 480px) {
    .hero-slider {
        min-height: 500px !important;
    }
    
    .slider-container {
        height: 500px !important;
    }
    
    .slide {
        display: grid !important;
        grid-template-rows: 250px 1fr !important;
        grid-template-areas: 
            "image"
            "content" !important;
        padding: 15px !important;
        gap: 0 !important;
        align-content: center !important;
        justify-content: center !important;
    }
    
    .slide-image {
        grid-area: image !important;
        width: 100% !important;
        height: 250px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
        order: unset !important;
        flex: unset !important;
        min-height: unset !important;
    }
    
    .slide-image img {
        width: 90% !important;
        max-width: 320px !important;
        height: 220px !important;
        border-radius: 12px !important;
        object-fit: contain !important;
        display: block !important;
        margin: 0 auto !important;
    }
    
    .slide-content {
        grid-area: content !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        padding: 15px 5px 0 5px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        margin: 0 !important;
        order: unset !important;
        flex: unset !important;
        min-height: unset !important;
    }
    
    .slide-content h1 {
        font-size: 1.9rem !important;
        margin-bottom: 0.8rem !important;
        margin-top: 0 !important;
    }
    
    .slide-content p {
        font-size: 0.95rem !important;
        margin-bottom: 1.2rem !important;
        max-width: 95% !important;
    }
    
    .order-btn {
        padding: 12px 24px !important;
        font-size: 0.95rem !important;
        margin-top: 0 !important;
    }
}