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

body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background-color: rgba(26, 26, 26, 0.8);
    /* --- EDITED: Added alpha for blur effect --- */
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    margin-left: -90px;
}

.logo-text {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 40px;
}

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

.nav-link:hover {
    color: #ff6b35;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Hero Section */
.hero {
    background: url('hero-food.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    filter: brightness(1.3) contrast(1.2) saturate(1.4);
}

/* WebP support with fallback */
.hero {
    background-image: url('hero-food.png');
}

@supports (background-image: -webkit-image-set(url(x) 1x)) {
    .hero {
        background-image: -webkit-image-set(url('hero-food.webp') 1x);
    }
}

@supports (background-image: image-set(url(x) 1x)) {
    .hero {
        background-image: image-set(url('hero-food.webp') 1x);
    }
}

/* Responsive background images */
@media (max-width: 768px) {
    .hero {
        background-image: url('hero-food.png');
    }

    @supports (background-image: -webkit-image-set(url(x) 1x)) {
        .hero {
            background-image: -webkit-image-set(url('hero-food-mobile.webp') 1x);
        }
    }

    @supports (background-image: image-set(url(x) 1x)) {
        .hero {
            background-image: image-set(url('hero-food-mobile.webp') 1x);
        }
    }
}

@media (min-width: 769px) {
    @supports (background-image: -webkit-image-set(url(x) 1x)) {
        .hero {
            background-image: -webkit-image-set(url('hero-food-desktop.webp') 1x);
        }
    }

    @supports (background-image: image-set(url(x) 1x)) {
        .hero {
            background-image: image-set(url('hero-food-desktop.webp') 1x);
        }
    }
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.4), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.25) 0%, transparent 50%);
    z-index: 2;
    opacity: 1;
}

/* Floating particles effect - constant */
.hero .container::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 4px;
    height: 4px;
    background: rgba(255, 107, 53, 0.6);
    border-radius: 50%;
    z-index: 5;
    opacity: 0.8;
}

.hero .container::after {
    content: '';
    position: absolute;
    top: 60%;
    right: 20%;
    width: 6px;
    height: 6px;
    background: rgba(255, 107, 53, 0.4);
    border-radius: 50%;
    z-index: 5;
    opacity: 0.6;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    transform: none;
}


.hero-text {
    max-width: 500px;
    text-align: left;
    margin: 0;
    position: relative;
    z-index: 10;
    animation: textSlideIn 1.5s ease-out;
    padding: 20px 0;
}

@keyframes textSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 215, 0, 0.2);
    animation: titleGlow 3s ease-in-out infinite alternate, luxuryFloat 4s ease-in-out infinite, flyInFromTop 1.2s ease-out 0.2s both;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -1px;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    display: block;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.3));
}

@keyframes luxuryFloat {

    0%,
    100% {
        transform: translateY(0) rotateX(0deg);
    }

    50% {
        transform: translateY(-2px) rotateX(2deg);
    }
}

@keyframes flyInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-150px) scale(0.5) rotateX(90deg);
    }

    30% {
        opacity: 0.3;
        transform: translateY(-80px) scale(0.7) rotateX(45deg);
    }

    60% {
        opacity: 1;
        transform: translateY(15px) scale(1.08) rotateX(0deg);
    }

    80% {
        transform: translateY(-5px) scale(0.98) rotateX(0deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

@keyframes flyInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(150px) scale(0.5) rotateX(-90deg);
    }

    30% {
        opacity: 0.3;
        transform: translateY(80px) scale(0.7) rotateX(-45deg);
    }

    60% {
        opacity: 1;
        transform: translateY(-15px) scale(1.08) rotateX(0deg);
    }

    80% {
        transform: translateY(5px) scale(0.98) rotateX(0deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

@keyframes flyInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-200px) scale(0.3) rotateY(90deg);
    }

    30% {
        opacity: 0.2;
        transform: translateX(-100px) scale(0.6) rotateY(45deg);
    }

    60% {
        opacity: 1;
        transform: translateX(15px) scale(1.05) rotateY(0deg);
    }

    80% {
        transform: translateX(-5px) scale(0.98) rotateY(0deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1) rotateY(0deg);
    }
}

@keyframes flyInFromRight {
    0% {
        opacity: 0;
        transform: translateX(200px) scale(0.3) rotateY(-90deg);
    }

    30% {
        opacity: 0.2;
        transform: translateX(100px) scale(0.6) rotateY(-45deg);
    }

    60% {
        opacity: 1;
        transform: translateX(-15px) scale(1.05) rotateY(0deg);
    }

    80% {
        transform: translateX(5px) scale(0.98) rotateY(0deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1) rotateY(0deg);
    }
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 107, 53, 0.3);
    }

    100% {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 107, 53, 0.6);
    }
}

.hero-title:hover {
    transform: translateY(-5px) scale(1.02);
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.7), 0 0 50px rgba(255, 107, 53, 0.8);
}


.hero-subtitle {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 35px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: subtitleFloat 4s ease-in-out infinite, flyInFromBottom 1.2s ease-out 0.6s both;
    transform: translateY(0);
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
}

@keyframes subtitleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.hero-subtitle:hover {
    transform: translateY(-8px) scale(1.05);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}


.script-text {
    font-family: 'Dancing Script', cursive;
    font-weight: 800;
    font-size: 72px;
    color: #F38235;
    display: inline-block;
    transform: rotate(-2deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 1px;
    position: relative;
    z-index: 10;
}



/* Animated text effect */
.typewriter-text {
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
    animation: textPulse 2s ease-in-out infinite alternate, textShimmer 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

@keyframes textPulse {
    0% {
        text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
        transform: scale(1);
    }

    100% {
        text-shadow: 0 0 40px rgba(255, 107, 53, 0.8);
        transform: scale(1.02);
    }
}

@keyframes textShimmer {
    0% {
        background: linear-gradient(90deg, transparent, transparent, transparent);
        background-clip: text;
    }

    50% {
        background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
        background-clip: text;
    }

    100% {
        background: linear-gradient(90deg, transparent, transparent, transparent);
        background-clip: text;
    }
}

.orange-text {
    color: #F38235;
    font-weight: 900;
}


.hero-description {
    font-size: 20px;
    color: #cccccc;
    margin-bottom: 45px;
    line-height: 1.7;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    animation: descriptionFadeIn 2s ease-out, flyInFromLeft 1.2s ease-out 1s both;
    transform: translateY(0);
    transition: all 0.4s ease;
}

@keyframes descriptionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description:hover {
    transform: translateY(-3px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}


.app-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: nowrap;
    align-items: center;
    animation: flyInFromRight 1.2s ease-out 1.4s both;
    margin-top: 10px;
}

.app-store-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* App store buttons - crisp, no glow */
.app-store-link::before {
    content: none;
}

.app-store-link:hover::before {
    left: 100%;
}

.app-store-link:hover {
    transform: translateY(-8px) scale(1.05);
}

.app-store-link:active {
    transform: translateY(-4px) scale(1.02);
}

.app-store-badge {
    height: 70px;
    width: auto;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.06);
    filter: none;
    image-rendering: -webkit-optimize-contrast;
}

.app-store-badge:hover {
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
    border-radius: 15px;
}

.hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Scroll Down Icon */
.scroll-down-icon {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    z-index: 10;
    animation: scrollBounce 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.scroll-down-icon:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.scroll-down-icon:hover .scroll-arrow {
    border-color: #F38235;
    color: #F38235;
    background: rgba(243, 130, 53, 0.1);
    transform: scale(1.1);
}

.scroll-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.scroll-down-icon:hover .scroll-text {
    color: #F38235;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

.food-display {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Section Styles */
.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: left;
}

.orange-line {
    width: 80px;
    height: 4px;
    background-color: #ff6b35;
    margin-bottom: 40px;
}

/* Problem Section */
.problem-section {
    padding: 80px;
    background-color: #1d1d1d;
}

.problem-content {
    padding: 20px;
    border-radius: 12px;
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin-left: -25px;
}

.problem-headline {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.solution-container {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 500px;
    width: 100%;
}


.solution-tiles {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    transform: translateX(0);
}


.solution-tiles.shifted {
    transform: translateX(-40%);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-tiles.shifted .solution-tile:not(.active) {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    transition: all 0.4s ease;
    visibility: hidden;
}

.solution-tiles.shifted .solution-tile.active {
    opacity: 1;
    transform: translateX(0) scale(1.05);
    position: relative;
    z-index: 15;
}

/* Individual tile positioning - all move to leftmost position */
.solution-tiles.shifted .solution-tile[data-target="customers"].active {
    transform: translateX(470px) scale(1.05);
}

.solution-tiles.shifted .solution-tile[data-target="owners"].active {
    transform: translateX(70px) scale(1.05);
}

.solution-tiles.shifted .solution-tile[data-target="delivery"].active {
    transform: translateX(-320px) scale(1.05);
}

.solution-tile {
    background: linear-gradient(145deg, #2d2d2d, #3a3a3a);
    padding: 40px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 215, 0, 0.05);
    flex: 1;
    min-height: 280px;
    backdrop-filter: blur(10px);
    opacity: 1;
    visibility: visible;
    display: block;
    transform: translateY(0) scale(1);
}

/* Solution highlighting animation */
.solution-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.15), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}


.solution-tile.active::before {
    left: 100%;
    animation: highlightPulse 2s ease-in-out infinite;
}

@keyframes highlightPulse {

    0%,
    100% {
        background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.15), transparent);
    }

    50% {
        background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
    }
}



.solution-tile:hover::before {
    left: 100%;
}

.solution-tile.active {
    border-color: #ff6b35;
    background: linear-gradient(145deg, #ff6b35, #e55a2b);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    transform: translateY(-5px) scale(1.02);
}

.solution-headline {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.solution-headline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    animation: textHighlight 3s ease-in-out infinite;
}

@keyframes textHighlight {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.tile-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    z-index: 2;
    display: block;
    text-align: left;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.tile-description {
    font-size: 16px;
    font-weight: 400;
    color: #e0e0e0;
    position: relative;
    z-index: 2;
    line-height: 1.6;
    text-align: justify;
    margin: 0;
    transition: all 0.3s ease;
}

.phone-mockup-container {
    position: absolute;
    right: 10%;
    top: 0%;
    transform: translateY(0) translateX(100%);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.phone-mockup-container.active {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.phone-mockup {
    position: relative;
    width: 220px;
    height: 480px;
    background: #000;
    border-radius: 35px;
    padding: 5px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    border: 2px solid #333;
    animation: phoneGlow 4s ease-in-out infinite;
}

@keyframes phoneGlow {

    0%,
    100% {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 107, 53, 0.3);
        border-color: #333;
    }

    50% {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 107, 53, 0.6);
        border-color: #ff6b35;
    }
}

.phone-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 35px;
    background: #000;
    display: none;
}

.video-overlay {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 27px;
    overflow: hidden;
    background-color: #000;
}

.app-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
}

.app-video.active {
    display: block;
}



/* Why Us Section */
.why-us-section {
    padding: 100px 0;
    background-color: #1d1d1d;
    position: relative;
}

.why-us-headline {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
    margin-bottom: 40px;
    line-height: 1.4;
}

.why-us-content {
    max-width: 800px;
    margin: 0;
    text-align: left;
    position: relative;
}

.why-us-description {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 60px;
}

.contact-button {
    background-color: #ff6b35;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
    display: inline-block;
    text-decoration: none;
}

.contact-button:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Footer */
.footer {
    background-color: #0d1117;
    padding: 40px 0;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left p {
    color: #cccccc;
    font-size: 14px;
    margin: 0;
}

.footer-right {
    display: flex;
    align-items: center;
}

.linkedin-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
}

.linkedin-link:hover {
    color: #0077b5;
    background-color: rgba(0, 119, 181, 0.1);
    transform: translateY(-1px);
}

.linkedin-link svg {
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        transform: none;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .solution-container {
        flex-direction: column;
        gap: 40px;
    }

    .phone-mockup-container {
        position: static;
        transform: none;
        opacity: 1;
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header {
        padding: 15px 0;
    }

    .header .container {
        padding: 0 15px;
    }

    .logo-image {
        height: 45px;
        margin-left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        font-size: 24px;
        padding: 15px 30px;
        color: #ffffff;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        border-radius: 8px;
    }

    .nav-link:hover {
        color: #ff6b35;
        background-color: rgba(255, 107, 53, 0.1);
        transform: scale(1.05);
    }

    .hero {
        padding: 80px 15px 40px;
        min-height: 100vh;
        background-attachment: scroll;
        filter: brightness(1.1) contrast(1.2) saturate(1.3);
    }

    .hero::before {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(26, 26, 26, 0.7));
    }

    .hero::after {
        background: radial-gradient(circle at 30% 70%, rgba(0, 0, 0, 0.4) 0%, rgba(255, 107, 53, 0.1) 50%, transparent 70%);
        opacity: 0.9;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 30px;
        transform: none;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 42px;
        line-height: 1.2;
        margin-bottom: 15px;
        display: block;
        font-weight: 900;
        color: #ffffff;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 215, 0, 0.2);
        animation: titleGlow 3s ease-in-out infinite alternate, luxuryFloat 4s ease-in-out infinite, flyInFromTop 1.2s ease-out 0.2s both;
        letter-spacing: -1px;
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.3));
        transform: translateY(0);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .orange-text {
        color: #F38235;
        font-weight: 900;
    }

    .typewriter-text {
        display: inline-block;
        font-weight: 700;
        letter-spacing: 0.5px;
        color: #ffffff;
        animation: textPulse 2s ease-in-out infinite alternate, textShimmer 3s ease-in-out infinite;
        text-shadow: 0 0 30px rgba(255, 107, 53, 0.8), 0 0 60px rgba(255, 107, 53, 0.4);
        background: linear-gradient(90deg, #ffffff, #ffffff, #ffffff);
        background-clip: text;
        -webkit-background-clip: text;
    }

    .hero-subtitle {
        font-size: 24px;
        margin-bottom: 20px;
        font-weight: 700;
        color: #ffffff;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        animation: subtitleFloat 4s ease-in-out infinite, flyInFromBottom 1.2s ease-out 0.6s both;
        letter-spacing: 0.5px;
        transform: translateY(0);
        transition: all 0.4s ease;
    }

    .script-text {
        font-size: 58px;
        font-family: 'Dancing Script', cursive;
        font-weight: 800;
        color: #F38235;
        display: inline-block;
        transform: rotate(-2deg);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        letter-spacing: 1px;
        position: relative;
        z-index: 10;
        text-shadow: 0 0 25px rgba(243, 130, 53, 0.8), 0 0 50px rgba(243, 130, 53, 0.5);
        filter: brightness(1.2) saturate(1.3);
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
        text-align: center;
        color: #cccccc;
        line-height: 1.7;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
        animation: descriptionFadeIn 2s ease-out, flyInFromLeft 1.2s ease-out 1s both;
        transform: translateY(0);
        transition: all 0.4s ease;
    }

    .app-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        animation: flyInFromRight 1.2s ease-out 1.4s both;
    }

    .app-store-badge {
        height: 50px;
    }

    .scroll-down-icon {
        bottom: 20px;
    }

    .scroll-arrow {
        width: 35px;
        height: 35px;
    }

    .scroll-text {
        font-size: 11px;
    }

    .section-title {
        font-size: 32px;
        text-align: center;
    }

    .orange-line {
        margin: 0 auto 30px;
    }

    .problem-section {
        padding: 60px 15px;
    }

    .problem-content {
        margin-left: 0;
        padding: 15px;
        text-align: center;
    }

    .problem-headline {
        font-size: 20px;
        text-align: center;
    }

    .solution-section {
        padding: 60px 15px;
    }

    .solution-container {
        flex-direction: column;
        gap: 30px;
        min-height: auto;
        padding: 20px 0;
    }

    .solution-tiles {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .solution-tile {
        padding: 25px;
        min-height: auto;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-bottom: 15px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }

    .solution-tile:hover {
        border-color: #ff6b35;
        background: linear-gradient(145deg, #ff6b35, #e55a2b);
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
        transform: translateY(-5px) scale(1.02);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .solution-tile:active {
        transform: scale(0.98);
    }

    .solution-tile.active {
        border-color: #ff6b35;
        background: linear-gradient(145deg, #ff6b35, #e55a2b);
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
        transform: translateY(-5px) scale(1.02);
    }

    /* Mobile touch feedback */
    .solution-tile:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
    }

    .tile-title {
        font-size: 20px;
        text-align: center;
        margin-bottom: 12px;
    }

    .tile-description {
        font-size: 14px;
        text-align: center;
    }

    .phone-mockup-container {
        position: static;
        transform: none;
        opacity: 0;
        display: flex;
        justify-content: center;
        margin: 30px auto;
        order: -1;
        /* Show above tiles on mobile */
        transition: opacity 0.3s ease;
    }

    .phone-mockup-container.active {
        opacity: 1;
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
    }


    .why-us-section {
        padding: 60px 15px;
    }

    .why-us-headline {
        font-size: 24px;
        text-align: center;
    }

    .why-us-content {
        text-align: center;
    }

    .why-us-description {
        font-size: 16px;
        text-align: center;
    }

    .contact-button {
        position: static;
        margin-top: 30px;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .footer {
        padding: 30px 15px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .header {
        padding: 10px 0;
    }

    .logo-image {
        height: 35px;
    }

    .hero {
        padding: 70px 10px 30px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .script-text {
        font-size: 42px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.5;
    }

    .app-store-badge {
        height: 45px;
    }

    .scroll-down-icon {
        bottom: 15px;
    }

    .scroll-arrow {
        width: 30px;
        height: 30px;
    }

    .scroll-text {
        font-size: 10px;
    }

    .section-title {
        font-size: 24px;
    }

    .orange-line {
        width: 60px;
    }

    .problem-section {
        padding: 40px 10px;
    }

    .problem-content {
        padding: 10px;
        font-size: 16px;
    }

    .problem-headline {
        font-size: 18px;
    }

    .solution-section {
        padding: 40px 10px;
    }

    .solution-tile {
        padding: 20px;
    }

    .tile-title {
        font-size: 18px;
    }

    .tile-description {
        font-size: 13px;
    }

    .phone-mockup {
        width: 180px;
        height: 360px;
    }

    .why-us-section {
        padding: 40px 10px;
    }

    .why-us-headline {
        font-size: 20px;
    }

    .why-us-description {
        font-size: 14px;
    }

    .contact-button {
        padding: 12px 24px;
        font-size: 16px;
    }

    .footer {
        padding: 20px 10px;
    }

    .nav-link {
        font-size: 20px;
        padding: 12px 20px;
    }
}

/* Modal popup styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(145deg, #2d2d2d, #3a3a3a);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 2px solid #ff6b35;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
    transform: scale(0.7);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-title {
    font-size: 32px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 20px;
}

.modal-description {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.modal-close {
    background-color: #ff6b35;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}


/* Mobile-specific improvements */
@media (max-width: 768px) {

    /* Improve touch targets */
    .nav-link,
    .contact-button,
    .app-store-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Better spacing for mobile */
    .solution-tile {
        margin-bottom: 15px;
    }

    /* Improve text readability on mobile */
    body {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }

    /* Better button interactions */
    .contact-button:active,
    .app-store-link:active {
        transform: scale(0.95);
    }

    /* Improve modal on mobile */
    .modal-content {
        margin: 20px;
        padding: 30px 20px;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-description {
        font-size: 16px;
    }
}

/* Loading animation for phone mockup */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.phone-mockup-container.active {
    animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Tile hover effect enhancement */
.solution-tile {
    position: relative;
}

.solution-tile::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* ========================================
   JAIPUR LANDING PAGE STYLES
   ======================================== */

/* Jaipur Hero Section */
.jaipur-hero {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(0, 0, 0, 0.85)), url('hero-food.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 80px;
}

.jaipur-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 60%);
    z-index: 1;
}

.jaipur-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.jaipur-hero-content .app-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.jaipur-title {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: titleSlideIn 1.2s ease-out;
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.jaipur-subtitle {
    font-size: 22px;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

/* Platform Intro Section */
.jaipur-platform-intro {
    background-color: #ff6b35;
    padding: 60px 0;
}

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

.platform-intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Jaipur Sections */
.jaipur-section {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.jaipur-section:nth-child(even) {
    background-color: #1d1d1d;
}

.jaipur-content {
    margin-top: 20px;
}

.jaipur-description {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 900px;
}

/* Feature Cards Grid */
.jaipur-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.jaipur-feature-card {
    background: linear-gradient(145deg, #2d2d2d, #252525);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.jaipur-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.jaipur-feature-card:hover {
    transform: translateY(-8px);
    border-color: #ff6b35;
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.3);
}

.jaipur-feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.feature-text {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
}

/* How It Works Section */
.jaipur-how-it-works {
    background: linear-gradient(135deg, #1d1d1d, #1a1a1a);
}

.jaipur-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.jaipur-step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.jaipur-step:hover {
    transform: scale(1.05);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.jaipur-step:hover .step-number {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.6);
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.step-description {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
}

/* Meal Types Grid */
.meal-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.meal-type-card {
    background: linear-gradient(145deg, #2d2d2d, #252525);
    padding: 35px 30px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.meal-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.meal-type-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.meal-type-card:hover::before {
    opacity: 1;
}

.meal-type-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.meal-type-text {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Areas Section */
.jaipur-areas {
    background: linear-gradient(135deg, #1a1a1a, #1d1d1d);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.area-card {
    background: linear-gradient(145deg, #2d2d2d, #252525);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.area-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.area-card:hover::before {
    width: 200%;
    height: 200%;
}

.area-marker {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
    position: relative;
    z-index: 2;
}

.area-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

/* Why Us Grid */
.jaipur-why-us {
    background-color: #1d1d1d;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-us-card {
    background: linear-gradient(145deg, #2d2d2d, #252525);
    padding: 35px 28px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
}

.why-us-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-us-card:hover {
    border-color: #ff6b35;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.3);
}

.why-us-card:hover::after {
    opacity: 1;
}

.why-us-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 auto 20px;
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.why-us-card:hover .why-us-icon {
    transform: scale(1.15);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.6);
}

.why-us-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.why-us-text {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* CTA Section */
.jaipur-cta {
    background: linear-gradient(135deg, #2d2d2d, #1d1d1d);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.jaipur-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.jaipur-cta .app-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.jaipur-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.cta-description {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 35px;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.95;
}

/* Responsive Styles for Jaipur Page */
@media (max-width: 768px) {
    .jaipur-title {
        font-size: 36px;
        line-height: 1.3;
    }

    .jaipur-subtitle {
        font-size: 18px;
    }

    .platform-intro-text {
        font-size: 17px;
    }

    .jaipur-section {
        padding: 60px 0;
    }

    .jaipur-features-grid,
    .meal-types-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .jaipur-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-description {
        font-size: 17px;
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .jaipur-hero {
        padding: 120px 0 60px;
        min-height: 60vh;
    }

    .jaipur-title {
        font-size: 28px;
    }

    .jaipur-subtitle {
        font-size: 16px;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 26px;
    }

    .section-title {
        font-size: 28px;
    }
}

/* ========================================
   HOMEPAGE SPECIFIC SECTIONS
   ======================================== */

/* Platform Introduction Section */
.platform-intro-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1d1d1d, #1a1a1a);
}

.platform-intro-content-home {
    margin-top: 20px;
}

.platform-description {
    font-size: 20px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 50px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.platform-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.platform-feature {
    background: linear-gradient(145deg, #2d2d2d, #252525);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.platform-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.platform-feature:hover {
    transform: translateY(-8px);
    border-color: #ff6b35;
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.3);
}

.platform-feature:hover::before {
    left: 100%;
}

.platform-feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
}

.platform-feature h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.platform-feature p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
}

/* Service Areas Section */
.service-areas-section {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.service-areas-content {
    margin-top: 20px;
}

.service-areas-description {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-area-card {
    background: linear-gradient(145deg, #2d2d2d, #252525);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-area-card.active-city {
    border-color: #ff6b35;
}

.service-area-card.active-city::before {
    opacity: 1;
}

.service-area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.25);
}

.service-area-card.active-city:hover {
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.city-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.city-name {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.city-status {
    font-size: 16px;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-area-card.coming-soon .city-status {
    color: #cccccc;
}

.city-description {
    font-size: 14px;
    color: #999999;
    margin-top: 10px;
}

.city-link {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.city-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 107, 53, 0.5);
}

.expansion-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.expansion-cta p {
    font-size: 18px;
    color: #e0e0e0;
    margin: 0;
}

.expansion-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.expansion-link:hover {
    border-bottom-color: #ff6b35;
}

/* Responsive Styles for Homepage Sections */
@media (max-width: 768px) {
    .platform-description {
        font-size: 17px;
    }

    .platform-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .expansion-cta p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {

    .platform-intro-section,
    .service-areas-section {
        padding: 60px 0;
    }

    .platform-description,
    .service-areas-description {
        font-size: 16px;
    }

    .city-name {
        font-size: 24px;
    }
}