/* ========================================
   QRBite Premium Landing Page
   Exact Stitch Design Match
   ======================================== */

/* CSS Variables - Exact Stitch Colors */
:root {
    --primary: #f58524;
    --primary-hover: #e07620;
    --primary-10: rgba(245, 133, 36, 0.1);
    --primary-20: rgba(245, 133, 36, 0.2);
    --primary-30: rgba(245, 133, 36, 0.3);
    --bg-dark: #0a0a0a;
    --bg-section: #0f0f0f;
    --card-dark: #161616;
    --border-dark: #262626;
    --border-light: rgba(255, 255, 255, 0.05);
    --border-light-10: rgba(255, 255, 255, 0.1);
    --text-white: #ffffff;
    --text-slate-400: #94a3b8;
    --text-slate-500: #64748b;
    --font-main: 'Manrope', sans-serif;
    --font-arabic: 'IBM Plex Sans Arabic', 'Manrope', sans-serif;
}

/* Reset & Base - Override global theme */
.landing-page {
    position: relative;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    background-color: #0a0a0a !important;
    background: #0a0a0a !important;
    color: #ffffff !important;
    font-family: 'Manrope', sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    isolation: isolate;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Prevent horizontal scroll on body when on landing page */
html:has(.landing-page),
body:has(.landing-page) {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Ensure all landing page elements respect box-sizing */
.landing-page *,
.landing-page *::before,
.landing-page *::after {
    box-sizing: border-box;
}

/* Override all global typography within landing page */
.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page h4,
.landing-page h5,
.landing-page h6 {
    color: #ffffff !important;
    font-family: 'Manrope', sans-serif !important;
    margin: 0;
}

.landing-page p {
    color: #94a3b8 !important;
    margin: 0;
}

.landing-page a {
    color: #ffffff !important;
    text-decoration: none;
}

.landing-page a:hover {
    color: #f58524 !important;
}

/* Material Symbols */
.material-icon {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* =====================
   NAVIGATION - Exact Stitch Match
   ===================== */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1rem 1.5rem;
    box-sizing: border-box;
    width: 100%;
    max-width: 100vw;
}

.nav-container {
    max-width: 80rem;
    margin: 0 auto;
    background: rgba(10, 10, 10, 0.8) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 9999px !important;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none !important;
    color: #ffffff !important;
    cursor: pointer;
}

.brand-logo-img {
    height: 2rem;
    width: auto;
    object-fit: contain;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #ffffff !important;
}

.brand-name .brand-qr {
    color: #f58524 !important;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #f58524 !important;
}

.nav-link.nav-link-highlight {
    color: #f58524 !important;
    font-weight: 600 !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

/* Language Selector */
.lang-selector {
    position: relative;
}

/* Scoped to landing page only - don't affect staff pages */
.landing-page .lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.landing-page .lang-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
}

.landing-page .lang-toggle .globe-icon {
    width: 16px;
    height: 16px;
    opacity: 0.8;
}

.landing-page .lang-toggle .lang-code {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.landing-page .lang-toggle .chevron-icon {
    width: 12px;
    height: 12px;
    opacity: 0.6;
    transition: transform 0.2s;
}

.landing-page .lang-selector.open .lang-toggle .chevron-icon {
    transform: rotate(180deg);
}

.landing-page .lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #161616;
    border: 1px solid #262626;
    border-radius: 12px;
    padding: 6px;
    min-width: 160px;
    z-index: 60;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.landing-page .lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    text-align: left;
    border: none;
    background: none;
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
}

.landing-page .lang-option:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.landing-page .lang-option.active {
    background: rgba(245, 133, 36, 0.1);
    color: #f58524;
}

.landing-page .lang-option .check-icon {
    width: 14px;
    height: 14px;
    color: #f58524;
    flex-shrink: 0;
}

.landing-page .lang-option .lang-name {
    flex: 1;
}

.landing-page .lang-option .lang-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: #64748b;
    letter-spacing: 0.5px;
}

.landing-page .lang-option.active .lang-badge {
    background: rgba(245, 133, 36, 0.15);
    color: #f58524;
}

.landing-page .lang-backdrop {
    position: fixed;
    inset: 0;
    z-index: 55;
}

/* Nav Login Button - Ghost style */
.nav-login {
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 0.5rem 1rem !important;
    border-radius: 9999px;
    transition: all 0.2s;
}

.nav-login:hover {
    color: #f58524 !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

/* Buttons - Exact Stitch Match */
.landing-page .btn-primary.nav-cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #f58524 !important;
    color: #ffffff !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    padding: 0.5rem 1.5rem !important;
    border: none !important;
    border-radius: 9999px !important;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.2s;
    box-shadow: 0 10px 40px rgba(245, 133, 36, 0.2);
}

.landing-page .btn-primary.nav-cta:hover {
    background: rgba(245, 133, 36, 0.9) !important;
    color: #ffffff !important;
}

/* Hero buttons */
.landing-page .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #f58524 !important;
    color: #ffffff !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    padding: 1rem 2.5rem !important;
    border: none !important;
    border-radius: 9999px !important;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.2s;
    box-shadow: 0 25px 50px rgba(245, 133, 36, 0.3);
}

.landing-page .btn-primary:hover {
    background: #e07620 !important;
    color: #ffffff !important;
}

.landing-page .btn-primary:active {
    transform: scale(0.95);
}

.landing-page .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    padding: 1rem 2.5rem !important;
    border-radius: 9999px !important;
    cursor: pointer;
    text-decoration: none !important;
    transition: background 0.2s;
}

.landing-page .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

/* CTA section buttons */
.landing-page .btn-dark {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #000000 !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    padding: 1rem 2rem !important;
    border: none !important;
    border-radius: 9999px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
}

.landing-page .btn-dark:hover {
    transform: translateY(-2px);
}

.landing-page .btn-ghost {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #000000 !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    padding: 1rem 2rem !important;
    border-radius: 9999px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.landing-page .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.3) !important;
}

.hamburger {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 9999px;
    color: var(--text-white);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* =====================
   OFF-CANVAS MENU
   ===================== */
.offcanvas-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 100;
}

.offcanvas-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid var(--border-light-10);
    z-index: 101;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
}

.close-btn {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 9999px;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    text-decoration: none;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.offcanvas-nav {
    flex: 1;
    padding: 2.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.offcanvas-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    border-radius: 9999px;
    transition: all 0.2s;
}

.offcanvas-link .material-icon {
    opacity: 0;
    transition: opacity 0.2s;
}

.offcanvas-link:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}

.offcanvas-link:hover .material-icon {
    opacity: 1;
}

.offcanvas-link.offcanvas-link-highlight {
    color: #f58524 !important;
    background: rgba(245, 133, 36, 0.1);
}

.offcanvas-footer {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.offcanvas-cta {
    width: 100%;
    height: 4rem;
    font-size: 1.125rem;
}

/* Mobile Login Button */
.btn-login-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    height: 3.5rem;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s;
}

.btn-login-mobile:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-login-mobile .material-icon {
    font-size: 1.25rem;
    color: #f58524;
}

.lang-switcher {
    display: flex;
    height: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 9999px;
    padding: 0.25rem;
}

.lang-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s;
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

.offcanvas-footer .copyright {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, rgba(245, 133, 36, 0.15) 0%, rgba(10, 10, 10, 0) 70%) !important;
}

.hero-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(245, 133, 36, 0.1) !important;
    border: 1px solid rgba(245, 133, 36, 0.2) !important;
    border-radius: 9999px;
    color: #f58524 !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.pulse-dot {
    position: relative;
    display: flex;
    width: 0.5rem;
    height: 0.5rem;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #f58524;
    border-radius: 9999px;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
    opacity: 0.75;
}

.pulse-dot::after {
    content: '';
    position: relative;
    display: inline-flex;
    width: 0.5rem;
    height: 0.5rem;
    background: #f58524;
    border-radius: 9999px;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 800 !important;
    letter-spacing: -0.05em;
    line-height: 1 !important;
    margin-bottom: 1.5rem !important;
    max-width: 56rem;
    color: #ffffff !important;
}

.hero-title .highlight {
    color: #f58524 !important;
    font-style: italic !important;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #94a3b8 !important;
    max-width: 42rem;
    line-height: 1.625;
    margin-bottom: 2.5rem !important;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.mockup-container {
    position: relative;
    width: 100%;
    max-width: 64rem;
    margin: 2.5rem auto 0;
    border-radius: 1.5rem 1.5rem 0 0 !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-bottom: none !important;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent) !important;
    padding: 1rem;
}

.mockup-bg {
    border-radius: 2rem 2rem 0 0 !important;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    position: relative;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.phone-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16rem;
    height: 28.125rem;
    background: #000000 !important;
    border-radius: 3rem !important;
    border: 8px solid #0f172a !important;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.phone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =====================
   SECTIONS COMMON
   ===================== */
.section-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header-flex {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.section-header-left {
    max-width: 36rem;
}

.section-tag {
    color: #f58524 !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: #ffffff !important;
}

.section-title.centered {
    text-align: center;
    margin-bottom: 5rem;
}

.section-subtitle-right {
    color: var(--text-slate-400);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 28rem;
}

/* =====================
   WHY QRBITE SECTION
   ===================== */
.why-section {
    padding: 6rem 0;
    background: #0a0a0a !important;
}

.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: #161616 !important;
    border: 1px solid #262626 !important;
    border-radius: 3rem !important;
    padding: 2.5rem;
    transition: border-color 0.2s;
}

.feature-card:hover {
    border-color: rgba(245, 133, 36, 0.5) !important;
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(245, 133, 36, 0.1) !important;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f58524 !important;
    margin-bottom: 2rem;
}

.feature-icon .material-icon {
    font-size: 1.875rem;
}

.feature-card h3 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem;
    color: #ffffff !important;
}

.feature-card p {
    color: #94a3b8 !important;
    line-height: 1.625;
}

/* =====================
   HOW IT WORKS SECTION
   ===================== */
.how-section {
    padding: 6rem 0;
    background: #0f0f0f !important;
    position: relative;
    overflow: hidden;
}

.steps-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.steps-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem !important;
    font-weight: 900 !important;
    color: rgba(245, 133, 36, 0.2) !important;
    line-height: 1;
}

.step-content h4 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem;
    color: #ffffff !important;
}

.step-content p {
    color: #94a3b8 !important;
    line-height: 1.5;
}

.steps-image {
    flex: 1;
    position: relative;
}

.image-glow {
    position: absolute;
    inset: -1rem;
    background: rgba(245, 133, 36, 0.2);
    filter: blur(48px);
    border-radius: 9999px;
}

.steps-photo {
    position: relative;
    z-index: 10;
    width: 100%;
    border-radius: 3rem !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    filter: grayscale(100%);
    transition: filter 0.7s ease;
}

.steps-photo:hover {
    filter: grayscale(0%);
}

/* =====================
   FEATURES GRID SECTION
   ===================== */
.features-section {
    padding: 6rem 0;
    background: #0a0a0a !important;
}

.features-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.feature-box {
    padding: 2rem;
    border: 1px solid #262626 !important;
    border-radius: 3rem !important;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: background 0.2s;
    background: transparent;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.05) !important;
}

.feature-box-icon {
    color: #f58524 !important;
    font-size: 1.875rem !important;
}

.feature-box-icon .material-icon {
    font-size: 1.875rem !important;
}

.feature-box h5 {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
}

.feature-box p {
    font-size: 0.875rem !important;
    color: #94a3b8 !important;
    line-height: 1.625;
}

/* =====================
   RESTAURANTS CTA SECTION
   ===================== */
.restaurants-cta {
    padding: 6rem 0;
    overflow: hidden;
}

.cta-card {
    background: #f58524 !important;
    border-radius: 3rem !important;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 36rem;
    color: #ffffff !important;
}

.cta-content h2 {
    font-size: 2.25rem !important;
    font-weight: 900 !important;
    margin-bottom: 1.5rem;
    line-height: 1.1 !important;
    letter-spacing: -0.025em;
    color: #ffffff !important;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.125rem !important;
    font-weight: 500 !important;
    line-height: 1.625;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-images {
    position: relative;
    z-index: 1;
}

.image-grid {
    display: flex;
    gap: 1rem;
}

.img-cell {
    width: 8rem;
    height: 8rem;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 3rem !important;
    overflow: hidden;
}

.img-cell.offset {
    transform: translateX(1rem);
    margin-top: 2rem;
}

.img-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 0L0 0 0 10' fill='none' stroke='black' stroke-width='0.5'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

/* =====================
   FOOTER
   ===================== */
.landing-footer {
    background: #0a0a0a !important;
    border-top: 1px solid #262626 !important;
    padding: 4rem 0;
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-brand-col {
    max-width: 280px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.brand-tagline {
    color: #94a3b8 !important;
    font-size: 0.875rem !important;
    line-height: 1.75;
}

.footer-col-title {
    font-weight: 700 !important;
    font-size: 1rem !important;
    margin-bottom: 1.5rem;
    color: #ffffff !important;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #94a3b8 !important;
    text-decoration: none !important;
    font-size: 0.875rem !important;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #f58524 !important;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    background: #161616 !important;
    border: 1px solid #262626 !important;
    border-radius: 9999px;
    padding: 0.625rem 1rem;
    color: #ffffff !important;
    font-size: 0.875rem !important;
}

.newsletter-input::placeholder {
    color: #64748b !important;
}

.newsletter-input:focus {
    outline: none;
    border-color: #f58524 !important;
}

.newsletter-btn {
    width: 2.5rem;
    height: 2.5rem;
    background: #f58524 !important;
    border: none !important;
    border-radius: 9999px;
    color: #ffffff !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}

.newsletter-btn:hover {
    background: #e07620 !important;
}

.newsletter-btn .material-icon {
    font-size: 1rem !important;
    font-weight: bold;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid #262626 !important;
}

.footer-bottom .copyright {
    font-size: 0.75rem !important;
    color: #64748b !important;
}

.footer-bottom .crafted-by {
    font-size: 0.75rem !important;
    color: #64748b !important;
}

.footer-bottom .crafted-by a {
    color: #f58524 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: color 0.15s ease !important;
}

.footer-bottom .crafted-by a:hover {
    color: #ffa54d !important;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-btn {
    color: #64748b !important;
    transition: color 0.2s;
    text-decoration: none !important;
}

.social-btn:hover {
    color: #ffffff !important;
}

/* =====================
   MOBILE FIXED CTA
   ===================== */
.landing-mobile-fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    padding: 1rem;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-dark);
    box-sizing: border-box;
    width: 100%;
    max-width: 100vw;
}

.landing-mobile-fixed-cta .btn-primary {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.875rem 1.5rem !important;
    font-size: 1rem !important;
}

/* =====================
   RESPONSIVE UTILITIES
   ===================== */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: flex !important;
}

/* =====================
   RESPONSIVE DESIGN
   ===================== */
@media (min-width: 768px) {
    .hero-title {
        font-size: 6rem !important;
    }

    .hero-subtitle {
        font-size: 1.25rem !important;
    }

    .section-title {
        font-size: 3rem !important;
    }

    .section-header-flex {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }

    .cta-card {
        padding: 5rem;
    }

    .cta-content h2 {
        font-size: 3rem !important;
    }

    .cta-content p {
        font-size: 1.25rem !important;
    }
}

@media (max-width: 1024px) {
    .features-grid-3 {
        grid-template-columns: 1fr;
    }

    .features-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-layout {
        flex-direction: column;
    }

    .steps-image {
        order: -1;
        width: 100%;
        max-width: 500px;
    }

    .cta-card {
        flex-direction: column;
        padding: 3rem 2rem;
        text-align: center;
    }

    .cta-content {
        max-width: none;
    }

    .cta-buttons {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-brand-col {
        max-width: none;
        grid-column: span 2;
        text-align: center;
    }

    .footer-brand-col .brand-logo {
        justify-content: center;
    }

    .footer-col {
        text-align: center;
    }

    .newsletter-form {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .desktop-only,
    .landing-page .desktop-only,
    .landing-page .btn-primary.desktop-only,
    .landing-page .btn-primary.nav-cta.desktop-only,
    .landing-page a.desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }

    .hamburger {
        display: flex !important;
    }

    .nav-cta,
    .landing-page .btn-primary.nav-cta {
        display: none !important;
    }

    .glass-nav {
        padding: 0.5rem 0.75rem;
        width: 100%;
        max-width: 100vw;
    }

    .nav-container {
        padding: 0.5rem 0.75rem;
        border-radius: 16px !important;
        width: 100%;
        max-width: 100%;
    }

    .nav-brand .brand-name {
        font-size: 1.125rem;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .nav-login {
        display: none !important;
    }

    /* Language selector - compact on mobile */
    .landing-page .lang-toggle {
        padding: 0.375rem 0.625rem;
        font-size: 0.75rem;
    }

    .landing-page .lang-toggle .globe-icon {
        width: 14px;
        height: 14px;
    }

    .landing-page .lang-toggle .chevron-icon {
        width: 12px;
        height: 12px;
    }

    /* Footer Mobile */
    .landing-footer {
        padding: 3rem 1rem 6rem;
    }

    .footer-container {
        padding: 0;
    }

    .footer-col-title {
        margin-bottom: 0.75rem;
    }

    .footer-links {
        gap: 0.5rem;
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 280px;
        margin: 0 auto;
    }

    .newsletter-input {
        width: 100%;
    }

    .newsletter-btn {
        align-self: center;
    }

    .hero {
        padding-top: 7rem;
        padding-bottom: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
    }

    .phone-mockup {
        width: 12rem;
        height: 22rem;
    }

    .features-grid-4 {
        grid-template-columns: 1fr;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .image-grid {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand-col {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-bottom .copyright {
        font-size: 0.6875rem !important;
        line-height: 1.5;
    }

    /* Mobile fixed CTA */
    .landing-mobile-fixed-cta {
        width: 100%;
        max-width: 100vw;
        padding: 0.75rem;
    }

    .landing-mobile-fixed-cta .btn-primary {
        width: 100%;
        max-width: 100%;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .nav-brand .brand-logo-img {
        height: 1.5rem;
    }

    .nav-brand .brand-name {
        font-size: 1rem;
    }

    .nav-container {
        padding: 0.375rem 0.75rem;
    }

    .footer-col-title {
        font-size: 0.8125rem;
    }

    .footer-links li a {
        font-size: 0.8125rem;
    }

    .landing-mobile-fixed-cta {
        padding: 0.75rem;
        width: 100%;
        max-width: 100vw;
    }

    .landing-mobile-fixed-cta .btn-primary {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        width: 100%;
        max-width: 100%;
    }
}

/* =====================
   RTL SUPPORT
   ===================== */
.rtl {
    direction: rtl;
    font-family: 'IBM Plex Sans Arabic', 'Manrope', sans-serif !important;
}

.rtl h1,
.rtl h2,
.rtl h3,
.rtl h4,
.rtl h5,
.rtl h6,
.rtl p,
.rtl a,
.rtl span:not(.material-icon),
.rtl button {
    font-family: 'IBM Plex Sans Arabic', 'Manrope', sans-serif !important;
}

.rtl .material-icon {
    font-family: 'Material Symbols Outlined' !important;
}

.landing-page.rtl .lang-selector {
    direction: rtl;
}

.landing-page.rtl .lang-dropdown {
    right: auto;
    left: 0;
}

.landing-page.rtl .lang-option {
    flex-direction: row-reverse;
    text-align: right;
}

.landing-page.rtl .lang-toggle {
    flex-direction: row-reverse;
}

.rtl .offcanvas-menu {
    right: auto;
    left: 0;
    border-left: none;
    border-right: 1px solid var(--border-light-10);
    animation: slideInRtl 0.3s ease;
}

@keyframes slideInRtl {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.rtl .offcanvas-link .material-icon {
    transform: scaleX(-1);
}

.rtl .hero-buttons .material-icon,
.rtl .btn-primary .material-icon {
    transform: scaleX(-1);
}

.rtl .step-content {
    text-align: right;
}

.rtl .feature-card,
.rtl .feature-box {
    text-align: right;
}

.rtl .section-header-flex {
    text-align: right;
}

.rtl .section-subtitle-right {
    text-align: right;
}

.rtl .cta-content {
    text-align: right;
}

.rtl .img-cell.offset {
    transform: translateX(-1rem);
}

.rtl .cta-pattern {
    right: auto;
    left: 0;
}

.rtl .footer-col {
    text-align: right;
}

.rtl .newsletter-btn .material-icon {
    transform: rotate(-90deg);
}

@media (max-width: 1024px) {
    .rtl .cta-content {
        text-align: center;
    }

    .rtl .section-header-flex,
    .rtl .section-subtitle-right {
        text-align: center;
    }

    .rtl .footer-col {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .rtl .step-content {
        text-align: center;
    }
}

/* =====================
   RESTAURANT DISCOVERY SECTION
   Premium Editorial Design
   ===================== */
.discover-section {
    position: relative;
    padding: 7rem 0 8rem;
    background: #030303;
    overflow: hidden;
}

/* Atmospheric Background */
.discover-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.atmos-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.03;
    mix-blend-mode: overlay;
}

.atmos-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 60% at 50% -10%, rgba(245, 133, 36, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 100% 100%, rgba(245, 133, 36, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 0% 80%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
}

.atmos-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(245, 133, 36, 0.06) 0%, transparent 70%);
    filter: blur(80px);
}

.discover-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Editorial Header */
.discover-editorial-header {
    text-align: center;
    margin-bottom: 4rem;
}

.editorial-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.eyebrow-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 133, 36, 0.6), transparent);
}

.eyebrow-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #f58524;
}

.editorial-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
    margin-bottom: 1.5rem;
}

.headline-row {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.headline-light {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 200;
    letter-spacing: -0.03em;
    color: #ffffff;
    line-height: 1.05;
}

.headline-accent {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
    background: linear-gradient(135deg, #f58524 0%, #fcd34d 30%, #f58524 60%, #fbbf24 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 6s ease-in-out infinite;
}

@keyframes goldShimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.editorial-tagline {
    font-size: 1.1rem;
    font-weight: 400;
    color: #6b7280;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

/* Search Refined */
.search-refined {
    max-width: 600px;
    margin: 0 auto 4.5rem;
}

.search-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 60px;
    padding: 0.875rem 1.25rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.search-container:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.search-container.focused {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(245, 133, 36, 0.4);
    box-shadow: 0 0 0 4px rgba(245, 133, 36, 0.08), 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.search-container .search-icon {
    width: 22px;
    height: 22px;
    color: #4b5563;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.search-container.focused .search-icon {
    color: #f58524;
}

.search-field {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    min-width: 0;
}

.search-field::placeholder {
    color: #4b5563;
}

.search-container .search-clear {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.search-container .search-clear svg {
    width: 14px;
    height: 14px;
    color: #6b7280;
}

.search-container .search-clear:hover {
    background: rgba(255, 255, 255, 0.12);
}

.search-container .search-clear:hover svg {
    color: #ffffff;
}

/* Category Navigation */
.category-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.category-tab {
    padding: 0.625rem 1.25rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab:hover {
    border-color: rgba(245, 133, 36, 0.3);
    color: #f58524;
    background: rgba(245, 133, 36, 0.05);
}

.category-tab.active {
    background: linear-gradient(135deg, #f58524 0%, #ea580c 100%);
    border-color: transparent;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 15px -3px rgba(245, 133, 36, 0.4);
}

/* ===== RESTAURANT CARDS - CINEMATIC DARK DESIGN ===== */
.resto-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

/* Loading Skeleton */
.resto-card-skeleton {
    position: relative;
    height: 220px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    overflow: hidden;
}

.skel-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.03) 50%, transparent 100%);
    animation: skelShine 2s ease-in-out infinite;
}

@keyframes skelShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Restaurant Card - Full Image Background */
.resto-card {
    position: relative;
    height: 220px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    animation: restoFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: calc(var(--i, 0) * 0.05s);
}

@keyframes restoFadeUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Background Image */
.resto-bg {
    position: absolute;
    inset: 0;
}

.resto-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.resto-card:hover .resto-bg img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

/* Dark Gradient Overlay */
.resto-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.2) 30%,
        rgba(0, 0, 0, 0.6) 70%,
        rgba(0, 0, 0, 0.92) 100%
    );
    transition: opacity 0.4s ease;
}

.resto-card:hover .resto-bg-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.4) 30%,
        rgba(0, 0, 0, 0.7) 70%,
        rgba(0, 0, 0, 0.95) 100%
    );
}

/* Card Inner Content */
.resto-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.875rem;
}

/* Top Row */
.resto-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Status Badge */
.resto-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 100px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.resto-status.is-open {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.resto-status.is-closed {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.status-glow {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
}

.resto-status.is-open .status-glow {
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
}

.resto-status.is-closed .status-glow {
    background: #f87171;
    box-shadow: 0 0 8px #f87171;
}

@keyframes glowPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Locations Badge */
.resto-locations {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 600;
}

.resto-locations svg {
    width: 12px;
    height: 12px;
    color: #f58524;
}

/* Bottom Section */
.resto-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
}

/* Identity - Logo + Info */
.resto-identity {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.resto-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.resto-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resto-card:hover .resto-logo {
    border-color: rgba(245, 133, 36, 0.5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 133, 36, 0.2);
    transform: scale(1.05);
}

.resto-info {
    flex: 1;
    min-width: 0;
}

.resto-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.resto-location-text {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.resto-location-text svg {
    width: 10px;
    height: 10px;
    color: #f58524;
    flex-shrink: 0;
}

/* Order Action Button */
.resto-action {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #f58524 0%, #ea580c 100%);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 3px 12px rgba(245, 133, 36, 0.4);
    flex-shrink: 0;
}

.resto-action .action-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.resto-action svg {
    width: 12px;
    height: 12px;
}

.resto-card:hover .resto-action {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(245, 133, 36, 0.5);
}

.resto-card:hover .resto-action .action-icon {
    transform: translateX(3px);
}

.rtl .resto-action .action-icon svg {
    transform: scaleX(-1);
}

.rtl .resto-card:hover .resto-action .action-icon {
    transform: translateX(-3px);
}

/* Hover Glow Border */
.resto-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid transparent;
    pointer-events: none;
    transition: all 0.5s ease;
}

.resto-card:hover .resto-glow {
    border-color: rgba(245, 133, 36, 0.4);
    box-shadow: inset 0 0 30px rgba(245, 133, 36, 0.1);
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin-top: 4rem;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.125rem 2.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.4s ease;
}

.load-more-btn:hover {
    background: rgba(245, 133, 36, 0.08);
    border-color: rgba(245, 133, 36, 0.3);
    color: #f58524;
    transform: translateY(-2px);
}

.load-more-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.load-more-btn:hover svg {
    transform: translateY(4px);
}

/* Empty State */
.empty-showcase {
    text-align: center;
    padding: 5rem 2rem;
}

.empty-visual {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-visual svg {
    width: 44px;
    height: 44px;
    color: #3f3f46;
}

.empty-showcase h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
}

.empty-showcase p {
    font-size: 1rem;
    color: #6b7280;
    margin: 0 0 2rem 0;
}

.reset-btn {
    padding: 14px 28px;
    background: linear-gradient(135deg, #f58524 0%, #ea580c 100%);
    border: none;
    border-radius: 100px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px -3px rgba(245, 133, 36, 0.4);
}

.reset-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px -5px rgba(245, 133, 36, 0.5);
}

/* Responsive Styles for Restaurant Cards */
@media (max-width: 1440px) {
    .resto-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.875rem;
    }

    .resto-card {
        height: 200px;
    }

    .resto-inner {
        padding: 0.75rem;
    }

    .resto-logo {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    .resto-name {
        font-size: 0.875rem;
    }
}

@media (max-width: 1280px) {
    .resto-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .resto-card {
        height: 220px;
    }

    .resto-inner {
        padding: 0.875rem;
    }

    .resto-logo {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .resto-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {
    .resto-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .resto-card {
        height: 240px;
    }

    .resto-logo {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }

    .resto-name {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .discover-section {
        padding: 5rem 0 6rem;
    }

    .discover-content {
        padding: 0 1.25rem;
    }

    .discover-editorial-header {
        margin-bottom: 3rem;
    }

    .editorial-eyebrow {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .eyebrow-line {
        width: 30px;
    }

    .headline-light,
    .headline-accent {
        font-size: 2rem;
    }

    .editorial-tagline {
        font-size: 1rem;
    }

    .search-refined {
        margin-bottom: 3rem;
    }

    .search-container {
        padding: 0.75rem 1rem;
        border-radius: 50px;
    }

    .search-field {
        font-size: 0.95rem;
    }

    .category-nav {
        gap: 8px;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        margin: 1.25rem -1.25rem 0;
        padding: 0 1.25rem 12px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .category-nav::-webkit-scrollbar {
        display: none;
    }

    .category-tab {
        flex-shrink: 0;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .resto-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .resto-card {
        height: 180px;
    }

    .resto-inner {
        padding: 0.75rem;
    }

    .resto-logo {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .resto-name {
        font-size: 0.8rem;
    }

    .resto-location-text {
        font-size: 10px;
    }

    .resto-action {
        padding: 6px 12px;
        font-size: 11px;
    }

    .resto-action svg {
        width: 12px;
        height: 12px;
    }

    .resto-status {
        padding: 4px 8px;
        font-size: 9px;
    }

    .resto-locations {
        padding: 4px 8px;
        font-size: 10px;
    }

    .resto-card-skeleton {
        height: 180px;
    }

    .load-more-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
}

/* Very small mobile screens */
@media (max-width: 480px) {
    .resto-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .resto-card {
        height: 200px;
    }

    .resto-inner {
        padding: 0.875rem;
    }

    .resto-logo {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .resto-name {
        font-size: 0.9rem;
    }

    .resto-location-text {
        font-size: 11px;
    }

    .resto-action {
        padding: 8px 14px;
        font-size: 12px;
    }

    .resto-action svg {
        width: 14px;
        height: 14px;
    }

    .resto-status {
        padding: 5px 10px;
        font-size: 10px;
    }

    .resto-locations {
        padding: 5px 10px;
        font-size: 11px;
    }

    .resto-card-skeleton {
        height: 200px;
    }
}

/* Touch feedback for mobile */
@media (hover: none) {
    .resto-card:active {
        transform: scale(0.98);
    }

    .resto-card:active .resto-bg img {
        transform: scale(1.05);
    }

    .category-tab:active {
        transform: scale(0.95);
    }
}

/* RTL Support for Restaurant Cards */
.rtl .category-nav {
    direction: rtl;
}

.rtl .resto-identity {
    flex-direction: row-reverse;
}

.rtl .resto-info {
    text-align: right;
}

.rtl .resto-location-text {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rtl .resto-bottom {
    flex-direction: row-reverse;
}

.rtl .load-more-btn {
    flex-direction: row-reverse;
}

.rtl .editorial-headline {
    direction: rtl;
}

/* =====================
   STATISTICS SECTION
   ===================== */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #070707 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1rem;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #f58524 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .stats-section {
        padding: 3rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .stat-item:nth-child(3)::after,
    .stat-item:nth-child(4)::after {
        display: none;
    }

    .stat-item:nth-child(1)::after,
    .stat-item:nth-child(3)::after {
        display: block;
    }
}

/* =====================
   TESTIMONIALS SECTION
   ===================== */
.testimonials-section {
    padding: 6rem 0;
    background: #0a0a0a;
}

.section-header-center {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-subtitle {
    font-size: 1rem;
    color: #94a3b8;
    max-width: 560px;
    margin: 1rem auto 0;
    line-height: 1.7;
}

.section-subtitle.centered {
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    border-color: rgba(245, 133, 36, 0.2);
    transform: translateY(-4px);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, rgba(245, 133, 36, 0.1) 0%, rgba(245, 133, 36, 0.02) 100%);
    border-color: rgba(245, 133, 36, 0.3);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1.25rem;
}

.testimonial-stars .material-icon {
    font-size: 18px;
    color: #fbbf24;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(245, 133, 36, 0.3);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
}

.author-role {
    font-size: 0.8rem;
    color: #94a3b8;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .testimonial-card.featured {
        order: -1;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

/* =====================
   PRICING SECTION
   ===================== */
.pricing-section {
    padding: 6rem 0;
    background: #070707;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.pricing-card.popular {
    background: linear-gradient(180deg, rgba(245, 133, 36, 0.15) 0%, #161616 40%);
    border-color: rgba(245, 133, 36, 0.4);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f58524 0%, #fbbf24 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 16px;
    border-radius: 100px;
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.pricing-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
}

.pricing-price {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: #94a3b8;
    vertical-align: middle;
    margin-left: 0.25rem;
}

.rtl .price-currency {
    margin-left: 0;
    margin-right: 0.25rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1;
}

.price-amount.custom {
    font-size: 2rem;
    color: #f58524;
}

.price-period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: #e2e8f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li .material-icon {
    font-size: 20px;
    color: #4ade80;
}

.pricing-features li.disabled {
    color: #64748b;
}

.pricing-features li.disabled .material-icon {
    color: #64748b;
}

.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.pricing-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-btn.primary {
    background: linear-gradient(135deg, #f58524 0%, #e8721a 100%);
    border: none;
    color: #fff;
}

.pricing-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 133, 36, 0.3);
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.popular {
        transform: none;
        order: -1;
    }

    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 4rem 0;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .price-amount {
        font-size: 3rem;
    }
}

/* =====================
   ABOUT US SECTION
   ===================== */
.about-section {
    padding: 6rem 0;
    background: #0a0a0a;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content .section-title {
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 1.25rem;
}

.about-values {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(245, 133, 36, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon .material-icon {
    font-size: 24px;
    color: #f58524;
}

.value-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.value-content p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
}

.about-image {
    position: relative;
}

.about-image .image-frame {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.about-image .image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image .image-accent {
    position: absolute;
    top: 2rem;
    right: -2rem;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(245, 133, 36, 0.3);
    border-radius: 24px;
    z-index: 0;
}

@media (max-width: 1024px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-image .image-accent {
        top: 1rem;
        right: -1rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }

    .value-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* RTL About Section */
.rtl .about-image .image-accent {
    right: auto;
    left: -2rem;
}

@media (max-width: 1024px) {
    .rtl .about-image .image-accent {
        left: -1rem;
    }
}

/* =====================
   FAQ SECTION
   ===================== */
.faq-section {
    padding: 6rem 0;
    background: #070707;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-details {
    width: 100%;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    list-style: none;
    transition: all 0.2s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    color: #f58524;
}

.faq-question span:first-child {
    flex: 1;
    text-align: start;
}

.faq-icon {
    font-size: 24px;
    color: #64748b;
    transition: transform 0.3s ease;
}

.faq-details[open] .faq-icon {
    transform: rotate(180deg);
    color: #f58524;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    animation: faqFadeIn 0.3s ease;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #94a3b8;
}

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
}

/* =====================
   CONTACT SECTION
   ===================== */
.contact-section {
    padding: 6rem 0;
    background: #0a0a0a;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info .section-title {
    margin-bottom: 1rem;
}

.contact-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 2.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.method-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(245, 133, 36, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon .material-icon {
    font-size: 22px;
    color: #f58524;
}

.method-content {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.method-value {
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

a.method-value:hover {
    color: #f58524;
}

.contact-social {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.social-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: block;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: rgba(245, 133, 36, 0.1);
    border-color: rgba(245, 133, 36, 0.3);
    color: #f58524;
}

/* Contact Form */
.landing-page .contact-form-wrapper {
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 2.5rem;
}

.landing-page .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.landing-page .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.landing-page .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.landing-page .form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #94a3b8;
}

.landing-page .form-group input,
.landing-page .form-group textarea {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    color: #ffffff;
    font-family: inherit;
    transition: all 0.2s ease;
    resize: vertical;
}

.landing-page .form-group input::placeholder,
.landing-page .form-group textarea::placeholder {
    color: #4a5568;
}

.landing-page .form-group input:focus,
.landing-page .form-group textarea:focus {
    outline: none;
    border-color: rgba(245, 133, 36, 0.4);
    box-shadow: 0 0 0 3px rgba(245, 133, 36, 0.1);
}

.landing-page .submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #f58524 0%, #e8721a 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.landing-page .submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 133, 36, 0.3);
}

.landing-page .submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.landing-page .submit-btn .spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.landing-page .form-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1rem;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 12px;
    color: #4ade80;
    font-size: 0.95rem;
    font-weight: 600;
    animation: faqFadeIn 0.3s ease;
}

.landing-page .form-success .material-icon {
    font-size: 20px;
}

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* RTL Contact Section */
.rtl .method-content,
.rtl .value-content {
    text-align: start;
}

.rtl .form-group label {
    text-align: start;
}

.rtl .submit-btn {
    flex-direction: row-reverse;
}

/* =====================
   MOBILE OVERRIDES - Final Priority
   ===================== */
@media screen and (max-width: 768px) {
    /* Force hide desktop-only elements */
    .glass-nav .desktop-only,
    .nav-container .desktop-only,
    .nav-actions .desktop-only,
    a.btn-primary.nav-cta.desktop-only,
    a.nav-login.desktop-only {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        pointer-events: none !important;
    }

    /* Force show mobile-only elements */
    .glass-nav .mobile-only,
    .nav-container .mobile-only,
    .nav-actions .mobile-only,
    button.hamburger.mobile-only {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}
