/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 28px;
}

    .whatsapp-link:hover {
        background-color: #128C7E;
        color: white;
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-link {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}


/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
}

a {
    color: #d4af37;
    text-decoration: none;
}

    a:hover {
        color: #b8941f;
        text-decoration: none;
    }

.btn-primary {
    background-color: #d4af37;
    border-color: #d4af37;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
}

    .btn-primary:hover {
        background-color: #b8941f;
        border-color: #b8941f;
        color: #fff;
    }

.btn-outline-light {
    color: #fff;
    border-color: #fff;
}

    .btn-outline-light:hover {
        background-color: #fff;
        color: #333;
    }
    
    

/* Header Styles */
.main-header {
    background-color: #1a1a1a;
    color: #fff;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

    .main-header .logo img {
        max-height: 50px;
    }

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

    .main-nav ul li {
        margin: 0 15px;
    }

        .main-nav ul li a {
            color: #fff;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
        }

            .main-nav ul li a:hover {
                color: #d4af37;
            }

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-content p {
        font-size: 1.5rem;
        margin-bottom: 30px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

.hero-buttons a {
    margin: 0 10px;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
}

/* Section Styles */
.section-header {
    margin-bottom: 50px;
}

    .section-header h2 {
        font-size: 2.5rem;
        color: #1a1a1a;
        margin-bottom: 10px;
    }

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Featured Products Section */
.featured-products-section {
    padding: 80px 0;
}

.product-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .product-card:hover {
        transform: translateY(-10px);
    }

.product-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

    .product-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #d4af37;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
}

.product-content {
    padding: 20px;
}

    .product-content h4 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

.product-details {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.testimonial-content {
    margin-bottom: 20px;
}

    .testimonial-content p {
        font-style: italic;
        position: relative;
        padding-left: 20px;
    }

        .testimonial-content p:before {
            content: '"';
            position: absolute;
            left: 0;
            top: 0;
            font-size: 2rem;
            color: #d4af37;
        }

.testimonial-author {
    display: flex;
    align-items: center;
}

    .testimonial-author img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-right: 15px;
    }

.author-info h5 {
    margin-bottom: 0;
}

.rating {
    color: #d4af37;
}

/* Services CTA Section */
.services-cta {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
}

    .services-cta h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .services-cta p {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

/* Footer Styles */
.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

    .main-footer h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }

        .main-footer h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: #d4af37;
        }

    .main-footer ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .main-footer ul li {
            margin-bottom: 10px;
        }

            .main-footer ul li i {
                margin-right: 10px;
                color: #d4af37;
            }

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

    .social-links a:hover {
        background-color: #d4af37;
    }

.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
    }

        .main-nav ul li {
            margin: 5px 0;
        }

    .main-header .row > div {
        text-align: center;
        margin-bottom: 15px;
    }

    /* Contact Page Styles */
    .contact-form {
        background-color: #fff;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .contact-info {
        background-color: #fff;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .info-item {
        display: flex;
        margin-bottom: 25px;
    }

        .info-item i {
            font-size: 1.5rem;
            color: #d4af37;
            margin-right: 15px;
            margin-top: 5px;
        }

        .info-item h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

    .map-container {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    /* Gallery Page Styles */
    .gallery-filters {
        margin-bottom: 30px;
    }

    .filter-btn {
        margin: 0 10px;
        border-radius: 50px;
    }

    .gallery-item {
        margin-bottom: 30px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

        .gallery-item:hover {
            transform: translateY(-10px);
        }

    .gallery-img {
        position: relative;
        height: 250px;
        overflow: hidden;
    }

        .gallery-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

    .gallery-item:hover .gallery-img img {
        transform: scale(1.05);
    }

    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-info {
        text-align: center;
        color: #fff;
        padding: 20px;
    }

        .gallery-info h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

    /* Responsive Styles */
    @media (max-width: 768px) {
        .contact-form, .contact-info {
            margin-bottom: 30px;
        }

        .gallery-img {
            height: 200px;
        }
    }
}
