/* Reset and Base Styles */
:root {
    /* Colors */
    --color-gray: #A3A3A3;
    --color-light-teal: #B4D9C3;
    --color-beige: #E7DCC6;
    --color-orange: #E79E59;
    --color-teal: #458F8B;
    --color-white: #FFFFFF;
    --surprise-img-height: 350px;
    
    /* Typography */
    --font-size-description: 18px;
    --font-size-medium: 46px;
    --font-size-big: 76px;
    --line-height-description: 25px;
    --line-height-medium: 47px;
    --line-height-big: 67px;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

html {
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.navbar {
    padding: 0.8rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .logo img {
    height: 45px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-teal);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--color-teal);
    color: var(--color-white);
}

.btn-primary:hover {
    background: #3a7d7a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(69, 143, 139, 0.3);
}

.btn-secondary {
    background: var(--color-orange);
    color: var(--color-white);
}

.btn-secondary:hover {
    background: #d68e4f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 158, 89, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 65px;
    background: var(--color-teal);
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    right: -50px;
    width: 70%;
    height: 100%;
    pointer-events: none;
}

.hero-background .bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero-background .doodles {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: hue-rotate(130deg) brightness(1.1) saturate(0.8);
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 20px 0 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    min-height: 450px;
}

.hero-content {
    flex: 1;
    max-width: 500px;
    padding-bottom: 60px;
}

.hero-content h1 {
    font-size: var(--font-size-big);
    font-weight: bold;
    color: var(--color-white);
    line-height: var(--line-height-big);
    margin: 0;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-content p {
    font-size: var(--font-size-description);
    color: var(--color-white);
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    line-height: var(--line-height-description);
}

.app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-store-btn img,
.google-play-btn img {
    height: 45px;
    cursor: pointer;
    transition: transform 0.3s, filter 0.3s;
}

.app-store-btn:hover img,
.google-play-btn:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.hero-mascot {
    flex: 0 0 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
}

.mascot {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    animation: float 3s ease-in-out infinite !important;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
    margin-bottom: 0;
    transform-origin: center center;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Partners Section */
.partners {
    background: transparent;
}

.partners-header {
    background: white;
    padding: 60px 0 40px 0;
    text-align: center;
}

.partners-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-teal);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.partners-header p {
    color: #666;
    font-size: 1rem;
}

.partners-logos-section {
    background: var(--color-teal);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.partners-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.partners-background .bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.logos-scroll {
    width: 100%;
    max-width: 1400px;
    height: auto;
    animation: none;
}

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

/* Surprise Box Wrapper */
.surprise-wrapper {
    background: var(--color-orange);
    padding: 0;
    overflow: visible;
    position: relative;
}

/* Surprise Box Section */
.surprise-box {
    padding: 0;
    background: transparent;
    position: relative;
    min-height: var(--surprise-img-height);
    display: flex;
    align-items: center;
}

.surprise-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.surprise-background .bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.surprise-box .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

.surprise-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    width: 100%;
    position: relative;
    z-index: 2;
    padding-right: clamp(24px, 6vw, 96px);
}

.surprise-left {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-end;
}

.surprise-left img {
    height: calc(var(--surprise-img-height) * 1.3);
    width: auto;
    max-width: min(55vw, 900px);
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
}

.surprise-right {
    flex: 1;
    max-width: 520px;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.surprise-right h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.surprise-right p {
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-download-white {
    display: inline-block;
    padding: 12px 32px;
    background: white;
    color: var(--color-orange);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-download-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

/* Restaurant Section */
.restaurants {
    padding: 0;
    background: white;
    overflow: hidden;
    line-height: 0;
}

.restaurants .container {
    padding: 0;
    max-width: 100%;
    line-height: 0;
}

.restaurant-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: normal;
}

.restaurant-left {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 30px;
}

.restaurant-text {
    flex: 1;
}

.restaurant-left h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-teal);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.restaurant-left p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-download-teal {
    display: inline-block;
    padding: 12px 32px;
    background: var(--color-teal);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-download-teal:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(69, 143, 139, 0.3);
}

.restaurant-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.phone-carousel {
    position: relative;
    width: 500px;
    display: inline-block;
    line-height: 0;
}

.phone-screen {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    line-height: 0;
}

.phone-screen.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    position: relative;
}

.phone-screen img {
    width: 500px;
    height: auto;
    display: block;
}

.nav-arrow {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    flex-shrink: 0; 
}

.nav-arrow:hover {
    transform: scale(1.1);
}

.nav-arrow:active {
    transform: scale(0.95);
}

.nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.nav-arrow:disabled:hover {
    transform: none;
}

.nav-arrow svg {
    display: block;
}

/* Fresh Food Section */
.fresh-food {
    padding: 0;
    background: var(--color-teal);
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.fresh-food .container {
    padding: 0;
    max-width: 100%;
    line-height: 0;
}

.fresh-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.fresh-background .bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.fresh-background .doodles {
    display: none;
}

.fresh-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: normal;
}

.fresh-left {
    position: relative;
    line-height: 0;
}

.fresh-left img {
    width: 500px;
    height: auto;
    display: block;
}

.fresh-right {
    flex: 1;
    text-align: right;
}

.fresh-right h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.fresh-right p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

/* Footer Section */
.footer {
    background: #333;
    color: white;
    position: relative;
}

.footer-main {
    padding: 60px 0;
    position: relative;
}

.footer-main .bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.footer-content {
    display: grid;
    grid-template-columns: 200px 1fr 250px;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.footer-logo img {
    height: 80px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: white;
    text-decoration: none;
    line-height: 2;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 0.7;
}

.footer-apps-social {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-apps {
    display: flex;
    gap: 10px;
}

.footer-apps img {
    height: 40px;
}

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

.footer-social img {
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: transform 0.3s;
}

.footer-social img:hover {
    transform: scale(1.1);
}

.footer-copyright {
    background: #222;
    padding: 20px 0;
    text-align: center;
    position: relative;
}

.footer-copyright .bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.05;
}

.footer-copyright p {
    position: relative;
    z-index: 2;
    color: white;
}

/* About Page Styles */

/* Who We Are Section */
.about-who-we-are {
    padding: 0;
    background: white;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    margin-top: 65px;
}

.about-who-we-are .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.who-we-are-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 200px;
    height: 100%;
}

.who-we-are-left {
    flex: 1;
    max-width: 500px;
}

.who-we-are-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-teal);
    margin-bottom: 2rem;
    text-transform: uppercase;
    margin-left: 0;
}

.who-we-are-left p {
    font-size: 1rem;
    color: var(--color-teal);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.who-we-are-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}

.mascot-waving {
    width: auto;
    height: 500px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.about-doodles {
    position: absolute;
    height: 500px;
    width: auto;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.9;
}

/* Business Model Section */
.about-business-model {
    padding: 80px 0;
    background: var(--color-teal);
    position: relative;
}

.about-business-model .container {
    max-width: 1200px;
    padding: 0 40px;
}

.business-model-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.business-model-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.business-model-content p {
    font-size: 1rem;
    color: white;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Our Presence Section */
.about-presence {
    padding: 0;
    background: #F5F0E8;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
}

.about-presence .container {
    max-width: 1200px;
    padding: 0 40px;
}

.presence-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    height: 100%;
}

.presence-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.world-map {
    width: auto;
    height: 400px;
    max-width: 700px;
}

.presence-right {
    flex: 1;
    max-width: 600px;
}

.presence-right h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-teal);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.presence-right p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}

/* ESG Section */
.about-esg {
    padding: 80px 0;
    background: var(--color-teal);
    position: relative;
}

.about-esg .container {
    max-width: 1200px;
    padding: 0 40px;
}

.esg-content {
    max-width: 900px;
}

.esg-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.esg-content p {
    font-size: 1rem;
    color: white;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Responsive Design */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 30px;
    }
    
    .hero-container {
        padding: 40px 30px 0 30px;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .surprise-content,
    .restaurant-content,
    .fresh-content {
        gap: 50px;
    }
    
    /* About Page Tablet */
    .who-we-are-content {
        gap: 120px;
    }
    
    .about-who-we-are .container,
    .about-business-model .container,
    .about-presence .container,
    .about-esg .container {
        padding: 0 30px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    /* Header */
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        transform: translateX(0);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hero Section */
    .hero {
        min-height: auto;
        padding: 40px 0 20px 0;
        margin-bottom: 0;
    }
    
    .hero-background {
        width: 100%;
        right: 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px 20px 20px;
        min-height: auto;
        align-items: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 1rem;
        padding-bottom: 0;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-mascot {
        flex: 0 0 auto;
        width: 100%;
        max-width: 280px;
        height: auto;
        margin-bottom: 0;
    }
    
    .mascot {
        max-width: 100%;
        margin-bottom: 0;
        animation: float 3s ease-in-out infinite !important;
    }
    
    .app-buttons {
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .app-store-btn img,
    .google-play-btn img {
        height: 40px;
    }
    
    /* Partners Section */
    .partners {
        margin-top: 40px;
    }
    
    .partners-header {
        padding: 40px 20px 30px 20px;
    }
    
    .partners-header h2 {
        font-size: 1.5rem;
    }
    
    .partners-logos-section {
        padding: 30px 0;
    }
    
    .partners-logos {
        padding: 20px 0;
        overflow: hidden;
    }
    
    .logos-scroll {
        width: auto;
        max-width: none;
        min-width: 200%;
        animation: scroll-logos 20s linear infinite;
    }
    
    /* Surprise Box Section */
    .surprise-wrapper {
        padding-top: 40px;
        padding-bottom: 40px;
        margin-top: 40px;
    }
    
    .surprise-box {
        padding: 40px 0;
        overflow: visible;
        min-height: auto;
    }
    
    .surprise-box .container {
        padding: 0 20px;
    }
    
    .surprise-content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        padding: 0;
    }
    
    .surprise-left {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .surprise-left img {
        max-width: 90%;
        width: auto;
        height: auto;
        display: block;
    }
    
    .surprise-right {
        text-align: center;
        padding: 0;
        max-width: 100%;
    }
    
    .surprise-right h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .surprise-right p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .surprise-background {
        width: 100%;
        left: 0;
        top: 0;
    }
    
    /* Restaurant Section */
    .restaurants {
        padding: 40px 20px;
        min-height: auto;
        margin-top: 20px;
    }
    
    .restaurant-content {
        flex-direction: column;
        gap: 30px;
        padding: 0;
        position: relative;
    }
    
    .restaurant-left {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        order: 2;
    }
    
    .restaurant-left .nav-arrow {
        position: absolute;
        left: 10px;
        top: 140px;
        z-index: 10;
    }
    
    .restaurant-left h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .restaurant-left p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .restaurant-right {
        display: flex;
        flex-direction: row;
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        justify-content: center;
        align-items: center;
        gap: 20px;
        order: 1;
        padding: 0;
        position: relative;
        min-height: 320px;
    }
    
    .restaurant-right .nav-arrow {
        position: absolute;
        right: 10px;
        top: 140px;
        z-index: 10;
    }
    
    .phone-carousel {
        width: 200px;
        height: auto;
        flex-shrink: 0;
    }
    
    .phone-screen img {
        width: 200px;
        height: auto;
    }
    
    .nav-arrow {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
        background: white;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .nav-arrow svg {
        width: 45px;
        height: 45px;
    }
    
    .nav-arrow:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    /* Fresh Food Section */
    .fresh-food {
        padding: 60px 20px;
        margin-top: 40px;
    }
    
    .fresh-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0;
    }
    
    .fresh-left {
        order: 1;
    }
    
    .fresh-left img {
        width: 280px;
        max-width: 90%;
        height: auto;
    }
    
    .fresh-right {
        text-align: center;
        order: 2;
    }
    
    .fresh-right h2 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .fresh-right p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .fresh-background .doodles {
        width: 80%;
        opacity: 0.5;
    }
    
    /* Footer */
    .footer {
        margin-top: 40px;
    }
    
    .footer-main {
        padding: 40px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-copyright {
        padding: 20px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-apps-social {
        align-items: center;
        gap: 15px;
    }
    
    .footer-apps {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    /* About Page Mobile */
    .about-who-we-are {
        padding: 40px 0;
        height: auto;
        margin-top: 65px;
    }
    
    .about-who-we-are .container {
        padding: 0 20px;
    }
    
    .who-we-are-content {
        flex-direction: column;
        gap: 40px;
        height: auto;
    }
    
    .who-we-are-left {
        text-align: center;
        padding-left: 0;
    }
    
    .who-we-are-left h2 {
        font-size: 2rem;
    }
    
    .who-we-are-right {
        height: auto;
        overflow: hidden;
        position: relative;
    }
    
    .mascot-waving {
        width: 250px;
        height: auto;
    }
    
    .about-doodles {
        width: 300px;
        height: auto;
        right: -50px;
        opacity: 0.6;
    }
    
    .about-business-model {
        padding: 60px 20px;
    }
    
    .about-business-model .container {
        padding: 0;
    }
    
    .business-model-content h2 {
        font-size: 2rem;
    }
    
    .business-model-content p {
        font-size: 0.9rem;
    }
    
    .about-presence {
        padding: 40px 20px;
        height: auto;
    }
    
    .about-presence .container {
        padding: 0;
    }
    
    .presence-content {
        flex-direction: column;
        gap: 40px;
        height: auto;
    }
    
    .presence-left {
        height: auto;
    }
    
    .presence-right {
        text-align: center;
    }
    
    .presence-right h2 {
        font-size: 2rem;
    }
    
    .world-map {
        height: auto;
        max-width: 450px;
        width: 100%;
    }
    
    .about-esg {
        padding: 60px 20px;
    }
    
    .about-esg .container {
        padding: 0;
    }
    
    .esg-content h2 {
        font-size: 2rem;
    }
    
    .esg-content p {
        font-size: 0.9rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-container {
        padding: 40px 15px 0 15px;
    }
    
    .partners-header {
        padding: 40px 15px 30px 15px;
    }
    
    .logos-scroll {
        animation: scroll-logos 15s linear infinite;
    }
    
    .partners-header h2,
    .surprise-right h2,
    .restaurant-left h2,
    .fresh-right h2 {
        font-size: 1.6rem;
    }
    
    .app-store-btn img,
    .google-play-btn img {
        height: 35px;
    }
    
    .btn-download-white,
    .btn-download-teal {
        padding: 10px 24px;
        font-size: 13px;
    }
    
    .surprise-wrapper {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
    .surprise-box {
        padding: 30px 0;
    }
    
    .surprise-box .container {
        padding: 0 15px;
    }
    
    .surprise-content {
        gap: 20px;
    }
    
    .surprise-left img {
        max-width: 85%;
    }
    
    .surprise-right {
        padding: 0;
    }
    
    .restaurants {
        padding: 35px 15px;
    }
    
    .fresh-food {
        padding: 50px 15px;
    }
    
    .footer-main {
        padding: 40px 15px;
    }
    
    .app-screen {
        width: 120px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    /* About Page Small Mobile */
    .about-who-we-are .container,
    .about-business-model .container,
    .about-presence .container,
    .about-esg .container {
        padding: 0 15px;
    }
    
    .about-business-model,
    .about-presence,
    .about-esg {
        padding: 60px 15px;
    }
    
    .who-we-are-left h2,
    .business-model-content h2,
    .presence-right h2,
    .esg-content h2 {
        font-size: 1.6rem;
    }
    
    .mascot-waving {
        width: 200px;
        height: auto;
    }
    
    .about-doodles {
        width: 250px;
        height: auto;
        right: -40px;
    }
    
    .world-map {
        max-width: 100%;
    }
}
