/* ========================================
   Landing Page Specific Styles
   ======================================== */

html, body {
        overflow: auto !important;
        height: auto !important;
        -webkit-overflow-scrolling: touch;
}

/* Ensure main sections do not block scroll/touch */
section, .about-barakeat, .why-barakeat, .partners-section, .stats-section, .hero, .hero-content, .hero-white-section, .food-celebration, .location-section, .app-coming-soon, .cta-section-new {
    overflow: visible !important;
    pointer-events: auto !important;
}

/* Navigation Links on Landing Page */
nav .nav-links a,
nav .nav-center a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 14px;
    transition: color var(--transition-base);
    padding: 8px 0;
}

nav .nav-links a:hover,
nav .nav-center a:hover {
    color: #F4CA16;
    font-weight: 600;
}

nav .nav-center a.active {
    color: #F4CA16;
    font-weight: 700;
    position: relative;
}

nav .nav-center a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #F4CA16;
    border-radius: 2px;
}

.navbar-landing {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    z-index: 9999;
}

.navbar-landing .nav-center {
    display: flex;
    justify-content: center;
    gap: 22px;
}

.navbar-landing .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
}

/* Hero Section - Clean layered design */
.hero {
    position: relative;
    background: var(--bg-color);
    padding: 0;
    margin: 0;
}

/* Green rectangle - full width */
.hero-content {
    position: relative;
    background: #003d24;
    padding: 120px 20px 80px;
    width: 100%;
}

/* Decorative circles */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.hero-brand {
    text-align: center;
    margin-bottom: 48px;
}

.brand-title {
    font-size: 92px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #F4CA16;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0;
    line-height: 1;
}

.hero-tagline {
    text-align: center;
    margin-bottom: 56px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tagline h2 {
    font-size: 38px;
    font-weight: 500;
    line-height: 1.4;
    color: white;
    margin-bottom: 24px;
}

.hero-tagline p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 100px;
}

.hero-buttons {
    display: flex !important;
    gap: 48px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 100px;
    position: relative;
    z-index: 10;
}

.hero .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: #F4CA16;
    color: #003d24;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 202, 22, 0.3);
}

.hero .btn-primary {
    background: #F4CA16 !important;
    color: #003d24 !important;
    box-shadow: 0 10px 30px rgba(244, 202, 22, 0.3);
}

.hero .btn-primary:hover {
    background: #FFD93D;
    color: #003d24;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 202, 22, 0.5);
}

.hero .btn-primary i {
    transition: transform 0.3s ease;
}

.hero .btn-primary:hover i {
    transform: translateX(4px);
}

.hero .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Arc section - curves downward */
.hero-arc-section {
    position: relative;
    height: 120px;
    background: #ffffff;
    width: 100%;
    overflow: visible;
}

.hero-arc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    display: block;
}

/* Grocery bag - positioned so its CENTER is at the arc's LOWEST point */
.hero-bag-container {
    position: absolute;
    left: 50%;
    /* Arc's lowest point is at: hero-content height + arc height (120px) */
    /* Using calc to position at the end of arc section where curve is lowest */
    /* Moved lower to sit more below the green hero section */
    top: calc(105%);
    transform: translate(-50%, -50%); /* Center the bag at this point */
    z-index: 100;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bag-image {
    width: 500px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
    display: block;
}

/* White section underneath - contains bag overlap and quote */
.hero-white-section {
    position: relative;
    background: var(--bg-color);
    min-height: 200px;
    margin-bottom: 120px;
    width: 100%;
    padding-top: 120px; /* Reduced when quote hidden */
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

/* When quote is shown, increase padding */
.hero-white-section:has(.hero-quote-container[style*="display: flex"]) {
    padding-top: 180px;
    min-height: 320px;
}

/* Quote container - properly in document flow */
.hero-quote-container {
    display:none;
    width: 100%;
    max-width: 800px;
    text-align: center;
    padding: 40px 40px 0;
    box-sizing: border-box;
}

.hero-quote-container .quote-text {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 600;
    font-style: italic;
    color: #003d24;
    line-height: 1.5;
    display: inline;
    position: relative;
}

/* Add opening quote before the text */
/* .hero-quote-container .quote-text::before {
    content: '"';
    position: absolute;
    left: -0.4em;
}
*/

/* Add closing quote after the text */
/*.hero-quote-container .quote-text::after {
    content: '"';
    margin-left: 0.1em;
} 
*/

.why-circle-img{
    position: relative;
    display: flex;
    margin: 0 auto;
    align-items: center;
}

.why-circle-img img {
    /* margin-top: -20px;
    margin-right: 7px; */
    align-self: center;
    transform: scale(1.7) translateY(-8px) translate(-2px) !important;
  /* increase from whatever it was */
}


@media (max-width: 480px) {
    .hero-quote-container {
        padding: 20px 20px 0;
    }
    
    .hero-quote-container .quote-text {
        font-size: 18px;
    }
    
    .hero-bag-image {
        width: 250px;
    }
    
    .hero-white-section {
        margin-top: 100px;
        padding-top: 180px !important;
        min-height: 160px !important;
    }

    .hero-bag-container {
        top: calc(110%);
    }
}

/* Hide desktop side texts on mobile - quote is now in white section */
/* @media (max-width: 825px) {
    .hero-bag-text {
        display: none !important;
    }

    .hero-quote-container {
        display: flex;
        padding: 100px 24px 0;
    }
    
} */

@media (max-width: 768px) {
    .hero-content {
        padding: 80px 20px 40px;
    }

    .brand-title {
        font-size: 58px;
    }

    .hero-tagline {
        margin-bottom: 24px;
    }

    .hero-tagline h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .hero-tagline p {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .hero-arc-section {
        height: 90px;
    }

    .hero-bag-text {
        display: none !important;
    }

    .hero-bag-image.bag-empty{
        top: 50px !important;
    }

    .hero-bag-container {
        /* Mobile: push bag lower so hero buttons are clearly visible */
        top: calc(135%);
    }

    .hero-bag-image {
        width: 400px;
        margin-bottom: 150px;

    }

    .hero-white-section {
        min-height: 250px !important;
        padding-top: 180px !important;
        padding-bottom: 40px;
        margin-bottom: 0px;
        margin-top: 60px;
    }
    
    .hero-quote-container {
        display: flex;
        padding: 0 24px;
        margin-top: 80px;
    }

    
    .hero-quote-container .quote-text {
        font-size: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 30px;
    }

    .hero .btn {
        width: 100%;
        max-width: 300px;
    }
}

.about-barakeat {
    padding: 60px var(--spacing-lg);
    background: var(--bg-color);
    overflow: visible;
}

.about-barakeat .container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
    gap: 80px;
    align-items: center;
    overflow: visible;
}

.about-image {
    position: relative;
    overflow: visible;
}

.decorative-circle-about {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.15), transparent);
    left: -60px;
    top: -60px;
    z-index: 0;
    opacity: 0.4;
}

.about-image img {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    display: block;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

.about-content {
    padding: 20px 0;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 0;
    color: var(--text-color);
    font-weight: 700;
}

.title-underline {
    width: 64px;
    height: 4px;
    background: var(--primary);
    margin: 24px 0;
    border-radius: 2px;
}

.title-underline-center {
    width: 64px;
    height: 5px;
    background: var(--primary);
    margin: 24px auto;
    border-radius: 2px;
}

.title-underline-center.white {
    background: white;
}

.about-content p {
    color: var(--tab-inactive);
    font-size: 18px;
    line-height: 1.8;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        max-width: 100%;
    }
}

/* Interactive Demo Section */
.interactive-demo {
    padding: 80px var(--spacing-lg);
    background: linear-gradient(135deg, rgba(244, 245, 247, 0.5), rgba(46, 204, 113, 0.05));
    position: relative;
    overflow: hidden;
}

.demo-circle-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.15), transparent);
    right: -200px;
    top: 0;
    opacity: 0.4;
}

.demo-circle-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.1), transparent);
    left: -150px;
    bottom: 100px;
    opacity: 0.3;
}

.demo-header {
    text-align: center;
    margin-bottom: 48px;
}

.demo-subtitle {
    color: var(--tab-inactive);
    font-size: 18px;
    max-width: 700px;
    margin: 16px auto 0;
}

.demo-stage-container {
    position: relative;
    height: 380px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

/* Phone mockup */
.phone-mockup {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 260px;
    height: 360px;
    background: var(--card-bg);
    border-radius: 40px;
    border: 4px solid var(--input-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 20;
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: var(--input-border);
    border-radius: 20px;
    z-index: 20;
}

.phone-screen {
    height: 100%;
    background: linear-gradient(to bottom, rgba(244, 245, 247, 0.8), var(--card-bg));
    padding: 32px 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Demo assets - bag and scanner */
.demo-bag, .demo-scanner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    z-index: 10;
}

.demo-bag {
    left: 150px;
    transform: translateY(-50%) translateX(-400px) rotate(-15deg);
}

.demo-bag.visible {
    opacity: 1;
    transform: translateY(-50%) translateX(0) rotate(0deg);
}

.demo-bag img {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.demo-scanner {
    right: 130px;
    transform: translateY(-50%) translateX(400px) rotate(15deg);
}

.demo-scanner.visible {
    opacity: 1;
    transform: translateY(-50%) translateX(0) rotate(-10deg);
}

.demo-scanner img {
    width: 160px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.scanner-beam {
    position: absolute;
    top: 50%;
    left: -60px;
    width: 60px;
    height: 3px;
    background: #ef4444;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.8);
    transform: rotate(-10deg);
    opacity: 0;
    animation: beamPulse 0.5s ease-in-out infinite;
}

.scanner-beam.visible {
    opacity: 1;
}

@keyframes beamPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

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

@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

/* ========================================
   HOW IT WORKS - Video-style step title beside phone
   ======================================== */
.demo-side-label {
    display: none;
}

@media (min-width: 901px) {
    .demo-side-label {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        pointer-events: none;
        min-height: 160px;
        justify-content: center;
    }

    .demo-side-left {
        right: calc(50% + 170px);
        align-items: flex-end;
        text-align: right;
    }

    .demo-side-right {
        left: calc(50% + 170px);
        align-items: flex-start;
        text-align: left;
    }

    .side-word {
        display: block;
        font-size: 36px;
        font-weight: 900;
        color: #F4CA16;
        text-transform: uppercase;
        letter-spacing: 3px;
        line-height: 1.15;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
        opacity: 0;
        transform: translateY(18px);
        transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .side-word.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   HOW IT WORKS - Step cards grid (upgraded)
   ======================================== */
.demo-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.demo-step {
    text-align: center;
    padding: 28px 18px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.demo-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, transparent);
    transition: background 0.4s ease;
}

.demo-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(244, 202, 22, 0.3);
}

.demo-step.active {
    background: rgba(244, 202, 22, 0.12);
    border-color: rgba(244, 202, 22, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(244, 202, 22, 0.2);
}

.demo-step.active::before {
    background: linear-gradient(90deg, #F4CA16, #FFD93D);
}

.demo-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(244, 202, 22, 0.15);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    color: #F4CA16;
    margin-bottom: 16px;
    transition: all 0.4s ease;
    border: 2px solid rgba(244, 202, 22, 0.3);
}

.demo-step.active .demo-step-number {
    background: #F4CA16;
    color: #003d24;
    border-color: #F4CA16;
    box-shadow: 0 4px 16px rgba(244, 202, 22, 0.4);
}

.demo-step-icon {
    margin-bottom: 16px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.demo-step-icon i {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.4s ease;
}

.demo-step.active .demo-step-icon {
    background: rgba(244, 202, 22, 0.2);
}

.demo-step.active .demo-step-icon i {
    color: #F4CA16;
}

.demo-step h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.demo-step p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin: 0;
}

.demo-step.active h3 {
    color: #F4CA16;
}

.demo-step.active p {
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 1100px) {
    .demo-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}

@media (max-width: 550px) {
    .demo-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .demo-step {
        padding: 18px 14px;
    }
    .demo-step h3 {
        font-size: 14px;
    }
    .demo-step p {
        display: none;
    }
    .demo-step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    .demo-step-icon {
        width: 44px;
        height: 44px;
    }
    .demo-step-icon i {
        font-size: 18px;
    }
}

/* Progress indicators */
.demo-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.progress-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.progress-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .demo-stage-container {
        height: 320px;
    }

    .phone-mockup {
        width: 220px;
        height: 300px;
    }

    .demo-bag, .demo-scanner {
        display: none;
    }
}

/* Scroll Animations - Always visible, just animate transform */
.scroll-animate {
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.8s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 1;
    transform: translateX(0);
    transition: transform 1s ease-out;
}

.scroll-animate-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 1;
    transform: translateX(0);
    transition: transform 1s ease-out;
}

.scroll-animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Keep scroll animations on mobile — about section left/right slides still work */
@media (max-width: 768px) {
    .scroll-animate {
        opacity: 1 !important;
        transform: none !important;
    }
    /* scroll-animate-left and scroll-animate-right remain active on mobile */
}

.feature-card.scroll-animate {
    transition-delay: var(--delay, 0s);
}

.hidden {
    display: none !important;
}

/* Stats Section */
.stats-section {
    padding: 60px var(--spacing-lg);
    background: rgba(244, 245, 247, 0.5);
    position: relative;
    overflow: hidden;
}

.stats-circle-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.1), transparent);
    left: -150px;
    top: 0;
    opacity: 0.3;
}

.stats-circle-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.15), transparent);
    right: -100px;
    bottom: 0;
    opacity: 0.4;
}

.stats-section .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.stats-header h2 {
    font-size: 36px;
    margin-bottom: 0;
    color: var(--text-color);
    font-weight: 700;
}

.stats-subtitle {
    color: var(--tab-inactive);
    font-size: 18px;
    max-width: 700px;
    margin: 16px auto 0;
}

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

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        padding: 24px 16px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .stat-description {
        display: none;
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
    
    .stat-card {
        padding: 32px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-label {
        font-size: 18px;
    }
    
    .stat-description {
        display: block;
    }
}

.stat-card {
    position: relative;
    padding: 40px;
    border-radius: 24px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.stat-bg-decoration {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    right: -30px;
    top: -30px;
    transition: transform 0.5s ease;
}

.stat-card:hover .stat-bg-decoration {
    transform: scale(1.5);
}

.stat-content {
    position: relative;
    z-index: 10;
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(46, 204, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: rgba(46, 204, 113, 0.2);
}

.stat-icon i {
    font-size: 28px;
    color: var(--primary);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-suffix {
    font-size: 32px;
    margin-left: 4px;
}

.stat-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.stat-description {
    font-size: 14px;
    color: var(--tab-inactive);
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn {
    min-width: 150px;
    font-size: 16px;
    padding: 12px 24px;
}

.hero .btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.25);
}

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

.hero .btn-secondary {
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--primary);
    border: 2px solid rgba(46, 204, 113, 0.3);
}

.hero .btn-secondary:hover {
    background-color: rgba(46, 204, 113, 0.2);
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 100px var(--spacing-lg);
    background-color: var(--bg-color);
}

.features .container {
    max-width: 1200px;
    margin: 0 auto;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 0;
    color: var(--text-color);
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1000px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .feature-card {
        padding: 20px 16px;
    }
    
    .feature-card h3 {
        font-size: 14px;
    }
    
    .feature-card p {
        font-size: 12px;
        display: none;
    }
    
    .feature-icon-wrapper {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
    }
    
    .feature-icon-wrapper i {
        font-size: 20px;
    }
}

.feature-card {
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 36px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(100, 116, 139, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(34, 197, 94, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, rgba(139, 92, 246, 0.02) 0%, transparent 50%),
        conic-gradient(from 90deg at 50% 50%, rgba(16, 185, 129, 0.02) 0deg, transparent 120deg, rgba(99, 102, 241, 0.02) 240deg, transparent 360deg);
    pointer-events: none;
    opacity: 0.6;
    animation: featureShimmer 10s ease-in-out infinite;
}

@keyframes featureShimmer {
    0%, 100% { opacity: 0.6; transform: rotate(0deg); }
    50% { opacity: 0.3; transform: rotate(180deg); }
}

.feature-card:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
    background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
}

.feature-card:hover::before {
    animation-duration: 3s;
    opacity: 0.8;
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(46, 204, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--primary);
    transform: scale(1.1);
}

.feature-icon-wrapper i {
    font-size: 28px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper i {
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-color);
    font-weight: 600;
}

.feature-card p {
    color: var(--tab-inactive);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

/* CTA Section */
/* ========================================
   CTA SECTION - Animated Design
   ======================================== */
.cta-section-new {
    padding: 60px var(--spacing-lg) 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.cta-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.cta-center-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 500px;
}

/* Text SVG - starts flat, JS morphs path to curved */
.cta-curved-text {
    width: 800px;
    max-width: 95vw;
    height: auto;
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
}

/* Buttons - visible & centered from the start */
.cta-buttons-wrapper {
    display: flex;
    gap: 24px;
    z-index: 5;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.cta-new-btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    opacity: 1;
    transition: transform 2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s,
                opacity 0.3s ease,
                background 0.3s ease,
                color 0.3s ease,
                box-shadow 0.3s ease;
}

/* Buttons split outward when animated (desktop) */
@media (min-width: 900px) {
    .cta-section-new.cta-animated .cta-btn-left {
        transform: translateX(-220px);
    }
    .cta-section-new.cta-animated .cta-btn-right {
        transform: translateX(220px);
    }
}

/* Bread image - stuck to bottom, starts small, grows */
.cta-bread-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 400px;
    z-index: 4;
    transform: translateX(-50%) scale(0.25);
    transform-origin: bottom center;
    opacity: 0;
    transition: transform 2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s,
                opacity 0.5s ease 0.3s;
}

.cta-section-new.cta-animated .cta-bread-img {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.cta-bread-img img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 -8px 25px rgba(0, 0, 0, 0.15));
}

.cta-new-btn-primary {
    background: #003d24;
    color: #F4CA16;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 61, 36, 0.25);
}

.cta-new-btn-primary:hover {
    background: #005a34;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 61, 36, 0.35);
}

.cta-new-btn-primary i {
    transition: transform 0.3s ease;
}

.cta-new-btn-primary:hover i {
    transform: translateX(4px);
}

.cta-new-btn-outline {
    background: transparent;
    color: #003d24;
    border: 2px solid #003d24;
}

.cta-new-btn-outline:hover {
    background: #003d24;
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .cta-curved-text {
        width: 95vw;
        order: 1;
    }

    .cta-center-wrapper {
        min-height: auto;
        padding-bottom: 40px;
    }

    .cta-bread-img {
        position: relative;
        bottom: auto;
        left: auto;
        width: 260px;
        transform: none;
        opacity: 1;
        order: 2;
        margin: 20px auto;
    }

    .cta-section-new.cta-animated .cta-bread-img {
        transform: none;
    }

    .cta-bread-img img {
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
    }

    .cta-buttons-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        order: 3;
    }

    .cta-new-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Footer layout rows */
.footer-row-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 150px;
    margin: 32px 0 24px 0;
    flex-wrap: wrap;
}

.footer-social-section {
    flex: 0 0 auto;
    margin-left: 10%; /* pushes it to the right */
}

.footer-social-section > p {
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.footer-newsletter-section {
    flex: 1;
    min-width: 250px;
    max-width: 450px;
}

.footer-row-3 {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-row-3 p {
    font-size: 13px;
    opacity: 0.7;
    margin: 0;
}

.footer-row-3 span {
    margin: 0 8px;
    opacity: 0.5;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 40px var(--spacing-lg) 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

footer h3 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0 0 8px 0;
    text-align: center;
}

footer > .container > p {
    margin: 4px 0;
    opacity: 0.8;
    font-size: 14px;
    text-align: center;
}

/* Footer layout - row with newsletter and social */
.footer-content-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
    flex-wrap: wrap;
}

footer .social {
    display: flex;
    gap: 16px;
    margin: 0;
}

footer .social .social-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all var(--transition-base);
}

footer .social .social-facebook {
    background: rgba(24, 119, 242, 0.12);
    color: #1877F2;
}
footer .social .social-facebook:hover {
    background: #1877F2;
    color: white;
    transform: translateY(-3px);
}

footer .social .social-twitter {
    background: rgba(29, 161, 242, 0.12);
    color: #1DA1F2;
}
footer .social .social-twitter:hover {
    background: #1DA1F2;
    color: white;
    transform: translateY(-3px);
}

footer .social .social-instagram {
    background: linear-gradient(135deg, rgba(253,29,29,0.12), rgba(131,58,180,0.12));
    color: #E4405F;
}
footer .social .social-instagram:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    transform: translateY(-3px);
}

footer .social .social-linkedin {
    background: rgba(10, 102, 194, 0.12);
    color: #0A66C2;
}
footer .social .social-linkedin:hover {
    background: #0A66C2;
    color: white;
    transform: translateY(-3px);
}

footer .social .social-link i {
    font-size: 22px;
}

/* Newsletter in Footer */
.footer-newsletter {
    margin: 0;
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.newsletter-title {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 1 !important;
    margin: 0 0 8px 0 !important;
    color: #F4CA16;
    text-align: left;
}

.newsletter-title i {
    margin-right: 6px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    position: relative;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border: 2px solid rgba(255,255,255,0.2);
    border-right: none;
    border-radius: 8px 0 0 8px;
    background: rgba(255,255,255,0.08);
    color: white;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.newsletter-form button {
    padding: 10px 18px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #00a86b;
}

.newsletter-msg {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    text-align: center;
    margin-top: 6px;
    font-size: 0.8rem;
    color: #2ecc71;
}

@media (max-width: 768px) {
    footer {
        padding: 35px var(--spacing-md) 25px;
    }
    
    .footer-content-row {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .footer-row-2 {
        flex-direction: column;
        align-items: center;
        gap: 28px;
        text-align: center;
    }

    .footer-social-section{
        margin-left: 0 !important; 
    }
    
    .footer-social-section > p {
        text-align: center;
    }
    
    .footer-newsletter {
        width: 100%;
        max-width: 100%;
    }
    
    .newsletter-title {
        text-align: center;
    }
    
    footer .social {
        justify-content: center;
    }
}

/* ========================================
   Hamburger Menu (mobile)
   ======================================== */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 101;
    flex-direction: column;
    gap: 5px;
}

.nav-hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Typewriter cursor for quote */
.typewriter-active::after {
    content: '|';
    animation: blink 0.6s step-end infinite;
    color: #003d24;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* ========================================
   Why Use Barakeat Section
   ======================================== */
.why-barakeat {
    padding: 60px var(--spacing-lg);
    background: var(--bg-color);
    overflow: hidden;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.why-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition-delay: var(--delay, 0s);
}

.why-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #003d24, #00563a);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F4CA16;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(0, 61, 36, 0.25);
}

.why-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 6px;
}

.why-item p {
    font-size: 16px;
    color: var(--tab-inactive);
    margin: 0;
    line-height: 1.5;
}

.why-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-pizza-img {
    width: 110%;
    max-width: 550px;
    height: auto;
    margin-left: -60px;
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.18));
    transform: scaleX(-1);
}

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .why-image {
        order: -1;
    }
    .why-pizza-img {
        width: 80%;
        margin-left: 0;
    }
}

/* Responsive Landing */
@media (max-width: 1000px) {
    .navbar-landing {
        grid-template-columns: auto 1fr;
        justify-items: start;
        height: auto;
        padding: 12px 20px;
    }

    .nav-hamburger {
        display: flex;
        justify-self: end;
    }

    .navbar-landing .nav-center {
        display: none;
        flex-direction: column;
        width: 100%;
        grid-column: 1 / -1;
        gap: 0;
        background: var(--primary);
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-top: 10px;
    }

    .navbar-landing .nav-center.nav-open {
        display: flex;
    }

    .navbar-landing .nav-center a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .navbar-landing .nav-actions {
        display: none;
        flex-direction: column;
        width: 100%;
        grid-column: 1 / -1;
        gap: 10px;
        padding-bottom: 10px;
    }

    .navbar-landing .nav-actions.nav-open {
        display: flex;
    }

    .navbar-landing .nav-actions .nav-btn {
        width: 100%;
    }

    .navbar-landing .nav-actions .languageSelector {
        width: 100%;
    }

    .features,
    .how-it-works,
    .cta-section,
    .about-barakeat,
    .stats-section {
        padding: 60px var(--spacing-lg);
    }

    .features h2,
    .how-it-works h2,
    .cta-section h2,
    .about-content h2,
    .stats-header h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .features-grid,
    .steps-grid {
        gap: 24px;
    }

    .feature-card {
        padding: 28px;
    }
}

/* Section Title Styling */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
}

/* ========================================
   Hero Bag Floating Text
   ======================================== */
.hero-bag-text {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 4px;
    pointer-events: none;
}

.hero-bag-text span {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 40px;
    font-weight: 700;
    font-style: italic;
    color: #003d24;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.1;
}

.hero-bag-text-left {
    right: calc(100%);
    text-align: right;
    align-items: flex-end;
    padding-right: 20px;
}

.hero-bag-text-right {
    left: calc(100%);
    text-align: left;
    align-items: flex-start;
    padding-left: 20px;
}

/* Add quotation marks */
/* .hero-bag-text-left::before {
    content: '"';
    font-family: 'Georgia', serif;
    font-size: 80px;
    color: #003d24;
    opacity: 0.3;
    position: absolute;
    top: -30px;
    right: 0;
}

.hero-bag-text-right::after {
    content: '"';
    font-family: 'Georgia', serif;
    font-size: 80px;
    color: #003d24;
    opacity: 0.3;
    position: absolute;
    bottom: -50px;
    right: -20px;
} */

@media (max-width: 1200px) {
    .hero-bag-text span {
        font-size: 40px;
    }
    .hero-bag-text-left {
        right: calc(90%);
    }
    .hero-bag-text-right {
        left: calc(90%);
    }
    .hero-bag-text-left::before,
    .hero-bag-text-right::after {
        font-size: 60px;
    }
}

@media (max-width: 900px) {
    .hero-bag-text-left {
        right: calc(85%);
    }
    .hero-bag-text-right {
        left: calc(85%);
    }
}

/* ========================================
   Green Background Section (How It Works)
   ======================================== */
.green-bg-section {
    background: #003d24 !important;
}

.green-bg-section .section-title,
.green-bg-section .demo-subtitle {
    color: white !important;
}

.green-bg-section .title-underline-center {
    background: #F4CA16 !important;
}

/* Demo step cards - enhanced bg with patterns for green section */
.green-bg-section .demo-step {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.green-bg-section .demo-step::after {
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 61, 36, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(244, 202, 22, 0.06) 0%, transparent 50%),
        conic-gradient(from 45deg at 50% 50%, rgba(255, 255, 255, 0.05) 0deg, transparent 90deg, rgba(244, 202, 22, 0.03) 180deg, transparent 270deg);
    animation: shimmer 6s ease-in-out infinite;
}

.green-bg-section .demo-step.active::after {
    background: 
        radial-gradient(circle at 50% 50%, rgba(244, 202, 22, 0.12) 0%, transparent 70%),
        conic-gradient(from 0deg at 50% 50%, rgba(244, 202, 22, 0.08) 0deg, transparent 120deg, rgba(255, 193, 7, 0.06) 240deg, transparent 360deg);
    animation: shimmer 3s ease-in-out infinite;
}

.green-bg-section .demo-step:hover {
    background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.green-bg-section .demo-step h3 {
    color: #003d24 !important;
}

.green-bg-section .demo-step p {
    color: #666 !important;
}

.green-bg-section .demo-step-number {
    background: linear-gradient(135deg, #003d24 0%, #004d2e 100%);
    color: #F4CA16;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.green-bg-section .demo-step.active .demo-step-number {
    background: linear-gradient(135deg, #F4CA16 0%, #FFD93D 100%);
    color: #003d24;
}

.green-bg-section .demo-step-icon {
    background: linear-gradient(135deg, rgba(0, 61, 36, 0.15) 0%, rgba(0, 61, 36, 0.08) 100%);
}

.green-bg-section .demo-step-icon i {
    color: #003d24;
}

.green-bg-section .demo-step.active .demo-step-icon {
    background: linear-gradient(135deg, #F4CA16 0%, #FFD93D 100%);
}

.green-bg-section .demo-step.active .demo-step-icon i {
    color: #003d24;
}

.green-bg-section .demo-step.active {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFF5D6 100%);
    border-color: rgba(244, 202, 22, 0.5);
}

.green-bg-section .demo-step.active::before {
    background: linear-gradient(90deg, #F4CA16, #FFD93D);
}

.green-bg-section .decorative-circle {
    border-color: rgba(255, 255, 255, 0.15);
}

/* Phone mockup styling for green section */
.green-bg-section .phone-mockup {
    background: #1a1a1a;
    border-color: #333;
}

/* ========================================
   About Section Scroll Animations
   ======================================== */
.scroll-animate-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate-left.visible,
.scroll-animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   PARTNERS SECTION - Carousel + Modern BG
   ======================================== */
.partners-section {
    padding: 60px 0;
    background: #003d24;
    overflow: hidden;
    position: relative;
}

/* Clean dot-grid pattern overlay */
.partners-bg-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        radial-gradient(circle, rgba(244, 202, 22, 0.08) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px, 20px 20px;
    background-position: 0 0, 10px 10px;
}

.partners-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.partners-badge {
    display: inline-block;
    background: rgba(244, 202, 22, 0.15);
    color: #F4CA16;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.partners-title {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.partners-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Carousel */
.partners-carousel-wrapper {
    overflow: hidden;
    padding: 16px 0;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.partners-carousel {
    display: flex;
    gap: 28px;
    width: fit-content;
}

.partners-scroll {
    animation: partnersScroll 35s linear infinite;
}

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

.partner-card {
    flex-shrink: 0;
    width: 200px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    gap: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.partner-card:hover {
    transform: scale(1.05) translateY(-4px);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.partner-photo {
    width: 160px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
}

.partner-name {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 1.3;
}

/* Partners CTA */
.partners-cta {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 16px;
}

.partners-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.partners-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #F4CA16;
    color: #003d24;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 202, 22, 0.3);
}

.partners-cta-btn:hover {
    background: #FFD93D;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 202, 22, 0.5);
}

.partners-cta-btn i {
    transition: transform 0.3s ease;
}

.partners-cta-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .partners-section {
        padding: 60px 0;
    }

    .partners-title {
        font-size: 28px;
    }

    .partners-subtitle {
        font-size: 15px;
    }

    .partner-card {
        width: 160px;
        padding: 14px 12px;
    }

    .partner-photo {
        width: 130px;
        height: 95px;
    }

    .partner-name {
        font-size: 13px;
    }
}

@media (max-width: 425px) {
    .brand-title {
        font-size: 55px;
        font-weight: 600;
    }
}

/* ========================================
   Hero Bag Fill Animation
   Food images fly into empty tote, then crossfade to filled tote
   ======================================== */

/* Wrapper — stacks two bag images + wobble */
.bag-wobble-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bagWobble 0.25s ease-in-out 1.6s 5;
}

@keyframes bagWobble {
    0%, 100% { transform: rotate(0deg); }
    30%      { transform: rotate(1.5deg); }
    70%      { transform: rotate(-1.5deg); }
}

/* Empty tote — visible at first, fades out when filled tote appears */
.hero-bag-image.bag-empty {
    position: relative;
    z-index: 1;
    animation: fadeOutEmptyBag 0.6s ease-in 2.6s forwards;
}

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

/* Filled tote — sits behind empty, fades in to replace it */
.hero-bag-image.bag-filled {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;
    animation: fadeInFilledBag 0.6s ease-out 2.6s forwards;
}

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

/* Flying food image items — start offscreen, arc into bag */
.flying-food {
    position: absolute;
    width: 200px;
    height: 200px;
    object-fit: contain;
    z-index: 102;
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;
}

/* ---- Items dropping from top ---- */
.flying-food.fly-from-top {
    animation: flyFromTop 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) var(--delay) forwards;
}

@keyframes flyFromTop {
    0% {
        transform: translate(var(--sx), var(--sy)) scale(1) rotate(0deg);
        opacity: 0;
    }
    8% { opacity: 1; }
    40% {
        /* Falling, drifting toward center — stays big */
        transform: translate(calc(var(--sx) * 0.25), -40vh) scale(1) rotate(8deg);
        opacity: 1;
    }
    70% {
        /* Near the bag opening — still large and visible */
        transform: translate(0px, -250px) scale(0.9) rotate(-5deg);
        opacity: 1;
    }
    88% {
        /* Right at the opening, starts to tuck in */
        transform: translate(0px, -170px) scale(0.5) rotate(3deg);
        opacity: 0.8;
    }
    100% {
        /* Drops into bag opening */
        transform: translate(0px, -140px) scale(0) rotate(0deg);
        opacity: 0;
    }
}

/* ---- Items sweeping from the left ---- */
.flying-food.fly-from-left {
    animation: flyFromLeft 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) var(--delay) forwards;
}

@keyframes flyFromLeft {
    0% {
        transform: translate(var(--sx), var(--sy)) scale(1) rotate(0deg);
        opacity: 0;
    }
    8% { opacity: 1; }
    35% {
        /* Sweeping rightward — stays big and realistic */
        transform: translate(-28vw, calc(var(--sy) * 0.15 - 80px)) scale(1) rotate(-10deg);
        opacity: 1;
    }
    65% {
        /* Curving above the bag — still large */
        transform: translate(-4vw, -280px) scale(0.9) rotate(5deg);
        opacity: 1;
    }
    88% {
        /* Right at the opening, starts to tuck in */
        transform: translate(0px, -170px) scale(0.5) rotate(-3deg);
        opacity: 0.8;
    }
    100% {
        /* Drops into bag opening */
        transform: translate(0px, -140px) scale(0) rotate(0deg);
        opacity: 0;
    }
}

/* ---- Items sweeping from the right ---- */
.flying-food.fly-from-right {
    animation: flyFromRight 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) var(--delay) forwards;
}

@keyframes flyFromRight {
    0% {
        transform: translate(var(--sx), var(--sy)) scale(1) rotate(0deg);
        opacity: 0;
    }
    8% { opacity: 1; }
    35% {
        /* Sweeping leftward — stays big and realistic */
        transform: translate(28vw, calc(var(--sy) * 0.15 - 80px)) scale(1) rotate(10deg);
        opacity: 1;
    }
    65% {
        /* Curving above the bag — still large */
        transform: translate(4vw, -280px) scale(0.9) rotate(-5deg);
        opacity: 1;
    }
    88% {
        /* Right at the opening, starts to tuck in */
        transform: translate(0px, -170px) scale(0.5) rotate(3deg);
        opacity: 0.8;
    }
    100% {
        /* Drops into bag opening */
        transform: translate(0px, -140px) scale(0) rotate(0deg);
        opacity: 0;
    }
}

/* Side text fades in after bag fills */
.hero-bag-text.bag-text-enter {
    opacity: 0;
    animation: bagTextReveal 0.8s ease-out 3.4s forwards;
}

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

/* Responsive: scale flying food for tablets/mobile */
@media (max-width: 768px) {
    .flying-food {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 480px) {
    .flying-food {
        width: 100px;
        height: 100px;
    }
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location-section {
    padding: 60px 20px;
    background: #f8faf9;
}

.location-layout {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.location-icon-col {
    flex-shrink: 0;
}

.location-pin-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #00a86b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 12px 40px rgba(0, 61, 36, 0.25);
    transition-delay: var(--delay, 0s);
    /* transform: translateY(-300px); */ 
}



.location-text-col .section-title {
    text-align: left;
    font-size: 1.5rem;
}

.location-text-col .title-underline {
    margin-bottom: 20px;
}

.location-main {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 8px;
}

.location-main strong {
    color: var(--primary);
    font-weight: 700;
}

.location-sub {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.location-cta {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 12px;
}

.location-cta i {
    margin-right: 6px;
    animation: bellShake 1.5s ease-in-out infinite;
}

@keyframes bellShake {
    0%, 100% { transform: rotate(0); }
    15% { transform: rotate(12deg); }
    30% { transform: rotate(-10deg); }
    45% { transform: rotate(6deg); }
    60% { transform: rotate(0); }
}

@media (max-width: 768px) {
    .location-layout {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    .location-text-col .section-title {
        text-align: center;
    }
    .location-text-col .title-underline {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ============================================
   APP COMING SOON SECTION
   ============================================ */
.app-coming-soon {
    padding: 80px 20px;
    background: linear-gradient(135deg, #003d24, #005a35);
    color: white;
    overflow: hidden;
}

.app-coming-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.app-coming-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 202, 22, 0.15);
    color: #F4CA16;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(244, 202, 22, 0.3);
    animation: bientotGlow 2.5s ease-in-out infinite;
}

@keyframes bientotGlow {
    0%, 100% {
        background: rgba(244, 202, 22, 0.15);
        box-shadow: 0 0 0 rgba(244, 202, 22, 0);
        transform: scale(1);
    }
    50% {
        background: rgba(244, 202, 22, 0.3);
        box-shadow: 0 0 20px rgba(244, 202, 22, 0.4), 0 0 40px rgba(244, 202, 22, 0.15);
        transform: scale(1.05);
    }
}

.app-coming-text h2 .bientot-highlight {
    display: inline-block;
    color: #F4CA16;
    animation: bientotSlide 3s ease-in-out infinite;
    position: relative;
}

@keyframes bientotSlide {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(6px); }
    75% { transform: translateX(-6px); }
}

.app-coming-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.app-coming-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 28px;
}

.app-store-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    cursor: default;
}

.store-btn i {
    font-size: 1.5rem;
}

.store-btn small {
    display: block;
    font-size: 0.7rem;
    opacity: 0.7;
    line-height: 1;
}

.store-btn strong {
    display: block;
    font-size: 0.95rem;
    line-height: 1.2;
}

.store-btn-disabled {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.app-coming-image {
    position: relative;
    text-align: center;
}

.app-coming-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .app-coming-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .app-store-buttons {
        justify-content: center;
    }
    .app-coming-image img {
        max-width: 280px;
    }
    .app-coming-text h2 {
        font-size: 1.6rem;
    }
}

/* ============================================
   GREEN DECORATIVE BUBBLES FOR LIGHT SECTIONS
   ============================================ */
.section-bubble {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.section-bubble-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 61, 36, 0.06) 0%, transparent 70%);
    top: -80px;
    right: -100px;
    animation: bubbleFloat 8s ease-in-out infinite;
}

.section-bubble-2 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0, 168, 107, 0.05) 0%, transparent 70%);
    bottom: -60px;
    left: -80px;
    animation: bubbleFloatAlt 10s ease-in-out infinite;
}

.section-bubble-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(244, 202, 22, 0.06) 0%, transparent 70%);
    top: 40%;
    left: 60%;
    animation: bubbleFloat 12s ease-in-out infinite reverse;
}

/* Ensure parent sections can hold the bubbles */
.about-barakeat,
.why-barakeat,
.location-section {
    position: relative;
    overflow: hidden;
}