/* ==================== RESET & ROOT ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary: #15be77;
    --primary-dark: #0fa566;
    --primary-light: #1ed685;
    --secondary: #0d9f5f;
    
    /* Neutral Colors */
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #cbd5e1;
    --white: #ffffff;
    --light-bg: #f8fafc;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #15be77 0%, #0fa566 100%);
    --gradient-accent: linear-gradient(135deg, #1ed685 0%, #15be77 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.16);
    --shadow-xl: 0 16px 48px rgba(15, 23, 42, 0.24);
    --shadow-primary: 0 8px 24px rgba(21, 190, 119, 0.3);
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    background: linear-gradient(180deg, #f8fafc 0%, #e0f2ea 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================== FLOATING SHAPES BACKGROUND ==================== */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: var(--primary-dark);
    bottom: 10%;
    left: 50%;
    animation-delay: 6s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: var(--primary);
    top: 40%;
    right: 30%;
    animation-delay: 9s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* ==================== NAVIGATION ==================== */
.navbar {
    padding: 1.5rem 0;
    background: transparent;
    transition: var(--transition-smooth);
    z-index: 1000;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.brand-logo {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-primary);
    transition: var(--transition-bounce);
}

.brand-logo img {
    border-radius: 12px;
}

.navbar-brand:hover .brand-logo {
    transform: rotate(10deg) scale(1.1);
}

.brand-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
}

.navbar-toggler span {
    width: 100%;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

/* ==================== BUTTONS ==================== */
.btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(21, 190, 119, 0.4);
    color: white;
}

.btn-outline {
    background: var(--glass-bg);
    color: var(--dark);
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: white;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    box-shadow: var(--glass-shadow);
}

.hero-badge i {
    font-size: 1.125rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 2rem 0;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--gray);
    font-weight: 500;
}

/* ==================== HERO VISUAL ==================== */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInDown 1s ease-out 0.3s both;
}

.phone-mockup {
    position: relative;
    width: 320px;
    height: 550px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 1rem;
    box-shadow: var(--shadow-xl);
    z-index: 2;
}

.mockup-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 32px;
    padding: 1.5rem;
    overflow: hidden;
}

.screen-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.screen-header i {
    color: var(--primary);
    font-size: 1.125rem;
}

.screen-header span {
    font-weight: 600;
    font-size: 0.875rem;
}

.food-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.food-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.food-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.food-card i {
    font-size: 2rem;
    color: var(--primary);
}

.food-info h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.food-info p {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 700;
}

.floating-element {
    position: absolute;
    padding: 1rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--glass-shadow);
    font-weight: 600;
    color: var(--dark);
    z-index: 1;
    animation: floatElement 3s ease-in-out infinite;
}

.floating-element i {
    color: var(--primary);
    font-size: 1.25rem;
}

.element-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.element-2 {
    top: 50%;
    right: -10%;
    animation-delay: 1s;
}

.element-3 {
    bottom: 15%;
    left: 0;
    animation-delay: 2s;
}

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

/* ==================== SECTIONS ==================== */
.app-section,
.features-section,
.testimonials-section,
.download-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: rgba(21, 190, 119, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== APP SECTION ==================== */
.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInLeft 0.8s ease-out;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-primary);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.step-content p {
    color: var(--gray);
    line-height: 1.6;
}

.app-mockup {
    position: relative;
    text-align: center;
    animation: pulse 3s ease-in-out infinite;
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.app-screens i {
    color: var(--primary);
    filter: drop-shadow(var(--shadow-xl));
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-list-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}

.feature-list-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    background: rgba(21, 190, 119, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-list-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.feature-list-item p {
    font-size: 0.875rem;
    color: var(--gray);
}

/* ==================== FEATURES SECTION ==================== */
.feature-box {
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-primary);
    transition: var(--transition-bounce);
}

.feature-box:hover .feature-icon-wrapper {
    transform: rotate(10deg) scale(1.1);
}

.feature-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.feature-box p {
    color: var(--gray);
    line-height: 1.6;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonial-card {
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.125rem;
}

.testimonial-text {
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.testimonial-author h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.testimonial-author p {
    font-size: 0.875rem;
    color: var(--gray);
    margin: 0;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
}

.about-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.about-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.about-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.about-stat-item .stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-stat-item .stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.about-stat-item h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.about-stat-item p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.about-feature-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.about-feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-feature-icon i {
    font-size: 2rem;
    color: white;
}

.about-feature-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.about-feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
    margin: 0;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.contact-info-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-info-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.contact-info-card p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.contact-link {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-link:hover {
    color: var(--primary-dark);
    transform: scale(1.05);
}

.contact-form-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    background: white;
    transition: var(--transition-smooth);
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(21, 190, 119, 0.1);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form button[type="submit"] {
    padding: 1rem 3rem;
}

/* ==================== DOWNLOAD SECTION ==================== */
.download-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.download-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(100px);
}

.download-wrapper {
    position: relative;
    z-index: 1;
}

.download-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.download-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.download-buttons,
.footer-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.store-button,
.footer-store-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.store-button:hover,
.footer-store-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
    color: white;
}

.store-button i,
.footer-store-button i {
    font-size: 2rem;
}

.store-button small,
.footer-store-button small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

.store-button strong,
.footer-store-button strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
}

.download-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.download-feature {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
}

.feature-number {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.download-feature h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.download-feature p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--gradient-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand .brand-text {
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-download-buttons .footer-store-button {
    background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(232, 245, 240, 0.3) 100%);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-primary);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.timeline-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(21, 190, 119, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.8;
}

/* ==================== CUISINES SECTION ==================== */
.cuisines-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.cuisine-card {
    padding: 2rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    height: 100%;
    cursor: pointer;
}

.cuisine-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.cuisine-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-primary);
    transition: var(--transition-bounce);
}

.cuisine-card:hover .cuisine-icon {
    transform: rotate(10deg) scale(1.1);
}

.cuisine-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.cuisine-card p {
    color: var(--gray);
    font-size: 0.875rem;
    margin: 0;
}

/* ==================== OFFERS SECTION ==================== */
.offers-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(232, 245, 240, 0.3) 0%, rgba(255, 255, 255, 0.5) 100%);
}

.offer-card {
    padding: 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    transition: var(--transition-smooth);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.offer-card:hover::before {
    opacity: 0.2;
}

.offer-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: var(--shadow-primary);
}

.offer-icon {
    width: 70px;
    height: 70px;
    background: rgba(21, 190, 119, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.offer-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.offer-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.offer-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: var(--shadow-primary);
    transition: var(--transition-smooth);
}

.offer-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 24px rgba(21, 190, 119, 0.4);
    color: white;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.accordion-button {
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1.125rem;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

.accordion-button:not(.collapsed) {
    background: rgba(21, 190, 119, 0.05);
    color: var(--primary);
}

.accordion-button::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: auto;
    transition: var(--transition-smooth);
}

.accordion-button:not(.collapsed)::after {
    content: '\f068';
    color: var(--primary);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button i {
    color: var(--primary);
    font-size: 1.25rem;
}

.accordion-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--gray);
    line-height: 1.8;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
    .hero-visual {
        height: 500px;
        margin-top: 3rem;
    }
    
    .floating-element {
        display: none;
    }
    
    .app-section,
    .features-section,
    .testimonials-section,
    .download-section,
    .how-it-works-section,
    .cuisines-section,
    .offers-section,
    .faq-section {
        padding: 60px 0;
    }
    
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 120px;
    }
    
    .timeline-icon {
        position: absolute;
        left: 0;
    }
    
    .timeline-content {
        margin-left: 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .step-item {
        margin-bottom: 1.5rem;
    }
    
    .app-mockup {
        margin: 2rem 0;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .phone-mockup {
        width: 280px;
        height: 480px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 90px;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.25rem;
    }
    
    .cuisine-card {
        padding: 1.5rem 1rem;
    }
    
    .cuisine-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .offer-card {
        padding: 2rem 1.5rem;
    }
    
    .offer-badge {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    /* About Section Responsive */
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-content h3 {
        font-size: 1.5rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .about-feature-card {
        padding: 1.5rem;
    }
    
    .about-feature-card:hover {
        transform: translateY(-5px);
    }
    
    /* Contact Section Responsive */
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-wrapper h3 {
        font-size: 1.5rem;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ==================== PRIVACY POLICY PAGE ==================== */
.privacy-container {
    position: relative;
    z-index: 1;
    padding: 5rem 0 3rem 0;
    margin-top: 80px;
}

.privacy-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-primary);
    margin-bottom: 2rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-align: center;
}

.effective-date {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.content h2 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.content h3 {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content ul li {
    color: #444;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.contact-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 2rem;
    border-radius: 20px;
    margin-top: 2rem;
}

.contact-box h2 {
    color: white;
    margin-top: 0;
}

.contact-box ul {
    list-style: none;
    margin-left: 0;
}

.contact-box li {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-box i {
    margin-right: 0.5rem;
    width: 20px;
}

.permission-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    overflow: hidden;
}

.permission-table th {
    background: var(--primary);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.permission-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #444;
}

.permission-table tr:last-child td {
    border-bottom: none;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.policy-card-small {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.policy-card-small:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
}

.policy-card-small i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.policy-card-small h4 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.policy-card-small p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
    text-align: center;
}

/* Privacy Policy Page Responsive */
@media (max-width: 767px) {
    .page-title {
        font-size: 2rem;
    }

    .privacy-card {
        padding: 1.5rem;
    }

    .content h2 {
        font-size: 1.5rem;
    }

    .content h3 {
        font-size: 1.2rem;
    }

    .privacy-container {
        margin-top: 70px;
        padding: 2rem 0;
    }

    .permission-table {
        font-size: 0.85rem;
    }

    .permission-table th,
    .permission-table td {
        padding: 0.75rem 0.5rem;
    }

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

