/* ============================================
   DAILYDABBA — style.css
   Modern, warm, mobile-first design
   ============================================ */

/* --- Design Tokens --- */
:root {
    /* Brand Colors */
    --orange: #FF6B35;
    --orange-dark: #E05520;
    --orange-soft: #FFF4EF;
    --green: #2EBD70;
    --green-soft: #E8FAF0;
    --purple: #6C63FF;
    --yellow: #F7B731;

    /* Neutrals */
    --cream: #FEF9F5;
    --white: #FFFFFF;
    --dark: #1A1A2E;
    --gray-700: #374151;
    --gray-500: #6B7280;
    --gray-300: #D1D5DB;
    --gray-100: #F3F4F6;

    /* Typography */
    --font-head: 'Nunito', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-pad: 100px 24px;
    --max-w: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.10);
    --shadow-orange: 0 12px 32px rgba(255, 107, 53, 0.25);

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition: 0.3s var(--ease);
}

/* --- Resets --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-head);
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: var(--font-body);
    font-size: 1rem;
}

/* --- Utility --- */
.text-gradient {
    background: linear-gradient(135deg, var(--orange), #FF9F68);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-light {
    background: linear-gradient(135deg, #FFD4BF, #FFA07A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.w-full {
    width: 100%;
}

.mt-1 {
    margin-top: 1rem;
}

.hidden {
    display: none !important;
}

/* --- Shared Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-orange);
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(255, 107, 53, 0.35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--dark);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 30px;
    border-radius: var(--radius-full);
    border: 2px solid var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--dark);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    border: 2px solid var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    width: 100%;
    margin-top: 12px;
}

.btn-outline-dark:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
}

.btn-whatsapp:hover {
    background: #1db954;
    transform: translateY(-2px);
}

.btn-whatsapp i {
    font-size: 1.2rem;
}

/* --- Section Shared Styles --- */
.section-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--section-pad);
}

.section-label {
    display: inline-block;
    background: var(--orange-soft);
    color: var(--orange-dark);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.light-label {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 620px;
    margin: 0 auto 60px;
}

.text-center {
    text-align: center;
}

/* ---===============================---
         NAVBAR
   ---===============================--- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 0;
    background: rgba(254, 249, 245, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(209, 213, 219, 0.4);
    z-index: 1000;
    transition: padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
    background: rgba(254, 249, 245, 0.97);
}

.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 1.6rem;
    color: var(--dark);
}

.logo strong {
    color: var(--orange);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--orange-soft);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-weight: 500;
    color: var(--gray-700);
    transition: color var(--transition);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--orange);
}

.nav-cta {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark)) !important;
    color: white !important;
    padding: 9px 22px;
    border-radius: var(--radius-full);
    font-weight: 700 !important;
    font-family: var(--font-head);
    box-shadow: var(--shadow-orange);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition) !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: white;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 100px 32px 40px;
    transition: right 0.4s var(--ease);
}

.mobile-overlay.active {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-link {
    display: block;
    padding: 14px 0;
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    border-bottom: 1px solid var(--gray-100);
    transition: color var(--transition);
}

.mobile-link:hover {
    color: var(--orange);
}

.mobile-cta {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white !important;
    text-align: center;
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-orange);
    margin-top: 8px;
    border-bottom: none !important;
}

/* ---===============================---
         HERO SECTION
   ---===============================--- */
.hero {
    position: relative;
    background: linear-gradient(160deg, #FFF8F3 0%, #FEF9F5 50%, #F0F4FF 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 107, 53, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.hero-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 80px 24px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    margin-bottom: 24px;
    color: var(--dark);
    line-height: 1.15;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--gray-500);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-sub strong {
    color: var(--orange);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    width: fit-content;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-item i {
    font-size: 1.4rem;
    color: var(--orange);
}

.trust-item div {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-family: var(--font-head);
    font-size: 1rem;
    color: var(--dark);
}

.trust-item span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.trust-divider {
    width: 1px;
    height: 36px;
    background: var(--gray-300);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tiffin-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    width: 100%;
    max-width: 420px;
    animation: float-card 6s ease-in-out infinite;
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0px) rotate(-1deg);
    }

    50% {
        transform: translateY(-16px) rotate(0deg);
    }
}

.tiffin-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.tiffin-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tiffin-tag {
    position: absolute;
    background: white;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 7px 14px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 6px;
}

.tag-fresh {
    top: 12px;
    left: 12px;
    color: var(--orange-dark);
}

.tag-fresh i {
    color: var(--orange);
}

.tag-time {
    bottom: 12px;
    right: 12px;
    color: var(--purple);
}

.tag-time i {
    color: var(--purple);
}

.tiffin-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.meal-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.meal-label {
    font-size: 0.72rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.meal-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark);
}

.meal-price {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--orange);
}

.floating-pill {
    position: absolute;
    background: white;
    border-radius: var(--radius-full);
    padding: 8px 16px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 6px;
}

.pill-hygiene {
    top: -10px;
    left: -20px;
    color: var(--green-soft);
    background: var(--green);
    color: white;
    animation: float-pill-1 5s ease-in-out infinite;
}

.pill-veg {
    bottom: 80px;
    right: -20px;
    animation: float-pill-2 7s ease-in-out infinite 1s;
}

@keyframes float-pill-1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes float-pill-2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

.veg-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid var(--green);
    border-radius: 50%;
}

.veg-dot::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    margin: 1px;
}

/* Hero wave */
.hero-wave {
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 60px;
}

/* ---===============================---
         FEATURES / WHY US
   ---===============================--- */
.features-section {
    background: white;
}

.features-section .section-container {
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
}

.feature-card {
    padding: 32px 28px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 53, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    background: var(--icon-bg, #FFF4EF);
    color: var(--icon-color, var(--orange));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrap {
    transform: scale(1.08);
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.65;
}

.feature-card p strong {
    color: var(--orange);
}

/* ---===============================---
         MENU SECTION
   ---===============================--- */
.menu-section {
    background: var(--cream);
}

.menu-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

/* Menu plan card */
.menu-plan-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

.plan-card-header {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    padding: 28px 28px 24px;
    color: white;
}

.plan-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.standard-badge {
    background: rgba(255, 255, 255, 0.2);
}

.plan-card-header h3 {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.plan-card-header p {
    opacity: 0.85;
    font-size: 0.9rem;
}

.meal-items-list {
    list-style: none;
    padding: 20px 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meal-items-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 8px;
    border-bottom: 1px solid var(--gray-100);
}

.meal-items-list li:last-child {
    border-bottom: none;
}

.item-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.item-detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.item-detail strong {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
}

.item-detail span {
    font-size: 0.82rem;
    color: var(--gray-500);
}

.menu-plan-card .btn-primary {
    margin: 4px 20px 24px;
    display: flex;
}

/* Weekly menu */
.weekly-menu {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

.weekly-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--gray-100);
}

.weekly-header h3 {
    font-size: 1.1rem;
}

.week-badge {
    background: var(--orange-soft);
    color: var(--orange-dark);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.day-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 13px 24px;
    border-bottom: 1px solid var(--gray-100);
    transition: background var(--transition);
}

.day-row:hover {
    background: var(--orange-soft);
}

.day {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--orange);
    width: 30px;
    flex-shrink: 0;
    padding-top: 2px;
    text-transform: uppercase;
}

.day-meal {
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.add-ons-block {
    padding: 20px 24px;
    background: var(--green-soft);
}

.add-ons-block h4 {
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.addon-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.addon-chip {
    background: white;
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.addon-chip:hover {
    border-color: var(--green);
    color: var(--green);
}

/* ---===============================---
         PRICING SECTION
   ---===============================--- */
.pricing-section {
    background: white;
}

.pricing-section .section-container {
    text-align: center;
}

.pricing-toggle {
    display: inline-flex;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    padding: 5px;
    gap: 4px;
    margin-bottom: 52px;
}

.toggle-btn {
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gray-500);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    background: transparent;
}

.toggle-btn.active {
    background: white;
    color: var(--orange);
    box-shadow: var(--shadow-sm);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 32px;
}

.pricing-card {
    background: var(--cream);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    text-align: left;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.featured-plan {
    background: linear-gradient(160deg, #1A1A2E, #2A1A3E);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: scale(1.04);
}

.featured-plan:hover {
    transform: scale(1.04) translateY(-4px);
}

.featured-ribbon {
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--orange);
    color: white;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 6px 16px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.plan-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--orange);
    margin-bottom: 12px;
}

.featured-plan .plan-name {
    color: rgba(255, 255, 255, 0.6);
}

.plan-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 12px;
}

.currency {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    padding-bottom: 6px;
}

.amount {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}

.per {
    font-size: 0.85rem;
    color: var(--gray-500);
    padding-bottom: 8px;
}

.featured-plan .currency,
.featured-plan .amount {
    color: white;
}

.featured-plan .per {
    color: rgba(255, 255, 255, 0.5);
}

.plan-desc {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.6;
}

.featured-plan .plan-desc {
    color: rgba(255, 255, 255, 0.6);
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.featured-plan .plan-features li {
    color: rgba(255, 255, 255, 0.8);
}

.plan-features i.fa-check {
    color: var(--green);
    font-size: 0.8rem;
}

.plan-features li.inactive {
    color: var(--gray-300);
}

.plan-features li.inactive i {
    color: var(--gray-300);
}

.eq-text {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.eq-text strong {
    color: var(--yellow);
}

/* --- Delivery Area Banner --- */
.delivery-banner {
    background: linear-gradient(135deg, #1A1A2E 0%, #2d1b4e 60%, #1A1A2E 100%);
    border-radius: var(--radius-xl);
    padding: 48px 40px 36px;
    margin-top: 16px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.delivery-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 107, 53, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.delivery-banner-top {
    position: relative;
    margin-bottom: 32px;
}

.delivery-free-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 7px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
}

.delivery-banner-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.7rem;
    color: white;
    margin-bottom: 10px;
    line-height: 1.25;
}

.delivery-banner-sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

.delivery-areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
    position: relative;
}

.area-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 9px 18px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
    transition: var(--transition);
    cursor: default;
}

.area-pill:hover {
    background: rgba(255, 107, 53, 0.25);
    border-color: var(--orange);
    color: #FFB499;
    transform: translateY(-2px);
}

.area-pill i {
    color: var(--orange);
    font-size: 0.75rem;
}

.delivery-banner-footer {
    position: relative;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex-wrap: wrap;
}

.delivery-banner-footer i {
    color: rgba(255, 255, 255, 0.4);
}

.delivery-banner-footer a {
    color: #FFB499;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}

.delivery-banner-footer a:hover {
    color: var(--orange);
}

/* ---===============================---
         TESTIMONIALS
   ---===============================--- */
.testimonials-section {
    background: var(--cream);
}

.testimonials-section .section-container {
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.stars {
    font-size: 1.1rem;
}

.review-text {
    font-size: 0.93rem;
    color: var(--gray-700);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 8px;
    border-top: 1px solid var(--gray-100);
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.reviewer div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reviewer strong {
    font-size: 0.9rem;
}

.reviewer span {
    font-size: 0.78rem;
    color: var(--gray-500);
}

/* ---===============================---
         ORDER / CTA SECTION
   ---===============================--- */
.order-section {
    position: relative;
    background: linear-gradient(135deg, #1A1A2E 0%, #2D1B4E 50%, #1A2E4E 100%);
    padding-bottom: 0;
    overflow: hidden;
}

.order-bg-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    pointer-events: none;
}

.order-section .section-container {
    padding-bottom: 0;
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    padding-bottom: 80px;
}

.order-info h2 {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    color: white;
    margin-bottom: 20px;
}

.order-info>p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.order-perks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.perk-item i {
    color: var(--orange);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.perk-item strong {
    color: white;
}

/* Order Form */
.order-form-wrap {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.order-form {
    padding: 36px;
}

.order-form h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--dark);
    background: white;
    transition: var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

/* Custom Checkboxes */
.addons-section {
    margin-bottom: 16px;
}

.addons-title {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.addons-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.addon-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1.5px solid var(--gray-200, #E5E7EB);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.addon-check:hover {
    border-color: var(--orange);
    background: var(--orange-soft);
}

.addon-check input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    flex-shrink: 0;
    transition: var(--transition);
    position: relative;
}

.addon-check input:checked~.checkmark {
    background: var(--orange);
    border-color: var(--orange);
}

.addon-check input:checked~.checkmark::after {
    content: '✓';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
}

.form-disclaimer {
    text-align: center;
    margin-top: 12px;
    font-size: 0.78rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-disclaimer i {
    color: var(--green);
}

/* Success Card */
.success-card {
    padding: 48px 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.success-icon {
    font-size: 3.5rem;
    animation: bounce-in 0.5s ease;
}

@keyframes bounce-in {
    0% {
        transform: scale(0.3);
    }

    60% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.success-card h3 {
    font-size: 1.6rem;
    color: var(--dark);
}

.success-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    max-width: 280px;
    line-height: 1.6;
}

.success-card .btn-whatsapp {
    width: 100%;
}

/* ---===============================---
         FOOTER
   ---===============================--- */
.footer {
    background: #0F0F1A;
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 24px 0;
}

.footer-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    color: white;
}

.footer-logo strong {
    color: var(--orange);
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--orange);
    color: white;
}

.footer-links-col,
.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col h4,
.footer-contact-col h4 {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.footer-links-col a,
.footer-links-col span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.footer-links-col a:hover {
    color: var(--orange);
}

.footer-contact-col a,
.footer-contact-col p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition);
}

.footer-contact-col a:hover {
    color: var(--orange);
}

.footer-contact-col i {
    color: var(--orange);
    font-size: 0.88rem;
}

.kitchen-hours {
    font-size: 0.82rem !important;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    max-width: var(--max-w);
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.35);
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.35);
    transition: color var(--transition);
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* ---===============================---
         SCROLL TO TOP BUTTON
   ---===============================--- */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: var(--transition);
    z-index: 900;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
}

/* ---===============================---
         ANIMATIONS
   ---===============================--- */
.animate-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    transition-delay: var(--delay, 0s);
}

.animate-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-up.visible,
.animate-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ---===============================---
         RESPONSIVE
   ---===============================--- */
@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 960px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding-top: 60px;
    }

    .hero-sub {
        max-width: 100%;
        margin: 0 auto 36px;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-trust-bar {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        margin-top: 24px;
    }

    .tiffin-card {
        max-width: 360px;
        margin: 0 auto;
    }

    .pill-hygiene {
        top: 0;
        left: 0;
    }

    .pill-veg {
        bottom: 100px;
        right: 0;
    }

    .menu-showcase {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto 32px;
    }

    .featured-plan {
        transform: scale(1);
    }

    .featured-plan:hover {
        transform: translateY(-4px);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .order-grid {
        grid-template-columns: 1fr;
    }

    .order-info h2 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    :root {
        --section-pad: 72px 20px;
    }

    .hero-container {
        padding: 48px 20px 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .addons-check-grid {
        grid-template-columns: 1fr;
    }

    .pricing-toggle {
        flex-direction: column;
        width: 100%;
    }

    .hero-trust-bar {
        gap: 16px;
        padding: 16px 20px;
    }

    .trust-divider {
        display: none;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
    }

    .order-form {
        padding: 24px 20px;
    }

    .hero-badge {
        font-size: 0.78rem;
    }

    .delivery-banner {
        padding: 36px 20px 28px;
    }

    .delivery-banner-title {
        font-size: 1.35rem;
    }

    .area-pill {
        font-size: 0.82rem;
        padding: 8px 14px;
    }
}