/* Root Variables */
:root {
    /* Colors based on the provided logo (Blue-Gray, White, Light Blue-Gray) */
    --primary-color: #3C4A5A; /* Dark Blue-Gray from logo background and main text */
    --secondary-color: #FFFFFF; /* White from the inner circle and main light elements */
    --accent-color: #7A90A2; /* Light Blue-Gray from surrounding lines and secondary text */
    --highlight-color: #A38A5A; /* Placeholder for a warmer accent if needed, can be adjusted */
                                /* Keeping a warm accent for buttons/highlights as it often works well
                                   with cool grays, but can be changed to a brighter blue if preferred.
                                   Let's try a subtle, slightly desaturated gold/brown for a sophisticated touch */
    --gold-like-accent: #C8AA74; /* A refined gold-like accent to provide contrast and warmth */


    /* General Text & Backgrounds */
    --text-color: #333; /* Dark text for good readability on light backgrounds */
    --light-gray: #f8f9fa; /* A very light neutral background */
    --white: #ffffff;

    /* Dark Mode Specific Colors */
    --dark-bg: #2B3A49; /* Even darker blue-gray for dark mode background */
    --dark-card-bg: #3F5161; /* Medium dark blue-gray for card backgrounds in dark mode */
    --dark-text: #ffffff; /* White text for dark mode */
    --dark-border: #526374; /* Slightly lighter border in dark mode */

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, #2B3A49 100%); /* Gradient using logo blue-grays */
    --gradient-dark: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card-bg) 100%);

    /* Other Variables (keeping consistent with your original structure) */
    --transition: all 0.3s ease;
    --box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --transition-smooth: all 0.3s ease-in-out;
    --hover-scale: scale(1.03);
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --button-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-gray); /* Keeping a general light gray background for contrast */
    direction: rtl; /* For Arabic text */
    text-align: right; /* For Arabic text */
}

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

/* Dark Mode */
body.dark-mode {
    background-color: var(--dark-bg);
    color: var(--dark-text);
}

.dark-mode .header {
    background: var(--dark-bg);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.dark-mode .logo-text h2 {
    color: var(--secondary-color);
}

.dark-mode .nav-link {
    color: var(--dark-text);
}

.dark-mode .nav-link:hover,
.dark-mode .nav-link.active {
    color: var(--gold-like-accent); /* Use gold-like accent in dark mode */
}

.dark-mode .nav-link::after {
    background: var(--gold-like-accent);
}

.dark-mode .hamburger span {
    background: var(--secondary-color);
}

.dark-mode .hero {
    background: var(--gradient-dark);
}

.dark-mode .hero-text h1,
.dark-mode .hero-text h2,
.dark-mode .hero-text p {
    color: var(--dark-text);
}

.dark-mode .hero-card {
    background: rgba(var(--primary-color), 0.5); /* Semi-transparent primary color */
    border: 1px solid rgba(var(--gold-like-accent), 0.3);
    color: var(--dark-text);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.dark-mode .hero-card i {
    color: var(--gold-like-accent);
}

.dark-mode .stat h3 {
    color: var(--gold-like-accent);
}

.dark-mode .stat p {
    color: var(--dark-text);
}

.dark-mode .section-header h2 {
    color: var(--secondary-color);
}

.dark-mode .section-header p {
    color: #999;
}

.dark-mode .services {
    background: var(--dark-bg);
}

.dark-mode .service-card {
    background: var(--dark-card-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--dark-border);
}

.dark-mode .service-card::before {
    background: var(--gold-like-accent);
}

.dark-mode .service-icon {
    background: var(--gradient-dark);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.dark-mode .service-icon i {
    color: var(--gold-like-accent);
}

.dark-mode .service-card h3 {
    color: var(--secondary-color);
}

.dark-mode .service-card p {
    color: #ccc;
}

.dark-mode .service-card ul li {
    color: #bbb;
}

.dark-mode .service-card ul li::before {
    color: var(--gold-like-accent);
}

.dark-mode .products {
    background: var(--dark-bg);
}

.dark-mode .product-card {
    background: var(--dark-card-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dark-mode .product-image {
    background: linear-gradient(135deg, var(--gold-like-accent), var(--primary-color));
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.dark-mode .product-image i {
    color: var(--secondary-color);
}

.dark-mode .product-card h3 {
    color: var(--secondary-color);
}

.dark-mode .product-card p {
    color: #ccc;
}

.dark-mode .gallery {
    background: var(--dark-bg);
}

.dark-mode .gallery-item {
    background: linear-gradient(135deg, var(--dark-card-bg) 0%, var(--dark-bg) 100%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.dark-mode .gallery-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.dark-mode .gallery-content h3 {
    color: var(--gold-like-accent);
}

.dark-mode .gallery-content p {
    color: var(--dark-text);
}

.dark-mode .tag {
    background: var(--gold-like-accent);
    color: var(--primary-color);
}

.dark-mode .project-stats {
    background: var(--dark-bg);
}

.dark-mode .stat-item {
    background: var(--dark-card-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.dark-mode .stat-icon {
    background: linear-gradient(135deg, var(--gold-like-accent), var(--primary-color));
}

.dark-mode .stat-icon i {
    color: var(--secondary-color);
}

.dark-mode .stat-content h3 {
    color: var(--secondary-color);
}

.dark-mode .stat-content p {
    color: #ccc;
}

.dark-mode .contact-page {
    background: var(--dark-bg);
}

.dark-mode .contact-info-section h2 {
    color: var(--secondary-color);
}

.dark-mode .contact-info-section p {
    color: #ccc;
}

.dark-mode .contact-method {
    background: var(--dark-card-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.dark-mode .method-icon {
    background: linear-gradient(135deg, var(--gold-like-accent), var(--primary-color));
}

.dark-mode .method-icon i {
    color: var(--secondary-color);
}

.dark-mode .method-content h3 {
    color: var(--secondary-color);
}

.dark-mode .method-content p {
    color: #ccc;
}

.dark-mode .method-note {
    color: var(--gold-like-accent);
}

.dark-mode .social-links-contact {
    background: var(--dark-card-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.dark-mode .social-links-contact h3 {
    color: var(--secondary-color);
}

.dark-mode .social-link {
    background: var(--dark-bg);
    color: var(--dark-text);
}

.dark-mode .social-link:hover {
    background: var(--gold-like-accent);
    color: var(--primary-color);
}

.dark-mode .footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .footer-section h3 {
    color: var(--gold-like-accent);
}

.dark-mode .footer-section p,
.dark-mode .footer-section ul li a {
    color: #ccc;
}

.dark-mode .footer-section ul li a:hover {
    color: var(--gold-like-accent);
}

.dark-mode .social-links a {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.dark-mode .social-links a:hover {
    background: var(--gold-like-accent);
    color: var(--primary-color);
}

.dark-mode .footer-bottom {
    color: #ccc;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .back-to-top {
    background-color: var(--gold-like-accent);
    color: var(--primary-color);
}
.dark-mode .whatsapp-btn {
    background-color: var(--gold-like-accent);
    color: var(--primary-color);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--secondary-color); /* Header background: White */
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 45px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}

.logo-text h2 {
    color: var(--primary-color); /* Logo text: Dark Blue-Gray */
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

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

.nav-link {
    text-decoration: none;
    color: var(--primary-color); /* Nav links: Dark Blue-Gray */
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color); /* Nav links hover/active: Light Blue-Gray */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--gradient-primary); /* Hero background: Gradient of dark blue-grays */
    color: var(--secondary-color); /* Hero text: White */
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--secondary-color); /* Hero H1: White */
}

.hero-text h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: var(--accent-color); /* Hero H2: Light Blue-Gray */
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.8;
    color: var(--secondary-color); /* Hero P: White */
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.btn-primary {
    background: var(--gold-like-accent); /* Primary button: Gold-like accent */
    color: var(--primary-color); /* Primary button text: Dark Blue-Gray */
}

.btn-primary:hover {
    background: #A88F5C; /* Slightly darker gold on hover */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(200, 170, 116, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color); /* Secondary button text: White */
    border: 2px solid var(--secondary-color); /* Secondary button border: White */
}

.btn-secondary:hover {
    background: var(--secondary-color); /* Secondary button hover background: White */
    color: var(--primary-color); /* Secondary button hover text: Dark Blue-Gray */
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gold-like-accent); /* Outline button text: Gold-like accent */
    border: 2px solid var(--gold-like-accent); /* Outline button border: Gold-like accent */
}

.btn-outline:hover {
    background: var(--gold-like-accent); /* Outline button hover background: Gold-like accent */
    color: var(--primary-color); /* Outline button hover text: Dark Blue-Gray */
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.hero-card {
    background: rgba(var(--primary-color), 0.3); /* Hero card background: Semi-transparent Dark Blue-Gray */
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(var(--accent-color), 0.2); /* Hero card border: Semi-transparent Light Blue-Gray */
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: var(--secondary-color); /* Hero card text: White */
}

.hero-card:hover {
    transform: rotateY(5deg) rotateX(5deg) scale(1.02);
}

.hero-card i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--gold-like-accent); /* Hero card icon: Gold-like accent */
    text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.hero-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.stat {
    text-align: center;
    color: var(--secondary-color); /* Stats text: White */
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-like-accent); /* Stats number: Gold-like accent */
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.stat p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 60px; /* Added padding to top for spacing */
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color); /* Section header H2: Dark Blue-Gray */
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-color); /* Underline: Light Blue-Gray */
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-gray); /* Services section background: Light Gray */
}

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

.service-card {
    background: white; /* Service card background: White */
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid var(--secondary-color); /* Service card border: White */
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-like-accent); /* Top stripe: Gold-like accent */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-out;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary); /* Service icon background: Gradient of dark blue-grays */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-icon i {
    font-size: 2rem;
    color: var(--secondary-color); /* Service icon: White */
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color); /* Service card H3: Dark Blue-Gray */
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    padding: 0.5rem 0;
    color: #34495e;
    position: relative;
    padding-right: 1.5rem;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--gold-like-accent); /* Checkmark: Gold-like accent */
    font-weight: bold;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: var(--secondary-color); /* Products section background: White */
}

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

.product-card {
    background: white; /* Product card background: White */
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold-like-accent), var(--primary-color)); /* Product icon background: Gold-like and Dark Blue-Gray */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-image i {
    font-size: 2.5rem;
    color: var(--secondary-color); /* Product icon: White */
}

.product-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color); /* Product card H3: Dark Blue-Gray */
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-card p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: var(--light-gray); /* Gallery section background: Light Gray */
}

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

.gallery-item {
    height: 250px;
    background: var(--gradient-primary); /* Gallery item background: Gradient of dark blue-grays */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Specific background images for gallery items (placeholders based on color scheme) */
.gallery-item:nth-child(1) {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2B3A49 100%); /* Dark Blue-Gray gradient */
}
.gallery-item:nth-child(2) {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%); /* Light Blue-Gray to Dark Blue-Gray */
}
.gallery-item:nth-child(3) {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%); /* White to Light Blue-Gray */
}
.gallery-item:nth-child(4) {
    background: linear-gradient(135deg, #7F8C8D 0%, #5E6971 100%); /* Neutral gray, can be adjusted */
}
.gallery-item:nth-child(5) {
    background: linear-gradient(135deg, #A8A8A8 0%, #8E8E8E 100%); /* Neutral gray, can be adjusted */
}
.gallery-item:nth-child(6) {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold-like-accent) 100%); /* Dark Blue-Gray to Gold-like */
}


.gallery-content {
    text-align: center;
    color: var(--secondary-color); /* Gallery content text: White */
    z-index: 2;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover .gallery-content {
    opacity: 1;
    transform: translateY(0);
}


/* Contact Section (Homepage) */
.contact {
    padding: 80px 0;
    background: var(--secondary-color); /* Contact section background: White */
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr; /* Only info section remains */
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white; /* Contact item background: White */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--gold-like-accent); /* Contact icon: Gold-like accent */
    width: 50px;
    height: 50px;
    background: rgba(200, 170, 116, 0.1); /* Semi-transparent gold-like accent background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h3 {
    color: var(--primary-color); /* Contact item H3: Dark Blue-Gray */
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* No contact form on homepage anymore */

/* Footer */
.footer {
    background: var(--primary-color); /* Footer background: Dark Blue-Gray */
    color: var(--secondary-color); /* Footer text: White */
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--gold-like-accent); /* Footer section H3: Gold-like accent */
    font-weight: 600;
}

.footer-section p {
    color: #bdc3c7; /* Light text for footer */
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7; /* Footer link color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gold-like-accent); /* Footer link hover: Gold-like accent */
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gold-like-accent); /* Social link background: Gold-like accent */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color); /* Social link icon: Dark Blue-Gray */
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: #A88F5C; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #526374; /* Footer bottom border: A mid-tone blue-gray */
    color: #bdc3c7;
}

/* Back to top & Whatsapp Button */
.back-to-top, .whatsapp-btn {
    background-color: var(--gold-like-accent); /* Floating buttons background: Gold-like accent */
    color: var(--primary-color); /* Floating buttons icon: Dark Blue-Gray */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: fixed;
    bottom: 20px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top {
    left: 20px;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.whatsapp-btn {
    right: 20px;
    left: auto; /* Ensure it stays on the right in RTL */
}

.back-to-top:hover, .whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--secondary-color); /* Mobile nav background: White */
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-menu li {
        margin: 15px 0;
    }

    .nav-link {
        color: var(--primary-color); /* Mobile nav links: Dark Blue-Gray */
    }
    .nav-link:hover,
    .nav-link.active {
        color: var(--accent-color);
    }
    .nav-link::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        order: 2; /* Text below image on mobile */
    }

    .hero-image {
        order: 1; /* Image above text on mobile */
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .hero-buttons {
        justify-content: center; /* Center buttons */
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr; /* Only info section remains */
        gap: 2rem;
    }

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

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

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

    .footer-section .social-links {
        justify-content: center;
    }
}

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

    .section-header h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Contact page responsive */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    /* Services page responsive */
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    /* Gallery page responsive */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        max-width: 200px;
    }

    /* Stats responsive */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* FAQ responsive */
    .faq-question {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

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

.service-card,
.product-card,
.gallery-item {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Page Header (for other pages like services, gallery, contact) */
.page-header {
    background: var(--gradient-primary);
    color: var(--secondary-color);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Detailed Services */
.detailed-services {
    padding: 80px 0;
    background: var(--light-gray);
}

.service-section {
    background: white;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.service-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-header {
    background: var(--gradient-primary);
    color: var(--secondary-color);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.service-icon {
    width: 100px;
    height: 100px;
    background: rgba(var(--secondary-color), 0.2); /* Semi-transparent white background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-icon i {
    font-size: 3rem;
    color: var(--secondary-color);
}

.service-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-title p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.service-content {
    padding: 3rem;
}

.service-features h3,
.service-process h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    background: var(--secondary-color); /* Changes to white on hover */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--gold-like-accent);
    margin-top: 0.2rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

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

.step {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.step:hover {
    background: var(--secondary-color); /* Changes to white on hover */
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-like-accent), var(--primary-color));
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.step h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--gold-like-accent) 0%, var(--primary-color) 100%);
    color: var(--secondary-color);
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    position: relative;
    isolation: isolate;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: subtle-pulse 10s infinite alternate ease-in-out;
    z-index: -1;
}

@keyframes subtle-pulse {
    0% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.1; }
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Gallery Filter */
.gallery-filter {
    padding: 40px 0;
    background: var(--secondary-color); /* Gallery filter background: White */
    border-bottom: 1px solid rgba(0,0,0,0.05); /* Light border */
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid var(--gold-like-accent);
    background: transparent;
    color: var(--gold-like-accent);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Cairo', sans-serif;
    min-width: 120px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold-like-accent);
    color: var(--primary-color); /* Text on hover/active: Dark Blue-Gray */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 170, 116, 0.2);
}

/* Gallery Showcase */
.gallery-showcase {
    padding: 60px 0;
    background: var(--light-gray);
}

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

.gallery-item {
    height: 250px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 4rem;
    opacity: 0.8;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--primary-color), 0.8); /* Dark Blue-Gray transparent overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: var(--secondary-color);
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.gallery-item:hover .gallery-content {
    transform: translateY(0);
    opacity: 1;
}

.gallery-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--gold-like-accent);
}

.gallery-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.gallery-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: var(--gold-like-accent);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Project Statistics */
.project-stats {
    padding: 80px 0;
    background: var(--secondary-color); /* Project stats background: White */
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stat-item:hover {
    background: var(--light-gray);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-like-accent), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.stat-content h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-content p {
    color: #7f8c8d;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Contact Page */
.contact-page {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr; /* Only info section remains */
    gap: 4rem;
}

.contact-info-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info-section p {
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-like-accent), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.method-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.method-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.method-content p {
    color: #7f8c8d;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.method-note {
    color: var(--gold-like-accent);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Working hours removed */
.working-hours {
    display: none; /* Hide working hours section */
}

.social-links-contact {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-links-contact h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold-like-accent);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--primary-color); /* Footer background: Dark Blue-Gray */
    color: var(--secondary-color); /* Footer text: White */
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--gold-like-accent); /* Footer section H3: Gold-like accent */
    font-weight: 600;
}

.footer-section p {
    color: #bdc3c7; /* Light text for footer */
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7; /* Footer link color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gold-like-accent); /* Footer link hover: Gold-like accent */
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gold-like-accent); /* Social link background: Gold-like accent */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color); /* Social link icon: Dark Blue-Gray */
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: #A88F5C; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #526374; /* Footer bottom border: A mid-tone blue-gray */
    color: #bdc3c7;
}

/* Back to top & Whatsapp Button */
.back-to-top, .whatsapp-btn {
    background-color: var(--gold-like-accent); /* Floating buttons background: Gold-like accent */
    color: var(--primary-color); /* Floating buttons icon: Dark Blue-Gray */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: fixed;
    bottom: 20px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top {
    left: 20px;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.whatsapp-btn {
    right: 20px;
    left: auto; /* Ensure it stays on the right in RTL */
}

.back-to-top:hover, .whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.service-card,
.product-card,
.gallery-item {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Page Header (for other pages like services, gallery, contact) */
.page-header {
    background: var(--gradient-primary);
    color: var(--secondary-color);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Detailed Services */
.detailed-services {
    padding: 80px 0;
    background: var(--light-gray);
}

.service-section {
    background: white;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.service-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-header {
    background: var(--gradient-primary);
    color: var(--secondary-color);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.service-icon {
    width: 100px;
    height: 100px;
    background: rgba(var(--secondary-color), 0.2); /* Semi-transparent white background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-icon i {
    font-size: 3rem;
    color: var(--secondary-color);
}

.service-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-title p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.service-content {
    padding: 3rem;
}

.service-features h3,
.service-process h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    background: var(--secondary-color); /* Changes to white on hover */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--gold-like-accent);
    margin-top: 0.2rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

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

.step {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.step:hover {
    background: var(--secondary-color); /* Changes to white on hover */
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-like-accent), var(--primary-color));
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.step h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step p {
    color: #7f8c8d;
    line-height: 1.6;
}

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

.service-card,
.product-card,
.gallery-item {
    animation: fadeInUp 0.6s ease forwards;
}
