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

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #d4d4d4; /* Softer light gray text */
    direction: rtl;
    background-color: #0f0f0f; /* Deeper dark background */
}

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

/* Header Styles */
.header {
    background: rgba(15, 15, 15, 0.95); /* Deeper dark header */
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5); /* Deeper shadow */
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #e8e8e8; /* Softer light text for logo */
    font-weight: 700;
}

.nav-logo i {
    color: #4a6741; /* Calm dark green accent */
    margin-left: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #d4d4d4; /* Softer light gray text */
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4a6741; /* Calm dark green accent on hover */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: #4a6741; /* Calm dark green accent */
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #e0e0e0; /* Light gray bars */
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); /* Calm dark gradient */
    color: white;
    padding-top: 80px;
}

.hero-content {
    flex: 1;
    padding: 2rem;
    animation: slideInRight 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: #4a6741; /* Calm dark green */
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(74, 103, 65, 0.3); /* Calm green shadow */
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 103, 65, 0.5); /* Darker green shadow */
}

.hero-image {
    flex: 1;
    padding: 2rem;
    animation: slideInLeft 1s ease-out;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5); /* Darker shadow */
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #1a1a1a; /* Calm dark background */
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #e8e8e8; /* Softer light text */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #2a2a2a; /* Softer dark card background */
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); /* Softer shadow */
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6); /* Deeper shadow on hover */
}

.feature-card i {
    font-size: 3rem;
    color: #4a6741; /* Calm dark green accent */
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e8e8e8; /* Softer light text */
}

.feature-card p {
    color: #c0c0c0; /* Softer gray text */
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: #0f0f0f; /* Deeper dark background */
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: #2a2a2a; /* Softer dark card background */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); /* Softer shadow */
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6); /* Deeper shadow on hover */
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8); /* Darker overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.view-btn {
    background: #4a6741; /* Calm dark green */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: #3a5233; /* Darker green */
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #e8e8e8; /* Softer light text */
}

.product-info p {
    color: #c0c0c0; /* Softer gray text */
    margin-bottom: 1rem;
    line-height: 1.5;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4a6741; /* Calm dark green accent */
}

/* About Section */
.about {
    padding: 80px 0;
    background: #1a1a1a; /* Calm dark background */
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #e8e8e8; /* Softer light text */
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #c0c0c0; /* Softer gray text */
    line-height: 1.8;
}

.about-features {
    list-style: none;
    margin-top: 2rem;
}

.about-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: #e8e8e8; /* Softer light text */
    font-weight: 500;
}

.about-features i {
    color: #4a6741; /* Calm dark green accent */
    margin-left: 10px;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3); /* Darker shadow */
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #0f0f0f; /* Deeper dark background */
}

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

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 2rem;
    color: #4a6741; /* Calm dark green accent */
    margin-left: 1rem;
    width: 50px;
}

.contact-item h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #e8e8e8; /* Softer light text */
}

.contact-item p {
    color: #c0c0c0; /* Softer gray text */
}

.contact-form {
    background: #1a1a1a; /* Softer dark form background */
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #3a3a3a; /* Softer border */
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    transition: border-color 0.3s ease;
    background-color: #2a2a2a; /* Softer input background */
    color: #d4d4d4; /* Softer input text */
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a6741; /* Calm green accent on focus */
}

.submit-btn {
    background: #4a6741; /* Calm dark green */
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #3a5233; /* Darker green */
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #0a0a0a; /* Deeper dark footer */
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #e8e8e8; /* Softer light text */
}

.footer-section p,
.footer-section li {
    color: #c0c0c0; /* Softer gray text */
    margin-bottom: 0.5rem;
}

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

.footer-section a {
    color: #c0c0c0; /* Softer gray text */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4a6741; /* Calm green accent on hover */
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    margin-left: 10px;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: #d4d4d4; /* Softer gray for social icons */
}

.social-links a:hover {
    transform: translateY(-3px);
    color: #4a6741; /* Calm green accent on hover */
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2a2a2a; /* Softer border */
    color: #c0c0c0; /* Softer gray text */
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #0f0f0f; /* Deeper dark background for mobile menu */
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5); /* Deeper shadow */
        padding: 2rem 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 50px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #2a2a2a; /* Softer scrollbar track */
}

::-webkit-scrollbar-thumb {
    background: #4a6741; /* Calm green scrollbar thumb */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3a5233; /* Darker green on hover */
}


/* Special Product Styles */
.special-product {
    grid-column: span 2;
    max-width: 100%;
}

.special-product .product-info {
    padding: 2rem;
}

.product-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.option {
    background: #2a2a2a; /* Softer option background */
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #3a3a3a; /* Softer border */
    transition: all 0.3s ease;
}

.option.premium {
    border-color: #4a6741; /* Calm green accent */
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); /* Calm gradient */
}

.option h4 {
    color: #e8e8e8; /* Softer light text */
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.option.premium h4 {
    color: #4a6741; /* Calm green accent */
}

.features {
    list-style: none;
    margin-bottom: 1rem;
}

.features li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #c0c0c0; /* Softer gray text */
}

.contact-info {
    background: #1a1a1a; /* Softer dark blue/gray */
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.color-catalog {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Darker shadow */
}

@media (max-width: 768px) {
    .special-product {
        grid-column: span 1;
    }
    
    .product-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .option {
        padding: 1rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
}


.logo-img {
    height: 50px; /* Adjust as needed */
    width: auto;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px; /* Adjust for smaller screens */
    }
}


.footer-logo-img {
    height: 60px; /* Adjust as needed */
    width: auto;
    margin-bottom: 10px;
}




/* Custom Design Section */
.custom-design {
    padding: 80px 0;
    background-color: #1a1a1a; /* Calm dark background */
    text-align: center;
}

.custom-design .design-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.custom-design .design-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    text-align: right;
}

.custom-design .design-text p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #c0c0c0; /* Softer gray text */
}

.custom-design .design-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.custom-design .design-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Darker shadow */
}

.custom-design .price-details {
    background-color: #2a2a2a; /* Softer background */
    border: 1px solid #3a3a3a; /* Softer border */
    border-radius: 8px;
    padding: 25px;
    margin-top: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Softer shadow */
}

.custom-design .price-details h4 {
    font-size: 1.3em;
    color: #e8e8e8; /* Softer light text */
    margin-bottom: 15px;
}

.custom-design .price-details ul {
    list-style: none;
    padding: 0;
}

.custom-design .price-details ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #c0c0c0; /* Softer gray text */
    display: flex;
    align-items: center;
}

.custom-design .price-details ul li i {
    color: #4a6741; /* Calm green accent */
    margin-left: 10px;
}

.custom-design .price-details ul li strong {
    color: #e8e8e8; /* Softer light text */
}

.custom-design .note {
    font-size: 1em;
    color: #a0a0a0; /* Softer gray */
    margin-top: 20px;
    font-style: italic;
}

@media (max-width: 768px) {
    .custom-design .design-text,
    .custom-design .design-image {
        min-width: unset;
        max-width: 100%;
    }
}




/* Product Pricing Styles */
.product-pricing {
    margin-top: 20px;
    padding: 15px;
    background: #2a2a2a;
    border-radius: 10px;
    border: 2px solid #4a6741;
}

.pricing-info {
    margin-bottom: 15px;
}

.pricing-info h4 {
    color: #4a6741;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.pricing-info p {
    color: #e8e8e8;
    margin: 5px 0;
    font-size: 1em;
}

.whatsapp-contact {
    text-align: center;
}

.whatsapp-btn {
    display: inline-block;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-btn i {
    margin-left: 8px;
    font-size: 1.2em;
}

