/* ===== PIXEL-PERFECT FIGMA DESIGN - ARRANGED WEBSITE ===== */

/* CSS Variables (Exact Figma Colors) */
:root {
    --primary-brand: #220135;
    --secondary-brand: #D7C0DE;
    --primary-bg: #EADFEE;
    --secondary-bg: #F9F6FA;
    --white: #FFFFFF;
    --grey-primary: #888888;
    --grey-border: #D5D5D5;
    --font-primary: 'Roboto', sans-serif;
    --font-logo: 'Fuzzy Bubbles', cursive;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--white);
    color: var(--primary-brand);
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* Ensure full-height calculations work reliably on mobile */
html,
body {
    height: 100%;
    min-height: 100%;
}

.mobile-break {
    display: none;
}

.main-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    background: var(--white);
}

/* ===== Header/Navigation ===== */
.header {
    background: transparent;
    height: 72px;
    display: flex;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.header-content {
    width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

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

.logo-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0px 2px 10px rgba(34, 1, 53, 0.25);
    white-space: nowrap;
}

/* ===== Hero Section ===== */
.hero {
    background: var(--primary-brand);
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    /* Full viewport height across mobile browsers */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 1, 53, 0.6);
    /* Dark overlay for readability */
    z-index: 1;
}


.hero-content {
    width: 1440px;
    margin: 0 auto;
    padding: 72px 48px 0;
    display: flex;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    flex-shrink: 0;
    width: 680px;
}

.hero-title {
    font-size: 84px;
    font-weight: 800;
    line-height: normal;
    color: var(--white);
    margin-bottom: 24px;
    width: 539px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: var(--white);
    margin-bottom: 72px;
    width: 660px;
}

.hero-cta {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    align-items: center;
}

.email-input-wrapper {
    position: relative;
    width: 470px;
}

.email-icon {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.email-input {
    width: 100%;
    height: 64px;
    padding: 16px 32px 16px 74px;
    border-radius: 18px;
    border: none;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    font-family: var(--font-primary);
    background: var(--white);
    color: var(--grey-primary);
}

.email-input::placeholder {
    color: var(--grey-primary);
}

.email-input:focus {
    outline: 2px solid var(--secondary-brand);
}

.btn {
    height: 64px;
    padding: 16px 32px;
    border-radius: 18px;
    border: none;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: transform 0.2s, opacity 0.3s;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-primary {
    background: var(--secondary-brand);
    color: var(--primary-brand);
}

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

.hero-note {
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    color: var(--white);
    width: 680px;
}


/* ===== How It Works Section - NEW DESIGN ===== */
.how-it-works-new {
    background: var(--secondary-bg);
    padding: 96px 0 60px;
    width: 100%;
    margin-bottom: 120px;
}

.how-it-works-content {
    width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    gap: 72px;
    align-items: center;
}

.how-it-works-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
    color: var(--primary-brand);
    max-width: 787px;
}

.highlight-match {
    font-weight: 800;
}

.steps-cards {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
}

.step-card {
    width: 400px;
    border-radius: 48px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-shrink: 0;
}

.step-card-white {
    background: var(--white);
}

.step-card-dark {
    background: var(--primary-brand);
}

.step-card-header {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.step-card-title {
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
    color: var(--primary-brand);
    flex: 1;
}

.step-card-dark .step-card-title {
    color: var(--secondary-bg);
}

.step-card-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--primary-brand);
}

.step-card-dark .step-card-description {
    color: var(--white);
}



/* ===== Why We Built Section - NEW DESIGN ===== */
.why-section-new {
    padding: 0;
    margin: 0;
    background: var(--white);
}

/* Force visible 120px gap before and after Why section on all browsers */
/* removed pseudo-elements after switching to adjacent-section margins */

.why-container {
    width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    gap: 36px;
    align-items: center;
    justify-content: center;
}

.why-left-new {
    width: 539px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-main-title {
    font-size: 86px;
    font-weight: 900;
    line-height: normal;
    color: var(--primary-brand);
    width: 458px;
}

.why-dots-new {
    display: flex;
    gap: 12px;
}

.dot-new {
    width: 12px;
    height: 12px;
    background: var(--primary-brand);
    border-radius: 50%;
}

.why-tagline {
    font-size: 36px;
    font-weight: 700;
    line-height: normal;
    color: var(--secondary-brand);
    width: 458px;
}

.why-card {
    width: 619px;
    background: var(--white);
    border: 1px solid var(--secondary-brand);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.why-card-item {
    display: flex;
    gap: 36px;
    align-items: flex-start;
}

.why-card-icon {
    width: 84px;
    height: 84px;
    background: var(--primary-bg);
    border-radius: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 20px;
}

.why-card-icon img {
    width: 48px;
    height: 48px;
}

.why-card-text {
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    color: var(--primary-brand);
    width: 406px;
}

.why-card-text strong {
    font-weight: 700;
}

.why-card-final {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    color: var(--primary-brand);
}

/* ===== Bangalore Section - COMPLETE REWRITE ===== */
.bangalore-section-new {
    background: var(--primary-brand);
    padding: 86px 0;
    box-sizing: border-box;
    width: 100%;
    margin-top: 120px;
}

.bangalore-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1440px;
    margin: 0 auto;
    padding: 0 86px;
    height: 100%;
}

/* LEFT SIDE - 590px */
.bangalore-left-new {
    width: 590px;
    display: flex;
    align-items: center;
    padding: 0 120px 0 0;
    flex-shrink: 0;
    position: relative;
}

.bangalore-ellipse {
    width: 327px;
    height: 327px;
    flex-shrink: 0;
    margin-right: -278px;
}

.bangalore-text-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: stretch;
}

.bangalore-text-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 541px;
    margin-right: -120px;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    color: var(--white);
}

.bangalore-title-new {
    font-size: 48px;
    font-weight: 900;
    line-height: normal;
    color: var(--white);
    width: 420px;
}

.bangalore-highlight {
    color: var(--secondary-brand);
}

.bangalore-description {
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: var(--white);
    width: 408px;
}

.bangalore-bold {
    font-weight: 700;
    color: var(--secondary-brand);
}

/* RIGHT SIDE - CSS GRID */
.bangalore-right-new {
    display: inline-grid;
    grid-template-columns: max-content;
    grid-template-rows: max-content;
    place-items: start;
    position: relative;
    flex-shrink: 0;
}

.bangalore-restaurant-img {
    grid-area: 1 / 1;
    width: 517px;
    height: 385px;
    margin-left: 76px;
    margin-top: 21px;
    border-radius: 24px;
    object-fit: cover;
    position: relative;
}

.bangalore-badge-location {
    background: rgba(215, 192, 222, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--white);
    border-radius: 12px;
    padding: 8px 24px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--white);
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-area: 1 / 1;
}

.badge-koramangala {
    margin-left: 34px;
    margin-top: 0;
}

.badge-hsr {
    margin-left: 0;
    margin-top: 166px;
}

.badge-indiranagar {
    margin-left: 494px;
    margin-top: 76px;
}

.badge-anywhere {
    margin-left: 438px;
    margin-top: 320px;
}

/* ===== Final CTA Section ===== */
.final-cta {
    padding: 120px 0;
    width: 100%;
    background: var(--white);
}

.final-cta-container {
    width: 1440px;
    margin: 0 auto;
}

.final-title {
    font-size: 72px;
    font-weight: 400;
    text-align: center;
    color: var(--primary-brand);
    margin-bottom: 24px;
    line-height: 160px;
}

.highlight-extrabold {
    font-weight: 800;
}

/* OLD highlight-purple - REMOVED
.final-title .highlight-purple {
    color: var(--secondary-brand);
}
*/

.final-cta-box {
    width: 1383px;
    margin: 0 auto;
    background: var(--secondary-bg);
    border-radius: 24px;
    padding: 48px 96px;
    display: flex;
    gap: 36px;
    align-items: center;
    justify-content: center;
}

.final-text {
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: var(--primary-brand);
    flex-shrink: 0;
    width: 449px;
}

.final-form {
    display: flex;
    gap: 24px;
    align-items: center;
}

.final-form .email-input-wrapper {
    width: 470px;
}

.final-form .email-input {
    border: 1px solid var(--grey-border);
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-brand);
    padding: 60px 0;
}

.footer-content {
    width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: var(--white);
    width: 338px;
}

.footer-right-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.footer-links {
    display: flex;
    gap: 48px;
    align-items: center;
}

.footer-social {
    margin-bottom: 0;
}

.footer-links a {
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}



.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    color: var(--secondary-brand);
    transform: translateY(-2px);
}

/* ===== Decorative Circles ===== */
.decorative-circles {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    display: flex;
    justify-content: center;
}

.decorative-circles>* {
    max-width: 1440px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet - 768px to 1024px - Using Mobile Layout */
@media (max-width: 1024px) {
    .main-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .header {
        height: 64px;
    }

    .header-content {
        width: 100%;
        padding: 0 20px;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }

    .logo-text {
        font-size: 20px;
    }

    /* Hero Section */
    .hero {
        height: 100dvh;
        min-height: 100vh;
        padding-top: 0;
    }

    .hero-content {
        width: 100%;
        padding: calc(env(safe-area-inset-top, 0px) + 64px) 20px 0;
        flex-direction: column;
        gap: 36px;
    }

    .hero-left {
        width: 100%;
    }

    .hero-title {
        font-size: 40px;
        width: 100%;
        margin-bottom: 16px;
    }

    .mobile-break {
        display: inline;
    }

    .hero-subtitle {
        font-size: 16px;
        width: 100%;
        margin-bottom: 36px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
        width: 100%;
    }

    .email-input-wrapper {
        width: 100%;
    }

    .email-input {
        height: 56px;
        font-size: 16px;
        padding: 12px 20px 12px 60px;
    }

    .email-icon {
        left: 20px;
        width: 24px;
        height: 24px;
    }

    .btn {
        width: 100%;
        height: 56px;
        font-size: 18px;
    }

    .hero-note {
        font-size: 16px;
        width: 100%;
    }

    .hero-right {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-images {
        width: 90%;
        max-width: 400px;
        height: 400px;
        position: relative;
        margin: 0 auto;
    }

    .hero-img-1 {
        width: 65%;
        max-width: 260px;
        height: auto;
        position: absolute;
        left: 0;
        top: 0;
        border-radius: 12px;
        object-fit: cover;
    }

    .hero-img-2 {
        width: 50%;
        max-width: 200px;
        height: auto;
        position: absolute;
        top: 25%;
        left: 40%;
        border-radius: 12px;
        object-fit: cover;
    }

    .hero-badge {
        height: 48px;
        font-size: 14px;
    }

    .hero-badge-1 {
        width: auto;
        padding: 8px 20px;
        top: 2%;
        left: 45%;
    }

    .hero-badge-2 {
        width: auto;
        padding: 8px 20px;
        top: 40%;
        left: 10%;
    }

    .hero-badge-3 {
        width: auto;
        padding: 8px 20px;
        top: 65%;
        left: 50%;
    }

    .badge-text {
        font-size: 14px;
    }

    /* How It Works Section - NEW */
    .how-it-works-new {
        padding: 60px 0 40px;
        margin-bottom: 48px;
        /* tighter than desktop */
    }

    .how-it-works-content {
        width: 100%;
        padding: 0 20px;
        gap: 48px;
    }

    .how-it-works-title {
        font-size: 28px;
        max-width: 100%;
    }

    .steps-cards {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .step-card {
        width: 100%;
        max-width: 400px;
        padding: 28px;
        border-radius: 32px;
        gap: 20px;
    }

    .step-card-header {
        gap: 16px;
    }

    .step-icon {
        width: 48px;
        height: 48px;
    }

    .step-card-title {
        font-size: 24px;
    }

    .step-card-description {
        font-size: 16px;
    }

    /* Why Section */
    .why-section-new {
        padding: 48px 0;
        /* tighter tablet spacing */
    }

    .why-container {
        width: 100%;
        padding: 0 20px;
        flex-direction: column;
        gap: 36px;
    }

    .why-left-new {
        width: 100%;
        gap: 16px;
    }

    .why-main-title {
        font-size: 40px;
        width: 100%;
    }

    .why-tagline {
        font-size: 24px;
        width: 100%;
    }

    .why-card {
        width: 100%;
        padding: 32px 24px;
        gap: 24px;
    }

    .why-card-item {
        flex-direction: row;
        gap: 16px;
        align-items: flex-start;
        text-align: left;
    }

    .why-card-icon {
        width: 64px;
        height: 64px;
        flex-shrink: 0;
    }

    .why-card-icon img {
        width: 36px;
        height: 36px;
    }

    .why-card-text {
        font-size: 18px;
        width: 100%;
    }

    .why-card-final {
        font-size: 18px;
        text-align: left;
    }

    /* Bangalore Section */
    .bangalore-section-new {
        padding: 48px 0;
        margin-top: 32px;
        /* even tighter on mobile */
    }

    .bangalore-container {
        width: 100%;
        padding: 0 20px;
        flex-direction: column;
        gap: 36px;
    }

    .bangalore-left-new {
        width: 100%;
        padding: 0;
    }

    .bangalore-ellipse {
        display: none;
    }

    .bangalore-text-content {
        width: 100%;
        margin-right: 0;
        gap: 24px;
    }

    .bangalore-title-new {
        font-size: 32px;
        width: 100%;
    }

    .bangalore-description {
        font-size: 16px;
        width: 100%;
    }

    .bangalore-right-new {
        display: inline-grid;
        grid-template-columns: max-content;
        grid-template-rows: max-content;
        place-items: start;
        position: relative;
        flex-shrink: 0;
        margin: 0 auto;
    }

    .bangalore-restaurant-img {
        grid-area: 1 / 1;
        width: 380px;
        height: 283px;
        margin-left: 56px;
        margin-top: 15px;
        border-radius: 24px;
        object-fit: cover;
        position: relative;
    }

    .bangalore-badge-location {
        background: rgba(215, 192, 222, 0.25);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid var(--white);
        border-radius: 12px;
        padding: 8px 16px;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.6;
        color: var(--white);
        white-space: nowrap;
        display: flex;
        align-items: center;
        justify-content: center;
        grid-area: 1 / 1;
    }

    .badge-koramangala {
        margin-left: 25px;
        margin-top: 0;
    }

    .badge-hsr {
        margin-left: 0;
        margin-top: 122px;
    }

    .badge-indiranagar {
        margin-left: 363px;
        margin-top: 56px;
    }

    .badge-anywhere {
        margin-left: 322px;
        margin-top: 235px;
    }

    /* Final CTA */
    .final-cta {
        width: 100%;
        padding: 60px 0;
    }

    .final-cta-container {
        width: 100%;
        padding: 0 20px;
    }

    .final-title {
        font-size: 36px;
        line-height: 1.3;
        margin-bottom: 24px;
    }

    .final-cta-box {
        width: 100%;
        flex-direction: column;
        padding: 32px 20px;
        gap: 24px;
    }

    .final-text {
        font-size: 16px;
        width: 100%;
        text-align: center;
    }

    .final-form {
        width: 100%;
        flex-direction: column;
        gap: 16px;
    }

    .final-form .email-input-wrapper {
        width: 100%;
    }

    /* Footer */
    .footer {
        padding: 40px 0;
    }

    .footer-content {
        width: 100%;
        padding: 0 20px;
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-copyright {
        font-size: 16px;
        width: 100%;
    }

    .footer-right-group {
        align-items: center;
        gap: 24px;
    }

    .footer-links {
        gap: 24px;
        flex-direction: column;
    }

    .footer-links a {
        font-size: 16px;
    }

    .decorative-circles {
        width: 100%;
    }
}

/* Mobile - up to 767px */
@media (max-width: 767px) {
    .header {
        height: 64px;
    }

    .header-content {
        padding: 0 20px;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }

    .logo-text {
        font-size: 20px;
    }

    /* OLD Navigation Links - REMOVED
    .nav-links {
        gap: 24px;
    }
    
    .nav-links a {
        font-size: 14px;
    }
    */

    /* Hero Section */
    .hero {
        height: 100dvh;
        min-height: 100vh;
        padding-top: 0;
    }

    .hero-content {
        padding: calc(env(safe-area-inset-top, 0px) + 64px) 20px 0;
        gap: 36px;
    }

    .hero-left {
        width: 100%;
    }

    .hero-title {
        font-size: 40px;
        width: 100%;
        margin-bottom: 16px;
    }

    .mobile-break {
        display: inline;
    }

    .hero-subtitle {
        font-size: 16px;
        width: 100%;
        margin-bottom: 36px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
        width: 100%;
    }

    .email-input-wrapper {
        width: 100%;
    }

    .email-input {
        height: 56px;
        font-size: 16px;
        padding: 12px 20px 12px 60px;
    }

    .email-icon {
        left: 20px;
        width: 24px;
        height: 24px;
    }

    .btn {
        width: 100%;
        height: 56px;
        font-size: 18px;
    }

    .hero-note {
        font-size: 16px;
        width: 100%;
    }

    .hero-right {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-images {
        width: 90%;
        max-width: 400px;
        height: 400px;
        position: relative;
        margin: 0 auto;
    }

    .hero-img-1 {
        width: 65%;
        max-width: 260px;
        height: auto;
        position: absolute;
        left: 0;
        top: 0;
        border-radius: 12px;
        object-fit: cover;
    }

    .hero-img-2 {
        width: 50%;
        max-width: 200px;
        height: auto;
        position: absolute;
        top: 25%;
        left: 40%;
        border-radius: 12px;
        object-fit: cover;
    }

    .hero-badge {
        height: 48px;
        font-size: 14px;
    }

    .hero-badge-1 {
        width: auto;
        padding: 8px 20px;
        top: 2%;
        left: 45%;
    }

    .hero-badge-2 {
        width: auto;
        padding: 8px 20px;
        top: 40%;
        left: 10%;
    }

    .hero-badge-3 {
        width: auto;
        padding: 8px 20px;
        top: 65%;
        left: 50%;
    }

    .badge-text {
        font-size: 14px;
    }

    /* How It Works Section - NEW */
    .how-it-works-new {
        padding: 60px 0 40px;
    }

    .how-it-works-content {
        width: 100%;
        padding: 0 20px;
        gap: 48px;
    }

    .how-it-works-title {
        font-size: 28px;
        max-width: 100%;
    }

    .steps-cards {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .step-card {
        width: 100%;
        max-width: 400px;
        padding: 28px;
        border-radius: 32px;
        gap: 20px;
    }

    .step-card-header {
        gap: 16px;
    }

    .step-icon {
        width: 48px;
        height: 48px;
    }

    .step-card-title {
        font-size: 24px;
    }

    .step-card-description {
        font-size: 16px;
    }

    /* OLD How It Works Section - COMMENTED OUT
    .how-it-works {
        padding: 60px 0 0;
    }
    
    .section-title {
        font-size: 28px;
        width: 90%;
        margin-bottom: 36px;
        padding: 0 20px;
    }
    
    .step-row {
        height: auto;
        min-height: 400px;
        flex-direction: column;
        padding: 40px 20px;
    }
    
    .step-image-placeholder {
        display: none;
    }
    
    .step-row img[src*="ellipse"] {
        display: none !important;
    }
    
    .step-badge {
        position: static;
        width: 100% !important;
        flex-direction: row;
        padding: 24px;
        gap: 20px;
        height: auto;
        border-radius: 24px;
        margin-bottom: 24px;
        align-items: center;
    }
    
    .step-badge-reverse {
        flex-direction: row;
    }
    
    .step-number-circle {
        width: 100px;
        height: 100px;
        font-size: 64px;
        flex-shrink: 0;
    }
    
    .step-title {
        font-size: 22px;
        width: auto !important;
        text-align: left;
        flex: 1;
    }
    
    .step-row-3 .step-title {
        white-space: normal;
    }
    
    .step-title-right {
        text-align: left;
    }
    
    .step-description {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        transform: none !important;
        text-align: center;
        font-size: 16px;
    }
    
    .step-row-2 .step-description {
        text-align: center;
    }
    
    .step-description-right {
        text-align: center;
    }
    */

    /* Why Section */
    .why-section-new {
        padding: 40px 0;
    }

    .why-container {
        padding: 0 20px;
        gap: 36px;
    }

    .why-left-new {
        width: 100%;
        gap: 16px;
    }

    .why-main-title {
        font-size: 40px;
        width: 100%;
    }

    .why-tagline {
        font-size: 24px;
        width: 100%;
    }

    .why-card {
        width: 100%;
        padding: 32px 24px;
        gap: 24px;
    }

    .why-card-item {
        flex-direction: row;
        gap: 16px;
        align-items: flex-start;
        text-align: left;
    }

    .why-card-icon {
        width: 64px;
        height: 64px;
        flex-shrink: 0;
    }

    .why-card-icon img {
        width: 36px;
        height: 36px;
    }

    .why-card-text {
        font-size: 18px;
        width: 100%;
    }

    .why-card-final {
        font-size: 18px;
        text-align: left;
    }

    /* Bangalore Section */
    .bangalore-section-new {
        padding: 48px 0;
        margin-top: 48px;
        /* tighter than desktop */
    }

    .bangalore-container {
        width: 100%;
        padding: 0 20px;
        gap: 36px;
    }

    .bangalore-left-new {
        padding: 0;
    }

    .bangalore-ellipse {
        display: none;
    }

    .bangalore-text-content {
        gap: 24px;
    }

    .bangalore-title-new {
        font-size: 32px;
        width: 100%;
    }

    .bangalore-description {
        font-size: 16px;
        width: 100%;
    }

    .bangalore-right-new {
        width: 100%;
        max-width: 100%;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 60px 0;
        margin: 0 auto;
    }

    .bangalore-restaurant-img {
        width: 85%;
        max-width: 380px;
        height: auto;
        border-radius: 24px;
        display: block;
        margin: 0 auto;
        z-index: 1;
    }

    .bangalore-badge-location {
        position: absolute;
        font-size: 14px;
        padding: 8px 16px;
        z-index: 2;
        white-space: nowrap;
    }

    .badge-koramangala {
        top: 15%;
        left: -10%;
    }

    .badge-indiranagar {
        top: 5%;
        right: 0%;
    }

    .badge-hsr {
        bottom: 35%;
        left: 5%;
    }

    .badge-anywhere {
        bottom: 15%;
        right: 10%;
    }

    /* Final CTA */
    .final-cta {
        padding: 60px 0;
    }

    .final-cta-container {
        width: 100%;
        padding: 0 20px;
    }

    .final-title {
        font-size: 36px;
        line-height: 1.3;
        margin-bottom: 24px;
    }

    .final-cta-box {
        padding: 32px 20px;
        gap: 24px;
    }

    .final-text {
        font-size: 16px;
        width: 100%;
    }

    .final-form {
        width: 100%;
        flex-direction: column;
        gap: 16px;
    }

    .final-form .email-input-wrapper {
        width: 100%;
    }

    /* Footer */
    .footer {
        padding: 40px 0;
    }

    .footer-content {
        padding: 0 20px;
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-copyright {
        font-size: 16px;
        width: 100%;
    }

    .footer-links {
        gap: 24px;
        flex-direction: column;
    }

    .footer-links a {
        font-size: 16px;
    }
}

/* Extra small mobile - up to 375px */
@media (max-width: 375px) {
    .hero-title {
        font-size: 32px;
    }

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

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

    .why-main-title {
        font-size: 32px;
    }

    .why-tagline {
        font-size: 20px;
    }

    .bangalore-title-new {
        font-size: 28px;
    }

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

/* ===== Policy Pages (Privacy & Terms) ===== */
.policy-container {
    width: 800px;
    margin: 120px auto 120px;
    padding: 0 24px;
    color: var(--primary-brand);
}

.policy-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--primary-brand);
}

.policy-date {
    font-size: 18px;
    color: var(--grey-primary);
    margin-bottom: 48px;
}

.policy-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 24px;
    color: var(--primary-brand);
}

.policy-container h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--primary-brand);
}

.policy-container p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--primary-brand);
}

.policy-container ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.policy-container li {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: var(--primary-brand);
}

.relative-header {
    position: relative;
    background: var(--primary-brand);
}

/* Responsive Policy Pages */
@media (max-width: 1024px) {
    .policy-container {
        width: 100%;
        margin-top: 48px;
        margin-bottom: 48px;
    }

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