:root {
    --primary-green: #5ca949;
    --dark-green: #3d7e3f;
    --primary-orange: #f39c12;
    --light-orange: #f8b739;
    --dark-text: #2c3e50;
    --light-gray: #f8f9fa;
    --border-gray: #e0e0e0;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    direction: rtl;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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


.navbar {
    background: linear-gradient(135deg, var(--white) 0%, #fafafa 100%);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-text);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 32px;
    animation: float-logo 3s ease-in-out infinite;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-orange);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: slideInRight 0.8s ease-out;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: slideInRight 0.8s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: slideInRight 0.8s ease-out 0.4s backwards;
}

.hero-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-food {
    position: absolute;
    font-size: 80px;
    opacity: 0.9;
    animation: float 6s ease-in-out infinite;
}

.floating-food:nth-child(1) {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-food:nth-child(2) {
    top: 40%;
    right: 40%;
    animation-delay: 2s;
}

.floating-food:nth-child(3) {
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

.btn-primary:hover {
    background: var(--light-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}


section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
    font-size: 42px;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.meals {
    background: var(--light-gray);
}

.meals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.meal-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    animation: slideUp 0.6s ease-out;
}

.meal-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-top: 5px solid var(--primary-orange);
}

.meal-image {
    font-size: 60px;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.meal-card:nth-child(1) .meal-image { animation-delay: 0s; }
.meal-card:nth-child(2) .meal-image { animation-delay: 0.2s; }
.meal-card:nth-child(3) .meal-image { animation-delay: 0.4s; }
.meal-card:nth-child(4) .meal-image { animation-delay: 0.6s; }
.meal-card:nth-child(5) .meal-image { animation-delay: 0.8s; }
.meal-card:nth-child(6) .meal-image { animation-delay: 1s; }

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.meal-card h3 {
    color: var(--primary-green);
    font-size: 20px;
    margin-bottom: 10px;
}

.meal-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.meal-features {
    list-style: none;
    text-align: right;
    font-size: 14px;
}

.meal-features li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #eee;
}

.meal-features li:last-child {
    border-bottom: none;
}

.plans {
    background: var(--white);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.plan-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 25px;
    border: 2px solid var(--border-gray);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    animation: slideUp 0.6s ease-out;
}

.plan-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.plan-card.featured {
    transform: scale(1.05);
    border-color: var(--primary-orange);
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.05) 0%, rgba(92, 169, 73, 0.05) 100%);
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 25px;
    background: var(--primary-green);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.plan-badge.featured-badge {
    background: var(--primary-orange);
}

.plan-card h3 {
    font-size: 24px;
    color: var(--dark-text);
    margin-top: 15px;
    margin-bottom: 20px;
}

.plan-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.amount {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-orange);
}

.currency {
    font-size: 16px;
    color: #666;
}

.period {
    font-size: 14px;
    color: #999;
}

.plan-description {
    color: #666;
    margin-bottom: 25px;
    font-size: 14px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: right;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 14px;
}

.plan-features li:last-child {
    border-bottom: none;
}

.benefits {
    background: var(--light-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-item {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }
.benefit-item:nth-child(5) { animation-delay: 0.5s; }
.benefit-item:nth-child(6) { animation-delay: 0.6s; }

.benefit-icon {
    font-size: 64px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.2) rotate(10deg);
}

.benefit-item h3 {
    color: var(--primary-green);
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-item p {
    color: #666;
    font-size: 14px;
}


.stats {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-card {
    animation: slideUp 0.8s ease-out;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-card p {
    font-size: 16px;
    opacity: 0.95;
}


.contact {
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    animation: slideInRight 0.6s ease-out;
}

.info-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.info-item h4 {
    color: var(--primary-green);
    font-size: 18px;
    margin-bottom: 8px;
}

.info-item p {
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    direction: rtl;
    text-align: right;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.contact-form button {
    margin-top: 10px;
}


.footer {
    background: var(--dark-text);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-orange);
}

.footer-section p {
    color: #bbb;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-orange);
    transform: translateX(-5px);
}

.social-links {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.social-link {
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #bbb;
    font-size: 14px;
}


@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        left: 0;
        flex-direction: column;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
        z-index: 999;
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

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

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-image {
        display: none;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .meals-grid,
    .benefits-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .nav-menu {
        gap: 10px;
    }

    .logo {
        font-size: 18px;
    }

    .hero {
        padding: 50px 0;
        min-height: auto;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .meal-image {
        font-size: 48px;
    }

    .amount {
        font-size: 32px;
    }

    .benefit-icon {
        font-size: 48px;
    }

    .stat-number {
        font-size: 36px;
    }

    .meals-grid,
    .benefits-grid,
    .plans-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        gap: 20px;
    }
}
