/* public/css/restaurant-landing.css */

:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --accent-color: #f3f4f6; /* Off-white for accents */
    --accent-gold: #00A3FF; /* Professional touch for graphics/buttons if needed */
    --font-heading: 'Cairo', sans-serif;
    --font-body: 'Tajawal', sans-serif;
    --container-width: 1200px;
    --transition-speed: 0.3s;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    /* Soft noise background */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-blend-mode: overlay;
    background-color: #080808; /* Fallback */
    background-attachment: fixed;
    background-size: 200px 200px;
}

/* Typography Enhancements */
h1, h2, h3, h4, .font-heading {
    font-family: var(--font-heading);
    font-weight: 700;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.site-header {
    padding: 30px 0;
    position: absolute;
    top: 0; left: 0; width: 100%;
    z-index: 100;
}
.site-header .container {
    display: flex;
    justify-content: flex-start; /* Logo on the right in RTL */
}
.logo img {
    height: 70px; /* Enlarged size for better visibility */
    filter: brightness(0) invert(1); /* Ensure it's white if it was dark originally */
}

/* Global Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 8px; /* Slightly rounded, clean */
    text-decoration: none;
    transition: all var(--transition-speed);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 4px 14px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-cta {
    background: #ffffff;
    color: #000000;
    font-size: 1.25rem;
    padding: 20px 48px;
    border-radius: 50px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.btn-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-headline {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-headline .highlight {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 2.25rem;
    display: block;
    margin-top: 10px;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 90%;
}

/* Hero Visuals */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-image-wrapper {
    width: 350px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    background-color: #111;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1); /* Artistic black and white photo */
    transition: filter 0.5s;
}
.founder-image-wrapper:hover .founder-img {
    filter: grayscale(0%);
}

.growth-graphic {
    position: absolute;
    bottom: -30px;
    left: -40px; /* Adjust based on RTL (it will appear on actual left) */
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 24px;
    border-radius: 16px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    font-family: 'Open Sans', sans-serif;
}

.graphic-node {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    padding: 8px 16px;
    background: #222;
    border-radius: 20px;
    border: 1px solid #333;
    white-space: nowrap;
}

.graphic-node.brand {
    background: #fff;
    color: #000;
    align-self: flex-end;
}

.growth-arrow {
    width: 60px;
    height: 60px;
    margin: 10px 0;
    align-self: center;
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.video-container {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #111;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    cursor: pointer;
}

.video-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.5s;
}

.video-wrapper:hover::after {
    opacity: 0.6;
    filter: grayscale(50%);
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: #fff;
    z-index: 2;
    opacity: 0.9;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}

.video-wrapper:hover .video-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-core-message {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Existential Questions Section */
.questions-section {
    padding: 120px 0;
}

.questions-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto 40px;
}

.questions-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 24px;
    padding: 24px;
    background: #0f0f0f;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform 0.3s, background 0.3s;
}

.questions-list li:hover {
    transform: translateX(-10px); /* RTL moves it visually left (forward) */
    background: #151515;
    border-color: rgba(255, 255, 255, 0.1);
}

.questions-list li i {
    color: #555;
    margin-top: 6px;
    font-size: 1.75rem;
}

.questions-closing-line {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.portfolio-card {
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-media {
    width: 100%;
    height: 300px;
    background: #222;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%);
    transition: filter 0.5s, transform 0.5s;
}

.portfolio-card:hover .card-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #fff;
}

.card-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 150px 0;
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
    background: linear-gradient(135deg, #111, #000);
    border-radius: 32px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.cta-box h2 {
    font-size: 2.75rem;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.micro-copy {
    color: var(--text-secondary);
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Footer */
.minimal-footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #555;
    font-size: 0.9rem;
}

/* Animations Toolkit (Scroll Triggered) */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fade-in-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fade-in-right {
    opacity: 0;
    transform: translateX(40px); /* LTR right, RTL left effectively */
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.visible {
    opacity: 1 !important;
    transform: translateY(0) scale(1) translateX(0) !important;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Contact Form Styling */
.landing-form {
    margin-top: 30px;
    text-align: right;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s, background 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #00A3FF;
    background: rgba(255,255,255,0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}


/* Responsive Design */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-headline {
        font-size: 2.75rem;
    }
    .hero-headline .highlight {
        font-size: 1.75rem;
    }
    .hero-subheadline {
        max-width: 100%;
        margin: 0 auto 40px;
    }
    .hero-text .btn {
      margin: 0 auto;
    }
    .growth-graphic {
        left: -10px;
        bottom: -20px;
        padding: 16px;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 50px auto 0;
    }
    .founder-image-wrapper {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .cta-box h2 {
        font-size: 2rem;
    }
    .questions-list li {
        font-size: 1.15rem;
        padding: 16px;
    }
    .btn-cta {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
    .video-core-message {
        font-size: 1.25rem;
    }
}
/* Additions for Sales-Optimized Landing Page */

/* Base & Typography Overrides for Sales Funnel */
body.sales-funnel {
    font-family: 'Tajawal', sans-serif;
    color: #e2e8f0;
    line-height: 1.8;
}

.sales-funnel h1, .sales-funnel h2, .sales-funnel h3, .sales-funnel .font-cairo-black {
    font-family: 'Cairo', sans-serif;
    font-weight: 900;
}

.highlight-gold {
    color: #00A3FF; /* High-converting accent color */
    position: relative;
    display: inline-block;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* Buttons */
.sales-funnel .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.sales-funnel .btn-primary {
    background-color: #fff;
    color: #050505;
}

.sales-funnel .btn-primary:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(255,255,255,0.1);
}

.sales-funnel .btn-sm {
    padding: 10px 20px;
    font-size: 1rem;
}

/* Accent CTA Button (High Conversion) */
.sales-funnel .btn-accent {
    background: linear-gradient(135deg, #00A3FF, #007ACC);
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.sales-funnel .btn-accent::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
    z-index: -1;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.sales-funnel .btn-accent:hover {
    background: linear-gradient(135deg, #1ab0ff, #0084EA);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 163, 255, 0.4);
}

.btn-pulse {
    animation: pulse 2s infinite;
    transform-origin: center;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 163, 255, 0.8); }
    70% { box-shadow: 0 0 0 20px rgba(0, 163, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 163, 255, 0); }
}
.sales-funnel .btn-outline-gold {
    background: transparent;
    color: #00A3FF;
    border: 2px solid #00A3FF;
}

.sales-funnel .btn-outline-gold:hover {
    background: rgba(0, 163, 255, 0.1);
    transform: translateY(-2px);
}

/* Floating CTA Bar */
.floating-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 15px 20px;
    display: flex;
    justify-content: center; /* Center on mobile by default */
    align-items: center;
    z-index: 1000;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

.floating-cta.visible {
    bottom: 0;
}

.floating-cta p {
    margin: 0;
    margin-left: 20px;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}

.floating-cta .btn {
    padding: 12px 24px;
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .floating-cta {
        justify-content: center;
    }
    .floating-cta p {
         display: block; /* Ensure it's handled by hidden-mobile class properly if used, otherwise it's flexed */
    }
}

/* Urgency & Trust Badges */
.urgency-badge {
    display: inline-block;
    background: rgba(0, 163, 255, 0.1);
    border: 1px solid rgba(0, 163, 255, 0.3);
    color: #00A3FF;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.trust-indicators {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #94a3b8;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #050505;
    margin-left: -10px; /* Overlap RTL */
}

/* Sections Global */
.sales-funnel section {
    padding: 100px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sales-funnel .bg-darker {
    background-color: #020202;
    border-top: 1px solid rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.sales-funnel .section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}

/* Expand Hero Styling for Funnel */
.sales-funnel .hero-section {
    padding: 120px 0 80px;
}

.sales-funnel .hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sales-funnel .hero-headline {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.hero-cta-group {
    margin-top: 40px;
}

/* Vector Graphic in Hero */
.growth-graphic {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: rgba(5,5,5,0.9);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 10;
}

.graphic-node {
    font-size: 0.8rem;
    font-weight: bold;
    color: #fff;
    font-family: 'Cairo', sans-serif;
}

.graphic-node.budget { color: #ef4444; }
.graphic-node.brand { color: #10b981; }

.growth-arrow {
    width: 60px;
    height: 60px;
    margin: 10px 0;
    transform: scaleX(-1); /* RTL flip if needed, but SVG defines it LTR initially */
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.05);
}

.step-num {
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    line-height: 1;
    font-family: 'Cairo', sans-serif;
}

.step-icon {
    font-size: 2.5rem;
    color: #00A3FF;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 40px;
    position: relative;
}

.testimonial-box::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 6rem;
    color: rgba(0, 163, 255, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.stars {
    color: #00A3FF;
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #e2e8f0;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    margin: 0;
    color: #fff;
    font-size: 1.1rem;
}

.client-info span {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* FAQ Section */
.faq-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.faq-header p {
    color: #94a3b8;
    font-size: 1.2rem;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255,255,255,0.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: transparent;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    margin: 20px 0;
    color: #cbd5e1;
}

.faq-toggle:checked + .faq-question {
    color: #00A3FF;
}

.faq-toggle:checked + .faq-question i {
    transform: rotate(180deg);
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

/* Mobile Tweaks for Funnel */
@media (max-width: 768px) {
    .sales-funnel .hero-container, .faq-container {
        grid-template-columns: 1fr;
    }
    
    .sales-funnel .hero-headline {
        font-size: 2.2rem;
    }
    
    .sales-funnel .cta-box {
        padding: 40px 20px;
    }
    
    .faq-container {
        gap: 30px;
    }
    
    .hidden-mobile {
        display: none !important;
    }
}


