:root {
    --primary-color: #b18040;
    --primary-dark: #7a5a2f;
    --secondary-color: #009fe3;
    --light-gray: #ececec;
    --white: #ffffff;
    --dark-gray: #666666;
    --footer-bg: #363636;
    --cta-color: #ff5722;
}

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

body {
    font-family: 'Tajawal', Arial, sans-serif;
    background-color: var(--light-gray);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    position: relative;
}

.skip-link {
    position: absolute;
    top: -40px;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 0 15px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* أنماط شريط التنقل */
header {
    background-color: var(--primary-color);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 20px;
}

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

.logo img {
    height: 50px;
    margin-left: 15px;
    max-width: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.nav-links li a {
    color: var(--white);
    text-decoration: none;
    padding: 10px 15px;
    margin: 0 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    font-size: 0.9rem;
}

.nav-links li a:hover {
    color: var(--light-gray);
}

nav a.active {
    color: var(--white) !important;
    font-weight: bold;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 15px;
    left: 15px;
    height: 3px;
    background-color: var(--white);
}

/* أنماط الصفحة الرئيسية */
.hero {
    background: linear-gradient(rgba(156, 116, 62, 0.8), rgba(156, 116, 62, 0.8)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.gallery-hero {
    background-image: linear-gradient(rgba(156, 116, 62, 0.8), rgba(156, 116, 62, 0.8)), url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.quote-hero {
    background-image: linear-gradient(rgba(156, 116, 62, 0.8), rgba(156, 116, 62, 0.8)), url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-content h1, .gallery-hero-content h1, .quote-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-content p, .gallery-hero-content p, .quote-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--cta-color);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.cta-button:hover {
    background-color: #e64a19;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.4);
}

/* أنماط الأقسام المشتركة */
.section-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 30px;
}

/* أنماط من نحن */
.about, .portfolio-section, .project-details, .why-us, .services, .gallery, .clients, .testimonials, .contact , .quote-request {
    padding: 40px 0;
}

.about, .portfolio-section, .services, .gallery, .clients, .testimonials, .quote-request {
    background-color: var(--white);
}

.why-us, .contact {
    background-color: var(--light-gray);
}

.project-details {
  background-color: #ffffff;
  padding: 20px;
  margin: 30px auto;
  max-width: 98%; /* حد أقصى مناسب للموبايل */
  border-top: 4px solid #7a5a2f; /* الخط العلوي فقط */
  border-radius: 12px; /* حواف دائرية */
  box-shadow: 0 4px 12px rgba(228, 228, 228, 0.1); /* ظل ناعم */
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.mission-vision {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 20px;
}

.mission, .vision {
    flex: 1;
    padding: 25px;
    background-color: var(--light-gray);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mission h3, .vision h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
}

/* فلتر التصنيفات */
.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 10px;
}

/* أنماط قسم لماذا تختارنا */
       .why-us {
            padding: 40px 0;
            background-color: var(--light-gray);
        }

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

        .why-us-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .features-slider {
            margin: 20px auto;
            max-width: 1000px;
            position: relative;
        }

        .feature-slide {
            background-color: var(--white);
            padding: 40px 30px 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 0 15px;
            text-align: center;
            transition: all 0.3s ease;
            height: 220px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding-top: 40px;
            padding-bottom: 20px;
        }

        .feature-slide:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-slide i {
            font-size: 45px;
            color: var(--primary-color);
            margin-bottom: 20px 0 15px;
            transition: all 0.5s ease;
	    margin-top: 20px;
        }

        .feature-slide:hover i {
            transform: scale(1.2);
        }

        .feature-slide h3 {
            color: var(--primary-color);
            font-size: 1.2rem;
            margin: 10px 0;
        }

        .feature-slide p {
            color: #666;
            font-size: 0.8rem;
            line-height: 1.5;
        }

        /* أنماط أزرار التحكم في السلايدر */
        .slick-prev, .slick-next {
            width: 40px;
            height: 40px;
            background-color: var(--primary-color);
            border-radius: 50%;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .slick-prev:hover, .slick-next:hover {
            background-color: var(--primary-dark);
        }

        .slick-prev:before, .slick-next:before {
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: white;
            font-size: 18px;
        }

        .slick-prev:before {
            content: '\f053';
        }

        .slick-next:before {
            content: '\f054';
        }

        .slick-prev {
            left: -40px;
        }

        .slick-next {
            right: -40px;
        }

        .slick-dots li button:before {
            font-size: 12px;
            color: var(--primary-color);
        }

        .slick-dots li.slick-active button:before {
            color: var(--primary-dark);
        }

@media (max-width: 576px) {
    .highlight-text {
        font-size: 1rem;
        padding: 15px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
}

.filter-btn {
    padding: 8px 20px;
    background-color: var(--light-gray);
    color: var(--dark-gray);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Tajawal', sans-serif;
    font-weight: 500;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

/* أنماط الشبكات */
.portfolio-grid, .services-grid {
    display: grid;
    gap: 25px;
    margin-top: 30px;
}

.portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.services-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.portfolio-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay, .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(156, 116, 62, 0.9);
    color: var(--white);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.portfolio-overlay h3, .overlay h3 {
    margin: 0 0 12px;
    font-size: 1.5rem;
    animation: fadeInUp 0.5s ease;
}

.portfolio-overlay p, .overlay p {
    margin: 0 0 15px;
    font-size: 1rem;
    line-height: 1.6;
    animation: fadeInUp 0.5s ease 0.2s forwards;
    opacity: 0;
}

.portfolio-link, .project-link {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-size: 0.9rem;
    animation: fadeInUp 0.5s ease 0.4s forwards;
    opacity: 0;
}

.portfolio-link:hover, .project-link:hover {
    background-color: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* أنماط بطاقات الخدمات */
.service-card {
    background-color: var(--white);
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.5s ease;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* أنماط السلايدر المشتركة */
.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    z-index: 1;
    background-color: rgba(156, 116, 62, 0.7);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slick-prev:hover, .slick-next:hover {
    background-color: var(--primary-color);
}

.slick-prev:before, .slick-next:before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 18px;
}

.slick-prev {
    right: 15px;
    left: auto;
}

.slick-next {
    left: 15px;
    right: auto;
}

.slick-prev:before {
    content: '\f054';
}

.slick-next:before {
    content: '\f053';
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
}

.slick-dots li.slick-active button:before {
    color: var(--primary-dark);
}

/* أنماط معرض الأعمال */
.gallery-slider, .testimonials-slider, .clients-slider, .features-slider, .project-gallery-slider {
    margin: 30px auto;
    position: relative;
}

.gallery-slider, .testimonials-slider {
    max-width: 1100px;
}

.clients-slider {
    max-width: 900px;
}


.gallery-slide, .testimonial-slide, .client-slide, .feature-slide, .project-slide {
    padding: 0 10px;
    outline: none;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 380px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* أنماط العملاء */
.client-slide {
    text-align: center;
    padding: 15px;
    margin: 0 10px;
    background-color: var(--light-gray);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.client-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.client-slide img {
    width: 130px;
    height: 70px;
    object-fit: contain;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.8;
}

.client-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-slide h4 {
    color: var(--primary-color);
    margin-top: 8px;
    font-size: 1rem;
}

/* أنماط آراء العملاء */
.testimonial-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 70px;
    color: var(--primary-color);
    position: absolute;
    top: 10px;
    left: 15px;
    opacity: 0.2;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 12px;
    border: 2px solid var(--primary-color);
}

.author-info h4 {
    margin: 0 0 5px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.author-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.rating {
    color: var(--primary-color);
    margin-top: 5px;
    font-size: 0.9rem;
}

/* أنماط المميزات */
.feature-slide {
    padding: 0 15px;
    outline: none;
}

.feature-item {
    background-color:#f1f1f1;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    height: 90%;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 5px;
}

.feature-text h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.feature-text p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* أنماط تفاصيل المشروع */
.project-container {
    max-width: 98%;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.project-header {
    padding: 30px;
    background-color: var(--primary-color);
    color: var(--white);
}

.project-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item i {
    font-size: 1.2rem;
}

.project-content {
    padding: 30px;
}

.project-description {
    margin-bottom: 30px;
    line-height: 1.8;
    text-align: justify;
}

.project-slide img {
    width: 350px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-slide img:hover {
    transform: scale(1.02);
}

/* أنماط التواصل */
.contact-content {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.info-item {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.info-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: inherit;
    text-decoration: none;
    width: 100%;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.social-media {
    margin-top: 25px;
}

.social-media h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.1rem;
    text-align: center;
}

.social-icons, .footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon, .footer-social .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon:hover, .footer-social .social-icon:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.footer-social .social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

/* أنماط النماذج */
.quote-form, .contact-form {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.form-group {
    margin-bottom: 20px;
    flex: 1;
    min-width: 180px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(156, 116, 62, 0.2);
    outline: none;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.submit-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(156, 116, 62, 0.3);
}

.success-message {
    display: none;
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
    text-align: center;
}

/* أنماط قوائم الاختيار */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.checkbox-group, .radio-group {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    direction: rtl;
    justify-content: flex-end;
}

.checkbox-group input, .radio-group input {
    width: 18px;
    height: 18px;
    margin-left: 8px;
    accent-color: var(--primary-color);
}

.checkbox-group label, .radio-group label {
    margin: 0;
    font-weight: normal;
    font-size: 0.9rem;
    text-align: right;
    flex: 1;
}

.radio-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* أنماط الفوتر */
footer {
    background-color: var(--footer-bg);
    color: #e0e0e0;
    padding: 40px 0 0;
}

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

.footer-col {
    padding: 0 12px;
}

.footer-about {
    grid-column: span 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo img {
    height: auto;
    margin-left: 15px;
    max-width: 100%;
}

.footer-description {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.9rem;
    color: #ccc;
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 4px 0;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-right: 8px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.contact-list i {
    color: var(--primary-color);
    width: 18px;
    margin-left: 8px;
    margin-top: 3px;
    font-size: 0.9rem;
}

.contact-list a, .contact-list span {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    flex: 1;
}

.contact-list a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 0.9rem;
    color: #aaa;
}

/* أزرار التواصل العائمة */
.floating-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    left: auto;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 26px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: float 3s ease-in-out infinite;
}

.floating-btn.call {
    background-color: var(--primary-color);
    animation-delay: 0.2s;
}

.floating-btn.whatsapp {
    background-color: #25D366;
    animation-delay: 0.4s;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: all 0.3s ease;
}

.floating-btn:hover::before {
    opacity: 1;
}

.floating-btn::after {
    content: attr(aria-label);
    position: absolute;
    right: 100%;
    margin-right: 12px;
    white-space: nowrap;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-btn:hover::after {
    opacity: 1;
    right: 100%;
}

.floating-btn.whatsapp::after {
    background-color: #25D366;
}

/* قائمة الهاتف المحمول */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* تأثيرات الحركة */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 87, 34, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* التجاوب مع أحجام الشاشات */
@media (min-width: 768px) {
    .checklist-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) {
    .hero-content h1, .gallery-hero-content h1, .quote-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer-about {
        grid-column: span 1;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .gallery-item, .portfolio-item {
        height: 320px;
    }

    .portfolio-item {
        height: 250px;
    }

    .nav-links li a {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .hero-content h1, .gallery-hero-content h1, .quote-hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p, .gallery-hero-content p, .quote-hero-content p {
        font-size: 1.1rem;
    }

    .mission-vision {
        flex-direction: column;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .gallery-item, .portfolio-item {
        height: 280px;
    }

    .portfolio-item {
        height: 220px;
    }

    .overlay h3, .portfolio-overlay h3 {
        font-size: 1.3rem;
    }

    .overlay p, .portfolio-overlay p {
        font-size: 0.9rem;
    }

    .info-item {
        padding: 15px;
    }

    .nav-links li a {
        padding: 10px 10px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
/* إصلاح نهائي لقائمة الهاتف */
@media (max-width: 768px) {
    .nav-links {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: var(--primary-dark);
        transition: all 0.5s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hamburger {
        display: block !important;
        z-index: 1001;
    }
    
    /* منع التمرير عند فتح القائمة */
    body.menu-open {
        overflow: hidden;
    }
    
    .nav-links li {
        margin: 12px 0;
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        padding: 12px 0;
        font-size: 1rem;
    }

    .hero-content h1, .gallery-hero-content h1, .quote-hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p, .gallery-hero-content p {
        font-size: 1rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .gallery-hero {
        height: 50vh;
    }

    .portfolio-filter {
        justify-content: center;
    }

    .contact-content {
        flex-direction: column;
    }

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

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .floating-btn::after {
        display: none;
    }

    .gallery-item, .portfolio-item {
        height: 240px;
    }

    .portfolio-item {
        height: 200px;
    }

    .project-slide img {
        height: 300px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-content {
        font-size: 0.95rem;
    }

    /* تعديلات بطاقات التواصل للهاتف */
    .info-item {
        flex-direction: column;
        text-align: center;
    }

    .info-link {
        flex-direction: column;
    }

    .info-item i {
        margin-bottom: 10px;
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .services-grid, .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group {
        min-width: 100%;
    }

    .hero-content h1, .gallery-hero-content h1, .quote-hero-content h1 {
        font-size: 1.6rem;
    }

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

    .footer-logo {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo img {
        margin-left: 0;
        margin-bottom: 8px;
    }

    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .gallery-item, .portfolio-item {
        height: 200px;
    }

    .portfolio-item {
        height: 180px;
    }

    .overlay, .portfolio-overlay {
        padding: 15px;
    }

    .overlay h3, .portfolio-overlay h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .overlay p, .portfolio-overlay p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .project-link, .portfolio-link {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .project-slide img {
        height: 250px;
    }

    .testimonial-card {
        padding: 20px 15px;
    }

    .testimonial-author img {
        width: 45px;
        height: 45px;
    }

    .author-info h4 {
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .hero-content h1, .gallery-hero-content h1, .quote-hero-content h1 {
        font-size: 1.4rem;
    }

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

    .floating-buttons {
        bottom: 10px;
        right: 10px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .gallery-item {
        height: 180px;
    }

    .project-slide img {
        height: 200px;
    }

    .testimonial-card::before {
        font-size: 50px;
    }

    .nav-links {
        width: 90%;
    }
}

@media (max-width: 350px) {
    .checkbox-group label, .radio-group label {
        font-size: 0.8rem;
    }
}