:root {
    --primary-color: #D4AF37;
    --secondary-color: #C9A961;
    --dark-color: #1A1A1A;
    --light-color: #F5F5F5;
    --text-color: #333333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 600;
    color: var(--dark-color) !important;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-color);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--primary-color);
}

.whatsapp-link {
    width: 40px;
    height: 40px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.whatsapp-link:hover {
    transform: scale(1.1);
    color: var(--white);
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    height: 100vh;
    position: relative;
}

.hero-slider .swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slider .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-slider .content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    padding-top: 200px;
}

.hero-slider h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-slider p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-slider .btn {
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    color: var(--white);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-success {
    background: #25D366;
    color: var(--white);
}

.btn-success:hover {
    background: #128C7E;
    color: var(--white);
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-padding {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
}

.section-title .divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin-bottom: 20px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--white);
}

.about-features {
    list-style: none;
    margin: 30px 0;
}

.about-features li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.about-features i {
    color: var(--primary-color);
    margin-left: 10px;
    font-size: 1.2rem;
}

.about-image img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-card .icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin: 0 auto 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card .read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    margin-top: 15px;
    display: inline-block;
}

.service-card .read-more i {
    margin-right: 5px;
    transition: transform 0.3s ease;
}

.service-card .read-more:hover i {
    transform: translateX(-5px);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.why-card .number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.1);
}

.why-card .content {
    position: relative;
    z-index: 1;
}

.why-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* ============================================
   PROJECTS
   ============================================ */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-card .overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    transition: bottom 0.3s ease;
}

.project-card:hover .overlay {
    bottom: 0;
}

.project-card h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

/* ============================================
   STATISTICS
   ============================================ */
.statistics {
    background: var(--dark-color);
    color: var(--white);
}

.stat-card {
    padding: 30px;
}

.stat-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-card h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 1.1rem;
}

/* ============================================
   CONTACT CTA
   ============================================ */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.cta-box {
    text-align: center;
    color: var(--white);
    padding: 60px;
    border-radius: 10px;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer h4 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-about p {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: var(--secondary-color);
}

.contact-info,
.footer-links {
    list-style: none;
}

.contact-info li,
.footer-links li {
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary-color);
    margin-left: 10px;
    width: 20px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* ============================================
   FOOTER BOTTOM CREDIT
   ============================================ */
.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.designer-credit a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.designer-credit a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    position: relative;
    margin-top: 76px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-flex;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--white);
}

/* ============================================
   ABOUT PAGE EXTRAS
   ============================================ */
.about-image-grid img {
    transition: transform 0.3s ease;
}

.about-image-grid img:hover {
    transform: translateY(-5px);
}

.vision-card,
.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.vision-card .icon,
.value-card .icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin: 0 auto 25px;
}

.vision-card h3,
.value-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-box {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-box .number {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.1);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-box {
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.stat-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
}

/* ============================================
   SERVICES PAGE EXTRAS
   ============================================ */
.service-detail {
    padding: 30px;
}

.service-detail .icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
}

.service-detail h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.service-features i {
    color: var(--primary-color);
    margin-left: 10px;
}

.process-step {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    position: relative;
}

.process-step .step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 20px 0;
}

/* ============================================
   PROJECTS PAGE EXTRAS
   ============================================ */
.project-filter {
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 25px;
    margin: 5px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.project-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--white);
    transition: bottom 0.3s ease;
}

.project-item:hover .project-overlay {
    bottom: 0;
}

.project-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.project-details {
    list-style: none;
    padding: 0;
}

.project-details li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.stars {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.client-info h5 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.client-info span {
    color: #666;
    font-size: 0.9rem;
}

/* ============================================
   CONTACT PAGE EXTRAS
   ============================================ */
.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-card .icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin: 0 auto 25px;
}

.contact-form .form-control {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.contact-details {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-details h3 {
    margin-bottom: 25px;
    color: var(--dark-color);
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.contact-list li:last-child {
    border-bottom: none;
}

.contact-list i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-left: 15px;
    margin-top: 5px;
}

.contact-list strong {
    display: block;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.qr-code h4 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

/* ============================================
   ANIMATIONS (Global)
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
    .hero-slider h1 {
        font-size: 2.5rem;
    }
    
    .hero-slider p {
        font-size: 1.2rem;
    }
    
    .navbar-contact {
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .hero-slider h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .service-detail {
        margin-bottom: 30px;
    }
    
    .filter-btn {
        display: block;
        margin: 5px auto;
        width: 80%;
    }
}

/* ============================================
   ✅ CUSTOM LOAD MORE MODAL (تصميم جديد ونظيف)
   ============================================ */

/* الطبقة الخلفية - مخفية افتراضياً بقوة */
.custom-modal-overlay {
    display: none !important; /* مهم جداً للإخفاء */
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.75) !important;
    backdrop-filter: blur(8px) !important;
    z-index: 99999 !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* عند الإظهار (عند إضافة كلاس active) */
.custom-modal-overlay.active {
    display: flex !important;
    opacity: 1 !important;
}

/* صندوق المودال */
.custom-modal-box {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 24px;
    padding: 40px 35px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--primary-color);
    transform: scale(0.95) translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-modal-overlay.active .custom-modal-box {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* زر الإغلاق (×) */
.custom-modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 36px;
    height: 36px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    color: #666;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 2;
}

.custom-modal-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

/* الأيقونة الدائرية */
.custom-modal-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: modalIconPulse 2.5s infinite ease-in-out;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.custom-modal-icon i {
    font-size: 40px;
    color: white;
}

@keyframes modalIconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3); }
    50% { transform: scale(1.08); box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5); }
}

/* النصوص */
.custom-modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin: 0 0 12px 0;
}

.custom-modal-text {
    font-size: 1.15rem;
    color: #555;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.custom-modal-subtitle {
    font-size: 0.95rem;
    color: #888;
    margin: 0 0 30px 0;
    font-style: italic;
    line-height: 1.5;
}

/* زر الإغلاق الرئيسي */
.custom-modal-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 14px 45px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.custom-modal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.custom-modal-btn:active {
    transform: translateY(-1px);
}

.custom-modal-btn i {
    font-size: 1rem;
}

/* Responsive للمودال */
@media (max-width: 768px) {
    .custom-modal-box {
        padding: 30px 25px;
        margin: 10px;
    }
    
    .custom-modal-title {
        font-size: 1.6rem;
    }
    
    .custom-modal-text {
        font-size: 1.05rem;
    }
    
    .custom-modal-icon {
        width: 75px;
        height: 75px;
    }
    
    .custom-modal-icon i {
        font-size: 32px;
    }
}


/* ============================================
   HERO SLIDER - إصلاحات نهائية
   ============================================ */

.hero-slider {
    height: 100vh;
    min-height: 600px; /* لمنع الصغر على الشاشات الصغيرة */
    position: relative;
}

.hero-slider .swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center; /* محاذاة عمودية في المنتصف */
    justify-content: center; /* محاذاة أفقية في المنتصف */
}

.hero-slider .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-slider .container {
    position: relative;
    z-index: 2;
    text-align: center; /* توسيط النص */
}

.hero-slider .content {
    color: var(--white);
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-slider h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3; /* منع تراكب الأسطر */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-slider p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    line-height: 1.5; /* منع تراكب الأسطر */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-slider .btn {
    margin-top: 10px;
}

/* ✅ Pagination: نقاط صغيرة وأنيقة في الأسفل */
.hero-slider .swiper-pagination {
    bottom: 30px !important;
    z-index: 10;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* ✅ إخفاء أسهم التنقل الجانبية (التي تشبه الثلاث نقاط) */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    display: none !important;
}

/* Responsive للهيرو */
@media (max-width: 991px) {
    .hero-slider h1 {
        font-size: 2.3rem;
    }
    
    .hero-slider p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: auto;
        min-height: 500px;
        padding: 100px 0 80px; /* تقليل المسافة من الأعلى */
    }
    
    .hero-slider h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero-slider p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .hero-slider .btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}

/* ✅ تقليل المسافات البيضاء في الأقسام */
.section-padding {
    padding: 60px 0; /* بدلاً من 80px */
}

@media (max-width: 768px) {
    .section-padding {
        padding: 40px 0;
    }
}