/* Global Styles */
html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #1e3d59;
    /* Royal Blue */
    --gold-color: #d4af37;
    /* Gold */
    --gold-light: #f3e5ab;
    --white-color: #ffffff;
    --light-bg: #f9f9f9;
    --text-color: #333;
    --font-heading: 'Amiri', serif;
    --font-body: 'Cairo', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--white-color);
    color: var(--text-color);
    line-height: 1.8;
}

.hero,
.section {
    scroll-margin-top: 110px;
}

.hero {
    padding-top: 120px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Header */
.header {
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--gold-color);
}

.logo-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 6px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links li a {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    right: 0;
    background-color: var(--gold-color);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 6px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('hero.jpg');
    /* Elegant texture or subtle food image */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 61, 89, 0.7);
    /* Blue overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white-color);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    margin-bottom: 20px;
    color: var(--gold-light);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.btn-gold {
    display: inline-block;
    padding: 12px 35px;
    background-color: transparent;
    border: 2px solid var(--gold-color);
    color: var(--gold-color);
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-gold:hover {
    background-color: var(--gold-color);
    color: var(--white-color);
}

.btn-outline {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: var(--white-color);
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    backdrop-filter: blur(2px);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--gold-light);
}

/* Sections General */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.ornament {
    color: var(--gold-color);
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.ornament::before,
.ornament::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background-color: var(--gold-color);
}

.ornament::before {
    right: 30px;
}

.ornament::after {
    left: 30px;
}

/* About Section */
.about {
    background-color: var(--white-color);
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 25px;
    color: #555;
    font-size: 1.1rem;
}

.about-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--gold-color);
}

.feature-item span {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-color);
}

/* Services Section */
.services {
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    color: var(--white-color);
}

.hero-highlights li {
    background-color: rgba(0, 0, 0, 0.25);
    padding: 15px 25px;
    border-radius: 12px;
    min-width: 160px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-highlights span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-light);
    font-family: var(--font-heading);
}

.hero-highlights small {
    font-size: 0.95rem;
    opacity: 0.9;
}

.highlights {
    background-color: var(--light-bg);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.highlight-card {
    background-color: var(--white-color);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 4px solid var(--gold-color);
}

.highlight-card i {
    font-size: 2.5rem;
    color: var(--gold-color);
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.highlight-card p {
    color: #555;
}

.heritage {
    background-color: #fcfcfc;
}

.heritage-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 2;
    color: #555;
}

.signature {
    margin-top: 30px;
}

.signature h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.5rem;
}

.signature-line {
    width: 120px;
    height: 2px;
    background-color: var(--gold-color);
    margin: 12px auto 0;
}

.cta {
    position: relative;
    padding: 120px 0;
    background: url('1.avif') center/cover fixed;
    color: var(--white-color);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 61, 89, 0.85);
}

.cta-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--gold-light);
}

.cta-content p {
    max-width: 650px;
    margin: 0 auto 35px;
    font-size: 1.15rem;
}

.cta .btn-outline {
    border-color: var(--gold-color);
    color: var(--gold-light);
}

.cta .btn-outline:hover {
    background-color: rgba(212, 175, 55, 0.15);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.header-scrolled {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(6px);
}

.service-card {
    background-color: var(--white-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-icon {
    font-size: 4rem;
    color: var(--gold-color);
    margin-bottom: 25px;
    display: block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.card-content {
    padding: 40px 30px;
    text-align: center;
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.card-content p {
    color: #666;
    font-size: 1rem;
}

/* Products Section */
.products {
    background-color: var(--light-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background-color: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    border-top: 4px solid var(--gold-color);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

.product-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.15);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(30, 61, 89, 0.7), rgba(30, 61, 89, 0.9));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-list {
    list-style: none;
    padding: 20px;
    text-align: center;
}

.product-list li {
    color: var(--white-color);
    font-size: 1.1rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.product-list li:last-child {
    border-bottom: none;
}

.product-list li::before {
    content: '✦ ';
    color: var(--gold-color);
}

.product-content {
    padding: 30px;
    text-align: center;
}

.product-content h3 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.product-card:hover .product-content h3 {
    color: var(--gold-color);
}

.product-content p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    background: linear-gradient(rgba(30, 61, 89, 0.9), rgba(30, 61, 89, 0.9)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-attachment: fixed;
    color: var(--white-color);
}

.contact-box {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact .section-title h2 {
    color: var(--white-color);
}

.contact-info {
    margin: 40px 0;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.contact-info i {
    color: var(--gold-color);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border: 1px solid var(--gold-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-color);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--gold-color);
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 40px 0;
    text-align: center;
    border-top: 5px solid var(--gold-color);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--gold-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-logo-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 0;
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-img {
        width: 70px;
        height: 70px;
    }

    .footer-logo-img {
        width: 75px;
        height: 75px;
    }

    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: var(--white-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 60%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding-top: 50px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links li {
        opacity: 0;
    }

    .burger {
        display: block;
    }

    .nav-active {
        transform: translateX(0%);
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-highlights {
        gap: 10px;
        flex-wrap: nowrap;
    }
    
    .hero-highlights li {
        padding: 10px 12px;
        min-width: auto;
        flex: 1;
    }
    
    .hero-highlights span {
        font-size: 1.3rem;
    }
    
    .hero-highlights small {
        font-size: 0.7rem;
    }

    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* How We Work Section */
.how-we-work {
    background-color: var(--light-bg);
}

.step-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 7rem;
    color: rgba(212, 175, 55, 0.15);
    z-index: 3;
    pointer-events: none;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.workflow-step {
    background-color: var(--white-color);
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease;
    text-align: center;
    border-top: 4px solid var(--gold-color);
    overflow: hidden;
    min-height: 350px;
}

.workflow-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.step-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 1;
}

.workflow-step:hover .step-bg {
    transform: scale(1.1);
}

.step-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(30, 61, 89, 0.85), rgba(30, 61, 89, 0.75));
    z-index: 2;
}

.step-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--gold-color));
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(30, 61, 89, 0.3);
    z-index: 3;
}

.step-wrapper {
    position: relative;
    z-index: 3;
    padding: 40px 30px;
    color: var(--white-color);
}

.step-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold-light);
    margin-bottom: 15px;
}

.step-wrapper p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-size: 1rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        left: 20px;
        font-size: 25px;
    }

    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}