/* ================================================
   EatAtHome - Enhanced Stylesheet
   Mobile-First, Multilingual Support
   ================================================ */

/* CSS Variables - Light Mode (Default) */
:root {
    --primary: #e67e22;
    --primary-dark: #d35400;
    --primary-light: #f39c12;
    --secondary: #fef9f3;
    --background: #ffffff;
    --foreground: #1a1a1a;
    --muted: #6b7280;
    --card-bg: #ffffff;
    --card-border: rgba(0, 0, 0, 0.08);
    --footer-bg: #1a1a1a;
    --footer-text: #ffffff;
    --hero-gradient-start: #ffecd2;
    --hero-gradient-end: #fcb69f;
    --border-radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    
    /* Touch-friendly sizes */
    --touch-target: 44px;
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
}

/* Dark Mode Variables */
html.dark {
    --secondary: #1e1e1e;
    --background: #121212;
    --foreground: #f5f5f5;
    --muted: #9ca3af;
    --card-bg: #1e1e1e;
    --card-border: rgba(255, 255, 255, 0.1);
    --footer-bg: #0a0a0a;
    --footer-text: #f5f5f5;
    --hero-gradient-start: #2d1f0f;
    --hero-gradient-end: #3d1f1a;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    overflow-x: hidden;
}

/* RTL Support for Arabic */
html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] .nav-links,
html[dir="rtl"] .nav-actions,
html[dir="rtl"] .language-toggle,
html[dir="rtl"] .footer-links,
html[dir="rtl"] .payment-logos {
    flex-direction: row-reverse;
}

html[dir="rtl"] .hero-content {
    direction: rtl;
}

html[dir="rtl"] .feature-row.reverse .feature-content {
    order: 1;
}

html[dir="rtl"] .feature-row.reverse .feature-image {
    order: 2;
}

html[dir="rtl"] .kitchen-badge {
    left: auto;
    right: -20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ================================================
   Header & Navigation
   ================================================ */
.header {
    background: var(--background);
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo img {
    height: 36px;
}

.nav-links {
    display: none;
    gap: var(--spacing-lg);
}

.nav-links a {
    color: var(--foreground);
    font-weight: 500;
    font-size: 15px;
    padding: var(--spacing-xs) 0;
    position: relative;
    min-height: var(--touch-target);
    display: flex;
    align-items: center;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary);
}

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

/* Theme Toggle Button */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--touch-target);
    height: var(--touch-target);
    border: 2px solid var(--primary);
    background: var(--background);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    color: var(--foreground);
}

.theme-toggle:hover {
    background: var(--secondary);
    border-color: var(--primary-dark);
    transform: rotate(15deg);
}

.theme-toggle .sun-icon {
    display: block;
}

.theme-toggle .moon-icon {
    display: none;
}

html.dark .theme-toggle .sun-icon {
    display: none;
}

html.dark .theme-toggle .moon-icon {
    display: block;
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
    z-index: 1100;
}

.language-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 2px solid var(--primary);
    background: var(--background);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--foreground);
    cursor: pointer;
    transition: var(--transition);
    min-height: var(--touch-target);
}

.language-dropdown-btn:hover {
    background: var(--secondary);
    border-color: var(--primary-dark);
}

.language-dropdown-btn .current-lang-flag {
    font-size: 18px;
}

.language-dropdown-btn .current-lang-name {
    display: none;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.language-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: var(--background);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1200;
}

.language-dropdown.open .language-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--foreground);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.lang-option:hover {
    background: var(--secondary);
}

.lang-option.active {
    background: var(--primary);
    color: white;
}

.lang-option .lang-flag {
    font-size: 18px;
}

html[dir="rtl"] .language-dropdown-menu {
    right: auto;
    left: 0;
}

html[dir="rtl"] .lang-option {
    text-align: right;
}

.btn-become-host {
    display: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    min-height: var(--touch-target);
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-become-host:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    min-width: var(--touch-target);
    min-height: var(--touch-target);
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: var(--foreground);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    padding: 80px var(--spacing-md) var(--spacing-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.mobile-nav-links a {
    display: block;
    padding: var(--spacing-md);
    font-size: 18px;
    font-weight: 500;
    color: var(--foreground);
    border-radius: var(--border-radius);
    transition: var(--transition);
    min-height: var(--touch-target);
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
    background: var(--secondary);
    color: var(--primary);
}

.mobile-language-toggle {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    padding: var(--spacing-md) 0;
}

.mobile-language-toggle .lang-btn {
    width: 100%;
    justify-content: center;
    padding: var(--spacing-md);
    border: 1px solid #ddd;
}

.btn-become-host-mobile {
    display: block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white !important;
    text-align: center;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 30px;
    font-weight: 600;
    margin-top: var(--spacing-md);
}

/* ================================================
   Hero Section - INCREASED BANNER SIZE
   ================================================ */
.hero {
    background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%);
    padding: var(--spacing-xl) 0;
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-text {
    text-align: center;
    order: 2;
}

.hero-text h1 {
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--foreground);
    margin-bottom: var(--spacing-lg);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    min-height: var(--touch-target);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover,
.btn-primary:active {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.btn-our-host {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(230, 126, 34, 0.6);
    }
}

.hero-image {
    position: relative;
    order: 1;
    max-width: 650px;
    margin: 0 auto;
    width: 100%;
}

.image-frame {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 28px;
    border: 5px solid var(--primary);
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--shadow-lg);
}

.hero-img {
    position: absolute;
    top: 28px;
    left: 28px;
    right: 28px;
    bottom: 28px;
    width: calc(100% - 56px);
    height: calc(100% - 56px);
    object-fit: cover;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-img.active {
    opacity: 1;
}

.kitchen-badge {
    position: absolute;
    bottom: -15px;
    left: -10px;
    background: white;
    border-radius: 12px;
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    box-shadow: var(--shadow);
    animation: float 3s ease-in-out infinite;
}

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

.badge-icon {
    font-size: 24px;
}

.badge-text h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--foreground);
}

.badge-text p {
    font-size: 12px;
    color: var(--muted);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-lg);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    min-width: var(--touch-target);
    min-height: var(--touch-target);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.dot.active::before {
    width: 28px;
    border-radius: 6px;
    background: var(--primary);
}

/* ================================================
   Hosts Section
   ================================================ */
.hosts-section {
    background: var(--background);
    padding: var(--spacing-xl) 0;
}

.hosts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.host-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.host-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.host-info {
    padding: var(--spacing-md);
}

.host-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: var(--spacing-xs);
}

.host-info p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: var(--spacing-xs);
}

.host-rating {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
}

.hosts-cta {
    text-align: center;
}

/* ================================================
   How It Works Section
   ================================================ */
.how-it-works {
    background: var(--secondary);
    padding: var(--spacing-xl) 0;
}

.section-title {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    padding: 0 var(--spacing-md);
}

.tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.tab-btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 2px solid var(--primary);
    border-radius: 30px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    background: white;
    color: var(--primary);
    min-height: var(--touch-target);
    min-width: 140px;
}

.tab-btn.active {
    background: var(--primary);
    color: white;
}

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

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

.steps-grid.hidden {
    display: none;
}

.step-card {
    background: white;
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.step-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto var(--spacing-md);
}

.step-number {
    display: block;
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: var(--spacing-xs);
}

.step-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: var(--spacing-xs);
}

.step-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ================================================
   Ordering Journey Section
   ================================================ */
.ordering-journey {
    background: var(--background);
    padding: var(--spacing-xl) 0;
}

.gif-container {
    background: var(--secondary);
    border-radius: var(--border-radius);
    padding: var(--spacing-xl);
    display: flex;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
}

.gif-container img {
    width: 100%;
    max-width: 350px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* ================================================
   Statistics Section
   ================================================ */
.statistics {
    background: var(--secondary);
    padding: var(--spacing-xl) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.stat-item p {
    color: var(--muted);
    font-size: clamp(0.8rem, 2vw, 1.1rem);
    line-height: 1.4;
}

/* ================================================
   Features Section
   ================================================ */
.features {
    background: var(--background);
    padding: var(--spacing-xl) 0;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-content h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.feature-content p {
    color: var(--muted);
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.download-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    min-height: var(--touch-target);
    text-align: center;
}

.btn-download:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.feature-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* ================================================
   Download Section
   ================================================ */
.download-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.app-buttons a {
    min-height: var(--touch-target);
    display: flex;
    align-items: center;
}

.app-buttons img {
    height: 44px;
    width: auto;
}

/* Payment Methods */
.payment-methods {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.payment-title {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.payment-logos {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    align-items: center;
}

.payment-cards-image {
    max-width: 400px;
    height: auto;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .payment-cards-image {
        max-width: 500px;
    }
}

@media (min-width: 1024px) {
    .payment-cards-image {
        max-width: 600px;
    }
}

/* ================================================
   Footer
   ================================================ */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--footer-text);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.footer-logo {
    height: 44px;
    filter: brightness(0) invert(1);
    margin: 0 auto var(--spacing-md);
}

.footer-about h3 {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.footer-about p {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.7;
}

.footer-contact h3 {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.contact-item {
    margin-bottom: var(--spacing-lg);
}

.contact-item h4 {
    color: var(--primary);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.contact-item h4 img {
    width: 24px;
    height: auto;
}

.company-name {
    color: white;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: var(--spacing-xs);
}

.contact-item a {
    display: block;
    color: #b0b0b0;
    font-size: 14px;
    margin-bottom: 4px;
    min-height: var(--touch-target);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    text-align: center;
}

.footer-bottom p {
    color: #808080;
    font-size: 14px;
    margin-bottom: var(--spacing-md);
}

.footer-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--spacing-sm);
}

.footer-links a {
    color: #b0b0b0;
    font-size: 14px;
    min-height: var(--touch-target);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* ================================================
   Responsive Design - Tablet (768px+)
   ================================================ */
@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-lg);
    }

    .logo img {
        height: 40px;
    }

    .language-dropdown-btn .current-lang-name {
        display: inline;
    }
    
    .hero-image {
        max-width: 700px;
    }
    
    .image-frame {
        padding: 36px;
        border-radius: 36px;
        border-width: 6px;
    }

    .hero-img {
        top: 36px;
        left: 36px;
        right: 36px;
        bottom: 36px;
        width: calc(100% - 72px);
        height: calc(100% - 72px);
        border-radius: 24px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .hero-text {
        text-align: left;
        order: 1;
    }

    .hero-image {
        order: 2;
        max-width: 100%;
    }

    .kitchen-badge {
        bottom: -20px;
        left: -20px;
        padding: var(--spacing-md);
    }

    .badge-icon {
        font-size: 32px;
    }

    .badge-text h3 {
        font-size: 18px;
    }

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

    .hosts-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }

    .stats-grid {
        gap: var(--spacing-xl);
    }

    .feature-row {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .feature-row.reverse .feature-content {
        order: 2;
    }

    .feature-row.reverse .feature-image {
        order: 1;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        text-align: left;
    }

    .footer-logo {
        margin: 0 0 var(--spacing-md);
    }

    .contact-item h4 {
        justify-content: flex-start;
    }

    .contact-item a {
        justify-content: flex-start;
    }

    .footer-links {
        flex-direction: row;
        gap: var(--spacing-lg);
    }
}

/* ================================================
   Responsive Design - Desktop (1024px+)
   ================================================ */
@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }

    .mobile-menu-overlay {
        display: none;
    }

    .nav-links {
        display: flex;
    }

    .btn-become-host {
        display: inline-flex;
    }

    .hero {
        padding: 80px 0;
        min-height: 700px;
    }
    
    .hero-image {
        max-width: 750px;
    }
    
    .image-frame {
        border-width: 7px;
        padding: 40px;
        border-radius: 40px;
    }

    .hero-img {
        top: 40px;
        left: 40px;
        right: 40px;
        bottom: 40px;
        width: calc(100% - 80px);
        height: calc(100% - 80px);
        border-radius: 28px;
    }

    .hero-content {
        gap: 60px;
    }

    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .feature-row {
        gap: 60px;
        margin-bottom: 80px;
    }

    .download-buttons {
        gap: var(--spacing-md);
    }

    .payment-logo {
        width: 80px;
        height: 50px;
    }

    .mada-logo {
        width: 100px;
    }
}

/* ================================================
   Accessibility & Touch Enhancements
   ================================================ */
@media (hover: none) and (pointer: coarse) {
    /* Touch device optimizations */
    .btn-primary:active,
    .btn-download:active,
    .btn-become-host:active,
    .tab-btn:active {
        transform: scale(0.98);
    }

    .step-card:active,
    .host-card:active {
        transform: scale(0.99);
    }
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Section highlight animation */
.section-highlight {
    animation: highlight-pulse 2s ease-out;
}

@keyframes highlight-pulse {
    0% { background-color: rgba(230, 126, 34, 0.1); }
    100% { background-color: transparent; }
}

/* ================================================
   Dark Mode Adjustments
   ================================================ */
html.dark .header {
    background: var(--background);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

html.dark .step-card,
html.dark .host-card,
html.dark .contact-card {
    background: var(--card-bg);
    border-color: var(--card-border);
}

html.dark .image-frame {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

html.dark .kitchen-badge {
    background: var(--card-bg);
    box-shadow: var(--shadow-lg);
}

html.dark .kitchen-badge h3 {
    color: var(--foreground);
}

html.dark .gif-container {
    background: var(--secondary);
}

html.dark .tabs {
    background: var(--secondary);
}

html.dark .tab-btn {
    color: var(--foreground);
}

html.dark .tab-btn.active {
    background: var(--primary);
    color: white;
}

html.dark .language-dropdown-menu {
    background: var(--card-bg);
    border-color: var(--card-border);
}

html.dark .lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

html.dark .mobile-menu-overlay {
    background: var(--background);
}

html.dark .mobile-nav-links a:hover,
html.dark .mobile-nav-links a:active {
    background: var(--secondary);
}

html.dark .footer {
    background: var(--footer-bg);
}

html.dark .stat-item p {
    color: var(--muted);
}

html.dark .feature-content p {
    color: var(--muted);
}

html.dark .section-subtitle {
    color: var(--muted);
}

/* Dark mode smooth transition */
html {
    transition: background-color 0.3s ease, color 0.3s ease;
}

html.dark body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Print styles */
@media print {
    .header,
    .mobile-menu-btn,
    .mobile-menu-overlay,
    .carousel-dots,
    .btn-primary,
    .btn-download,
    .theme-toggle {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: black;
        background: white;
    }
}