/* ================================================================== */
/* ملف: style.css                                                    */
/* المسار: assets/css/style.css                                      */
/* ================================================================== */

/* ========================================================== */
/* الأساسيات */
/* ========================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Cairo', sans-serif;
    background: #f0f4f8;
    color: #1e293b;
    padding-top: 70px;
    overflow-x: hidden;
}
.container { max-width: 1250px; margin: 0 auto; padding: 0 20px; }
.section-title {
    font-size: 36px; font-weight: 800; color: #0c1a3a;
    text-align: center; margin-bottom: 15px; position: relative;
}
.section-title span { color: #1a73e8; }
.section-title::after {
    content: ''; position: absolute; bottom: -15px; left: 50%;
    transform: translateX(-50%); width: 80px; height: 4px;
    background: linear-gradient(90deg, #1a73e8, #4fc3f7); border-radius: 4px;
}
.section-subtitle {
    text-align: center; font-size: 18px; color: #64748b;
    margin-top: 25px; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto;
}

/* ========================================================== */
/* الهيدر */
/* ========================================================== */
.header-app {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 12px 0;
    background: rgba(12, 26, 58, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-app.scrolled {
    padding: 6px 0;
    box-shadow: 0 4px 25px rgba(0,0,0,0.3);
}
.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* الشعار */
.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    flex-shrink: 0;
}
.logo-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a73e8, #4fc3f7);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(26,115,232,0.4);
    transition: transform 0.3s;
    overflow: hidden;
    flex-shrink: 0;
}
.header-logo:hover .logo-icon-wrapper { transform: scale(1.05) rotate(-5deg); }
.logo-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.logo-text h2 {
    font-size: 20px; font-weight: 800; margin: 0; line-height: 1.1; color: white;
}
.logo-text span {
    font-size: 10px; color: #4fc3f7; display: block; font-weight: 500;
}

/* أزرار التواصل */
.header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-call-mobile {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.15);
}
.btn-call-mobile:hover { background: white; color: #0c1a3a; transform: scale(1.05); }
.btn-whatsapp-mobile {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.btn-whatsapp-mobile:hover { transform: scale(1.05); box-shadow: 0 8px 25px rgba(37,211,102,0.4); }

/* زر القائمة */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    background: rgba(255,255,255,0.08);
    border: none;
    border-radius: 8px;
    padding: 6px 7px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.mobile-menu-toggle:hover { background: rgba(255,255,255,0.15); }
.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.4s ease;
    transform-origin: center;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* القائمة الرئيسية */
.main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(12, 26, 58, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 10px 0;
    max-height: 80vh;
    overflow-y: auto;
}
.main-nav.active { display: block; }
.nav-container { max-width: 1300px; margin: 0 auto; padding: 0 15px; }
.nav-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}
.nav-icon { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.drop-icon {
    width: 14px; height: 14px; fill: currentColor;
    transition: transform 0.3s; margin-right: auto;
}
.nav-link:hover { background: rgba(255,255,255,0.08); color: white; }
.nav-link.active {
    background: linear-gradient(135deg, #1a73e8, #4fc3f7);
    color: white;
    box-shadow: 0 4px 15px rgba(26,115,232,0.3);
}

/* القوائم المنسدلة */
.has-dropdown { position: relative; }
.dropdown-menu {
    display: none;
    background: rgba(12, 26, 58, 0.98);
    border-radius: 12px;
    padding: 8px 0;
    margin: 4px 0 4px 20px;
    list-style: none;
    border-right: 2px solid rgba(79,195,247,0.2);
}
.dropdown-menu.open { display: block; }
.dropdown-header {
    padding: 8px 16px 4px 16px;
    color: #4fc3f7;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dropdown-header svg { fill: #4fc3f7; }
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    border-radius: 8px;
    margin: 0 4px;
}
.drop-item-icon { width: 16px; height: 16px; fill: #4fc3f7; flex-shrink: 0; }
.dropdown-menu a:hover { background: rgba(255,255,255,0.08); color: white; }
.dropdown-menu a:hover .drop-item-icon { fill: white; }

/* القائمة الجانبية للموبايل */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background: #0c1a3a;
    z-index: 10001;
    transition: right 0.4s cubic-bezier(0.77,0,0.175,1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.4);
}
.mobile-sidebar.active { right: 0; }
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}
.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 18px;
    font-weight: 700;
}
.sidebar-logo svg { width: 24px; height: 24px; fill: #4fc3f7; }
.sidebar-close {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar-close:hover { background: #ef4444; transform: rotate(90deg); }
.sidebar-close svg { width: 18px; height: 18px; fill: currentColor; }
.sidebar-body {
    flex: 1;
    padding: 16px 20px 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.sidebar-nav li { margin-bottom: 2px; }
.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    transition: all 0.3s;
}
.sidebar-nav a svg { width: 20px; height: 20px; fill: #4fc3f7; flex-shrink: 0; }
.sidebar-nav a:hover { background: rgba(255,255,255,0.08); color: white; }
.sidebar-nav a.active {
    background: linear-gradient(135deg, rgba(26,115,232,0.4), rgba(79,195,247,0.4));
    color: white;
    border: 1px solid rgba(79,195,247,0.2);
}
.sidebar-nav a.active svg { fill: white; }

.mobile-has-dropdown { position: relative; }
.mobile-drop-toggle {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center;
    cursor: pointer;
}
.mobile-drop-toggle svg:last-child {
    width: 14px; height: 14px; fill: #4fc3f7;
    transition: transform 0.3s;
}
.mobile-has-dropdown.open .mobile-drop-toggle svg:last-child { transform: rotate(180deg); }
.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-right: 2px solid rgba(79,195,247,0.15);
}
.mobile-has-dropdown.open .mobile-dropdown-menu { max-height: 800px; }
.mobile-dropdown-menu li { margin: 0; }
.mobile-dropdown-menu a {
    padding: 10px 16px 10px 36px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    border-radius: 8px !important;
}
.mobile-dropdown-header {
    padding: 8px 16px 4px 36px;
    color: #4fc3f7;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-contact {
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 16px;
}
.sidebar-contact h4 { color: white; font-size: 14px; margin-bottom: 12px; }
.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    text-decoration: none;
    border-radius: 12px;
    transition: background 0.3s;
    margin-bottom: 4px;
}
.contact-item:hover { background: rgba(255,255,255,0.06); }
.contact-item svg { width: 20px; height: 20px; fill: #4fc3f7; flex-shrink: 0; }
.contact-item.whatsapp svg { fill: white; }
.contact-item div { display: flex; flex-direction: column; }
.contact-item span { font-size: 11px; color: rgba(255,255,255,0.5); }
.contact-item strong { color: white; font-size: 14px; }

.sidebar-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.sidebar-social a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}
.sidebar-social a:hover { background: #1a73e8; transform: translateY(-3px); }
.sidebar-social a svg { width: 18px; height: 18px; fill: currentColor; }

.overlay-layer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.overlay-layer.active { opacity: 1; visibility: visible; }
body.no-scroll { overflow: hidden !important; }

/* التجاوب - الهيدر */
@media (min-width: 769px) {
    .main-nav {
        display: block !important;
        position: static;
        background: transparent;
        border-top: none;
        padding: 0;
        max-height: none;
        overflow-y: visible;
    }
    .nav-list {
        flex-direction: row;
        gap: 2px;
    }
    .nav-link {
        padding: 10px 14px;
        font-size: 14px;
        width: auto;
    }
    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: #0c1a3a;
        min-width: 240px;
        padding: 10px 0;
        border-radius: 16px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        border: 1px solid rgba(255,255,255,0.08);
        margin: 0;
        border-right: none;
    }
    .has-dropdown:hover .dropdown-menu { display: block; }
    .dropdown-wide { min-width: 300px; }
    .dropdown-menu a { padding: 10px 20px; margin: 0 8px; font-size: 14px; }
    .btn-call-mobile { display: none !important; }
    .btn-whatsapp-mobile { display: none !important; }
    .mobile-menu-toggle { display: none !important; }
}

@media (max-width: 768px) {
    .main-nav { display: none !important; }
    .mobile-menu-toggle { display: flex !important; }
    .btn-call-mobile { display: flex !important; }
    .btn-whatsapp-mobile { display: flex !important; }
    .logo-text h2 { font-size: 16px; }
    .logo-text span { font-size: 9px; }
    .logo-icon-wrapper { width: 36px; height: 36px; }
}

/* ========================================================== */
/* السلايدر (3 صور متحركة) */
/* ========================================================== */
.hero-slider-section {
    position: relative;
    height: 50vh;
    min-height: 300px;
    max-height: 500px;
    overflow: hidden;
    background: #0c1a3a;
}
.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(12,26,58,0.5), rgba(12,26,58,0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: white;
    padding: 20px;
}
.hero-slide .overlay h2 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
}
.hero-slide .overlay h2 span { color: #4fc3f7; }
.hero-slide .overlay p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.8;
}
.hero-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: 0.3s;
    border: none;
    padding: 0;
}
.hero-dot.active { background: #4fc3f7; transform: scale(1.3); }

@media (min-width: 768px) {
    .hero-slider-section { height: 70vh; min-height: 450px; max-height: none; }
    .hero-slide .overlay h2 { font-size: 48px; }
    .hero-slide .overlay p { font-size: 20px; }
    .hero-dot { width: 14px; height: 14px; }
    .hero-dots { gap: 12px; bottom: 25px; }
}

/* ========================================================== */
/* الفيديو الدعائي */
/* ========================================================== */
.video-section {
    padding: 60px 0;
    background: white;
}
.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    position: relative;
}
.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    background: #0c1a3a;
}
.video-wrapper .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(26,115,232,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 35px;
    cursor: pointer;
    transition: 0.3s;
    border: 3px solid rgba(255,255,255,0.3);
    pointer-events: none;
}
.video-wrapper:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(26,115,232,1);
}

/* ========================================================== */
/* من نحن */
/* ========================================================== */
.about-section {
    padding: 80px 0;
    background: #f8fafc;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #0c1a3a, #1a73e8);
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-image .placeholder-icon {
    font-size: 80px;
    color: rgba(255,255,255,0.15);
}
.about-text h2 {
    font-size: 36px;
    color: #0c1a3a;
    margin-bottom: 20px;
}
.about-text h2 span { color: #1a73e8; }
.about-text p {
    color: #475569;
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 15px;
}
.about-text .features {
    list-style: none;
    margin-top: 25px;
}
.about-text .features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: 12px;
    margin-bottom: 10px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
}
.about-text .features li i {
    color: #1a73e8;
    font-size: 18px;
    width: 30px;
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-image { min-height: 200px; }
    .about-text h2 { font-size: 28px; }
}

/* ========================================================== */
/* الخدمات */
/* ========================================================== */
.services-section {
    padding: 80px 0;
    background: white;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.service-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e2e8f0;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(26,115,232,0.12);
    border-color: #4fc3f7;
}
.service-image {
    height: 200px;
    background: #e8f0fe;
    overflow: hidden;
    position: relative;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-image img { transform: scale(1.05); }
.service-image .icon-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(26,115,232,0.9);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    backdrop-filter: blur(4px);
}
.service-content { padding: 22px; }
.service-content h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0c1a3a;
    margin-bottom: 10px;
}
.service-content p {
    color: #64748b;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 15px;
}
.service-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.service-actions .btn {
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
    min-width: 100px;
}
.btn-whatsapp-service { background: #25D366; color: white; }
.btn-whatsapp-service:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(37,211,102,0.35); }
.btn-details-service { background: #e2e8f0; color: #0c1a3a; }
.btn-details-service:hover { background: #1a73e8; color: white; transform: translateY(-3px); }
.btn svg { width: 16px; height: 16px; fill: currentColor; }

/* ========================================================== */
/* المنتجات */
/* ========================================================== */
.products-section {
    padding: 80px 0;
    background: #f8fafc;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e2e8f0;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(26,115,232,0.12);
    border-color: #4fc3f7;
}
.product-image {
    height: 200px;
    background: #e8f0fe;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.6s ease;
}
.product-card:hover .product-image img { transform: scale(1.05); }
.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    color: white;
    background: #f59e0b;
}
.product-content { padding: 22px; }
.product-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0c1a3a;
    margin-bottom: 8px;
}
.product-content p {
    color: #64748b;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 15px;
}
.product-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.product-actions .btn {
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
    min-width: 100px;
}
.btn-whatsapp-product { background: #25D366; color: white; }
.btn-whatsapp-product:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(37,211,102,0.35); }
.btn-details-product { background: #e2e8f0; color: #0c1a3a; }
.btn-details-product:hover { background: #1a73e8; color: white; transform: translateY(-3px); }

/* ========================================================== */
/* المهندس التنفيذي */
/* ========================================================== */
.ceo-section {
    padding: 80px 0;
    background: white;
}
.ceo-card {
    background: linear-gradient(135deg, #0c1a3a, #1a73e8);
    border-radius: 24px;
    padding: 40px 50px;
    color: white;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 20px 60px rgba(26,115,232,0.25);
}
.ceo-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: rgba(255,255,255,0.5);
    margin: 0 auto;
}
.ceo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ceo-info h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 5px;
}
.ceo-info .ceo-title {
    color: #4fc3f7;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
}
.ceo-info p {
    opacity: 0.9;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
}
.ceo-info .ceo-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}
.ceo-info .ceo-stats .stat {
    background: rgba(255,255,255,0.1);
    padding: 12px;
    border-radius: 12px;
    text-align: center;
}
.ceo-info .ceo-stats .stat .number {
    font-size: 24px;
    font-weight: 900;
    display: block;
}
.ceo-info .ceo-stats .stat .label {
    font-size: 12px;
    opacity: 0.7;
}
.btn-ceo {
    background: #25D366;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    border: none;
    cursor: pointer;
}
.btn-ceo:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(37,211,102,0.4); }

@media (max-width: 768px) {
    .ceo-card { grid-template-columns: 1fr; text-align: center; padding: 30px; }
    .ceo-image { width: 120px; height: 120px; }
    .ceo-info h3 { font-size: 26px; }
    .ceo-info .ceo-stats { grid-template-columns: 1fr 1fr; }
}

/* ========================================================== */
/* نموذج التواصل */
/* ========================================================== */
.contact-section {
    padding: 80px 0;
    background: #f8fafc;
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.contact-info h2 {
    font-size: 32px;
    color: #0c1a3a;
    margin-bottom: 15px;
}
.contact-info h2 span { color: #1a73e8; }
.contact-info > p {
    color: #64748b;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 30px;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 16px;
    margin-bottom: 12px;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}
.info-item:hover { background: #e8f0fe; border-color: #1a73e8; transform: translateX(-5px); }
.info-item .icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a73e8, #4fc3f7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}
.info-item .text h4 { font-size: 16px; color: #0c1a3a; margin-bottom: 2px; }
.info-item .text p { font-size: 14px; color: #64748b; }
.info-item .text a { color: #1a73e8; text-decoration: none; font-weight: 600; }
.info-item .text a:hover { text-decoration: underline; }

.working-hours {
    margin-top: 30px;
    padding: 25px 30px;
    background: white;
    border-radius: 16px;
    border-right: 4px solid #1a73e8;
}
.working-hours h4 { font-size: 18px; color: #0c1a3a; margin-bottom: 10px; }
.working-hours .hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 20px;
}
.working-hours .hours-grid span { font-size: 14px; color: #475569; }
.working-hours .hours-grid .day { font-weight: 600; color: #0c1a3a; }

.contact-form {
    background: white;
    padding: 35px 30px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.contact-form h3 { font-size: 24px; color: #0c1a3a; margin-bottom: 8px; }
.contact-form .form-subtitle { color: #64748b; font-size: 14px; margin-bottom: 25px; }

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-weight: 700;
    color: #0c1a3a;
    font-size: 15px;
    margin-bottom: 6px;
}
.form-group label .required { color: #ef4444; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    transition: 0.3s;
    background: white;
    color: #1e293b;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 4px rgba(26,115,232,0.1);
}
.form-group input.error, .form-group select.error, .form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239,68,68,0.1);
}
.form-group input.success, .form-group select.success, .form-group textarea.success {
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16,185,129,0.1);
}
.form-group .error-message {
    color: #ef4444;
    font-size: 13px;
    margin-top: 4px;
    display: none;
}
.form-group .error-message.show { display: block; }
.form-group .success-message {
    color: #10b981;
    font-size: 13px;
    margin-top: 4px;
    display: none;
}
.form-group .success-message.show { display: block; }
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-group .input-wrapper {
    position: relative;
}
.form-group .input-wrapper .input-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
}
.form-group .input-wrapper textarea ~ .input-icon {
    top: 18px;
    transform: none;
}
.form-group .input-wrapper input, .form-group .input-wrapper select, .form-group .input-wrapper textarea {
    padding-right: 45px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #1a73e8, #4fc3f7);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(26,115,232,0.3); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-submit .spinner {
    display: none;
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
.btn-submit.loading .spinner { display: block; }
.btn-submit.loading .btn-text { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.success-message-box {
    display: none;
    text-align: center;
    padding: 30px 20px;
    background: #ecfdf5;
    border-radius: 16px;
    border: 2px solid #10b981;
}
.success-message-box.show { display: block; }
.success-message-box .icon { font-size: 60px; color: #10b981; margin-bottom: 15px; }
.success-message-box h4 { font-size: 24px; color: #0c1a3a; margin-bottom: 8px; }
.success-message-box p { color: #64748b; font-size: 16px; }

@media (max-width: 768px) {
    .contact-wrapper { grid-template-columns: 1fr; gap: 30px; }
    .contact-form { padding: 25px 18px; }
    .working-hours .hours-grid { grid-template-columns: 1fr; }
}

/* ========================================================== */
/* الخريطة */
/* ========================================================== */
.map-section {
    padding: 0 0 80px;
    background: white;
}
.map-section iframe {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
@media (max-width: 768px) {
    .map-section iframe { height: 250px; }
}

/* ========================================================== */
/* الفوتر */
/* ========================================================== */
.footer-app {
    background: #0c1a3a;
    color: white;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.footer-logo .logo-icon {
    width: 45px; height: 45px;
    background: linear-gradient(135deg, #1a73e8, #4fc3f7);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 15px rgba(26,115,232,0.4);
}
.footer-logo .logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.footer-logo h3 { font-size: 20px; font-weight: 800; margin: 0; }
.footer-logo span { font-size: 10px; color: #4fc3f7; display: block; }
.footer-desc { color: rgba(255,255,255,0.7); line-height: 1.6; font-size: 13px; margin-bottom: 15px; }

.footer-social { display: flex; gap: 8px; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover {
    background: linear-gradient(135deg, #1a73e8, #4fc3f7);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(26,115,232,0.3);
    border-color: transparent;
}
.footer-social a svg { fill: currentColor; }

.footer-title {
    font-size: 15px; font-weight: 700; margin-bottom: 12px;
    position: relative; padding-bottom: 8px;
}
.footer-title::after {
    content: ''; position: absolute; bottom: 0; right: 0;
    width: 30px; height: 2.5px;
    background: linear-gradient(90deg, #4fc3f7, #1a73e8);
    border-radius: 3px;
}

.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 5px; }
.footer-list a {
    display: flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.7); text-decoration: none;
    font-size: 13px; transition: all 0.3s ease;
}
.footer-list a:hover { color: white; transform: translateX(-5px); }
.footer-list a svg { fill: currentColor; }

.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
    display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px;
}
.footer-contact-list li svg { margin-top: 2px; flex-shrink: 0; fill: #4fc3f7; }
.footer-contact-list li div { display: flex; flex-direction: column; }
.footer-contact-list li span { font-size: 11px; color: rgba(255,255,255,0.5); }
.footer-contact-list li a {
    color: rgba(255,255,255,0.9); text-decoration: none; font-size: 14px; font-weight: 600;
    transition: color 0.3s;
}
.footer-contact-list li a:hover { color: #4fc3f7; }

.footer-bottom {
    margin-top: 20px; padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom-container {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px;
}
.footer-copyright { color: rgba(255,255,255,0.5); font-size: 12px; }
.footer-copyright strong { color: #4fc3f7; }

.developer-btn {
    background: rgba(79,195,247,0.1);
    border: 1px solid rgba(79,195,247,0.2);
    color: #4fc3f7;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}
.developer-btn:hover {
    background: linear-gradient(135deg, #1a73e8, #4fc3f7);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26,115,232,0.3);
}
.developer-btn svg { fill: currentColor; }

@media (max-width: 768px) {
    .footer-container { grid-template-columns: 1fr 1fr; gap: 25px; text-align: center; }
    .footer-logo { justify-content: center; }
    .footer-social { justify-content: center; }
    .footer-title::after { right: 50%; transform: translateX(50%); }
    .footer-list a { justify-content: center; }
    .footer-list a:hover { transform: translateY(-3px); }
    .footer-contact-list li { justify-content: center; text-align: center; }
    .footer-bottom-container { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .footer-container { grid-template-columns: 1fr; }
}

/* ========================================================== */
/* صندوق المبرمج */
/* ========================================================== */
.dev-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dev-modal-overlay.show { opacity: 1; visibility: visible; }
.dev-modal-box {
    position: relative;
    width: 90%; max-width: 580px;
    border-radius: 40px; padding: 50px 35px 40px;
    text-align: center;
    transform: scale(0.7) rotateY(30deg);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(240,244,248,0.95));
    box-shadow: 0 50px 120px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.3);
    overflow: hidden;
}
.dev-modal-overlay.show .dev-modal-box { transform: scale(1) rotateY(0deg); }
.dev-bg-particles {
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(26,115,232,0.05) 0%, transparent 60%),
                radial-gradient(circle at 70% 60%, rgba(79,195,247,0.05) 0%, transparent 50%);
    animation: floatParticles 15s infinite alternate linear;
    z-index: 0;
    pointer-events: none;
}
@keyframes floatParticles {
    0% { transform: translate(0,0) rotate(0deg); }
    100% { transform: translate(2%,2%) rotate(5deg); }
}
.dev-avatar {
    position: relative; z-index: 1;
    width: 110px; height: 110px;
    background: linear-gradient(135deg, #1a73e8 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: -80px auto 20px;
    box-shadow: 0 20px 50px rgba(26,115,232,0.4);
    font-size: 48px; color: white;
    border: 6px solid rgba(255,255,255,0.8);
    animation: pulseGlow 3s infinite;
}
@keyframes pulseGlow {
    0%,100% { box-shadow: 0 20px 50px rgba(26,115,232,0.4); }
    50% { box-shadow: 0 30px 80px rgba(26,115,232,0.7); }
}
.dev-modal-box h2 {
    position: relative; z-index: 1;
    font-size: 32px; color: #0c1a3a; margin-bottom: 5px;
    font-weight: 900; letter-spacing: 1px;
}
.dev-role {
    position: relative; z-index: 1;
    color: #1a73e8; font-weight: 700; margin-bottom: 15px;
    background: #e8f0fe; display: inline-block; padding: 6px 24px;
    border-radius: 50px; font-size: 14px;
    box-shadow: 0 4px 15px rgba(26,115,232,0.1);
}
.dev-role svg { fill: currentColor; }
.dev-desc {
    position: relative; z-index: 1;
    color: #475569; line-height: 1.8; margin-bottom: 20px; font-size: 16px;
    max-width: 400px; margin-left: auto; margin-right: auto;
}
.dev-services {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 20px;
}
.dev-service-item {
    background: #f8fafc; padding: 10px 6px; border-radius: 12px;
    font-size: 12px; font-weight: 600; color: #0c1a3a;
    border: 1px solid #e2e8f0; transition: all 0.3s ease;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.dev-service-item:hover {
    transform: translateY(-3px); box-shadow: 0 8px 25px rgba(26,115,232,0.1);
    border-color: #4fc3f7; background: #f0f7ff;
}
.dev-service-icon { font-size: 22px; }
.dev-skills {
    position: relative; z-index: 1;
    display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 25px;
}
.dev-skills span {
    background: white; padding: 6px 14px; border-radius: 50px; font-size: 12px;
    font-weight: 700; color: #0c1a3a; box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0; display: flex; align-items: center; gap: 6px;
    transition: all 0.3s ease;
}
.dev-skills span svg { fill: currentColor; }
.dev-skills span:hover {
    transform: translateY(-3px); box-shadow: 0 8px 25px rgba(26,115,232,0.15);
    border-color: #4fc3f7;
}

.dev-contact-buttons {
    position: relative; z-index: 1;
    display: flex; justify-content: center; gap: 16px; margin-bottom: 25px;
}
.dev-btn-whatsapp, .dev-btn-call, .dev-btn-email {
    display: flex; align-items: center; justify-content: center;
    width: 70px; height: 70px; border-radius: 50%;
    text-decoration: none; transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.dev-btn-whatsapp { background: #25D366; color: white; box-shadow: 0 10px 40px rgba(37,211,102,0.4); }
.dev-btn-whatsapp:hover { transform: scale(1.15) rotate(-5deg); box-shadow: 0 20px 60px rgba(37,211,102,0.6); }
.dev-btn-call { background: linear-gradient(135deg, #0c1a3a, #1a73e8); color: white; box-shadow: 0 10px 40px rgba(26,115,232,0.4); }
.dev-btn-call:hover { transform: scale(1.15) rotate(5deg); box-shadow: 0 20px 60px rgba(26,115,232,0.6); }
.dev-btn-email { background: linear-gradient(135deg, #8b5cf6, #6366f1); color: white; box-shadow: 0 10px 40px rgba(139,92,246,0.4); }
.dev-btn-email:hover { transform: scale(1.15) rotate(-5deg); box-shadow: 0 20px 60px rgba(139,92,246,0.6); }
.dev-btn-whatsapp svg, .dev-btn-call svg, .dev-btn-email svg { fill: white; }

.dev-modal-close {
    position: relative; z-index: 1;
    background: #e2e8f0; color: #475569;
    border: none; padding: 14px 30px; border-radius: 50px;
    font-weight: 800; font-size: 15px; cursor: pointer; transition: all 0.3s;
    width: 100%; box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.dev-modal-close svg { fill: currentColor; }
.dev-modal-close:hover { background: #0c1a3a; color: white; transform: scale(1.02); box-shadow: 0 8px 25px rgba(12,26,58,0.3); }
@media (max-width: 768px) {
    .dev-modal-box { padding: 40px 25px 30px; max-width: 95%; }
    .dev-avatar { width: 90px; height: 90px; margin-top: -65px; }
    .dev-modal-box h2 { font-size: 26px; }
    .dev-btn-whatsapp, .dev-btn-call, .dev-btn-email { width: 60px; height: 60px; }
    .dev-services { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 480px) {
    .dev-modal-box { padding: 30px 20px; }
    .dev-avatar { width: 80px; height: 80px; margin-top: -55px; }
    .dev-modal-box h2 { font-size: 22px; }
    .dev-btn-whatsapp, .dev-btn-call, .dev-btn-email { width: 55px; height: 55px; }
    .dev-services { grid-template-columns: repeat(2,1fr); }
    .dev-service-item { font-size: 11px; padding: 8px 4px; }
}

/* ========================================================== */
/* أزرار التواصل العائمة */
/* ========================================================== */
.floating-buttons {
    position: fixed; bottom: 30px; left: 20px; z-index: 999;
    display: flex; flex-direction: column; gap: 12px;
}
.floating-btn {
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; color: white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
}
.floating-btn:hover { transform: scale(1.1); }
.floating-whatsapp { background: #25D366; }
.floating-call { background: linear-gradient(135deg, #0c1a3a, #1a73e8); }
.floating-btn svg { width: 28px; height: 28px; fill: white; }
@media (max-width: 768px) {
    .floating-buttons { bottom: 20px; left: 15px; }
    .floating-btn { width: 55px; height: 55px; }
    .floating-btn svg { width: 24px; height: 24px; }
}

/* ========================================================== */
/* النافذة المنبثقة (Modal) */
/* ========================================================== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.modal-overlay.show { opacity: 1; visibility: visible; }
.modal-box {
    background: white;
    width: 92%;
    max-width: 900px;
    border-radius: 32px;
    padding: 40px;
    transform: scale(0.9) translateY(30px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    max-height: 92vh;
    overflow-y: auto;
}
.modal-overlay.show .modal-box { transform: scale(1) translateY(0); }
.modal-close {
    position: sticky;
    top: 0;
    float: left;
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    z-index: 10;
}
.modal-close:hover { background: #ef4444; color: white; transform: rotate(90deg); }
.modal-box .modal-image {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    margin: 15px 0 20px;
    background: #f0f9ff;
}
.modal-box .modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal-box .modal-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.modal-box .modal-category-tag {
    display: inline-block;
    background: #dbeafe;
    color: #1a73e8;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}
.modal-box h2 { font-size: 28px; color: #0c1a3a; margin-bottom: 15px; }
.modal-box .modal-full-content {
    color: #475569;
    line-height: 2;
    font-size: 16px;
    margin-bottom: 20px;
}
.modal-box .modal-full-content p { margin-bottom: 15px; }
.modal-box .modal-full-content ul {
    padding-right: 20px;
    margin: 15px 0;
}
.modal-box .modal-full-content ul li { margin-bottom: 8px; }

.modal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}
.modal-actions .btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: center;
}
.modal-actions .btn-share-modal {
    background: #25D366;
    color: white;
}
.modal-actions .btn-share-modal:hover { transform: scale(1.03); box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
.modal-actions .btn-close-modal { background: #e2e8f0; color: #0c1a3a; }
.modal-actions .btn-close-modal:hover { background: #cbd5e1; }

@media (max-width: 768px) {
    .modal-box { padding: 25px; }
    .modal-box .modal-image { height: 200px; }
    .modal-actions .btn { min-width: 100%; }
}

/* ========================================================== */
/* تأثيرات AOS محلية */
/* ========================================================== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}
/* ========================================================== */
/* الإحصائيات */
/* ========================================================== */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0c1a3a, #1a73e8);
    color: white;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-item .number {
    font-size: 48px;
    font-weight: 900;
    display: block;
}
.stat-item .label {
    font-size: 18px;
    opacity: 0.9;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .stat-item .number {
        font-size: 36px;
    }
}

/* ========================================================== */
/* آراء العملاء */
/* ========================================================== */
.testimonials-section {
    padding: 80px 0;
    background: #f8fafc;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26,115,232,0.1);
    border-color: #4fc3f7;
}
.testimonial-card .stars {
    color: #f59e0b;
    font-size: 20px;
    margin-bottom: 10px;
}
.testimonial-card p {
    color: #475569;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 15px;
}
.testimonial-card .client-name {
    font-weight: 800;
    color: #0c1a3a;
    font-size: 18px;
}
.testimonial-card .client-info {
    color: #64748b;
    font-size: 14px;
}

/* ========================================================== */
/* الأسئلة الشائعة */
/* ========================================================== */
.faq-section {
    padding: 80px 0;
    background: white;
}
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.04);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}
.faq-question {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 800;
    color: #0c1a3a;
    font-size: 16px;
    transition: 0.3s;
}
.faq-question:hover {
    background: #f8fafc;
}
.faq-item.active .faq-question .arrow {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.6s ease;
    padding: 0 20px;
    color: #475569;
    line-height: 2;
}
.faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 0 20px 25px;
}
.faq-answer p {
    margin-bottom: 15px;
    font-size: 15px;
}
.faq-answer ul {
    padding-right: 25px;
    margin: 15px 0;
}
.faq-answer ul li {
    margin-bottom: 8px;
}
.arrow {
    transition: 0.3s;
    display: inline-block;
    font-size: 18px;
    color: #1a73e8;
}

@media (min-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }
    .faq-item {
        border-radius: 20px;
        margin-bottom: 18px;
    }
    .faq-question {
        padding: 22px 28px;
        font-size: 19px;
    }
    .faq-answer {
        padding: 0 28px;
    }
    .faq-item.active .faq-answer {
        padding: 0 28px 30px;
    }
    .faq-answer p {
        font-size: 17px;
    }
}

/* ========================================================== */
/* العروض الخاصة */
/* ========================================================== */
.offers-section {
    padding: 80px 0;
    background: #f8fafc;
}
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}
.offer-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #f59e0b;
    position: relative;
}
.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(245,158,11,0.15);
    border-color: #f97316;
}
.offer-card .offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    color: white;
    background: #ef4444;
    animation: pulse-badge 1.5s ease-in-out infinite;
}
@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}
.offer-image {
    height: 160px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}
.offer-content {
    padding: 22px 25px 25px;
}
.offer-content h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0c1a3a;
    margin-bottom: 10px;
}
.offer-content p {
    color: #64748b;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 15px;
}
.offer-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.offer-actions .btn {
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
    min-width: 100px;
}
.btn-whatsapp-offer {
    background: #f59e0b;
    color: white;
}
.btn-whatsapp-offer:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245,158,11,0.35);
}
.btn-details-offer {
    background: #e2e8f0;
    color: #0c1a3a;
}
.btn-details-offer:hover {
    background: #0c1a3a;
    color: white;
    transform: translateY(-3px);
}
.btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .offer-image {
        height: 130px;
        font-size: 50px;
    }
    .offer-content {
        padding: 18px 20px 20px;
    }
    .offer-content h3 {
        font-size: 18px;
    }
    .offer-actions .btn {
        min-width: 100%;
    }
}