﻿body {
    margin: 0;
    font-family: 'Tajawal', sans-serif;
    background: #f8f9fc;
    color: #1e2a45;
}

.container {
    width: 90%;
    margin: auto;
}
/* === إصلاح قسم مواقع تهمك === */
.footer-section ul.useful-links {
    padding: 0;
    margin: 0;
}

.useful-links li {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.useful-links a {
    color: #fff;
    text-decoration: none;
}

.useful-links a:hover {
    color: #d4af37;
}

/* === إصلاح سطر © 2025 === */
.footer-bottom {
    text-align: center !important;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 20px;
    font-size: 14px;
    width: 100%;
}

header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 999;
}

/* ========== Buttons Fixed ========== */

.btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: .3s ease;
    border: 2px solid transparent;
}

/* زر تواصل معنا — أزرق → ذهبي */
.btn-blue {
    background: #1e2a45;
    color: #fff;
    border-color: #1e2a45;
}

.btn-blue:hover {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
}

/* زر إرسال — ذهبي → أزرق */
.btn-gold {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
}

.btn-gold:hover {
    background: #1e2a45;
    color: #fff;
    border-color: #1e2a45;
}

/* Header */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo {
    width: 50px;
}

.site-name {
    font-size: 17px;
    font-weight: 700;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #1e2a45;
    font-weight: bold;
}

nav a:hover {
    color: #d4af37;
}

.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Hero */
.hero {
    padding: 80px 0;
    background: #ffffff;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text h1 {
    color: #d4af37;
    font-size: 40px;
    margin-bottom: 15px;
}

.hero-text p {
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
}

.hero-img img {
    width: 260px;
}
/* === Dynamic Hero Background === */
.hero {
    position: relative;
    padding: 120px 0;
    background: url('https://images.unsplash.com/photo-1605902711622-cfb43c44367f?auto=format&fit=crop&w=1600&q=80')
        center/cover no-repeat;
    color: #fff;
}

/* تظليل فوق الخلفية لضمان وضوح النص */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.35)
    );
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
}

/* نص أبيض */
.hero-title-white {
    color: #ffffff;
    font-size: 40px;
    margin-bottom: 15px;
}

/* نص ذهبي */
.hero-text-gold {
    color: #d4af37;
    font-size: 20px;
    margin-bottom: 25px;
    line-height: 1.8;
}

/* الزر — مثل زر الإرسال تماماً */
.btn-gold {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
}

.btn-gold:hover {
    background: #1e2a45;
    color: #fff;
    border-color: #1e2a45;
}

/* About */
.about {
    text-align: center;
    padding: 50px 0;
}

.about p {
    width: 70%;
    margin: auto;
    font-size: 18px;
    line-height: 1.9;
}

/* Services */
.services {
    text-align: center;
    padding: 60px 0;
}

.service-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.service-box {
    background: #fff;
    width: 30%;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* Contact */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 70%;
    margin: auto;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

.contact-form textarea {
    min-height: 140px;
}

/* Footer */
.footer-section {
    width: 30%;
    min-width: 250px;
}

.footer-section ul.useful-links {
    padding-right: 0;
}

.useful-links li {
    display: flex;
    align-items: center;
    gap: 6px;
}

footer {
    background: #0f1a30;
    color: #fff;
    padding: 40px 0 10px;
    margin-top: 40px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-logo {
    width: 70px;
    margin-bottom: 6px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #d4af37;
    border-right: 3px solid #d4af37;
    padding-right: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .menu-icon {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        gap: 15px;
        background: #fff;
        padding: 20px;
        margin-top: 10px;
        border-radius: 10px;
    }

    nav.show {
        display: flex;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-img img {
        width: 200px;
        margin-top: 20px;
    }

    .about p {
        width: 95%;
    }

    .service-grid {
        flex-direction: column;
    }

    .service-box {
        width: 100%;
    }

    
}
/* === Dynamic Gradient Background === */
.dynamic-bg {
    background: linear-gradient(135deg, #1e2a45, #0f1a30, #1e2a45);
    background-size: 300% 300%;
    animation: gradientMove 12s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
/* ===== Features Section ===== */
.features {
    background: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.features-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e2a45;
    margin-bottom: 40px;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.feature-box {
    background: #fff;
    width: 30%;
    min-width: 250px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    transition: 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 45px;
    color: #d4af37;
    margin-bottom: 12px;
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1e2a45;
}

.feature-box p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-box {
        width: 100%;
    }
}

/* ===== Stats Section ===== */

.stats-section {
    background: #0f1a30;
    padding: 60px 0;
    text-align: center;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-box {
    min-width: 220px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.08);
}

.stat-icon {
    font-size: 40px;
    color: #d4af37;
    margin-bottom: 10px;
}

.stat-box h3 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 6px;
}

.stat-box p {
    color: #d4af37;
    font-size: 16px;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-grid {
        gap: 25px;
    }
    .stat-box {
        width: 100%;
    }
}
.language-switch {
    font-size: 15px;
    font-weight: 700;
    color: #1e2a45;
    display: flex;
    align-items: center;
    gap: 6px;
}

.language-switch a {
    color: #1e2a45;
    text-decoration: none;
    transition: 0.3s ease;
}

.language-switch a:hover {
    color: #d4af37;
}
