.btn[disabled],
.btn:disabled {
    opacity: 1 !important;
    background: #fff !important;
    color: var(--color-primary) !important;
    border: 2px solid var(--color-primary);
    font-weight: 800;
    text-shadow: none;
    cursor: not-allowed !important;
    box-shadow: 0 2px 8px rgba(44, 168, 50, 0.10);
}

/* =========================================
   GHAR KA KHANA - Main Stylesheet
   A warm, inviting design for homemade food
   ========================================= */

/* ===== CSS Variables & Design Tokens ===== */
:root {
    /* Brand Colors */
    --color-primary: #2da832;
    /* Green */
    --color-primary-dark: #207a23;
    --color-primary-light: #4edc5a;
    --color-gold: #c2941b;
    /* Golden */
    --color-gold-light: #ffe7a3;
    --color-primary-subtle: #f6fbe9;

    /* Semantic Colors */
    --color-success: #2da832;
    --color-success-light: #e6f9e7;
    --color-warning: #c2941b;
    --color-error: #DC2626;

    /* Neutral Colors */
    --color-white: #FFFFFF;
    --color-bg: #f6fbe9;
    --color-bg-alt: #f9f7ee;
    --color-text: #1a1a1a;
    --color-text-secondary: #6b7280;
    --color-text-muted: #9ca3af;
    --color-border: #e5e7eb;
    --color-border-light: #f3f4f6;

    /* Typography */
    --font-heading: 'Fraunces', serif;
    --font-body: 'DM Sans', sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(232, 93, 4, 0.15);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;

    /* Container */
    --container-max: 1200px;
    --container-padding: var(--space-6);
}

/* ===== CSS Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
}

h1 {
    font-size: var(--text-5xl);
}

h2 {
    font-size: var(--text-4xl);
}

h3 {
    font-size: var(--text-3xl);
}

h4 {
    font-size: var(--text-2xl);
}

h5 {
    font-size: var(--text-xl);
}

h6 {
    font-size: var(--text-lg);
}

p {
    margin-bottom: var(--space-4);
    color: var(--color-text-secondary);
}

.text-gradient {
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Container & Layout ===== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--space-20) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-header h2 {
    margin-bottom: var(--space-4);
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: var(--text-lg);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-weight: 500;
    font-size: var(--text-base);
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-gold) 100%);
    color: #fff !important;
    text-shadow: 0 1px 6px rgba(44, 44, 44, 0.18);
    box-shadow: 0 4px 15px rgba(45, 168, 50, 0.18), 0 2px 8px rgba(194, 148, 27, 0.12);
    border: none;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: all var(--transition-base);
}

.btn-primary:hover,
.btn-primary:focus {
    filter: brightness(1.08) saturate(1.1);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 28px rgba(45, 168, 50, 0.22), 0 4px 16px rgba(194, 148, 27, 0.18);
    outline: 2px solid #fff2;
}

.btn-secondary {
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-primary) 100%);
    color: #fff !important;
    text-shadow: 0 1px 6px rgba(44, 44, 44, 0.18);
    box-shadow: 0 4px 15px rgba(194, 148, 27, 0.14), 0 2px 8px rgba(45, 168, 50, 0.10);
    border: none;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: all var(--transition-base);
}

.btn-secondary:hover,
.btn-secondary:focus {
    filter: brightness(1.08) saturate(1.1);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 28px rgba(194, 148, 27, 0.18), 0 4px 16px rgba(45, 168, 50, 0.12);
    outline: 2px solid #fff2;
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
}

.btn-icon {
    width: 24px;
    height: 24px;
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-primary);
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-icon {
    font-size: var(--text-3xl);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-link {
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    margin-left: var(--space-4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition-base);
}

/* ===== Hero Section ===== */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.hero-content {
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 3rem 0 2.5rem 0;
    max-width: 700px;
    margin: 2rem 0 0 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
}

.hero-localized {
    font-size: 2.2rem;
    font-weight: 700;
    color: #c2941b;
    margin-bottom: 1.2rem;
    letter-spacing: 0.02em;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
}

.hero-localized .hero-bengali {
    padding-right: 1.2rem;
    border-right: 2.5px solid #c2941b;
    margin-right: 1.2rem;
}

.hero-localized .hero-hindi {
    padding-left: 0;
}

.hero-tagline {
    font-size: 1.15rem;
    color: #6b7280;
    margin-bottom: 1.1rem;
}

.hero-launch-note {
    margin-bottom: 1.1rem;
}

.hero-cta {
    margin: 1.2rem 0 1.5rem 0;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 0.9rem 2.2rem;
    border-radius: 0.8rem;
    box-shadow: 0 2px 12px rgba(44, 168, 50, 0.10);
}

.trust-bar {
    font-size: 1rem;
    color: #222;
    margin-top: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    align-items: center;
}

.hero {
    padding-top: calc(72px + var(--space-16));
    padding-bottom: var(--space-20);
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-primary-subtle) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 93, 4, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    min-height: 520px;
}

.hero-content {
    flex: 1 1 420px;
    max-width: 540px;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.hero-visual {
    flex: 1 1 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-phone-mockup {
    position: relative;
    max-width: 320px;
    animation: float 6s ease-in-out infinite;
}

.hero-phone-mockup img {
    border-radius: 36px;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.hero-phone-mockup.hero-mockup-3d {
    background: #fff;
    border-radius: 2.2rem;
    box-shadow: 0 8px 32px rgba(44, 60, 80, 0.18), 0 1.5px 8px rgba(44, 60, 80, 0.10);
    padding: 0.7rem;
    width: 320px;
    height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid #e5e7eb;
    perspective: 900px;
    transform: rotateY(-7deg) rotateX(2deg) scale(1.01);
    transition: box-shadow 0.3s, transform 0.3s;
}

.hero-phone-mockup.hero-mockup-3d img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.6rem;
    box-shadow: 0 0 0 2px #f3f4f6;
}

.hero-localized {
    margin: 1.2rem 0 0.7rem 0;
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-gold);
    flex-wrap: wrap;
}

.hero-hindi {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

.hero-launch-note {
    font-size: 1.08rem;
    color: var(--color-primary);
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.hero-launch-soon {
    color: var(--color-gold);
}

.hero-cta {
    margin: 1.2rem 0 1.2rem 0;
}

/* ===== Food decoration elements */
.food-decoration {
    position: absolute;
    opacity: 0.8;
    animation: floatSlow 8s ease-in-out infinite;
}

.food-decoration.deco-1 {
    top: 10%;
    left: -20%;
    font-size: 3rem;
    animation-delay: 0s;
}

.food-decoration.deco-2 {
    top: 60%;
    right: -15%;
    font-size: 2.5rem;
    animation-delay: -2s;
}

.food-decoration.deco-3 {
    bottom: 10%;
    left: 10%;
    font-size: 2rem;
    animation-delay: -4s;
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

/* ===== Features Section ===== */
.features {
    background: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.feature-card {
    text-align: center;
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    background: var(--color-bg);
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--color-primary-subtle) 0%, var(--color-gold-light) 100%);
    border-radius: var(--radius-xl);
}

.feature-card h3 {
    margin-bottom: var(--space-3);
    font-size: var(--text-xl);
}

.feature-card p {
    margin-bottom: 0;
    font-size: var(--text-base);
}

/* ===== How It Works Section ===== */
.how-it-works {
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-primary-subtle) 100%);
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary-light), var(--color-primary), var(--color-primary-light));
    z-index: 0;
}

.step-card {
    flex: 1;
    max-width: 280px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-white);
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-gold) 100%);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(232, 93, 4, 0.35);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-4);
}

.step-card h3 {
    margin-bottom: var(--space-3);
    font-size: var(--text-xl);
}

.step-card p {
    margin-bottom: 0;
}

/* ===== Testimonials Section ===== */
.testimonials {
    background: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.testimonial-card {
    padding: var(--space-8);
    background: var(--color-bg);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: var(--color-warning);
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
}

.testimonial-text {
    font-size: var(--text-lg);
    font-style: italic;
    margin-bottom: var(--space-6);
    color: var(--color-text);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
}

.testimonial-name {
    font-weight: 600;
    color: var(--color-text);
}

.testimonial-location {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-gold) 100%);
    color: var(--color-white);
    text-align: center;
    padding-bottom: 3rem;
}

.cta-section h2 {
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-xl);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-buttons input[type="text"],
.cta-buttons input[type="email"] {
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
    border: none;
    font-size: var(--text-lg);
    background: #fff;
    color: var(--color-text);
    box-shadow: 0 2px 12px rgba(44, 168, 50, 0.10);
    min-width: 260px;
    max-width: 340px;
    margin-right: var(--space-2);
    outline: none;
    transition: box-shadow 0.2s;
}

.cta-buttons input[type="text"]:focus,
.cta-buttons input[type="email"]:focus {
    box-shadow: 0 4px 18px rgba(44, 168, 50, 0.18);
}

.cta-section .btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
}

.cta-section .btn-primary:hover {
    background: var(--color-bg);
}

/* ===== Footer ===== */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3.5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 280px;
}

.footer-brand .logo {
    display: inline-flex;
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-brand .logo-icon {
    font-size: 1.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.social-links {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.social-note {
    display: inline-block;
    background: var(--color-primary);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.75rem;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--color-primary);
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 2.5rem 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-column h4 {
        display: block;
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-column h4::after {
        content: '';
        display: block;
        width: 40px;
        height: 2px;
        background: var(--color-primary);
        margin: 0.5rem auto 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* ===== Page Headers (for inner pages) ===== */
.page-header {
    padding-top: calc(72px + var(--space-16));
    padding-bottom: var(--space-12);
    background: linear-gradient(180deg, var(--color-primary-subtle) 0%, var(--color-bg) 100%);
    text-align: center;
}

.page-header h1 {
    margin-bottom: var(--space-4);
}

.page-header p {
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.breadcrumb a {
    color: var(--color-primary);
}

.breadcrumb span {
    color: var(--color-text-muted);
}

/* ===== Content Pages (About, Privacy, Terms, etc.) ===== */
.content-section {
    padding: var(--space-16) 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: var(--text-2xl);
    margin-top: var(--space-10);
    margin-bottom: var(--space-4);
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-border-light);
}

.content-wrapper h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.content-wrapper h3 {
    font-size: var(--text-xl);
    margin-top: var(--space-6);
    margin-bottom: var(--space-3);
}

.content-wrapper p {
    margin-bottom: var(--space-4);
    line-height: 1.8;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: var(--space-6);
    padding-left: var(--space-6);
}

.content-wrapper ul {
    list-style-type: disc;
}

.content-wrapper ol {
    list-style-type: decimal;
}

.content-wrapper li {
    margin-bottom: var(--space-2);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.content-wrapper a {
    color: var(--color-primary);
    text-decoration: underline;
}

.content-wrapper a:hover {
    color: var(--color-primary-dark);
}

.last-updated {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: var(--color-primary-subtle);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    color: var(--color-primary-dark);
    margin-bottom: var(--space-8);
}

/* ===== About Page Specific ===== */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    margin-bottom: var(--space-16);
}

.about-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.value-card {
    padding: var(--space-6);
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--color-primary);
}

.value-card h4 {
    margin-bottom: var(--space-2);
    color: var(--color-text);
}

.value-card p {
    margin-bottom: 0;
    font-size: var(--text-sm);
}

/* ===== Contact Page Specific ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-12);
}

.contact-info-card {
    padding: var(--space-8);
    background: var(--color-primary);
    border-radius: var(--radius-2xl);
    color: var(--color-white);
}

.contact-info-card h3 {
    color: var(--color-white);
    margin-bottom: var(--space-6);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    font-size: var(--text-xl);
    flex-shrink: 0;
}

.contact-item-text h4 {
    color: var(--color-white);
    font-size: var(--text-base);
    margin-bottom: var(--space-1);
}

.contact-item-text p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    font-size: var(--text-sm);
}

.contact-social {
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-social h4 {
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.contact-social .social-links {
    justify-content: flex-start;
}

.contact-form-card {
    padding: var(--space-8);
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
    margin-bottom: var(--space-6);
}

.form-group {
    margin-bottom: var(--space-5);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: 500;
    color: var(--color-text);
}

.form-group label .required {
    color: var(--color-error);
}

.form-control {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    transition: all var(--transition-fast);
    background: var(--color-bg);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-4) center;
    padding-right: var(--space-10);
}

.form-submit {
    margin-top: var(--space-6);
}

.form-submit .btn {
    width: 100%;
}

/* ===== Utility Classes ===== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-4 {
    margin-top: var(--space-4);
}

.mt-8 {
    margin-top: var(--space-8);
}

.mb-4 {
    margin-bottom: var(--space-4);
}

.mb-8 {
    margin-bottom: var(--space-8);
}

.hidden {
    display: none;
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    :root {
        --text-6xl: 3rem;
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: var(--space-4);
        --text-6xl: 2.5rem;
        --text-5xl: 2rem;
        --text-4xl: 1.75rem;
        --text-3xl: 1.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: var(--space-6);
        gap: var(--space-4);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-base);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-cta {
        margin-left: 0;
        width: 100%;
    }

    .nav-cta .btn {
        width: 100%;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    .steps-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
        flex-direction: row;
        align-items: flex-start;
    }

    .step-card {
        max-width: 100%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    .hero-phone-mockup {
        max-width: 260px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .app-badge {
        width: 100%;
        max-width: 200px;
        height: auto;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-4);
    }

    .stat-item {
        flex: 1 1 40%;
    }
}

/* ===== App Preview Section (3D Mobile Mockups) ===== */
.app-preview {
    background: var(--color-bg-alt);
}

.app-mockup-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.app-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.device-frame {
    background: #fff;
    border-radius: 2.2rem;
    box-shadow: 0 8px 32px rgba(44, 60, 80, 0.18), 0 1.5px 8px rgba(44, 60, 80, 0.10);
    padding: 0.7rem;
    width: 260px;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2.5px solid #e5e7eb;
    perspective: 900px;
    transform: rotateY(-8deg) rotateX(3deg) scale(1.01);
    transition: box-shadow 0.3s, transform 0.3s;
}

.device-frame:hover {
    box-shadow: 0 16px 48px rgba(44, 60, 80, 0.22), 0 2.5px 12px rgba(44, 60, 80, 0.13);
    transform: rotateY(-2deg) rotateX(1deg) scale(1.04);
}

.device-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.6rem;
    box-shadow: 0 0 0 2px #f3f4f6;
}

.mockup-caption {
    margin-top: 0.7rem;
    font-size: 1.08rem;
    color: var(--color-text-secondary);
    font-weight: 500;
    text-align: center;
}

@media (max-width: 1024px) {
    .app-mockup-row {
        gap: 1.5rem;
    }

    .device-frame {
        width: 200px;
        height: 420px;
    }
}

@media (max-width: 768px) {
    .app-mockup-row {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .device-frame {
        width: 90vw;
        max-width: 320px;
        height: 60vw;
        max-height: 600px;
    }
}

/* ===== Store Badges (App Preview Section) ===== */
.store-badges-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0 0 0;
    flex-wrap: wrap;
}

.store-badge {
    display: inline-block;
    transition: transform 0.18s;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(44, 60, 80, 0.10);
    overflow: hidden;
    opacity: 0.7;
    pointer-events: none;
}

.store-badge svg {
    display: block;
}

.store-badge:active,
.store-badge:focus {
    outline: 2px solid var(--color-primary);
}

.store-badges-note {
    text-align: center;
    margin-top: 0.7rem;
    color: var(--color-text-muted);
    font-size: 1.08rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .store-badges-row {
        gap: 1rem;
    }

    .store-badge svg {
        width: 120px;
        height: 36px;
    }
}

/* =========================================
   MOBILE SIDEBAR NAVIGATION
   Professional slide-in sidebar for mobile
   ========================================= */

/* Sidebar Overlay/Backdrop */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(4px);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Sidebar Container */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, #ffffff 0%, #f8fdf5 100%);
    z-index: 1999;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 4px 0 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.mobile-sidebar.active {
    transform: translateX(0);
}

/* Sidebar Header */
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-border-light);
    background: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 10;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}

.sidebar-brand .logo-icon {
    font-size: 1.75rem;
}

/* Sidebar Close Button */
.sidebar-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.25rem;
    color: var(--color-text-secondary);
}

.sidebar-close:hover {
    background: var(--color-primary-subtle);
    color: var(--color-primary);
    transform: rotate(90deg);
}

/* Sidebar Navigation */
.sidebar-nav {
    flex: 1;
    padding: 1rem 0;
}

.sidebar-section {
    padding: 0.5rem 0;
}

.sidebar-section-title {
    padding: 0.5rem 1.5rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.5rem;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.sidebar-link:hover {
    background: var(--color-primary-subtle);
    color: var(--color-primary);
    border-left-color: var(--color-primary);
}

.sidebar-link.active {
    background: linear-gradient(90deg, rgba(45, 168, 50, 0.1) 0%, transparent 100%);
    color: var(--color-primary);
    border-left-color: var(--color-primary);
    font-weight: 600;
}

.sidebar-link-icon {
    font-size: 1.25rem;
    width: 28px;
    text-align: center;
}

.sidebar-divider {
    height: 1px;
    background: var(--color-border-light);
    margin: 0.5rem 1.5rem;
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--color-border-light);
    background: var(--color-bg);
}

.sidebar-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-gold) 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(45, 168, 50, 0.25);
}

.sidebar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 168, 50, 0.35);
}

.sidebar-contact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border-light);
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.sidebar-contact-item span:first-child {
    font-size: 1rem;
}

/* Mobile Menu Toggle Enhancement */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Body scroll lock when sidebar is open */
body.sidebar-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Hide sidebar and overlay on desktop */
@media (min-width: 769px) {

    .mobile-sidebar,
    .sidebar-overlay {
        display: none !important;
    }
}

/* Show sidebar elements on mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none !important;
    }

    /* Improve hero section on mobile */
    .hero-flex {
        flex-direction: column;
        gap: 2rem;
        min-height: auto;
        padding-top: 1rem;
    }

    .hero-content {
        order: 2;
        text-align: center;
        padding: 1.5rem 0;
    }

    .hero-visual {
        order: 1;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-localized {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-localized .hero-bengali {
        padding-right: 0;
        border-right: none;
        margin-right: 0;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--color-gold);
        margin-bottom: 0;
    }

    .hero-phone-mockup.hero-mockup-3d {
        width: 220px;
        height: 440px;
        transform: none;
    }

    .trust-bar {
        flex-direction: column;
        gap: 0.5rem;
    }

    .trust-bar span {
        display: block;
    }
}