/* إعدادات عامة */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    direction: rtl;
}

/* شريط العروض المتحرك */
.offers-bar {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.offers-content {
    display: inline-block;
    animation: scroll-rtl 30s linear infinite;
}

.offers-content span {
    margin-left: 50px;
    font-weight: bold;
}

@keyframes scroll-rtl {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* قسم البطل */
.hero {
    background: #ffffff;
    color: #2c3e50;
    padding: 120px 0 0 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23f8f9fa"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23f8f9fa"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23f8f9fa"></path></svg>') no-repeat;
    background-size: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.logo {
    max-width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.2;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #34495e;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #7f8c8d;
    line-height: 1.7;
    max-width: 500px;
}

.social-links {
    margin: 30px 0;
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #ecf0f1;
    color: #34495e;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.social-link:hover {
    background: #3498db;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.hero-image:hover img {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.2);
}

/* العناصر العائمة في الخلفية */
.hero-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.05));
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* شارة البطل */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
    color: #2c3e50;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-badge i {
    margin-left: 8px;
    color: #3498db;
}

/* ميزات البطل */
.hero-features {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #2c3e50;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.feature-item i {
    color: #27ae60;
    margin-left: 8px;
    font-size: 1rem;
}

/* زخرفة الصورة */
.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

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

/* الاستجابة للشاشات الصغيرة */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 0 0;
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
        margin: 20px 0;
    }
    
    .floating-element {
        display: none;
    }
    
    .hero::after {
        height: 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-primary,
    .btn-outline-primary,
    .btn-success {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
    
    /* Services responsive */
    .services {
        padding: 60px 0;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
    }
    
    .service-features {
        margin: 15px 0;
    }
    
    .service-features li {
        font-size: 0.9rem;
        padding: 6px 0;
    }
    
    .btn-service {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .feature-item {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    /* Services for small screens */
    .services {
        padding: 40px 0;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 15px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .service-features li {
        font-size: 0.85rem;
        padding: 5px 0;
    }
    
    .btn-service {
        padding: 8px 16px;
        font-size: 0.85rem;
        margin-top: 10px;
    }
}

/* العناوين */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 2px;
}

/* الخدمات */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
    text-align: center;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: right;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service-features li i {
    color: #27ae60;
    margin-left: 10px;
    font-size: 0.9rem;
    width: 16px;
}

.btn-service {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.btn-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-service:hover::before {
    left: 100%;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    color: white;
    text-decoration: none;
}

/* لماذا تختارنا */
/* قسم لماذا تختارنا - التصميم الجديد */
.why-choose-us {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

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

.why-choose-us .container {
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.why-choose-us .section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-choose-us .section-title::after {
    background: white;
}

/* الإحصائيات */
.stats-row {
    margin-bottom: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stat-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: rotateY(360deg);
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.5);
}

.stat-icon i {
    font-size: 2rem;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* المميزات الجديدة */
.features-row {
    margin-bottom: 60px;
}

.feature-card-new {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 0;
    transition: all 0.4s ease;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.feature-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: all 0.6s ease;
}

.feature-card-new:hover::before {
    left: 100%;
}

.feature-card-new:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.feature-header {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.8), rgba(68, 160, 141, 0.8));
    padding: 30px 25px;
    text-align: center;
    position: relative;
}

.feature-icon-new {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.feature-card-new:hover .feature-icon-new {
    transform: scale(1.1) rotateY(360deg);
    background: rgba(255, 255, 255, 0.3);
}

.feature-icon-new i {
    font-size: 1.8rem;
    color: white;
}

.feature-header h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.feature-content {
    padding: 25px;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.feature-list li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    color: white;
    transform: translateX(5px);
}

.feature-list li i {
    color: #4ecdc4;
    margin-left: 10px;
    font-size: 0.8rem;
    width: 16px;
}

/* شهادات الجودة */
.certifications-section {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 50px;
}

.certifications-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.certification-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.certification-badge:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.certification-badge i {
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
    display: block;
}

.certification-badge span {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

/* الأنماط القديمة للتوافق */
.feature-card {
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: #4ecdc4;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

/* الاستجابة للشاشات الصغيرة - قسم لماذا تختارنا */
@media (max-width: 768px) {
    .why-choose-us .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .stat-card {
        padding: 30px 15px;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .feature-card-new {
        margin-bottom: 20px;
    }
    
    .feature-header {
        padding: 25px 20px;
    }
    
    .feature-header h4 {
        font-size: 1.2rem;
    }
    
    .feature-content {
        padding: 20px;
    }
    
    .certifications-title {
        font-size: 1.5rem;
    }
    
    .certification-badge {
        padding: 15px 10px;
        margin-bottom: 15px;
    }
    
    .stats-row {
        margin-bottom: 40px;
    }
    
    .features-row {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .why-choose-us .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .stat-card {
        padding: 25px 10px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .feature-header {
        padding: 20px 15px;
    }
    
    .feature-icon-new {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-new i {
        font-size: 1.5rem;
    }
    
    .feature-header h4 {
        font-size: 1.1rem;
    }
    
    .feature-content {
        padding: 15px;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .feature-list li {
        font-size: 0.85rem;
    }
    
    .certifications-title {
        font-size: 1.3rem;
    }
    
    .certification-badge {
        padding: 12px 8px;
    }
    
    .certification-badge i {
        font-size: 1.5rem;
        color: white;
    }
    
    .certification-badge span {
        font-size: 0.8rem;
    }
}

/* آراء العملاء */
/* قسم آراء العملاء - التصميم الجديد */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

.testimonials .section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.testimonials .section-title::after {
    background: white;
}

.testimonials .section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* بطاقات آراء العملاء الجديدة */
.testimonial-card-new {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.testimonial-card-new::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.testimonial-card-new:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.testimonial-card-new:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

/* رأس البطاقة */
.testimonial-header {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.8), rgba(68, 160, 141, 0.8));
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.client-avatar {
    flex-shrink: 0;
}

.avatar-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    background: white;
    padding: 2px;
}

.testimonial-card-new:hover .avatar-img {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.client-details {
    flex: 1;
}

.client-name {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.client-location {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    display: block;
    margin-bottom: 8px;
}

.stars-new {
    display: flex;
    gap: 3px;
}

.stars-new i {
    color: #ffd700;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card-new:hover .stars-new i {
    transform: scale(1.2);
}

/* محتوى البطاقة */
.testimonial-content {
    padding: 25px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
    transform: rotate(180deg);
}

.testimonial-text {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-used {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-used i {
    color: #4ecdc4;
    font-size: 0.9rem;
}

.testimonial-card-new:hover .service-used {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* إحصائيات آراء العملاء */
.testimonials-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 40px;
}

.stat-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* الأنماط القديمة للتوافق */
.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #ffd700;
    font-size: 1.2rem;
    margin-left: 5px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.client-info strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.client-info span {
    opacity: 0.8;
}

/* الاستجابة للشاشات الصغيرة - قسم آراء العملاء */
@media (max-width: 768px) {
    .testimonials .section-title {
        font-size: 2rem;
    }
    
    .testimonials .section-subtitle {
        font-size: 1rem;
    }
    
    .testimonial-header {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .avatar-img {
        width: 60px;
        height: 60px;
    }
    
    .client-name {
        font-size: 1.2rem;
    }
    
    .client-location {
        font-size: 0.9rem;
    }
    
    .testimonial-content {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .quote-icon {
        font-size: 1.5rem;
        top: 10px;
        right: 15px;
    }
    
    .service-used {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .stat-item {
        padding: 15px;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .testimonials .section-title {
        font-size: 1.8rem;
    }
    
    .testimonials .section-subtitle {
        font-size: 0.9rem;
    }
    
    .testimonial-header {
        padding: 15px;
    }
    
    .avatar-img {
        width: 50px;
        height: 50px;
    }
    
    .client-name {
        font-size: 1.1rem;
    }
    
    .client-location {
        font-size: 0.85rem;
    }
    
    .stars-new i {
        font-size: 0.9rem;
    }
    
    .testimonial-content {
        padding: 15px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .quote-icon {
        font-size: 1.3rem;
    }
    
    .service-used {
        font-size: 0.8rem;
        padding: 5px 8px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    .testimonials-stats {
        padding-top: 30px;
    }
}

/* فورم الحجز */
.booking {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.booking-form {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.booking-form .form-control,
.booking-form .form-select {
    border: none;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.25);
    border-color: transparent;
}

/* الأسئلة الشائعة الجديدة */
.faq-new {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

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

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

.faq-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

.faq-icon i {
    font-size: 2.5rem;
    color: white;
}

.faq-new .section-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-new .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.faq-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(68, 160, 141, 0.1));
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.2), rgba(68, 160, 141, 0.2));
}

.question-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    flex-shrink: 0;
}

.question-icon i {
    font-size: 1.3rem;
    color: white;
}

.faq-question h4 {
    flex: 1;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
}

.toggle-icon {
    width: 40px;
    height: 40px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.toggle-icon i {
    font-size: 1.1rem;
    color: #4ecdc4;
    transition: transform 0.3s ease;
}

.faq-card.active .toggle-icon {
    background: #4ecdc4;
    transform: rotate(45deg);
}

.faq-card.active .toggle-icon i {
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px 30px;
    display: none;
    animation: slideDown 0.4s ease;
}

.faq-card.active .faq-answer {
    display: block;
}

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

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.answer-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.feature-tag {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-tag i {
    font-size: 0.8rem;
}

.time-breakdown {
    background: rgba(78, 205, 196, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-top: 15px;
}

.time-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(78, 205, 196, 0.2);
}

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

.time-label {
    font-weight: 600;
    color: #2c3e50;
}

.time-value {
    background: #4ecdc4;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.warranty-details {
    display: grid;
    gap: 15px;
    margin-top: 15px;
}

.warranty-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 12px;
    border-right: 4px solid #4ecdc4;
}

.warranty-item i {
    font-size: 1.2rem;
    color: #4ecdc4;
}

.warranty-item span {
    font-weight: 500;
    color: #2c3e50;
}

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

.factor-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 10px;
    border-right: 3px solid #3498db;
}

.factor-item i {
    font-size: 1.1rem;
    color: #3498db;
}

.factor-item span {
    font-weight: 500;
    color: #2c3e50;
}

.emergency-info {
    display: grid;
    gap: 15px;
    margin-top: 15px;
}

.emergency-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(45deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
    border-radius: 12px;
    border-right: 4px solid #e74c3c;
}

.emergency-item i {
    font-size: 1.2rem;
    color: #e74c3c;
}

.emergency-item span {
    font-weight: 500;
    color: #2c3e50;
}

.evacuation-guide {
    display: grid;
    gap: 12px;
    margin-top: 15px;
}

.guide-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 10px;
}

.guide-item.safe {
    background: rgba(39, 174, 96, 0.1);
    border-right: 3px solid #27ae60;
}

.guide-item.safe i {
    color: #27ae60;
}

.guide-item.caution {
    background: rgba(243, 156, 18, 0.1);
    border-right: 3px solid #f39c12;
}

.guide-item.caution i {
    color: #f39c12;
}

.guide-item span {
    font-weight: 500;
    color: #2c3e50;
}

.faq-cta {
    position: relative;
    z-index: 2;
}

.cta-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* الأنماط القديمة للتوافق */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.accordion-button {
    font-size: 1.1rem;
    font-weight: 600;
    background: white;
    border: none;
    border-radius: 10px !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.accordion-body {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* الفوتر */
/* الفوتر الجديد */
.footer-new {
    position: relative;
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 50%, #34495e 100%);
    color: white;
    padding: 80px 0 0;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.15) 1px, transparent 0);
    background-size: 40px 40px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.footer-main {
    position: relative;
    z-index: 2;
    padding-bottom: 40px;
}

.footer-section {
    height: 100%;
}

/* شعار الفوتر */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.logo-icon i {
    font-size: 1.5rem;
    color: white;
}

.footer-logo h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4ecdc4, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1rem;
}

/* مميزات الفوتر */
.footer-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.feature-item i {
    color: #4ecdc4;
    font-size: 1rem;
    width: 20px;
}

.feature-item span {
    color: #ecf0f1;
    font-size: 0.95rem;
    font-weight: 500;
}

/* عناوين الفوتر */
.footer-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ecf0f1;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #4ecdc4, #3498db);
    border-radius: 2px;
}

.footer-title i {
    color: #4ecdc4;
    font-size: 1.1rem;
}

/* معلومات التواصل */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-5px);
    border-color: rgba(78, 205, 196, 0.3);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4ecdc4, #3498db);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 0.85rem;
    color: #95a5a6;
    font-weight: 500;
}

.contact-value {
    font-size: 1rem;
    color: #ecf0f1;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #4ecdc4;
}

/* وسائل التواصل الاجتماعي */
.social-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.social-btn:hover::before {
    left: 100%;
}

.social-btn.facebook {
    background: rgba(59, 89, 152, 0.2);
    color: #3b5998;
    border-color: rgba(59, 89, 152, 0.3);
}

.social-btn.facebook:hover {
    background: #3b5998;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 89, 152, 0.4);
}

.social-btn.twitter {
    background: rgba(29, 161, 242, 0.2);
    color: #1da1f2;
    border-color: rgba(29, 161, 242, 0.3);
}

.social-btn.twitter:hover {
    background: #1da1f2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4);
}

.social-btn.instagram {
    background: rgba(225, 48, 108, 0.2);
    color: #e1306c;
    border-color: rgba(225, 48, 108, 0.3);
}

.social-btn.instagram:hover {
    background: linear-gradient(135deg, #e1306c, #fd1d1d, #fcb045);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.social-btn.whatsapp {
    background: rgba(37, 211, 102, 0.2);
    color: #25d366;
    border-color: rgba(37, 211, 102, 0.3);
}

.social-btn.whatsapp:hover {
    background: #25d366;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* الإجراءات السريعة */
.quick-actions h5 {
    color: #ecf0f1;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.action-btn:hover::before {
    left: 100%;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    color: white;
}

/* خط الفصل */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    margin: 40px 0 30px;
    position: relative;
}

.footer-divider::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(135deg, #4ecdc4, #3498db);
    border-radius: 3px;
}

/* أسفل الفوتر */
.footer-bottom {
    padding-bottom: 30px;
    position: relative;
    z-index: 2;
}

/* حقوق النشر */
.copyright {
    display: flex;
    align-items: center;
    gap: 15px;
}

.copyright-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.copyright-icon i {
    color: #4ecdc4;
    font-size: 1rem;
}

.copyright-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.copyright-text .year {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4ecdc4;
}

.copyright-text .company {
    font-size: 1rem;
    font-weight: 600;
    color: #ecf0f1;
}

.copyright-text .rights {
    font-size: 0.85rem;
    color: #95a5a6;
}

/* حقوق المصمم */
.designer-credit {
    display: flex;
    justify-content: flex-end;
}

.designer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.designer-info:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.designer-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.designer-icon i {
    color: white;
    font-size: 1.2rem;
}

.designer-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.designer-label {
    font-size: 0.8rem;
    color: #95a5a6;
    font-weight: 500;
}

.designer-name {
    font-size: 1.1rem;
    color: #ecf0f1;
}

.designer-name strong {
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.designer-contact {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.designer-website,
.designer-whatsapp {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #4ecdc4;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(78, 205, 196, 0.1);
}

.designer-website:hover,
.designer-whatsapp:hover {
    color: white;
    background: #4ecdc4;
    transform: translateY(-1px);
}

.designer-whatsapp {
    color: #25d366;
    background: rgba(37, 211, 102, 0.1);
}

.designer-whatsapp:hover {
    background: #25d366;
}

/* الأشكال المتحركة */
.footer-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(52, 152, 219, 0.1));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 40px;
    height: 40px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}

/* الفوتر القديم - للتوافق */
.footer {
    background: #2c3e50 !important;
}

.footer h5 {
    color: #4ecdc4;
    margin-bottom: 20px;
}

.footer .social-links .social-link {
    background: #34495e;
    margin-left: 10px;
}

.footer .social-links .social-link:hover {
    background: #4ecdc4;
}

/* الأزرار */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid #3498db;
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #3498db;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary::before,
.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before,
.btn-outline-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #2980b9, #3498db);
    color: white;
    text-decoration: none;
}

.btn-outline-primary:hover {
    transform: translateY(-3px);
    background: #3498db;
    color: white;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
    text-decoration: none;
}

.btn-light {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-success {
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-success:hover::before {
    left: 100%;
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128c7e, #25d366);
    color: white;
    text-decoration: none;
}

/* تجاوب الموقع */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .offers-content span {
        margin-left: 30px;
    }
    
    .hero {
        padding: 60px 0;
        text-align: center;
    }
    
    .service-card,
    .feature-card {
        margin-bottom: 30px;
    }
    
    /* تجاوب الأسئلة الشائعة */
    .faq-new {
        padding: 60px 0;
    }
    
    .faq-new .section-title {
        font-size: 2.2rem;
    }
    
    .faq-new .section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .faq-icon {
        width: 60px;
        height: 60px;
    }
    
    .faq-icon i {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .faq-question h4 {
        font-size: 1.1rem;
        order: 2;
    }
    
    .question-icon {
        order: 1;
        margin: 0;
        width: 45px;
        height: 45px;
    }
    
    .question-icon i {
        font-size: 1.1rem;
    }
    
    .toggle-icon {
        order: 3;
        margin: 0;
        width: 35px;
        height: 35px;
    }
    
    .faq-answer {
        padding: 0 20px 25px;
    }
    
    .faq-answer p {
        font-size: 1rem;
    }
    
    .pricing-factors {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        padding: 30px 25px;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    /* تجاوب الفوتر الجديد */
    .footer-new {
        padding: 60px 0 0;
    }
    
    .footer-logo {
        justify-content: center;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
        margin-left: 10px;
    }
    
    .logo-icon i {
        font-size: 1.3rem;
    }
    
    .footer-description {
        text-align: center;
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .footer-features {
        align-items: center;
    }
    
    .footer-title {
        font-size: 1.2rem;
        justify-content: center;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
    }
    
    .contact-item {
        padding: 10px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
    }
    
    .contact-icon i {
        font-size: 0.9rem;
    }
    
    .contact-label {
        font-size: 0.8rem;
    }
    
    .contact-value {
        font-size: 0.95rem;
    }
    
    .social-media {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .social-btn {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .action-buttons {
        gap: 8px;
    }
    
    .action-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .copyright {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .copyright-icon {
        width: 35px;
        height: 35px;
    }
    
    .copyright-text .year {
        font-size: 1.1rem;
    }
    
    .copyright-text .company {
        font-size: 0.95rem;
    }
    
    .designer-credit {
        justify-content: center;
    }
    
    .designer-info {
        padding: 12px 15px;
        gap: 12px;
    }
    
    .designer-icon {
        width: 40px;
        height: 40px;
    }
    
    .designer-icon i {
        font-size: 1.1rem;
    }
    
    .designer-name {
        font-size: 1rem;
    }
    
    .designer-contact {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .designer-website,
    .designer-whatsapp {
        font-size: 0.8rem;
        padding: 3px 6px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .booking-form {
        padding: 20px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        line-height: 40px;
        margin-left: 5px;
    }
    
    /* تجاوب الأسئلة الشائعة للشاشات الصغيرة */
    .faq-new {
        padding: 40px 0;
    }
    
    .faq-new .section-title {
        font-size: 1.8rem;
    }
    
    .faq-new .section-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }
    
    .faq-icon {
        width: 50px;
        height: 50px;
    }
    
    .faq-icon i {
        font-size: 1.6rem;
    }
    
    .faq-card {
        margin: 0 10px;
        border-radius: 15px;
    }
    
    .faq-question {
        padding: 15px;
        gap: 12px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .question-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .question-icon i {
        font-size: 1rem;
    }
    
    .toggle-icon {
        width: 30px;
        height: 30px;
    }
    
    .toggle-icon i {
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0 15px 20px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .time-breakdown {
        padding: 15px;
    }
    
    .time-item {
        padding: 8px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .time-value {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
    
    .warranty-item,
    .emergency-item {
        padding: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        text-align: right;
    }
    
    .factor-item,
    .guide-item {
        padding: 10px 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        text-align: right;
    }
    
    .cta-content {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .cta-content h3 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons .btn {
        font-size: 1rem;
        padding: 12px 25px;
    }
    
    /* تجاوب الفوتر الجديد للشاشات الصغيرة جداً */
    .footer-new {
        padding: 50px 0 0;
    }
    
    .footer-logo h3 {
        font-size: 1.3rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        margin-left: 8px;
    }
    
    .logo-icon i {
        font-size: 1.2rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-title::after {
        width: 35px;
    }
    
    .contact-item {
        padding: 8px;
        gap: 12px;
    }
    
    .contact-icon {
        width: 32px;
        height: 32px;
    }
    
    .contact-icon i {
        font-size: 0.85rem;
    }
    
    .contact-label {
        font-size: 0.75rem;
    }
    
    .contact-value {
        font-size: 0.9rem;
    }
    
    .social-btn {
        padding: 8px 10px;
        font-size: 0.8rem;
        gap: 8px;
    }
    
    .action-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .quick-actions h5 {
        font-size: 1rem;
    }
    
    .copyright-icon {
        width: 32px;
        height: 32px;
    }
    
    .copyright-text .year {
        font-size: 1rem;
    }
    
    .copyright-text .company {
        font-size: 0.9rem;
    }
    
    .copyright-text .rights {
        font-size: 0.8rem;
    }
    
    .designer-info {
        padding: 10px 12px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
    
    .designer-icon {
        width: 35px;
        height: 35px;
    }
    
    .designer-icon i {
        font-size: 1rem;
    }
    
    .designer-name {
        font-size: 0.95rem;
    }
    
    .designer-label {
        font-size: 0.75rem;
    }
    
    .designer-contact {
        justify-content: center;
        gap: 8px;
    }
    
    .designer-website,
    .designer-whatsapp {
        font-size: 0.75rem;
        padding: 2px 5px;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
}

/* تأثيرات إضافية */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* تحسين الخطوط العربية */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap');

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* تحسين المظهر العام */
.container {
    max-width: 1200px;
}

/* تأثير التمرير السلس */
html {
    scroll-behavior: smooth;
}

/* تحسين الظلال */
.shadow-custom {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* تحسين الانتقالات */
* {
    transition: all 0.3s ease;
}

/* إخفاء شريط التمرير في المتصفحات الحديثة */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff5252, #26a69a);
}