:root {
    --primary-color: #007BFF; /* أزرق أساسي - الشعار والنصوص */
    --primary-light: #00AEEF; /* أزرق متدرج فاتح - داخل الأيقونات واللوجو */
    --primary-dark: #0056B3; /* أزرق غامق - التدرج السفلي في الشعار */
    --accent-color: #00AEEF; /* أزرق سماوي فاتح - للتأكيد */
    --accent-light: #E3F2FD; /* أزرق فاتح جداً - للخلفيات */
    --white: #FFFFFF; /* أبيض نقي */
    --light-gray: #F5F5F5; /* رمادي فاتح - للخلفيات */
    --text-color: #212121; /* رمادي غامق - العناوين */
    --text-light: #9E9E9E; /* رمادي فاتح - النصوص الثانوية */
    --shadow: 0 5px 15px rgba(0, 123, 255, 0.15);
    --shadow-hover: 0 8px 25px rgba(0, 123, 255, 0.25);
    --border-color: #eaeaea;         /* كانت ناقصة */
    --text-color-light: #9E9E9E;     /* كانت ناقصة */
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for fixed header */
}

::selection {
    background-color: var(--primary-light);
    color: var(--white);
}

body {
    background-color: var(--white);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    text-align: right;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0.7rem 0;
    border-bottom: 3px solid var(--primary-color);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    max-width: 1200px;
}

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

.logo h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    letter-spacing: 1px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.logo h2:hover {
    transform: scale(1.05);
}

/* Nav Bar Styles */
nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem; /* Spacing between nav items */
}

nav ul li {
    margin-left: 1.5rem;
    position: relative;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.7rem 0.8rem;
    border-radius: 5px;
}

nav ul li a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 123, 255, 0.1);
}

nav ul li a.active {
    color: var(--primary-color);
    font-weight: 700;
}

/* تنسيق الخط السفلي للقائمة الرئيسية - تصميم جديد */
nav ul li a::before {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 0%;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border-radius: 4px;
    opacity: 0;
}

nav ul li a:hover::before,
nav ul li a.active::before {
    width: 100%;
    opacity: 1;
}

/* تنسيق خاص لزر إنشاء طلب */
nav ul li:last-child a {
    color: var(--white);
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    padding: 0.7rem 1.2rem;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

nav ul li:last-child a:hover,
nav ul li:last-child a.active {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
    border: 2px solid var(--primary-color);
}

nav ul li:last-child a::before {
    display: none;
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(0, 123, 255, 0.08);
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    position: absolute;
    top: 12px;
    left: 15px;
    align-self: center;
}
.mobile-toggle i.fas.fa-bars {
    font-size: 2rem;
    color: var(--primary-color);
    transition: color 0.2s;
}
.mobile-toggle:hover, .mobile-toggle:focus {
    background: var(--primary-light);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.12);
}
.mobile-toggle:hover i,
.mobile-toggle:focus i {
    color: var(--primary-dark);
}

/* Mobile Menu Animation */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
@media (max-width: 992px) {
    .mobile-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 2rem 0;
        width: 100%;
        text-align: center;
    }
    
    nav ul li {
        margin: 1rem 0;
        width: 80%;
        margin: 0.6rem auto;
    }
    
    nav ul li a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
    }
    
    nav ul li:last-child a {
        margin-top: 1rem;
    }
    
    /* Add overlay when mobile menu is active */
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    body.menu-open::after {
        opacity: 1;
        visibility: visible;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.accordion-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    background-color: var(--white);
}

.accordion-header:hover {
    background-color: rgba(0, 174, 239, 0.1);
}

.accordion-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-color);
}

.accordion-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.accordion-icon i {
    transition: all 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 0 2rem 2rem;
}

.accordion-item.active .accordion-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.accordion-item.active .accordion-icon i {
    transform: rotate(45deg);
}

.accordion-content p {
    line-height: 1.6;
    color: var(--text-light);
}

/* Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    display: block;
}

/* Mobile Header Styles */
@media (max-width: 768px) {
    header .container {
        padding: 0.5rem 15px;
    }

    .mobile-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
        z-index: 999;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        display: block;
        padding: 1rem 2rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-size: 1.1rem;
    }

    nav ul li a:hover {
        background-color: var(--light-gray);
        padding-right: 2.5rem;
    }

    nav ul li a.active {
        color: var(--primary-color);
        background-color: var(--primary-light);
        padding-right: 2.5rem;
    }

    nav ul li a.active::after {
        display: none;
    }

    /* Hamburger Animation */
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* RTL Support for Mobile Navigation */
    [dir="rtl"] nav {
        right: auto;
        left: -100%;
    }
    
    [dir="rtl"] nav.active {
        right: auto;
        left: 0;
    }
    
    [dir="rtl"] nav ul li a {
        text-align: right;
    }
    
    [dir="rtl"] .mobile-toggle {
        margin-left: 0;
        margin-right: auto;
    }
    
    [dir="rtl"] .about-feature {
        text-align: center;
    }
    
    [dir="rtl"] .about-feature .feature-icon {
        margin: 0 auto 1rem;
    }
    
    [dir="rtl"] .footer-col ul li a {
        text-align: center;
    }
    
    [dir="rtl"] .contact-info li i {
        margin-left: 5px;
    }
}

[dir="rtl"] .about-feature {
    text-align: right;
}

[dir="rtl"] .download-btn i {
    margin-left: 0.8rem;
    margin-right: 0;
}

[dir="rtl"] .download-text {
    text-align: right;
}

[dir="rtl"] .footer-col h3::after {
    right: 0;
    left: auto;
}

[dir="rtl"] .footer-col ul li a:hover {
    padding-right: 5px;
    padding-left: 0;
}

[dir="rtl"] .footer-col ul li a::after {
    right: auto;
    left: 0;
}

[dir="rtl"] .footer-col ul li a:hover::after {
    right: 0;
    left: auto;
}

[dir="rtl"] .contact-info li i {
    margin-left: 10px;
    margin-right: 0;
}

[dir="rtl"] .question-content h4 i {
    margin-left: 0.5rem;
    margin-right: 0;
}

nav ul {
    display: flex;
    padding-right: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDUwIDUwIj48Y2lyY2xlIGN4PSIyNSIgY3k9IjI1IiByPSIxMCIgZmlsbD0iI2ZmZmZmZiIgZmlsbC1vcGFjaXR5PSIwLjEiLz48L3N2Zz4=');
    opacity: 0.2;
}

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

.hero-content {
    max-width: 600px;
    z-index: 2;
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

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

.btn {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Slideshow Styles */
.slideshow {
    width: 100%;
    max-width: 900px;
    margin: 2rem auto;
    position: relative;
    z-index: 2;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.swiper {
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
	  position: relative; /* ← أضف هذا */

}

.swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    transform: scale(1);
    transition: transform 0.8s ease;
}

.slide-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 8s ease;
}

.swiper-slide-active .slide-image {
    transform: scale(1.1);
}

.clothes-image {
    background-image: url('https://images.unsplash.com/photo-1582735689369-4fe89db7114c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1050&q=80');
    background-position: center 30%;
}

.shoes-image {
    background-image: url('https://images.unsplash.com/photo-1575537302964-96cd47c06b1b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1050&q=80');
    background-position: center 40%;
}

.carpet-image {
    background-image: url('https://images.unsplash.com/photo-1558317374-067fb5f30001?ixlib=rb-1.2.1&auto=format&fit=crop&w=1050&q=80');
    background-position: center 45%;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0.9;
}

.slide-text {
    width: 100%;
    padding: 2rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.swiper-slide-active .slide-text {
    opacity: 1;
    transform: translateY(0);
}

.slide-text h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.slide-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    max-width: 80%;
}

/* Swiper Navigation Styles */
.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

/* App Download Buttons */
.app-download {
    width: 100%;
    max-width: 800px;
    margin: 3rem auto 1rem;
    text-align: center;
    z-index: 2;
    position: relative;
}

.app-download p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.download-btn {
    background-color: var(--primary-color);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
    text-align: right;
    box-shadow: 0 8px 15px rgba(0, 123, 255, 0.25);
    border: 2px solid transparent;
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 123, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.2);
}

.download-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 123, 255, 0.3);
}

.download-btn i {
    font-size: 1.8rem;
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.download-btn:hover i {
    transform: scale(1.1);
}

[dir="rtl"] .download-btn i {
    margin-left: 1rem;
    margin-right: 0;
}

.download-btn span {
    font-size: 1.1rem;
    font-weight: 600;
}

.download-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.download-text small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.download-text strong {
    font-size: 1rem;
    font-weight: 600;
}

.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.wave {
    display: block;
    width: 100%;
    height: auto;
}

/* Services Section */
.services {
    padding: 6rem 0 3rem;
    background-color: var(--white);
}

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

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background-color: var(--accent-light);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--primary-color);
}

.service-card:hover::before {
    transform: scale(4);
    opacity: 0.1;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    background-color: var(--primary-light);
    color: var(--white);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background-color: var(--primary-color);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.btn-small.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

.btn-small.btn:hover {
    background-color: var(--primary-dark);
}

.btn.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
}

.btn.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 123, 255, 0.1);
}

/* About Us Section */
.about {
    padding: 5rem 0;
    background-color: var(--white);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 3px solid transparent;
}

.about-image:hover .image-container {
    transform: scale(1.02);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-hover);
}

.image-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background-color: var(--primary-light);
    border-radius: 50%;
    z-index: -1;
}

.image-container::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background-color: var(--primary-color);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-feature .feature-icon {
    background-color: var(--primary-light);
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 123, 255, 0.15);
}

.about-feature:hover .feature-icon {
    transform: scale(1.1);
    background-color: var(--primary-color);
    color: var(--white);
}

.about-feature .feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 700;
}

.about-feature .feature-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-light);
}

/* Media Queries for About Section */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .image-container {
        max-width: 600px;
        margin: 0 auto 3rem;
    }
}

@media (max-width: 576px) {
    .about-features {
        grid-template-columns: 1fr;
    }
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background-color: var(--white);
    position: relative;
}

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

.pricing-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid #eee;
}

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

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-tag {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    background-color: var(--light-gray);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.pricing-card.featured .pricing-header {
    background-color: var(--primary-light);
    color: var(--white);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.pricing-features li.disabled {
    color: #999;
}

.pricing-features li.disabled i {
    color: #ccc;
}

.pricing-footer {
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid #eee;
}

.pricing-footer .btn-small {
    padding: 0.7rem 2rem;
    width: 100%;
}

.pricing-card.featured .pricing-footer .btn-small {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--primary-light);
    border-radius: 50%;
    opacity: 0.1;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    background-color: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: #eaeaea;
}

.feature:hover::after {
    width: 100%;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    color: var(--white);
    border-radius: 50%;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.15);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.feature:hover .feature-icon {
    transform: translateY(-5px);
    background-color: var(--primary-color);
    color: var(--white);
}

.feature:hover .feature-icon::before {
    opacity: 0.3;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-weight: 700;
}

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



/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

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

.cta .btn {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta .btn:hover {
    background-color: var(--primary-light);
    color: var(--white);
}

/* Hero & Slideshow Styles */
.hero {
    position: relative;
    padding-top: 100px;
    padding-bottom: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    z-index: 2;
    position: relative;
}

.hero-content h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0.8rem;
}

.modern-slideshow {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiper {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    max-width: 100%;
}

/* Slideshow Color Boxes */
.slide-color-box {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: var(--border-radius-lg);
}

.slide-content {
    padding: 1.5rem;
    color: var(--white);
    text-align: center;
}

.slide-content h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

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

.color1 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('photo_1.jpg');
    background-size: cover;
    background-position: center;
}

.color2 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('photo_2.jpg');
    background-size: cover;
    background-position: center;
}

.color3 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('photo_3.jpg');
    background-size: cover;
    background-position: center;
}

.color4 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('photo_.jpg');
    background-size: cover;
    background-position: center;
}

/* Account Styles */
.account-section {
    padding: 7rem 0 5rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.account-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0) 70%);
    top: -150px;
    right: -150px;
    z-index: 1;
}

.account-section::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0) 70%);
    bottom: -100px;
    left: -100px;
    z-index: 1;
}

/* Map Styles */
.map-container {
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
}

.map-container:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

#map, #profile-map {
    width: 100%;
    height: 300px;
    border-radius: var(--border-radius-lg);
}

.map-instructions {
    font-size: 0.9rem;
    color: var(--text-color-light);
    margin-top: 0.5rem;
    text-align: center;
    padding: 0.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.account-tabs {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
    z-index: 5;
    transition: all 0.3s ease;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    padding: 0;
}

.tab-btn {
    flex: 1;
    padding: 1rem;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    opacity: 0.8;
}

.tab-btn.active {
    color: var(--white);
    opacity: 1;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px 3px 0 0;
}

.tab-content {
    display: none;
    padding: 2.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.account-form .form-group {
    margin-bottom: 1.8rem;
    position: relative;
}

.account-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.account-form input[type="text"],
.account-form input[type="email"],
.account-form input[type="password"],
.account-form input[type="tel"] {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    background-color: var(--light-gray);
}

.account-form input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.15);
    background-color: var(--white);
}

.remember-me,
.terms {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-message {
    padding: 0.8rem;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    display: none;
}

.form-message.error {
    display: block;
    background-color: #ffdddd;
    color: #d8000c;
    border: 1px solid #ffcccc;
    animation: shake 0.5s ease;
}

.form-message.success {
    display: block;
    background-color: #ddffdd;
    color: #4f8a10;
    border: 1px solid #ccffcc;
    animation: fadeIn 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Profile Section */
.profile-section {
    padding: 7rem 0 5rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.profile-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0) 70%);
    top: -150px;
    right: -150px;
    z-index: 1;
}

.profile-section::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0) 70%);
    bottom: -100px;
    left: -100px;
    z-index: 1;
}

.profile-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 2.5rem;
    position: relative;
    z-index: 5;
    transition: all 0.3s ease;
}

.profile-content:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.profile-avatar {
    font-size: 5rem;
    color: var(--primary-color);
    background-color: rgba(0, 123, 255, 0.1);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.15);
    transition: all 0.3s ease;
}

.profile-avatar:hover {
    background-color: rgba(0, 123, 255, 0.15);
    transform: scale(1.05);
}

.profile-details {
    flex: 1;
}

.profile-detail {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
}

.detail-label {
    min-width: 150px;
    font-weight: 600;
    color: var(--text-color-light);
}

.detail-value {
    font-weight: 600;
    color: var(--text-color);
}

.profile-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .profile-info {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-detail {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .detail-label {
        min-width: 100%;
    }
}

/* Order Creation Page Styles */
.order-section {
    padding: 7rem 0 5rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
}

.order-form-container {
    max-width: 1000px;
    margin: 0 auto;
}

.order-form {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 2.5rem;
    position: relative;
}

.form-step {
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}

.form-step:last-of-type {
    border-bottom: none;
}

.form-step h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.form-step h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    border-radius: 3px;
}

/* Service Selection */
.services-selection {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.service-option {
    position: relative;
}

.service-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.service-option label {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option input[type="checkbox"]:checked + label {
    border-color: var(--primary-color);
    background-color: rgba(0, 123, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.1);
}

.service-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-option input[type="checkbox"]:checked + label .service-icon {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.service-info {
    flex: 1;
}

.service-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.service-info p {
    font-size: 0.95rem;
    color: var(--text-color-light);
}

/* Items Selection */
.service-items-container {
    margin-top: 2rem;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    background-color: var(--light-gray);
    transition: all 0.3s ease;
}

.service-items-container.hidden {
    display: none;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.item-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.item-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.item-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
}

.item-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.item-info p {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

.item-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: var(--light-gray);
    color: var(--text-color);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background-color: var(--primary-light);
    color: var(--white);
}

.quantity-btn.plus:hover {
    background-color: var(--primary-color);
}

.quantity-btn.minus:hover {
    background-color: #f44336;
}

.item-count {
    width: 50px;
    height: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin: 0 0.5rem;
    font-size: 1.1rem;
}

/* Time Selection */
.time-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.time-selection .form-group {
    margin-bottom: 1.5rem;
}

.time-selection label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.datetime-picker {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    background-color: var(--white);
    cursor: pointer;
}

.datetime-picker:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.15);
}

.btn.btn-secondary {
    background-color: var(--light-gray);
    color: var(--text-color);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn.btn-secondary:hover {
    background-color: var(--border-color);
    transform: translateY(-3px);
}

.error-message {
    color: #f44336;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

/* Order Summary */
.order-summary {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.summary-empty {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-color-light);
}

.summary-items {
    margin-bottom: 2rem;
}

.summary-service-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 1.5rem 0 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.summary-service-title:first-child {
    margin-top: 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.summary-item:last-child {
    border-bottom: none;
}

.item-name {
    flex: 1;
    font-weight: 500;
}

.item-quantity {
    margin: 0 1rem;
    color: var(--text-color-light);
}

.item-price {
    font-weight: 600;
    color: var(--text-color);
}

.summary-times {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.summary-pickup, .summary-dropoff {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.summary-pickup i, .summary-dropoff i {
    margin-left: 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.summary-pickup div, .summary-dropoff div {
    display: flex;
    flex-direction: column;
}

.summary-pickup span:first-child, .summary-dropoff span:first-child {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.3rem;
}

.summary-pickup span:last-child, .summary-dropoff span:last-child {
    color: var(--text-color-light);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    font-size: 1.2rem;
    font-weight: 700;
}

.form-actions {
    text-align: center;
    margin-top: 3rem;
}

.form-actions .btn.btn-primary {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.form-actions .btn.btn-primary:disabled {
    background-color: var(--border-color);
    color: var(--text-color-light);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .time-selection {
        grid-template-columns: 1fr;
    }
    
    .product-dropdown-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .add-product-btn {
        margin-top: 0.5rem;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .services-selection {
        grid-template-columns: 1fr;
    }
    
    .items-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .order-form {
        padding: 1.5rem;
    }
    
    .selected-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .selected-item-info {
        width: 100%;
    }
    
    .selected-item-actions {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .items-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-pickup, .summary-dropoff {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .summary-pickup i, .summary-dropoff i {
        margin-bottom: 0.5rem;
        margin-left: 0;
    }
    
    .summary-total {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Additional mobile-specific styles */
    .order-form-container {
        padding: 1rem;
    }
    
    .service-card {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .service-icon {
        margin: 0 auto 1rem;
    }
    
    .form-step h3 {
        font-size: 1.3rem;
    }
    
    .datetime-picker {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .product-dropdown {
        font-size: 0.95rem;
    }
    
    .quantity-input {
        width: 100%;
    }
    
    /* Fix for small screens */
    .service-details p {
        display: none;
    }
}

/* Dropdown Product Selection Styles */
.product-selector {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.product-dropdown-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.product-dropdown {
    flex: 1 1 250px;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--white);
    color: var(--text-color);
    font-size: 1rem;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.product-dropdown:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.product-quantity {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 0 1 100px;
}

.product-quantity label {
    font-size: 0.9rem;
    color: var(--text-color-light);
}

.quantity-input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    text-align: center;
}

.add-product-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    white-space: nowrap;
}

.add-product-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.add-product-btn:disabled {
    background-color: var(--border-color);
    color: var(--text-color-light);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.selected-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.selected-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    animation: fadeIn 0.3s ease;
}

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

.selected-item-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.selected-item-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 123, 255, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.selected-item-details {
    display: flex;
    flex-direction: column;
}

.selected-item-name {
    font-weight: 600;
    color: var(--text-color);
}

.selected-item-price {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.selected-item-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.selected-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-adjust-btn {
    width: 30px;
    height: 30px;
    background-color: var(--light-gray);
    color: var(--text-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.quantity-adjust-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.quantity-value {
    min-width: 30px;
    text-align: center;
    font-weight: bold;
}

.remove-item-btn {
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-item-btn:hover {
    background-color: #d32f2f;
    transform: scale(1.1);
}

/* Carpet Selection Styles */
.carpet-input-container {
    flex-direction: column;
    gap: 1.5rem;
}

.carpet-type-selection {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.carpet-dimensions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
    background-color: rgba(0, 123, 255, 0.05);
    padding: 1rem;
    border-radius: var(--border-radius);
}

.dimension-input {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1 1 150px;
}

.dimension-field {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    text-align: center;
}

.carpet-area-display {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    flex: 1 1 100%;
    margin-top: 1rem;
}

.carpet-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 5rem 0 1.5rem;
}

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

.footer-logo h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

.footer-col p {
    color: #bbb;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    font-weight: 700;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #bbb;
    transition: all 0.3s ease;
}

.footer-col ul li a {
    position: relative;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-col ul li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 0;
    height: 1px;
    background-color: var(--white);
    transition: var(--transition);
}

.footer-col ul li a:hover::after {
    width: 100%;
    right: auto;
    left: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #bbb;
}

.contact-info li i {
    color: var(--primary-light);
    margin-right: 10px;
    font-size: 1.1rem;
}

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

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
}

/* Contact Section Styles */
.contact-section {
    padding: 5rem 0;
    background-color: var(--white);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-form-container {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid #eaeaea;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background-color: var(--accent-light);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 0;
}

.contact-form-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.contact-form-container:hover::before {
    transform: scale(1.5);
    opacity: 0.1;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-color);
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    background-color: var(--white);
    box-shadow: 0 5px 10px rgba(0, 123, 255, 0.1);
}

.form-group textarea {
    height: 180px;
    resize: none;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--text-color);
}

.form-group .error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #e74c3c;
}

.form-group.error .error-message {
    display: block;
}

.form-group.success input,
.form-group.success textarea,
.form-group.success select {
    border-color: #2ecc71;
}

.contact-form button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    transition: all 0.5s ease;
    z-index: -1;
}

.contact-form button:hover::before {
    width: 100%;
    right: auto;
    left: 0;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
}

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

.contact-info-card,
.social-media-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-right: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.contact-info-card:hover,
.social-media-card:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-info-card h3,
.social-media-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    position: relative;
    padding-bottom: 10px;
}

.contact-info-card h3::after,
.social-media-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.contact-info li i {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    background-color: var(--accent-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-info li:hover i {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.contact-info li div h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-color);
}

.contact-info li div p {
    color: var(--text-light);
}

.social-media-card .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.social-media-card .social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-media-card .social-links a:hover {
    transform: translateY(-8px) rotate(5deg);
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 15px rgba(0, 123, 255, 0.2);
}

/* Map Section */
.map-section {
    padding: 3rem 0 5rem;
    background-color: var(--light-gray);
}

.map-container {
    height: 450px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 5px solid var(--white);
    transition: var(--transition);
    margin-bottom: 2rem;
}

.map-container:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.location-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid transparent;
}

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-bottom: 3px solid var(--primary-color);
}

.location-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.location-item:hover i {
    transform: scale(1.2);
}

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

.location-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Quick FAQ Section */
.quick-faq {
    padding: 4rem 0;
    background-color: var(--white);
}

.quick-faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #eee;
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin: 0;
    transition: var(--transition);
}

.faq-question i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: var(--primary-light);
}

.faq-item.active .faq-question h4 {
    color: var(--primary-dark);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

.view-more-faq {
    text-align: center;
    margin-top: 2rem;
}

.contact-link {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-link i {
    font-size: 0.8rem;
    margin-right: 5px;
}

.status-open {
    display: inline-flex;
    align-items: center;
    color: #2ecc71;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.status-open i {
    font-size: 0.5rem;
    margin-right: 5px;
    animation: pulse 1.5s infinite;
}

.contact-app-download {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed #eee;
}

.contact-app-download h4 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .location-info {
        grid-template-columns: 1fr;
    }
}

/* Main Navigation Buttons */
.main-navigation {
    padding: 5rem 0;
    background-color: var(--white);
}

.nav-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.nav-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 1.5rem;
    border-radius: var(--border-radius-lg);
    background-color: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #f1f1f1;
}

.nav-button:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.nav-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.nav-button:hover .nav-icon {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.nav-button h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.nav-button p {
    color: #666;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .nav-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .nav-buttons {
        grid-template-columns: 1fr;
    }
}

/* Home WhatsApp Buttons */
.home-whatsapp-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.home-whatsapp-buttons .whatsapp-btn {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    margin: 0 0.5rem;
}

.download-section {
    margin-top: 1.5rem;
    text-align: center;
}

.download-section p {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1.1rem;
}

.account-section .section-header,
.profile-section .section-header {
    margin-bottom: 3rem;
    position: relative;
    z-index: 5;
}

.account-section .section-header h2,
.profile-section .section-header h2 {
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

.account-section .section-header h2::after,
.profile-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    border-radius: 3px;
}

/* Quick Service Links */
.quick-service-links {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.quick-service-links .service-shortcuts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.quick-service-links .service-shortcut {
    padding: 2rem 1rem;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
}

.quick-service-links .service-shortcut i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.quick-service-links .service-shortcut span {
    font-size: 1.1rem;
}

/* WhatsApp Footer Button */
.whatsapp-footer {
    margin-bottom: 1.5rem;
    text-align: center;
}

.whatsapp-footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.whatsapp-footer-btn i {
    font-size: 1.5rem;
    margin-left: 0.8rem;
}

.whatsapp-footer-btn:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .quick-service-links .service-shortcuts {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .quick-service-links .service-shortcuts {
        grid-template-columns: 1fr;
    }
    
    .home-whatsapp-buttons {
        flex-direction: column;
    }
    
    .home-whatsapp-buttons .whatsapp-btn {
        margin: 0.5rem 0;
    }
}

/* WhatsApp Contact Styles */
.whatsapp-contact {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.whatsapp-contact:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.whatsapp-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 10px;
}

.whatsapp-header i {
    font-size: 2.5rem;
    color: #25D366;
}

.whatsapp-header h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin: 0;
}

.whatsapp-contact p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.whatsapp-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    gap: 10px;
    transition: all 0.3s ease;
    text-align: center;
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

.whatsapp-btn:first-child {
    background-color: #25D366;
    color: var(--white);
}

.whatsapp-btn:first-child:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.service-btn {
    background-color: var(--primary-color);
    color: var(--white);
}

.service-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 119, 182, 0.2);
}

.whatsapp-shortcuts {
    margin-bottom: 2rem;
}

.whatsapp-shortcuts p {
    margin-bottom: 1rem;
}

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

.service-shortcut {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 1rem;
    border-radius: var(--border-radius);
    background-color: #f5f5f5;
    transition: all 0.3s ease;
}

.service-shortcut i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-shortcut span {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 600;
}

.service-shortcut:hover {
    background-color: var(--primary-light);
    transform: translateY(-5px);
}

.service-shortcut:hover i {
    color: var(--primary-dark);
}

.whatsapp-note {
    background-color: #f1f9ff;
    padding: 1rem;
    border-radius: var(--border-radius);
    border-right: 3px solid var(--primary-color);
}

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

.whatsapp-note i {
    color: var(--primary-color);
    margin-left: 5px;
}

@media (max-width: 576px) {
    .service-shortcuts {
        grid-template-columns: 1fr;
    }
}

/* Form Success Message */
.form-success-message {
    display: none;
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

/* Media Queries for Contact Section */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info-container {
        flex-direction: row;
    }
    
    .contact-info-card,
    .social-media-card {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .contact-info-container {
        flex-direction: column;
    }
}

/* Process Section Styles */
.process {
    background-color: var(--light-gray);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDUwIDUwIj48Y2lyY2xlIGN4PSIyNSIgY3k9IjI1IiByPSIxMCIgZmlsbD0iIzQ4Y2FlNCIgZmlsbC1vcGFjaXR5PSIwLjA1Ii8+PC9zdmc+');
    opacity: 0.5;
    z-index: 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 3rem;
    z-index: 1;
    flex-direction: row-reverse;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(to left, var(--primary-color), var(--primary-light), var(--primary-color));
    z-index: -1;
    border-radius: 4px;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 119, 182, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    border: 5px solid var(--white);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    background-color: var(--primary-dark);
    box-shadow: 0 15px 30px rgba(0, 119, 182, 0.4);
}

.step-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    width: 100%;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.process-step:hover .step-content {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.step-content h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.step-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 40%;
    left: 40%;
    height: 3px;
    background-color: var(--primary-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.process-step:hover .step-content h3::after {
    right: 30%;
    left: 30%;
}

.step-content p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.8);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 119, 182, 0.15);
}

.process-step:hover .step-icon {
    transform: scale(1.2);
    color: var(--primary-color);
    background-color: var(--white);
}

.process-cta {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-cta h3 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(0, 119, 182, 0.3);
    transition: all 0.3s ease;
}

.btn-lg:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 119, 182, 0.4);
}

@media (max-width: 992px) {
    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-steps::before {
        top: 40px;
        bottom: 40px;
        right: auto;
        left: 40px;
        width: 4px;
        height: auto;
    }
    
    .process-step {
        flex-direction: row;
        text-align: right;
        max-width: 100%;
        padding: 0;
    }
    
    .step-number {
        margin-bottom: 0;
        margin-left: 1.5rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .step-number {
        margin-bottom: 1rem;
        margin-left: 0;
    }
}

/* Custom Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-content h2 {
    animation: fadeIn 1s ease-out;
}

.hero-content p {
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
}

.btn:hover {
    animation: pulse 1s infinite;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    margin: 10px auto 0;
    transition: width 0.5s ease;
}

.section-header:hover h2::after {
    width: 80px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }
    

}

@media (max-width: 768px) {
    header .container {
        padding: 0.5rem 1rem;
    }

    .mobile-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 85%;
        height: calc(100vh - 80px);
        flex-direction: column;
        background-color: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
    }

    nav ul li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    nav ul li a {
        width: 100%;
        padding: 1.2rem 1.5rem;
        text-align: right;
        display: block;
        font-size: 1.1rem;
    }

    .hero {
        padding: 7rem 0 3rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-content h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

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

    .services-grid,
    .features-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .section-header {
        padding: 0 1rem;
    }

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

    .section-header p {
        font-size: 1rem;
    }

    .testimonial-card {
        flex: 0 0 100%;
        margin-right: 0;
        margin-bottom: 1.5rem;
    }



    .contact-form,
    .contact-info {
        width: 100%;
        padding: 0;
    }

    .footer-cols {
        flex-direction: column;
        padding: 0 1rem;
    }

    .footer-col {
        width: 100%;
        margin-bottom: 2rem;
        text-align: center;
    }

    .footer-col h3 {
        text-align: center;
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-features {
        flex-direction: column;
    }

    .about-feature {
        margin-bottom: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .about-feature .feature-icon {
        margin: 0 auto 1rem;
    }

    .about-text h3 {
        text-align: center;
        font-size: 1.6rem;
    }

    .about-text p {
        text-align: center;
    }

    .swiper {
        height: 350px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1rem;
    }
}

/* Small Screen Styles */
@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    header .logo h2 {
        font-size: 1.6rem;
    }
    
    .hero-content h2 {
        font-size: 1.7rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

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

    .section-header p {
        font-size: 0.95rem;
    }
    
    .service-card,
    .feature {
        padding: 2rem 1.5rem;
    }
    
    .service-card h3,
    .feature h3 {
        font-size: 1.3rem;
    }
    
    .service-card p,
    .feature p {
        font-size: 0.9rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .footer-logo h2 {
        font-size: 1.5rem;
    }
    
    .slide-text {
        padding: 1.5rem 1rem;
    }
    
    .slide-text h3 {
        font-size: 1.4rem;
    }
    
    .slide-text p {
        font-size: 0.9rem;
    }
    
    .app-download p {
        font-size: 1rem;
    }
    
    .download-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
    }
    
    .about-feature .feature-text h4 {
        font-size: 1.1rem;
    }
    
    .question-content h4 {
        font-size: 1.1rem;
    }
    
    .question-content p {
        font-size: 0.9rem;
    }
    
    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .contact-info li {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
        font-size: 0.8rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 1.7rem;
    }
    
    .swiper {
        height: 250px;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .download-btn {
        min-width: 220px;
        justify-content: center;
    }
    
    .feature {
        padding: 1.2rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .footer-logo h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: center;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    nav ul li {
        margin-bottom: 10px;
    }
    
    /* Responsive Slideshow */
    .swiper {
        height: 300px;
    }
    
    .slide-content h3 {
        font-size: 1.6rem;
    }
    
    .slide-content p {
        font-size: 0.95rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo h2 {
        font-size: 1.8rem;
    }
    nav ul li a {
        font-size: 1rem;
    }
    body {
        padding: 0 10px;
    }
    
    /* Responsive Slideshow for Mobile */
    .swiper {
        height: 250px;
    }
    
    .modern-slideshow {
        max-width: 100%;
        margin: 0 10px;
    }
    
    .slide-content {
        padding: 1rem;
    }
    
    .slide-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .slide-content p {
        font-size: 0.85rem;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
}

/* Email Contact Form Styles */
.email-contact-form {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.email-contact-form h4 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    border-bottom: 2px dashed rgba(35, 137, 218, 0.2);
    padding-bottom: 0.8rem;
}

.email-contact-form h4 i {
    margin-left: 0.5rem;
    color: var(--primary-color);
}

.service-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.service-btn {
    background-color: #f0f8ff;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 0.8rem 1.5rem;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    color: var(--primary-dark);
    box-shadow: 0 3px 8px rgba(35, 137, 218, 0.2);
    min-width: 150px;
    justify-content: center;
}

.service-btn i {
    margin-left: 0.7rem;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.service-btn:hover,
.service-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(35, 137, 218, 0.4);
}

.service-btn:hover i,
.service-btn.active i {
    color: white;
}

.submit-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 5px;
    padding: 1.2rem 2rem;
    font-family: 'Cairo', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    margin-top: 1.5rem;
    box-shadow: 0 5px 15px rgba(35, 137, 218, 0.4);
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(35, 137, 218, 0.4);
}

.submit-btn i {
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .service-buttons {
        flex-direction: column;
    }
    
    .service-buttons .service-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact-content {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }
    .contact-form-container,
    .contact-info-container {
        padding: 0.5rem 0.2rem;
        box-shadow: none;
        border-radius: 10px;
    }
    .whatsapp-contact,
    .email-contact-form,
    .contact-info-card,
    .social-media-card {
        padding: 1rem 0.5rem;
        border-radius: 10px;
        box-shadow: none;
    }
    .whatsapp-btn,
    .service-btn,
    .submit-btn {
        width: 100%;
        min-width: unset;
        font-size: 1rem;
        margin-bottom: 0.7rem;
        justify-content: center;
    }
    .form-group {
        margin-bottom: 1rem;
    }
    .contact-info li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    .contact-info li i {
        margin-bottom: 0.3rem;
    }
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .whatsapp-header h3 {
        font-size: 1.1rem;
    }
    .email-contact-form h4 {
        font-size: 1.1rem;
    }
}

.site-logo {
    height: 65px;
    width: auto;
    vertical-align: middle;
    margin-left: 10px;
    margin-right: 0;
    display: inline-block;
}
@media (max-width: 576px) {
    .site-logo {
        height: 45px;
        margin-left: 6px;
    }
}

.whatsapp-buttons-vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0 1rem 0;
}
.whatsapp-btn-main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.2rem 0.5rem;
    font-size: 1.18rem;
    font-weight: 700;
    background: linear-gradient(90deg, #25D366 0%, #128C7E 100%);
    color: #fff !important;
    border: none;
    border-radius: 40px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.13);
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    margin-bottom: 0;
    text-align: center;
    text-decoration: none;
    gap: 1.1rem;
    position: relative;
    overflow: hidden;
}
.btn-icon-left, .btn-icon-right {
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-icon-left i, .btn-icon-right i {
    font-size: 1.7rem;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
    transition: transform 0.2s;
}
.btn-icon-left {
    margin-left: 0.7rem;
}
.btn-icon-right {
    margin-right: 0.7rem;
}
.btn-text {
    flex: 1;
    text-align: center;
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.whatsapp-btn-main:hover, .whatsapp-btn-main:focus {
    background: linear-gradient(90deg, #128C7E 0%, #25D366 100%);
    color: #fff;
    transform: scale(1.035) translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.18);
}
.whatsapp-btn-main:active {
    transform: scale(0.98);
}
@media (max-width: 576px) {
    .whatsapp-btn-main {
        font-size: 1.02rem;
        padding: 0.9rem 0.2rem;
        gap: 0.6rem;
    }
    .btn-icon-left i, .btn-icon-right i {
        font-size: 1.2rem;
    }
    .btn-text {
        font-size: 1.02rem;
    }
}



/* Enhanced Service Cards */
.service-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.service-card .service-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(77, 203, 255, 0.3);
}

/* نقاط تحت السلايدر + بستايل الهوية */
.modern-slideshow .swiper-pagination {
  position: absolute;   /* مهم */
  bottom: 12px;         /* المسافة من تحت */
  left: 0;
  right: 0;
  text-align: center;
  z-index: 50;          /* قيمة عالية باش يبان فوق كل العناصر */
}


/* إخفاء الأسهم إن وُجدت */
.modern-slideshow .swiper-button-prev,
.modern-slideshow .swiper-button-next {
  display: none !important;
}

/* شكل النقاط */
.modern-slideshow .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  margin: 0 6px !important;
  background: var(--primary-light) !important; /* غير النشطة */
  opacity: 0.5 !important;
  transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
  border-radius: 999px;
}

/* النقطة النشطة */
.modern-slideshow .swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
  opacity: 1 !important;
  width: 24px !important;   /* تمتد كـ pill */
  transform: scale(1.05);
}

/* موبايل: نقاط أصغر */
@media (max-width: 576px) {
  .modern-slideshow .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    margin: 0 5px !important;
  }
  .modern-slideshow .swiper-pagination-bullet-active {
    width: 18px !important;
  }
}
