/* إعدادات وتصفير التنسيقات العامة للموقع */
:root {
    --color-dark: #242424;       /* لون الفحم والأسفلت الغامق الرئيسي */
    --color-dark-light: #333333; /* لون أسفلتي أفتح قليلاً */
    --color-primary: #FFB300;    /* لون أصفر الأمان للمعدات والخطوط واللمسات التفاعلية */
    --color-primary-hover: #E6A100;
    --color-white: #FFFFFF;
    --color-light-bg: #F9F9F9;
    --color-muted: #777777;
    --font-primary: 'Cairo', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-white);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* تنسيقات العناوين الفرعية للهيدر */
h1, h2, h3, h4 {
    font-weight: 800;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.3rem;
    position: relative;
    padding-bottom: 15px;
    color: var(--color-dark);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background-color: var(--color-primary);
}

.section-header p {
    margin-top: 15px;
    color: var(--color-muted);
    font-size: 1.1rem;
}

/* تصميم الأزرار التفاعلية */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-dark);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* الهيدر وشريط التنقل العلوي المتجاوب */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background-color: var(--color-dark);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-white);
    text-decoration: none;
}

.logo span {
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-primary);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* تنسيقات واجهة الهيرو الكبيرة */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-image: url('https://images.unsplash.com/photo-1534224039826-c7a0dea0e66a?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--color-white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(36,36,36,0.95) 0%, rgba(36,36,36,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: #DDDDDD;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* قسم العدادات الرقمية المتحركة */
.stats-section {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 50px 0;
    border-bottom: 4px solid var(--color-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card .stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.stat-card .stat-label {
    font-size: 0.95rem;
    color: #CCCCCC;
}

/* كروت وقسم الخدمات */
.services {
    padding: 100px 0;
    background-color: var(--color-light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--color-white);
    padding: 40px 30px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--color-primary);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--color-muted);
    margin-bottom: 25px;
    text-align: justify;
}

.service-link {
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.service-link:hover {
    color: var(--color-primary);
}

/* قسم من نحن المقسم لصفين */
.about {
    padding: 100px 0;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.about-text .subtitle {
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.about-text p {
    color: var(--color-muted);
    margin-bottom: 30px;
}

.about-features {
    list-style: none;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.about-features li i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* شبكة معرض الأعمال التفاعلية بالكامل */
.gallery {
    padding: 100px 0;
    background-color: var(--color-light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    height: 280px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(36, 36, 36, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
    padding: 20px;
    text-align: center;
}

.gallery-overlay h4 {
    color: var(--color-white);
    font-size: 1.1rem;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* تنسيقات قسم فورم وقاعدة بيانات الاتصال */
.contact {
    padding: 100px 0;
    background-color: var(--color-dark);
    color: var(--color-white);
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.contact-details > p {
    color: #CCCCCC;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: #CCCCCC;
}

.map-placeholder {
    margin-top: 40px;
    background-color: var(--color-dark-light);
    height: 160px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #888888;
    border: 1px dashed #555555;
    font-weight: 600;
    gap: 10px;
}

.contact-form-container {
    background-color: var(--color-white);
    color: var(--color-dark);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.contact-form-container h3 {
    margin-bottom: 25px;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--color-light-bg);
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #EAEAEA;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

/* الفوتر السفلي */
.footer {
    background-color: #1A1A1A;
    color: #777777;
    padding: 30px 0;
    font-size: 0.95rem;
    border-top: 1px solid #2A2A2A;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #777777;
    font-size: 1.3rem;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    color: var(--color-primary);
}

/* الشاشات المتجاوبة وشاشات الهواتف والميديا */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.5rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .about-split { grid-template-columns: 1fr; gap: 40px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-split { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-cta { display: none; }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        right: -100%;
        width: 100%;
        background-color: var(--color-dark);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        gap: 25px;
        transition: var(--transition-smooth);
    }

    .nav-menu.active {
        right: 0;
    }

    .hero h1 { font-size: 2rem; }
    .hero-btns { flex-direction: column; }
    .gallery-grid { grid-template-columns: 1fr; }

    
    .footer-content { flex-direction: column; gap: 15px; text-align: center; }
}

































/* تنسيق الواجهة الثانية (السكشن بالكامل) */
.cta-section {
    position: relative;
    /* ضع مسار صورتك هنا بدلاً من your-image-name.jpg */
    background-image: url('dd.jpeg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* أو خليها fixed لو عايز تأثير بارالاكس شيك */
    min-height: 400px; /* يمكنك زيادة أو تقليل الارتفاع حسب رغبتك */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* طبقة شفافة غامقة فوق الصورة عشان النصوص والستايل يظهروا بوضوح */
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* درجة تغميق الصورة 60% */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* الحاوية الداخلية للنصوص والأزرار */
.cta-container {
    text-align: center;
    color: #ffffff;
    padding: 20px;
    z-index: 2;
    direction: rtl;
}

.cta-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* حاوية الأزرار */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* لضمان نزولهم تحت بعض على الشاشات الصغيرة جداً */
}

/* التنسيق العام والأساسي للزرارين */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

/* ستايل زر الواتساب الأخضر */
.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff;
}

.btn-whatsapp:hover {
    background-color: #1ebd58;
    transform: translateY(-3px); /* تأثير حركة خفيفة لفوق عند الهوفر */
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ستايل زر الاتصال (اخترت لك لون أزرق مريح ومتناسق) */
.btn-call {
    background-color: #007bff;
    color: #ffffff;
}

.btn-call:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/* توافق الشاشات (Responsive) للموبايل */
@media (max-width: 768px) {
    .cta-title {
        font-size: 26px;
    }
    .cta-subtitle {
        font-size: 15px;
    }
    .btn {
        padding: 10px 24px;
        font-size: 16px;
        width: 100%; /* الزرار ياخد العرض كامل على الموبايل لسهولة الضغط */
        justify-content: center;
    }
    .cta-buttons {
        gap: 12px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}



















body {
    -webkit-user-select: none; /* منع تحديد النصوص في متصفحات سفايري وكرووم */
    -moz-user-select: none;    /* متصفح فايرفوكس */
    -ms-user-select: none;     /* متصفح إيدج */
    user-select: none;         /* المنع العام */
}
img {
    pointer-events: none; /* منع سحب أو الضغط المطول على الصور */
}




