/* 
 * Queen Bee Kitchen - Modern UI Stylesheet
 * Contemporary design with South Indian + Pan-Indian visual identity
 */

/* ===== MODERN BASE STYLES ===== */
:root {
    /* Modern Color Palette */
    --primary-color: #FF6B35; /* Vibrant orange */
    --primary-dark: #E55A2B;
    --primary-light: #FF8A65;
    --primary-gradient: linear-gradient(135deg, #FF6B35, #FF8A65);
    
    /* Secondary Colors */
    --secondary-color: #3498DB; /* Modern blue */
    --secondary-dark: #2980B9;
    --secondary-light: #5DADE2;
    --secondary-gradient: linear-gradient(135deg, #3498DB, #5DADE2);
    
    /* Accent Colors */
    --accent-color: #9B59B6; /* Modern purple */
    --accent-dark: #8E44AD;
    --accent-light: #BB8FCE;
    --accent-gradient: linear-gradient(135deg, #9B59B6, #BB8FCE);
    
    /* Neutral Colors */
    --text-dark: #2C3E50;
    --text-medium: #7F8C8D;
    --text-light: #BDC3C7;
    --background-light: #F8F9FA;
    --background-off-white: #FFFFFF;
    --background-warm: #FFF8F0;
    --background-glass: rgba(255, 255, 255, 0.1);
    
    /* Modern Fonts */
    --font-primary: 'Inter', 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Enhanced Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1.25rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2.5rem;
    --spacing-xxl: 3.5rem;
    
    /* Modern Border Radius */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 28px;
    --border-radius-full: 50px;
    
    /* Modern Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.3);

    /* Modern Margins */
    --margin-left: 1%;
    --margin-right: 1%;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    margin-left: var(--margin-left);
    margin-right: var(--margin-right);
    background: var(--background-light);
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--background-light);
    overflow-x: hidden;
    margin-left: var(--margin-left);
    margin-right: var(--margin-right);
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-md);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--primary-dark);
    transform: translateY(-1px);
}

ul, ol {
    list-style: none;
}

/* ===== MODERN TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    position: relative;
    padding-bottom: var(--spacing-md);
    text-align: center;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-full);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.8;
}

.heading {
     margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.para {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-medium);
    font-weight: 500;
    line-height: 1.3;
 }
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xxl);
}

.section-header p {
    color: var(--text-medium);
    font-size: 1.2rem;
    margin-left: var(--margin-left);
    margin-right: var(--margin-right);
    line-height: 1.8;
}

/* ===== MODERN LAYOUT ===== */
.container {
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    max-width: 1500px;
}

 section {
    padding: var(--spacing-xl) 0;
    position: relative;
} 

section:nth-child(even) {
    background: var(--background-off-white);
}

.hero, .download, .community {
    margin-left: var(--margin-left);
    margin-right: var(--margin-right);
    background: var(--background-warm);
}

/* ===== MODERN COMPONENTS ===== */

/* Modern Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 1rem 2rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

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

.primary-btn:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.secondary-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.secondary-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Modern Cards */
.feature-card, .product-card, .testimonial {
    background: var(--background-off-white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.feature-card:hover, .product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

/* Modern Form Elements */
.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #E8E8E8;
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--background-off-white);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    font-style: italic;
}

/* Phone Input Group */
.phone-input-group {
    display: flex;
    gap: var(--spacing-sm);
    align-items: stretch;
}

.country-code-select {
    /* Restore default browser dropdown arrow */
    appearance: auto !important;
    -webkit-appearance: auto !important;
    -moz-appearance: auto !important;
    background: initial !important;
    flex: 0 0 auto;
    min-width: 80px;
    max-width: 120px;
    width: 100px;
    border-radius: var(--border-radius-md);
    background: var(--background-off-white);
    border: 2px solid #E8E8E8;
    padding: 0.5rem 0.5rem;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.country-code-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.phone-input-group input[type="tel"] {
    flex: 1;
}

button[type="submit"] {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    box-shadow: var(--shadow-md);
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* ===== MODERN HEADER ===== */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.header-brand {
  display: flex;
  align-items: center;
    gap: var(--spacing-md);
}
  
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
    object-position: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.nav-links {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
}

.nav-links li {
    margin-left: 0;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--border-radius-full);
    
}

.nav-links a:hover::after {
    width: 80%;
}

.nav-links a:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
}   



.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: var(--border-radius-full);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== MODERN HERO SECTION ===== */
.hero {
    padding-top: calc(80px + var(--spacing-xl));
    background: linear-gradient(135deg, var(--background-warm) 0%, #FFF5E6 100%);
    position: relative;
    overflow: hidden;
    margin-top: -50px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23FF6B35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    top:30px;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

.hero-image img {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(var(--shadow-lg));
    transform: scale(1.1);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

/* ===== MODERN FEATURES SECTION ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xxl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.feature-card:hover .feature-icon::before {
    transform: translateX(100%);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
    z-index: 1;
}

/* ===== MODERN RECIPE SECTION ===== */
.recipe-showcase {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xxl);
    padding: var(--spacing-sm) 0 var(--spacing-lg);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--background-light);
    scroll-behavior: smooth;
    position: relative;
}

/* Hide recipes beyond the first 3 */
.recipe-category.hidden-recipe {
    display: none;
}

/* Show all recipes when show-all class is added */
.recipe-showcase.show-all .recipe-category.hidden-recipe {
    display: flex;
}

/* View All button container */
.view-all-container {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-lg);
    position: relative;
}

.view-all-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.view-all-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.view-all-btn:hover::before {
    left: 100%;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
/* 
.view-all-btn.show-less {
    background: var(--secondary-gradient);
} */



/* Animation for showing hidden recipes */
.recipe-category.show-recipe {
    animation: slideInUp 0.2s ease forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Grid layout when showing all recipes */
.recipe-showcase.show-all {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    overflow: visible;
    padding: var(--spacing-lg) 0;
}

.recipe-showcase.show-all .recipe-category {
    flex: none;
    width: 100%;
    scroll-snap-align: none;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
}

/* Ensure recipe cards display properly */
.recipe-category {
    background: var(--background-off-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    flex: 0 0 250px;
    min-width: 150px;
    min-height: 80px;
    scroll-snap-align: start;
    cursor: pointer;
    position: relative;
}

.recipe-category img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.recipe-category h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0.5rem;
    text-align: center;
}

.recipe-category .cuisine-languages {
    font-size: 0.85rem;
    color: var(--text-medium);
    text-align: center;
    margin: 0 0.5rem 0.3rem 0.5rem;
    font-style: italic;
}

.recipe-category p {
    font-size: 0.9rem;
    color: var(--text-medium);
    text-align: center;
    line-height: 1.4;
    margin: 0 0.5rem 0.5rem 0.5rem;
}

/* Hover effects for recipe cards */
.recipe-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.recipe-category:hover img {
    transform: scale(1.05);
}

.recipe-category img {
    transition: transform 0.3s ease;
}

/* Hide scroll hint when showing all recipes */
.recipe-showcase.show-all + .scroll-hint {
    display: none;
}

/* Mobile responsive styles for view all button */
@media (max-width: 768px) {
    .view-all-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .view-all-btn i {
        font-size: 0.8rem;
    }
    
    .recipe-showcase.show-all {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .recipe-category {
        flex: 0 0 250px;
        min-width: 180px;
        min-height: 120px;
    }
    
    .recipe-category img {
        height: 100px;
    }
    
    .recipe-category h3 {
        font-size: 1rem;
        margin: 0.3rem;
    }
    
    .recipe-category .cuisine-languages {
        font-size: 0.8rem;
        margin: 0 0.3rem 0.2rem 0.3rem;
    }
    
    .recipe-category p {
        font-size: 0.85rem;
        margin: 0 0.3rem 0.3rem 0.3rem;
    }
}

.recipe-showcase::-webkit-scrollbar {
    height: 8px;
}

.recipe-showcase::-webkit-scrollbar-track {
    background: var(--background-light);
    border-radius: var(--border-radius-full);
}

.recipe-showcase::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: var(--border-radius-full);
}

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

/* Desktop scroll indicators */
.recipes .container {
    position: relative;
}

.recipes .container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 50px;
    height: 100px;
    background: linear-gradient(to right, rgba(248, 249, 250, 0.9), transparent);
    pointer-events: none;
    transform: translateY(-50%);
    border-radius: var(--border-radius-md);
    opacity: 0.7;
    z-index: 1;
}

.recipes .container::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 50px;
    height: 100px;
    background: linear-gradient(to left, rgba(248, 249, 250, 0.9), transparent);
    pointer-events: none;
    transform: translateY(-50%);
    border-radius: var(--border-radius-md);
    opacity: 0.7;
    z-index: 1;
}

/* Scroll hint styles */
.scroll-hint {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.scroll-hint span {
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    animation: pulseGlow 2s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-sm);
    }
    50% {
        transform: scale(1.05);
        box-shadow: var(--shadow-md), 0 0 15px rgba(255, 107, 53, 0.3);
    }
}

.recipe-category {
    background: var(--background-off-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    flex: 0 0 250px;
    min-width: 275px;
    scroll-snap-align: start;
    cursor: pointer;
    position: relative;
}

.recipe-category:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.recipe-category:active {
    transform: translateY(-4px) scale(0.98);
}

.recipe-category img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.recipe-category:hover img {
    transform: scale(1.05);
}

.recipe-category h3, .recipe-category .cuisine-languages, .recipe-category p {
    padding: 0 var(--spacing-lg);
  text-align: center;
}

.cuisine-languages {
  font-size: 0.95em;
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: 0.2em;
  margin-top: -0.3em;
  letter-spacing: 0.01em;
  opacity: 0.85;
  width: 100%;
  display: block;
}

.recipe-category h3 {
    margin-top: var(--spacing-lg);
    color: var(--text-dark);
    font-weight: 600;
  margin-bottom: 0.2em;
}

.recipe-category .cuisine-languages {
  margin-bottom: 0.2em;
  margin-top: 0;
}

.recipe-category p {
    margin-bottom: var(--spacing-lg);
    color: var(--text-medium);
  margin-top: 0.2em;
}

.recipe-app-promo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    margin-top: var(--spacing-xxl);
    background: var(--background-off-white);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xxl);
    box-shadow: var(--shadow-md);
}

.promo-content {
    max-width: 500px;
}

.promo-image {
    display: flex;
    justify-content: center;
}

.promo-image img {
    max-width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ===== MODERN PRODUCT SECTION ===== */
.product-categories {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xxl);
    flex-wrap: wrap;
}

.category-tab {
    padding: 0.75rem 1.5rem;
    background: var(--background-off-white);
    border: 2px solid transparent;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.category-tab.active {
    background: var(--primary-gradient);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.category-tab:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.product-card {
    background: var(--background-off-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin: var(--spacing-sm) 0;
}

/* ===== MODERN ACTIVITY SECTION ===== */
.activity-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    margin-top: var(--spacing-xxl);
}

.activity-image, .activity-content {
    width: 100%;
}

.activity-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--background-off-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.activity-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.activity-feature h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

/* ===== MODERN PRICING SECTION ===== */
.pricing {
    background: var(--background-light);
    padding: var(--spacing-xxl) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xxl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--background-off-white);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xxl);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    text-align: center;
}

.pricing-card:hover {
     transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);

}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.pricing-header {
    margin-bottom: var(--spacing-xl);
}

.pricing-header h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: var(--spacing-lg);
}

.currency {
    font-size: 1.2rem;
    color: var(--text-medium);
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 500;
}

.pricing-features {
    list-style: disc inside;
    text-align: left;
    padding-left: 1.2em;
    margin: 1em 0 1.5em 0;
}

.pricing-features li {
    margin-bottom: 0.5em;
    color: var(--text-dark);
    font-size: 1.05em;
    display: list-item;
    padding-left: 0.2em;
}

.pricing-card .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: var(--spacing-md);
}

/* Pricing Scroll Hint - Desktop Hidden by Default */
.pricing-scroll-hint {
    display: none;
}

/* Testimonials Scroll Hint - Desktop Hidden by Default */
.testimonials-scroll-hint {
    display: none;
    
}

/* Pricing Toggle Switch Styles */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.toggle-switch {
    position: relative;
    display: inline-block;
}

.toggle-checkbox {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    cursor: pointer;
    user-select: none;
    font-size: 1.1rem;
    font-weight: 600;
}

.toggle-text {
    color: var(--text-medium);
    transition: all 0.3s ease;
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius-md);
}

.toggle-text.left {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
}

.toggle-checkbox:checked + .toggle-label .toggle-text.left {
    color: var(--text-medium);
    background: transparent;
}

.toggle-checkbox:checked + .toggle-label .toggle-text.right {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
}

.toggle-slider {
    position: relative;
    width: 60px;
    height: 30px;
    background: #e0e0e0;
    border-radius: var(--border-radius-full);
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-button {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 26px;
    height: 26px;
    background: var(--primary-gradient);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.toggle-checkbox:checked + .toggle-label .toggle-slider {
    background: var(--primary-light);
}

.toggle-checkbox:checked + .toggle-label .toggle-button {
    transform: translateX(30px);
    background: var(--primary-color);
}

.toggle-switch .discount-badge {
    position: absolute;
    top: -8px;
    right: -20px;
    background: var(--secondary-gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.toggle-checkbox:checked + .toggle-label + .discount-badge {
    opacity: 1;
    transform: scale(1);
}

/* Original Price Styles */
.original-price {
    font-size: 0.95em;
    color: #aaa;
    text-decoration: line-through;
    margin-left: 0.5em;
    align-items: center;
    opacity: 0.8;
    display: inline-flex;
}

.discount-badge-dynamic {
    background: var(--primary-gradient);
    color: #fff;
    font-size: 0.88em;
    font-weight: 600;
    border-radius: 10px;
    padding: 0.12em 0.6em;
    margin-left: 0.8em;
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.10);
    letter-spacing: 0.01em;
    position: relative;
    top: -1px;
    line-height: 1.7;
}

/* ===== MODERN PARTNERS SECTION ===== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xxl);
}

.partner-logo {
    background: var(--background-off-white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-logo:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

.partner-cta {
    text-align: center;
    margin-top: var(--spacing-xxl);
    padding: var(--spacing-xxl);
    background: var(--background-off-white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    margin-left: var(--spacing-sm);
    margin-right: var(--spacing-sm);
}

/* ===== MODERN DOWNLOAD SECTION ===== */
.download .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.download-content, .download-image {
    width: 100%;
}

.app-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.app-btn {
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.app-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.app-btn img {
    height: 60px;
    border-radius: var(--border-radius-md);
}

/* ===== MODERN COMMUNITY SECTION ===== */
.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
}

.stat {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--background-off-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 800;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.testimonial-text {
    background: var(--background-off-white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    margin-bottom: var(--spacing-lg);
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-author h4 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.testimonial-author p {
    color: var(--text-medium);
    margin: 0;
}

/* ===== MODERN CONTACT SECTION ===== */
.contact-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--spacing-xl);
    align-items: start;
}

/* Contact Form Styles */
.contact-form {
    background: var(--background-off-white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
    font-size: 1.5rem;
}

/* Contact Info Styles */
.contact-info {
    background: linear-gradient(135deg, var(--background-warm), #fff);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 160, 0, 0.2);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--background-off-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: var(--spacing-md);
    width: 30px;
    text-align: center;
    margin-top: 0.25rem;
}

.info-item div {
    flex: 1;
}

.info-item h4 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    font-size: 1rem;
    font-weight: 600;
}

.info-item p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.5;
}

.social-links {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 160, 0, 0.2);
}

.social-links h4 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: var(--spacing-md);
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.social-icons a:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-md);
}

.social-icons a i {
    font-size: 1.2rem;
}

/* ===== SIMPLIFIED FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--text-dark), #34495E);
    color: white;
    padding: var(--spacing-xxl) 0 var(--spacing-md);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23FFFFFF" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grain)"/></svg>');
    pointer-events: none;
}

/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xxl);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

/* Footer Brand Section */
.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.footer-logo img {
    height: 60px;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.footer-logo h3 {
    color: white;
    margin: 0;
    font-weight: 700;
    font-size: 1.3rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}


.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    font-size: 0.65rem;
}



/* Footer Links Section */
.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-xl);
}

.link-column h4 {
    color: white;
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.link-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-full);
}

.link-column ul {
    list-style: none;
    padding: 0;
}

.link-column ul li {
    margin-bottom: var(--spacing-sm);
}

.link-column a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.25rem 0;
    display: block;
}

.link-column a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
    text-decoration: none;
}

.link-column a[target="_blank"]::after {
    content: '↗';
    font-size: 0.8rem;
    opacity: 0.7;
    margin-left: 0.25rem;
}



/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.language-selector {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.language-selector i {
    color: var(--primary-light);
    font-size: 1rem;
}

.language-selector select {
    background: transparent;
    color: white;
    border: none;
    padding: 0.25rem;
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
}

.language-selector select option {
    background: var(--text-dark);
    color: white;
}


/* Base nav styles */
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  list-style: none;
}

/* Hamburger hidden by default (only show on mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 40vh;
    background-color: #fff;
    z-index: 999;
    gap: 2rem;
    padding: 2rem 1rem;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;       
    top: 1rem;                 
    right: 1rem;               
    z-index: 1001;            
    cursor: pointer;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
  }
}
/* This mobile style block has been replaced with enhanced mobile styles above */
@media (max-width: 768px) {
  .features-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--spacing-md); 
    padding: var(--spacing-sm); 
    margin: 0; 
    -webkit-overflow-scrolling: touch;
  }

  .feature-card {
    flex: 0 0 85%;
    min-width: 85%;
    scroll-snap-align: start;
    margin: 0;
    padding: var(--spacing-sm);
  }
    .feature-card h3 {
    margin: var(--spacing-sm) 0 4px;
    font-size: 1rem;
  }

  .feature-card p {
    font-size: 0.9rem; 
    margin-bottom: 0;
  }

  .features-grid::-webkit-scrollbar {
    display: none;
  }

  .features-grid {
    scrollbar-width: none;
  }
}
@media (max-width: 768px) {
  header {
    margin-bottom: 24px; 
  }

  .hero {
    margin-top: 80px; 
  }
  .hero-content h1{
    font-weight: bold;
  }

  .hero .container {
    padding-top: 16px; 
  }
}


@media (max-width: 768px) {
  .recipe-showcase {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--spacing-md);
    padding-bottom: var(--spacing-lg);
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

    .recipe-category {
    flex: 0 0 240px !important;
    min-width: 220px !important;
    scroll-snap-align: start;
    background: var(--background-off-white) !important;
    display: flex !important;
    flex-direction: column !important;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  
  .recipe-category img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
  }
  
  .recipe-category h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0.4rem;
    text-align: center;
    padding: 0;
  }
  
  .recipe-category .cuisine-languages {
    font-size: 0.75rem;
    color: var(--text-medium);
    text-align: center;
    margin: 0 0.4rem 0.2rem 0.4rem;
    font-style: italic;
    padding: 0;
  }
  
  .recipe-category p {
    font-size: 0.8rem;
    color: var(--text-medium);
    text-align: center;
    line-height: 1.3;
    margin: 0 0.4rem 0.4rem 0.4rem;
    padding: 0;
  }
  
  .recipe-showcase::-webkit-scrollbar {
    display: none;
  }

  .recipe-showcase {
    scrollbar-width: none;
  }
  
  /* Hide scroll hint on mobile since we have horizontal scroll */
  .scroll-hint {
    display: none;
  }
  
  /* Hide View All button on mobile */
  .view-all-container {
    display: none;
  }
  
  /* Show all recipes on mobile (remove hidden-recipe class) */
  .recipe-category.hidden-recipe {
    display: flex !important;
  }
  
  /* Add visual feedback for mobile horizontal scroll */
  .recipe-category {
    transition: transform 0.2s ease;
  }
  
  .recipe-category:active {
    transform: scale(0.98);
  }
}

@media (max-width: 768px) {
  .activity-showcase {
    display: block;
  }

  .activity-content {
    display: flex;
    overflow-x: auto;
    gap: var(--spacing-lg);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--spacing-lg);
  }

  .activity-feature {
    flex: 0 0 80%;
    min-width: 80%;
    scroll-snap-align: start;
    padding: var(--spacing-sm); 
  }

  .activity-content::-webkit-scrollbar {
    display: none;
  }

  .activity-content {
    scrollbar-width: none;
  }
}


@media (max-width: 768px) {
  .testimonials {
    grid-template-columns: 1fr; 
    gap: var(--spacing-lg);
  }

  .testimonial-text {
    font-size: 0.65rem;
    padding: 1rem 0.5rem;
  }

  .testimonial-text::before {
    font-size: 2rem; 
    top: -5px;
    left: 10px;
  }

  .testimonial-author {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-sm);
  }

  .testimonial-author img {
    width: 50px;
    height: 50px;
  }

  .testimonial-author h4 {
    font-size: 1rem;
    margin: 0;
  }

  .testimonial-author p {
    font-size: 0.9rem;
    color: var(--text-medium);
  }
}


/* ===== ENHANCED MOBILE RESPONSIVE STYLES ===== */

@media (max-width: 1024px) {
    .hero .container,
    .download .container,
    .activity-showcase {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
  
    .hero-image img {
        max-width: 100%;
    }
}

/* Tablet and larger mobile devices */
@media (min-width: 769px) and (max-width: 1024px) {
    .hamburger {
        display: none;
    }
    
    .nav-links {
        display: flex;
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        gap: var(--spacing-md);
        padding: 0;
        z-index: auto;
    }
    
    .nav-links li {
        width: auto;
        margin: 0;
    }
    
    .nav-links a {
        display: block;
        padding: 0.5rem 1rem;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-dark);
        background: transparent;
        border-radius: var(--border-radius-full);
        border: none;
        max-width: none;
        margin: 0;
        position: relative;
    }
    
    .nav-links a:hover {
        background: rgba(255, 107, 53, 0.1);
        color: var(--primary-color);
        transform: none;
        box-shadow: none;
    }
    
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: var(--primary-gradient);
        transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: var(--border-radius-full);
    }
    
    .nav-links a:hover::after {
        width: 80%;
    }
    
    /* Tablet recipe section adjustments */
    .recipe-category {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .scroll-hint span {
        font-size: 0.85rem;
        padding: 0.4rem 1.2rem;
    }
}

/* Enhanced Mobile Styles */
@media (max-width: 768px) {
    /* Mobile-first approach improvements with enhanced side padding */
    :root {
        --spacing-xs: 0.5rem;
        --spacing-sm: 0.75rem;
        --spacing-md: 1rem;
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
        --spacing-xxl: 2.5rem;
        --container-padding: 1.5rem;        /* Base container padding */
        --mobile-side-padding: 1.5rem;      /* Enhanced side padding for mobile */
    }

    /* Enhanced Typography for Mobile */
    html {
        font-size: 14px;
    }

    body {
        font-size: 1rem;
        line-height: 1.6;
        margin-left: 0;
        margin-right: 0;
        overflow-x: hidden;
    }

    .container {
        padding: 0 var(--container-padding);
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Enhanced mobile spacing for all sections */
    section {
        padding-left: var(--mobile-side-padding);
        padding-right: var(--mobile-side-padding);
    }
    
    section .container {
        padding-left: 0;
        padding-right: 0;
    }

    /* Enhanced Header for Mobile */
    header {
        padding: var(--spacing-sm) 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 var(--mobile-side-padding);
        position: relative;
    }

    /* Enhanced Header Brand Section for Mobile */
    .header-brand {
        display: flex;
        align-items: center;
        gap: var(--spacing-sm);
        flex: 1;
        min-width: 0; /* Prevents flex item from growing beyond container */
    }

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

    .logo img {
        width: 45px;
        height: 45px;
        border-radius: var(--border-radius-sm);
        flex-shrink: 0;
        object-fit: cover;
        object-position: center;
    }

    /* Brand text container for Mobile */
    .brand-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-width: 0; /* Allows text to wrap if needed */
    }

    .heading {
        font-size: 1.1rem;
        font-weight: 700;
        margin: 0;
        color: var(--text-dark);
        display: block;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 180px; /* Prevent text from taking too much space */
    }

    .para {
        font-size: 0.75rem;
        margin: 0;
        color: var(--text-medium);
        display: block;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 180px; /* Prevent text from taking too much space */
    }

    /* Enhanced Mobile Navigation */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
        padding: 2rem;
        animation: fadeIn 0.3s ease;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        margin: 0;
        width: 100%;
        text-align: center;
        animation: slideInUp 0.3s ease forwards;
        opacity: 0;
        transform: translateY(20px);
    }

    .nav-links.show li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.show li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links.show li:nth-child(2) { animation-delay: 0.2s; }
    .nav-links.show li:nth-child(3) { animation-delay: 0.3s; }
    .nav-links.show li:nth-child(4) { animation-delay: 0.4s; }
    .nav-links.show li:nth-child(5) { animation-delay: 0.5s; }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--text-dark);
        background: var(--background-light);
        border-radius: var(--border-radius-lg);
        margin-bottom: var(--spacing-sm);
        transition: all 0.3s ease;
        border: 2px solid transparent;
        width: 100%;
        max-width: 300px;
        position: relative;
    }

    .nav-links a:hover,
    .nav-links a:focus {
        background: var(--primary-color);
        color: white;
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
        border-color: var(--primary-color);
    }

    .nav-links a::after {
        display: none;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Enhanced Hamburger Menu */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        cursor: pointer;
        z-index: 1001;
        position: relative;
        flex-shrink: 0;
        margin-left: var(--spacing-md);
        padding: var(--spacing-xs);
        border-radius: var(--border-radius-sm);
        transition: all 0.3s ease;
    }

    .hamburger:hover,
    .hamburger:focus {
        background: rgba(255, 107, 53, 0.1);
        transform: scale(1.1);
        outline: none;
    }

    .hamburger:focus-visible {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }

    .hamburger span {
        width: 100%;
        height: 3px;
        background: var(--text-dark);
        border-radius: var(--border-radius-sm);
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
        background: var(--primary-color);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
        background: var(--primary-color);
    }

    /* Enhanced Hero Section for Mobile */
    .hero {
        padding-top: calc(70px + var(--spacing-lg));
        padding-bottom: var(--spacing-xl);
        text-align: center;
    }

    .hero .container {
        display: block;
        gap: var(--spacing-lg);
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: var(--spacing-xl);
        padding: 0 var(--spacing-sm);
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: var(--spacing-lg);
        font-weight: 800;
    }

    .hero-content p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: var(--spacing-xl);
        color: var(--text-medium);
    }
    
    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: center;
        margin-top: var(--spacing-xl);
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: var(--border-radius-lg);
    }

    .hero-image {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: var(--spacing-lg);
    }

    .hero-image img {
        max-width: 90%;
        height: auto;
        transform: scale(1);
    }

    /* Enhanced Sections for Mobile */
    section {
        padding: var(--spacing-xl) 0;
    }

    .section-header {
        margin-bottom: var(--spacing-xl);
        text-align: center;
        padding: 0 var(--spacing-sm);
    }

    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: var(--spacing-md);
    }

    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
        margin: 0;
        color: var(--text-medium);
    }

    /* Enhanced Features Section for Mobile */
    .features-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: var(--spacing-md);
        padding: var(--spacing-sm) 0;
        margin: 0 calc(-1 * var(--mobile-side-padding));
        -webkit-overflow-scrolling: touch;
    }

    .features-grid::before {
        content: '';
        flex: 0 0 var(--mobile-side-padding);
    }

    .features-grid::after {
        content: '';
        flex: 0 0 var(--mobile-side-padding);
    }

    .feature-card {
        flex: 0 0 280px;
        min-width: 280px;
        scroll-snap-align: start;
        margin: 0;
        padding: var(--spacing-lg);
        background: var(--background-off-white);
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-md);
        text-align: center;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto var(--spacing-md);
        border-radius: var(--border-radius-md);
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: var(--spacing-sm);
        color: var(--text-dark);
    }

    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.5;
        color: var(--text-medium);
        margin: 0;
    }

    .features-grid::-webkit-scrollbar {
        display: none;
    }

    /* Enhanced Recipe Section for Mobile */
    /* Hide scroll hint and desktop indicators on mobile */
    .scroll-hint {
        display: none;
    }

    .recipes .container::before,
    .recipes .container::after {
        display: none;
    }

    .recipe-showcase {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: var(--spacing-md);
        padding: var(--spacing-sm) 0;
        margin: 0 calc(-1 * var(--mobile-side-padding));
        -webkit-overflow-scrolling: touch;
    }

    .recipe-showcase::before {
        content: '';
        flex: 0 0 var(--mobile-side-padding);
    }

    .recipe-showcase::after {
        content: '';
        flex: 0 0 var(--mobile-side-padding);
    }

    .recipe-category {
        flex: 0 0 240px;
        min-width: 240px;
        scroll-snap-align: start;
        border-radius: var(--border-radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        background: var(--background-off-white);
        display: flex;
        flex-direction: column;
    }

    .recipe-category img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        display: block;
    }

    .recipe-category h3 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-dark);
        margin: 0.5rem;
        text-align: center;
        padding: 0;
    }

    .recipe-category .cuisine-languages {
        font-size: 0.8rem;
        color: var(--text-medium);
        text-align: center;
        margin: 0 0.5rem 0.3rem 0.5rem;
        font-style: italic;
        padding: 0;
    }

    .recipe-category p {
        font-size: 0.85rem;
        color: var(--text-medium);
        text-align: center;
        line-height: 1.3;
        margin: 0 0.5rem 0.5rem 0.5rem;
        padding: 0;
    }
    
    .recipe-app-promo {
        display: block;
        margin-top: var(--spacing-xl);
        text-align: center;
        padding: var(--spacing-lg);
        border-radius: var(--border-radius-lg);
        background: var(--background-off-white);
        margin-left: var(--spacing-sm);
        margin-right: var(--spacing-sm);
    }

    .promo-content {
        margin-bottom: var(--spacing-lg);
    }

    .promo-content h3 {
        font-size: 1.4rem;
        margin-bottom: var(--spacing-md);
    }

    .promo-image img {
        max-width: 100%;
        height: auto;
        border-radius: var(--border-radius-md);
    }

    /* Enhanced Activity Section for Mobile */
    .activity-showcase {
        display: block;
    }

    .activity-image {
        text-align: center;
        margin-bottom: var(--spacing-xl);
    }

    .activity-image img {
        max-width: 100%;
        height: auto;
        border-radius: var(--border-radius-lg);
    }

    .activity-content {
        display: flex;
        overflow-x: auto;
        gap: var(--spacing-md);
        scroll-snap-type: x mandatory;
        padding: var(--spacing-sm) 0;
        margin: 0 calc(-1 * var(--mobile-side-padding));
        -webkit-overflow-scrolling: touch;
    }

    .activity-content::before {
        content: '';
        flex: 0 0 var(--mobile-side-padding);
    }

    .activity-content::after {
        content: '';
        flex: 0 0 var(--mobile-side-padding);
    }

    .activity-feature {
        flex: 0 0 280px;
        min-width: 280px;
        scroll-snap-align: start;
        padding: var(--spacing-lg);
        border-radius: var(--border-radius-lg);
        background: var(--background-off-white);
        box-shadow: var(--shadow-md);
        display: flex;
        align-items: flex-start;
        gap: var(--spacing-md);
    }

    .activity-feature i {
        font-size: 1.5rem;
        color: var(--primary-color);
        flex-shrink: 0;
        margin-top: 0.25rem;
    }

    .activity-feature h3 {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-sm);
        color: var(--text-dark);
    }

    .activity-feature p {
        font-size: 0.9rem;
        color: var(--text-medium);
        margin: 0;
    }

    /* Enhanced Download Section for Mobile */
    .download .container {
        display: block;
        text-align: center;
    }

    .download-content {
        margin-bottom: var(--spacing-xl);
        padding: 0 var(--spacing-sm);
    }

    .download-content h2 {
        font-size: 1.8rem;
        margin-bottom: var(--spacing-md);
    }

    .download-content p {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-xl);
    }

    .app-buttons {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: center;
        margin-top: var(--spacing-lg);
    }

    .app-btn {
        width: 100%;
        max-width: 200px;
        display: block;
        border-radius: var(--border-radius-md);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: all 0.3s ease;
    }

    .app-btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .app-btn img {
        width: 100%;
        height: auto;
        border-radius: var(--border-radius-md);
    }

    .download-image {
        margin-top: var(--spacing-lg);
    }

    .download-image img {
        max-width: 100%;
        height: auto;
        border-radius: var(--border-radius-lg);
    }

    /* Enhanced Community Section for Mobile */
    .community-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-xl);
    }

    .stat {
        padding: var(--spacing-lg);
        text-align: center;
        background: var(--background-off-white);
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-md);
    }

    .stat h3 {
        font-size: 1.8rem;
        color: var(--primary-color);
        margin-bottom: var(--spacing-sm);
        font-weight: 800;
    }

    .stat p {
        font-size: 0.9rem;
        color: var(--text-medium);
        margin: 0;
    }

    .testimonials {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .testimonial {
        text-align: center;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        padding: 1.1rem 1.2rem;
        margin-bottom: 1rem;
        background: var(--background-off-white);
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-md);
        position: relative;
    }

    .testimonial-text::before {
        font-size: 3rem;
        top: -5px;
        left: 50%;
        transform: translateX(-50%);
        color: var(--primary-color);
    }

    .testimonial-author {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }

    .testimonial-author img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid var(--primary-color);
    }

    .testimonial-author h4 {
        font-size: 1.1rem;
        margin: 0;
        color: var(--text-dark);
    }

    .testimonial-author p {
        font-size: 0.9rem;
        color: var(--text-medium);
        margin: 0;
    }

    /* Enhanced Contact Section for Mobile */
    .contact-content {
        display: block;
    }

    .contact-form {
        margin-bottom: var(--spacing-xl);
        padding: var(--spacing-lg);
        background: var(--background-off-white);
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-md);
        margin-left: var(--spacing-sm);
        margin-right: var(--spacing-sm);
    }

    .contact-info {
        padding: var(--spacing-lg);
        background: var(--background-warm);
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-md);
        margin-left: var(--spacing-sm);
        margin-right: var(--spacing-sm);
    }

    .info-item {
        display: flex;
        align-items: flex-start;
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-lg);
        padding: var(--spacing-md);
        background: var(--background-off-white);
        border-radius: var(--border-radius-md);
        box-shadow: var(--shadow-sm);
    }

    .info-item i {
        font-size: 1.2rem;
        color: var(--primary-color);
        width: 24px;
        text-align: center;
        flex-shrink: 0;
        margin-top: 0.2rem;
    }

    .info-item h4 {
        font-size: 1rem;
        margin-bottom: var(--spacing-xs);
        color: var(--text-dark);
    }

    .info-item p {
        font-size: 0.9rem;
        color: var(--text-medium);
        margin: 0;
        line-height: 1.4;
    }

    .social-links {
        margin-top: var(--spacing-lg);
        padding-top: var(--spacing-lg);
        border-top: 1px solid rgba(255, 107, 53, 0.2);
        text-align: center;
    }

    .social-links h4 {
        margin-bottom: var(--spacing-md);
        color: var(--text-dark);
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: var(--spacing-md);
    }

    .social-icons a {
        width: 45px;
        height: 45px;
        background: var(--primary-gradient);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-sm);
    }

    .social-icons a:hover {
        transform: translateY(-2px) scale(1.1);
        box-shadow: var(--shadow-md);
    }

    .social-icons a i {
        font-size: 1.2rem;
    }

    /* Simplified Footer for Mobile */
    .footer {
        padding: var(--spacing-xl) 0 var(--spacing-md);
    }
    
    .footer-content {
        display: block;
        margin-bottom: var(--spacing-xl);
    }

    /* Footer Brand Section - Mobile */
    .footer-brand {
        text-align: center;
        margin-bottom: var(--spacing-xl);
        padding: 0 var(--spacing-sm);
    }
    
    .footer-logo {
        justify-content: center;
        flex-direction: column;
        text-align: center;
        margin-bottom: var(--spacing-lg);
    }

    .footer-logo img {
        height: 50px;
        margin-bottom: var(--spacing-sm);
    }

    .footer-logo h3 {
        font-size: 1.2rem;
        margin-bottom: var(--spacing-sm);
    }

    .footer-brand > p {
        text-align: center;
        max-width: 280px;
        margin: 0 auto var(--spacing-lg);
        font-size: 0.9rem;
    }



    /* Pricing Section - Mobile */
    .pricing-grid {
        display: flex;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-sm);
        margin-left: calc(-1 * var(--spacing-sm));
        margin-right: calc(-1 * var(--spacing-sm));
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        padding-bottom: var(--spacing-sm);
        
        /* Custom scrollbar styling for mobile */
        scrollbar-width: thin;
        scrollbar-color: var(--primary-color) var(--background-light);
    }

    .pricing-grid::-webkit-scrollbar {
        height: 8px;
    }

    .pricing-grid::-webkit-scrollbar-track {
        background: var(--background-light);
        border-radius: var(--border-radius-full);
    }

    .pricing-grid::-webkit-scrollbar-thumb {
        background: var(--primary-gradient);
        border-radius: var(--border-radius-full);
        transition: all 0.3s ease;
    }

    .pricing-grid::-webkit-scrollbar-thumb:hover {
        background: var(--primary-color);
    }

    .pricing-card {
        padding: var(--spacing-lg);
        flex: 0 0 280px;
        min-width: 280px;
        scroll-snap-align: center;
    }

    /* Show scroll hint on mobile */
    .pricing-scroll-hint {
        display: block;
        text-align: center;
        margin-top: var(--spacing-md);
        margin-bottom: var(--spacing-sm);
        opacity: 0.8;
        animation: fadeInOut 2s ease-in-out infinite;
    }

    .pricing-scroll-hint span {
        font-size: 0.8rem;
        color: var(--text-medium);
        font-weight: 500;
        padding: 0.4rem 0.8rem;
        border-radius: var(--border-radius-full);
        background: rgba(255, 107, 53, 0.1);
        border: 1px solid rgba(255, 107, 53, 0.2);
    }

    @keyframes fadeInOut {
        0%, 100% { opacity: 0.6; }
        50% { opacity: 1; }
    }

    /* Testimonials Horizontal Scroll - Mobile Only */
    .testimonials {
        display: flex;
        gap: var(--spacing-lg);
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        padding-bottom: var(--spacing-sm);
        
        /* Custom scrollbar styling for mobile */
        scrollbar-width: thin;
        scrollbar-color: var(--primary-color) var(--background-light);
    }

    .testimonials::-webkit-scrollbar {
        height: 8px;
    }

    .testimonials::-webkit-scrollbar-track {
        background: var(--background-light);
        border-radius: var(--border-radius-full);
    }

    .testimonials::-webkit-scrollbar-thumb {
        background: var(--primary-gradient);
        border-radius: var(--border-radius-full);
        transition: all 0.3s ease;
    }

    .testimonials::-webkit-scrollbar-thumb:hover {
        background: var(--primary-color);
    }

    .testimonial {
        flex: 0 0 300px;
        min-width: 300px;
        scroll-snap-align: center;
    }

    /* Testimonials Scroll Hint - Mobile Only */
    .testimonials-scroll-hint {
        display: block;
        text-align: center;
        margin-bottom: var(--spacing-md);
        opacity: 0.8;
        animation: fadeInOut 2s ease-in-out infinite;
    }

    .testimonials-scroll-hint span {
        font-size: 0.8rem;
        color: var(--text-medium);
        font-weight: 500;
        padding: 0.4rem 0.8rem;
        border-radius: var(--border-radius-full);
        background: rgba(255, 107, 53, 0.1);
        border: 1px solid rgba(255, 107, 53, 0.2);
    }

    .pricing-card.featured {
        transform: none;
        order: -1;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .pricing-header h3 {
        font-size: 1.3rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .pricing-features li {
        font-size: 0.95rem;
    }

    .pricing-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }

    /* Pricing Toggle Switch - Mobile */
    .pricing-toggle {
        margin-top: var(--spacing-md);
        margin-bottom: var(--spacing-lg);
    }

    .toggle-label {
        font-size: 1rem;
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }

    .toggle-text {
        padding: 0.4rem 0.6rem;
        font-size: 0.95rem;
    }

    .toggle-slider {
        width: 50px;
        height: 26px;
        order: 2;
        margin: var(--spacing-xs) 0;
    }

    .toggle-button {
        width: 22px;
        height: 22px;
        top: 2px;
        left: 2px;
    }

    .toggle-checkbox:checked + .toggle-label .toggle-button {
        transform: translateX(24px);
    }

    .toggle-switch .discount-badge {
        position: static;
        transform: none;
        margin-top: var(--spacing-xs);
        align-self: center;
        opacity: 1;
        order: 3;
    }

    /* Footer Links Section - Mobile */
    .footer-links {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: var(--spacing-lg);
        margin-bottom: var(--spacing-xl);
        padding: 0 var(--spacing-sm);
    }

    .link-column {
        text-align: center;
    }

    .link-column h4 {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
    }

    .link-column h4::after {
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
    }

    .link-column ul li {
        margin-bottom: var(--spacing-sm);
    }

    .link-column a {
        font-size: 0.9rem;
        text-align: center;
    }



    /* Footer Bottom - Mobile */
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
        padding-top: var(--spacing-lg);
    }

    .footer-bottom p {
        font-size: 0.85rem;
        margin-bottom: var(--spacing-sm);
    }

    .footer-bottom-right {
        justify-content: center;
        align-items: center;
        gap: var(--spacing-md);
    }

    .language-selector {
        padding: 0.5rem 0.75rem;
    }

    .language-selector i {
        font-size: 0.9rem;
    }

    .language-selector select {
        font-size: 0.85rem;
    }

    /* Touch-friendly improvements */
    .btn, .app-btn, .social-icons a, .feature-card, .recipe-category, .activity-feature, .testimonial-text, .info-item {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    /* Form enhancements for mobile */
    .form-group {
        margin-bottom: var(--spacing-lg);
    }

    .form-group label {
        display: block;
        margin-bottom: var(--spacing-sm);
        font-weight: 600;
        color: var(--text-dark);
        font-size: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 1rem;
        border: 2px solid #E8E8E8;
        border-radius: var(--border-radius-md);
        font-size: 1rem;
        background: white;
        transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
        transform: translateY(-1px);
    }

    .phone-input-group {
        display: flex;
        gap: var(--spacing-sm);
    }

    .country-code-select {
        flex: 0 0 100px;
        min-width: 100px;
    }

    .phone-input-group input[type="tel"] {
        flex: 1;
    }

    button[type="submit"] {
        width: 100%;
        padding: 1.2rem;
        background: var(--primary-gradient);
        color: white;
        border: none;
        border-radius: var(--border-radius-md);
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--spacing-sm);
        box-shadow: var(--shadow-md);
    }

    button[type="submit"]:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }
}

/* Enhanced Mobile Styles for smaller screens */
@media (max-width: 480px) {
    :root {
        --mobile-side-padding: 1.25rem;
        --container-padding: 1.25rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .feature-card,
    .recipe-category,
    .activity-feature {
        min-width:50px;
    }

    .stat h3 {
        font-size: 1.6rem;
    }

    .app-btn {
        max-width: 180px;
    }

    .container {
        padding: 0 var(--container-padding);
    }

    .hero-cta .btn {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 1rem;
        padding: 0.9rem;
    }

    button[type="submit"] {
        padding: 1rem;
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        padding: var(--spacing-md);
    }

    .testimonial-text::before {
        font-size: 2.5rem;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
    }
    
    .stat {
        padding: var(--spacing-lg);
    }
    
    section {
        padding: var(--spacing-lg) 0;
        padding-left: var(--mobile-side-padding);
        padding-right: var(--mobile-side-padding);
    }
    
    .contact-form,
    .contact-info {
        padding: var(--spacing-lg);
    }
}

/* Very small screens (below 360px) */
@media (max-width: 360px) {
    :root {
        --mobile-side-padding: 1rem;
        --container-padding: 1rem;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .feature-card,
    .recipe-category,
    .activity-feature {
        flex: 0 0 240px;
        min-width: 240px;
    }

    .container {
        padding: 0 var(--container-padding);
    }

    .hero-cta .btn {
        font-size: 0.95rem;
        padding: 0.8rem 1.2rem;
    }

    section {
        padding-left: var(--mobile-side-padding);
        padding-right: var(--mobile-side-padding);
    }

    /* Extra small screen header adjustments */
    .heading {
        font-size: 1rem;
        max-width: 150px;
    }

    .para {
        font-size: 0.7rem;
        max-width: 150px;
    }

    .logo img {
        width: 40px;
        height: 40px;
    }

    .hamburger {
        width: 28px;
        height: 22px;
        margin-left: var(--spacing-sm);
    }
}

/* ===== MODERN ENHANCEMENTS ===== */

/* Glassmorphism effects */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Modern card hover effects */
.feature-card, .product-card, .testimonial {
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover::before, .product-card:hover::before, .testimonial:hover::before {
    left: 100%;
}

/* Modern button enhancements */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
    z-index: -1;
}

.btn:hover::after {
    transform: translateX(100%);
}

/* Modern form enhancements */
.form-group input,
.form-group select,
.form-group textarea {
    position: relative;
    z-index: 1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

/* Modern navigation enhancements */
.nav-links a {
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    /* position: absolute; */
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-links a:hover::before {
    left: 0;
    opacity: 0.1;
}

/* Modern hero section enhancements */
.hero {
    position: relative;
    overflow: hidden;
}
    @media (max-width:768px){
       .hero{
        top: -85px;
       }
}
        

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(46, 204, 113, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Modern feature icon enhancements */
.feature-icon {
    position: relative;
    overflow: hidden;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: rotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Modern testimonial enhancements */
.testimonial-text {
    position: relative;
    overflow: hidden;
}

.testimonial-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.testimonial:hover .testimonial-text::after {
    transform: scaleX(1);
}

/* Modern contact form enhancements */
.contact-form {
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Modern footer enhancements */
footer {
    position: relative;
    overflow: hidden;
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Modern scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: var(--border-radius-full);
}

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

/* Modern selection */
::selection {
    background: var(--primary-color);
    color: white;
}

/* Modern focus styles */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Modern loading states */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

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

.cuisine-languages {
  font-size: 0.95em;
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: 0.2em;
  margin-top: -0.3em;
  letter-spacing: 0.01em;
  opacity: 0.85;
  text-align: center;
  width: 100%;
  display: block;
}

.discount-badge-block {
  display: block !important;
  text-align: center;
  margin: 0.5em auto 0 auto;
  width: 100%;
}

.pricing-ribbon {
  position: absolute;
  top: 0.7em;
  right: 0.7em;
  width: 2.5em;
  height: 0.7em;
  background: var(--primary-gradient);
  border-radius: 3px;
  transform: rotate(28deg);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.10);
  z-index: 10;
  pointer-events: none;
}
.pricing-card {
  position: relative;
  overflow: visible;
}



    

