/* 
This file contains layout styles extracted from styles.css to manage file size
*/

/* Base Styles */
:root {
    --primary-color: #000000;
    --secondary-color: #4d4d4d;
    --accent-color: #d4af37; /* Gold from image 13 */
    --dark-color: #000000;
    --light-color: #ffffff;
    --gray-color: #1a1a1a; /* Darker gray */
    --text-color: #ffffff;
    --border-color: #333333;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    --hover-shadow: 0 10px 25px rgba(212, 175, 55, 0.3); /* Accent color shadow */
    --transition: all 0.3s ease;
    --section-spacing: 100px; /* Increased spacing */
    --content-spacing: 30px;
}

/* About Us Section */
.about-us {
    padding: var(--section-spacing) 0;
    background-color: var(--gray-color);
    color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="2" cy="2" r="1" fill="%23d4af37" opacity="0.1"/></svg>'); /* Subtle pattern */
    opacity: 0.5; /* Slightly more visible */
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Give slightly more space to text */
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image {
    text-align: center;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    width: 95%; /* Adjusted size */
    height: 95%; /* Adjusted size */
    border: 3px solid var(--accent-color);
    top: -10px; /* Adjusted position */
    left: -10px; /* Adjusted position */
    z-index: -1;
    border-radius: 10px;
    opacity: 0.7;
    transition: var(--transition);
}

.about-image:hover::before {
     opacity: 1;
     transform: translate(5px, 5px);
}


.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.02);
    box-shadow: var(--hover-shadow);
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--accent-color);
    font-weight: 700;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.9;
    color: #dddddd;
    font-size: 18px;
}

.language-toggle {
    display: flex;
    margin-top: 30px;
}

.lang-btn {
    padding: 10px 25px;
    border: 2px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    cursor: pointer;
    margin-left: 15px;
    border-radius: 30px;
    transition: var(--transition);
    font-weight: 600;
}

.lang-btn.active, .lang-btn:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

/* Services Gallery Section (Renamed to Our Services) */
.products { /* Keep class name for now to avoid breaking styles */
    padding: var(--section-spacing) 0;
    background-color: #0f0f0f; /* Slightly different dark shade */
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25"><path d="M12.5 0 L 15.5 9.5 L 25 9.5 L 17.5 15.5 L 20.5 25 L 12.5 19.5 L 4.5 25 L 7.5 15.5 L 0 9.5 L 9.5 9.5 Z" fill="%23d4af37" opacity="0.05"/></svg>'); /* Star pattern */
    opacity: 0.8;
}


.services-gallery {
    display: flex;
    flex-direction: column;
    gap: 60px; /* Increased gap */
    position: relative;
    z-index: 2;
}

.service-item {
    display: flex;
    flex-direction: row-reverse; /* Always image on the left (visually right in RTL) */
    background-color: rgba(30, 30, 30, 0.9);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.15); /* Slightly more visible border */
}

.service-item:hover {
    transform: translateY(-10px) scale(1.01); /* Add subtle scale */
    box-shadow: var(--hover-shadow);
    background-color: rgba(35, 35, 35, 0.95); /* Slightly lighter hover */
    border-color: rgba(212, 175, 55, 0.4);
}

.service-image {
    width: 45%; /* Slightly smaller image */
    object-fit: cover;
    /* Updated border-radius for consistent layout (image on left visually) */
    border-radius: 15px 0 0 15px;
    transition: var(--transition);
    filter: saturate(1.1); /* Slightly more vibrant */
}

.service-item:hover .service-image {
    filter: saturate(1.3) brightness(1.05); /* Enhance on hover */
    transform: scale(1.05); /* Zoom image slightly */
}

.service-desc {
    width: 55%; /* More space for description */
    padding: 45px 50px; /* Increased padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-desc-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px; /* Space below header group */
}

.service-icon {
    font-size: 28px; /* Larger icon */
    color: var(--accent-color);
    margin-left: 15px; /* Space between icon and title */
    width: 40px; /* Ensure consistent spacing */
    text-align: center;
}

.service-desc h3 {
    font-size: 30px; /* Larger title */
    margin-bottom: 0; /* Removed bottom margin, handled by header group */
    color: var(--accent-color);
    font-weight: 700; /* Bolder */
}

.service-desc p {
    color: #cccccc;
    line-height: 1.8;
    font-size: 18px; /* Slightly larger text */
    margin-bottom: 30px; /* More space before button */
    flex-grow: 1; /* Allow description to take available space */
}

.service-buttons {
    display: flex;
    gap: 15px;
    margin-top: auto;
    align-self: flex-start;
}

.service-details-btn {
    background-color: var(--light-color);
    color: var(--dark-color);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.service-details-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: var(--hover-shadow);
    color: var(--dark-color);
}

.service-details-btn i {
    font-size: 16px;
}

.request-service-btn {
    background-color: var(--accent-color);
    color: var(--dark-color);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.request-service-btn i {
    font-size: 20px;
}

.request-service-btn:hover {
    background-color: var(--light-color);
    color: var(--accent-color);
    transform: translateY(-4px) scale(1.03);
    box-shadow: var(--hover-shadow);
}

/* Contact Section */
.contact {
    padding: var(--section-spacing) 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="2" cy="2" r="1" fill="%23d4af37" opacity="0.1"/></svg>'); /* Subtle pattern */
    opacity: 0.5;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr; /* Single column layout */
    gap: 50px;
    position: relative;
    z-index: 1;
}

/* Responsive styles for services gallery */
@media (max-width: 992px) { 
    .service-item {
        flex-direction: column;
    }

    .service-image,
    .service-desc {
        width: 100%;
    }

    .service-image {
        max-height: 300px; /* Limit image height on mobile */
        /* Ensure correct radius on mobile */
        border-radius: 15px 15px 0 0 !important;
    }

    .service-desc {
        padding: 30px; /* Adjust padding */
    }
    
    .service-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .service-details-btn,
    .request-service-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .contact-wrapper {
        /* No change needed, already single column */
    }
}

@media (max-width: 768px) {
   .about-content {
        grid-template-columns: 1fr;
        gap: 50px; /* Reduce gap */
    }

    .about-image {
        order: 1;
        margin-bottom: 30px; /* Add space below image */
    }

    .about-text {
        order: 2;
        text-align: center; /* Center text */
    }
     .language-toggle {
        justify-content: center; /* Center buttons */
    }
}