/* Veggie Vibe — Modern Landing Page */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --vv-primary: #2d6a4f;
    --vv-primary-dark: #1b4332;
    --vv-primary-light: #40916c;
    --vv-accent: #95d5b2;
    --vv-accent-soft: #d8f3dc;
    --vv-bg: #f8faf7;
    --vv-bg-alt: #eef5ee;
    --vv-text: #1a1a1a;
    --vv-text-muted: #5c6b63;
    --vv-white: #ffffff;
    --vv-shadow: 0 10px 40px rgba(27, 67, 50, 0.08);
    --vv-shadow-lg: 0 20px 60px rgba(27, 67, 50, 0.12);
    --vv-radius: 16px;
    --vv-radius-lg: 24px;
    --vv-header-height: 76px;
    --vv-transition: 0.3s ease;
}

html[lang="ar"] body {
    font-family: 'Cairo', sans-serif;
}

html[lang="en"] body {
    font-family: 'Inter', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--vv-text);
    background: var(--vv-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

.vv-container {
    width: min(1200px, calc(100% - 2rem));
    margin-inline: auto;
}

/* Loader */
.vv-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: var(--vv-white);
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.vv-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.vv-loader img {
    width: 80px;
    animation: vv-pulse 1.2s ease-in-out infinite;
}

@keyframes vv-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.7; }
}

/* Header */
.vv-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--vv-header-height);
    transition: background var(--vv-transition), box-shadow var(--vv-transition);
}

.vv-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--vv-shadow);
}

.vv-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.vv-logo img {
    height: 56px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    border-radius: 10px;
}

.vv-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vv-nav a {
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--vv-text-muted);
}

.vv-nav a:hover,
.vv-nav a.active {
    color: var(--vv-primary);
    background: var(--vv-accent-soft);
}

.vv-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vv-lang-btn {
    border: 1px solid rgba(45, 106, 79, 0.15);
    background: var(--vv-white);
    color: var(--vv-primary);
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

.vv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: transform var(--vv-transition), box-shadow var(--vv-transition), background var(--vv-transition);
}

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

.vv-btn--primary {
    background: linear-gradient(135deg, var(--vv-primary), var(--vv-primary-light));
    color: var(--vv-white);
    box-shadow: 0 8px 24px rgba(45, 106, 79, 0.25);
}

.vv-btn--outline {
    background: transparent;
    color: var(--vv-primary);
    border: 2px solid rgba(45, 106, 79, 0.25);
}

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

.vv-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--vv-accent-soft);
    border-radius: 12px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.vv-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--vv-primary);
    transition: var(--vv-transition);
}

.vv-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vv-menu-toggle.active span:nth-child(2) { opacity: 0; }
.vv-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.vv-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--vv-header-height) + 2rem);
    padding-bottom: 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 35%, #fefce8 100%);
}

.vv-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(149, 213, 178, 0.35) 0%, transparent 70%);
    top: -100px;
    inset-inline-end: -100px;
}

.vv-hero::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(64, 145, 108, 0.15) 0%, transparent 70%);
    bottom: -80px;
    inset-inline-start: -80px;
}

.vv-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.vv-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    background: var(--vv-white);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--vv-primary);
    box-shadow: var(--vv-shadow);
    margin-bottom: 1.25rem;
}

.vv-hero__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 1rem;
    color: var(--vv-primary-dark);
}

.vv-hero__title span {
    color: var(--vv-primary-light);
}

.vv-hero__text {
    font-size: 1.05rem;
    color: var(--vv-text-muted);
    margin-bottom: 2rem;
    max-width: 520px;
}

.vv-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.vv-hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.vv-hero__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--vv-text-muted);
}

.vv-hero__feature i {
    color: var(--vv-primary);
}

.vv-hero__visual {
    position: relative;
}

.vv-hero__card {
    background: var(--vv-white);
    border-radius: var(--vv-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--vv-shadow-lg);
    position: relative;
}

.vv-hero__card-main {
    border-radius: var(--vv-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, var(--vv-accent-soft), var(--vv-accent));
    display: grid;
    place-items: center;
}

.vv-hero__card-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vv-hero__emoji {
    font-size: 6rem;
}

.vv-hero__float {
    position: absolute;
    background: var(--vv-white);
    border-radius: var(--vv-radius);
    padding: 0.85rem 1rem;
    box-shadow: var(--vv-shadow);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.vv-hero__float--1 { top: -12px; inset-inline-start: -12px; }
.vv-hero__float--2 { bottom: 20px; inset-inline-end: -16px; }

.vv-hero__float-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--vv-accent-soft);
    color: var(--vv-primary);
}

/* Owl slider override for hero */
.vv-hero-slider {
    min-height: 100vh;
    padding-top: var(--vv-header-height);
}

.vv-hero-slider .item {
    min-height: calc(100vh - var(--vv-header-height));
    display: flex;
    align-items: center;
    position: relative;
}

.vv-hero-slider .hero-slide {
    position: relative;
    width: 100%;
    min-height: calc(100vh - var(--vv-header-height));
    display: flex;
    align-items: center;
    padding: 2rem 0 4rem;
    overflow: hidden;
}

.vv-hero-slider .hero-slide__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.vv-hero-slider .hero-slide__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vv-hero-slider .hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(248, 250, 247, 0.96) 0%, rgba(248, 250, 247, 0.88) 55%, rgba(248, 250, 247, 0.75) 100%);
}

.vv-hero-slider .hero-slide__content {
    position: relative;
    z-index: 1;
    max-width: 620px;
}

.vv-hero-slider .owl-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.vv-hero-slider .owl-dot span {
    background: rgba(45, 106, 79, 0.25) !important;
}

.vv-hero-slider .owl-dot.active span {
    background: var(--vv-primary) !important;
}

/* Stats */
.vv-stats {
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    padding-bottom: 1rem;
}

.vv-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: var(--vv-white);
    border-radius: var(--vv-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--vv-shadow-lg);
}

.vv-stat {
    text-align: center;
    padding: 1rem;
}

.vv-stat__number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--vv-primary);
    line-height: 1.2;
}

.vv-stat__label {
    font-size: 0.88rem;
    color: var(--vv-text-muted);
    font-weight: 600;
}

/* Sections */
.vv-section {
    padding: 5rem 0;
}

.vv-section--alt {
    background: var(--vv-bg);
}

.vv-section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}

.vv-section__eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--vv-primary-light);
    margin-bottom: 0.75rem;
}

.vv-section__title {
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--vv-primary-dark);
    margin: 0 0 1rem;
}

.vv-section__subtitle {
    color: var(--vv-text-muted);
    margin: 0;
    font-size: 1.02rem;
}

/* About */
.vv-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.vv-about__images {
    position: relative;
    min-height: 420px;
}

.vv-about__img {
    border-radius: var(--vv-radius-lg);
    overflow: hidden;
    box-shadow: var(--vv-shadow);
}

.vv-about__img--1 {
    width: 75%;
    aspect-ratio: 4/5;
}

.vv-about__img--2 {
    position: absolute;
    bottom: 0;
    inset-inline-end: 0;
    width: 55%;
    aspect-ratio: 1;
    border: 6px solid var(--vv-white);
}

.vv-about__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vv-about__list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.vv-about__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-weight: 600;
    color: var(--vv-text-muted);
}

.vv-about__list i {
    color: var(--vv-primary);
    margin-top: 0.25rem;
}

/* Categories */
.vv-categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.25rem;
}

.vv-category-card {
    background: var(--vv-white);
    border-radius: var(--vv-radius);
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: var(--vv-shadow);
    transition: transform var(--vv-transition), box-shadow var(--vv-transition);
}

.vv-category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--vv-shadow-lg);
}

.vv-category-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    background: var(--vv-accent-soft);
    display: grid;
    place-items: center;
}

.vv-category-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vv-category-card__icon span {
    font-size: 2rem;
}

.vv-category-card__name {
    font-weight: 700;
    color: var(--vv-primary-dark);
    margin: 0;
}

/* Services */
.vv-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.vv-service-card {
    background: var(--vv-white);
    border-radius: var(--vv-radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--vv-shadow);
    transition: transform var(--vv-transition);
    border: 1px solid rgba(45, 106, 79, 0.06);
}

.vv-service-card:hover {
    transform: translateY(-4px);
}

.vv-service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--vv-accent-soft), var(--vv-accent));
    display: grid;
    place-items: center;
    color: var(--vv-primary);
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.vv-service-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--vv-primary-dark);
    margin: 0 0 0.75rem;
}

.vv-service-card__text {
    color: var(--vv-text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* How it works */
.vv-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    counter-reset: step;
}

.vv-step {
    position: relative;
    background: var(--vv-white);
    border-radius: var(--vv-radius);
    padding: 2rem 1.5rem 1.5rem;
    box-shadow: var(--vv-shadow);
    text-align: center;
}

.vv-step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -16px;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--vv-primary);
    color: var(--vv-white);
    font-weight: 800;
    display: grid;
    place-items: center;
    font-size: 0.9rem;
}

html[lang="ar"] .vv-step::before {
    transform: translateX(50%);
}

.vv-step__img {
    width: 80px;
    height: 80px;
    margin: 0.5rem auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    background: var(--vv-accent-soft);
}

.vv-step__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vv-step__title {
    font-weight: 700;
    color: var(--vv-primary-dark);
    margin: 0;
}

/* CTA */
.vv-cta {
    padding: 4rem 0;
}

.vv-cta__box {
    background: linear-gradient(135deg, var(--vv-primary-dark), var(--vv-primary), var(--vv-primary-light));
    border-radius: var(--vv-radius-lg);
    padding: 3.5rem 2rem;
    text-align: center;
    color: var(--vv-white);
    position: relative;
    overflow: hidden;
}

.vv-cta__box::before {
    content: '🥬';
    position: absolute;
    font-size: 8rem;
    opacity: 0.08;
    top: -20px;
    inset-inline-end: 40px;
}

.vv-cta__title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    margin: 0 0 1rem;
}

.vv-cta__text {
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto 1.75rem;
}

.vv-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
}

/* FAQ */
.vv-faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.vv-faq-tab {
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(45, 106, 79, 0.15);
    background: var(--vv-white);
    color: var(--vv-text-muted);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--vv-transition);
}

.vv-faq-tab.active,
.vv-faq-tab:hover {
    background: var(--vv-primary);
    color: var(--vv-white);
    border-color: var(--vv-primary);
}

.vv-faq-panel { display: none; }
.vv-faq-panel.active { display: block; }

.vv-accordion-item {
    background: var(--vv-white);
    border-radius: var(--vv-radius);
    margin-bottom: 0.75rem;
    box-shadow: var(--vv-shadow);
    overflow: hidden;
}

.vv-accordion-btn {
    width: 100%;
    text-align: start;
    padding: 1.15rem 1.25rem;
    border: none;
    background: transparent;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--vv-primary-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.vv-accordion-btn i {
    transition: transform var(--vv-transition);
    color: var(--vv-primary);
}

.vv-accordion-btn.active i {
    transform: rotate(180deg);
}

.vv-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.vv-accordion-body__inner {
    padding: 0 1.25rem 1.15rem;
    color: var(--vv-text-muted);
}

/* Partners */
.vv-partners__carousel .item {
    padding: 1rem;
}

.vv-partners__carousel img {
    height: 60px;
    width: auto;
    max-width: 120px;
    margin: 0 auto;
    object-fit: contain;
    filter: grayscale(0.3);
    opacity: 0.8;
    transition: var(--vv-transition);
}

.vv-partners__carousel img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Contact */
.vv-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
}

.vv-contact__info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vv-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--vv-white);
    border-radius: var(--vv-radius);
    box-shadow: var(--vv-shadow);
}

.vv-contact__item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--vv-accent-soft);
    color: var(--vv-primary);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.vv-contact__form {
    background: var(--vv-white);
    border-radius: var(--vv-radius-lg);
    padding: 2rem;
    box-shadow: var(--vv-shadow-lg);
}

.vv-form-group {
    margin-bottom: 1rem;
}

.vv-form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(45, 106, 79, 0.12);
    border-radius: 12px;
    font: inherit;
    background: var(--vv-bg);
    transition: border-color var(--vv-transition), box-shadow var(--vv-transition);
}

.vv-form-control:focus {
    outline: none;
    border-color: var(--vv-primary-light);
    box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.15);
}

textarea.vv-form-control {
    min-height: 120px;
    resize: vertical;
}

.vv-form-error {
    display: block;
    color: #dc3545;
    font-size: 0.82rem;
    margin-top: 0.35rem;
}

/* Footer */
.vv-footer {
    background: var(--vv-primary-dark);
    color: rgba(255, 255, 255, 0.85);
    padding-top: 4rem;
}

.vv-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
}

.vv-footer__logo img {
    height: 56px;
    max-width: 180px;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.vv-footer__desc {
    font-size: 0.92rem;
    line-height: 1.8;
    opacity: 0.8;
    max-width: 320px;
}

.vv-footer__title {
    color: var(--vv-white);
    font-weight: 700;
    margin: 0 0 1.25rem;
}

.vv-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vv-footer__links li {
    margin-bottom: 0.65rem;
}

.vv-footer__links a {
    opacity: 0.8;
    font-size: 0.92rem;
}

.vv-footer__links a:hover {
    opacity: 1;
    color: var(--vv-accent);
}

.vv-social {
    display: flex;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.vv-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: grid;
    place-items: center;
    transition: background var(--vv-transition);
}

.vv-social a:hover {
    background: var(--vv-primary-light);
}

.vv-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.88rem;
    opacity: 0.75;
}

.vv-footer__bottom a:hover {
    color: var(--vv-accent);
}

/* Responsive */
@media (max-width: 991px) {
    .vv-hero__grid,
    .vv-about__grid,
    .vv-contact__grid {
        grid-template-columns: 1fr;
    }

    .vv-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vv-footer__grid {
        grid-template-columns: 1fr;
    }

    .vv-nav {
        position: fixed;
        top: var(--vv-header-height);
        inset-inline: 0;
        background: var(--vv-white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--vv-shadow);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: var(--vv-transition);
    }

    .vv-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .vv-nav a {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
    }

    .vv-menu-toggle {
        display: flex;
    }

    .vv-about__img--1 { width: 100%; }
    .vv-about__img--2 {
        position: relative;
        width: 70%;
        margin-top: -4rem;
        margin-inline-start: auto;
    }
}

@media (max-width: 575px) {
    .vv-stats__grid {
        grid-template-columns: 1fr 1fr;
    }

    .vv-hero__actions,
    .vv-cta__actions {
        flex-direction: column;
    }

    .vv-btn {
        width: 100%;
    }
}
