/* =========================== */
/* إعدادات عامة */
/* =========================== */
body {
    margin: 0;
    font-family: 'Cairo', sans-serif;
    background: #f7f7f7;
    direction: rtl;
}

a {
    text-decoration: none;
}

/* =========================== */
/* الهيدر */
/* =========================== */
header {
    background: #0e1a2b;
    padding: 15px 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    height: 80px;
    width: auto;
}

nav {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

nav a {
    color: #fff;
    font-size: 15px;
    transition: 0.3s;
}

nav a:hover {
    text-decoration: underline;
}

/* =========================== */
/* الهيرو / الصفحة الرئيسية */
/* =========================== */
.hero {
    background: linear-gradient(rgba(14,26,43,0.7), rgba(14,26,43,0.7)), url('img/hero.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 20px;
    color: white;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #00aaff;
    color: white;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #0093cc;
}

/* =========================== */
/* بانر الصفحات الداخلية */
/* =========================== */
.sub-banner {
    background: #0e1a2b;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.sub-banner h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.sub-banner p {
    font-size: 18px;
}

/* =========================== */
/* قسم من نحن */
/* =========================== */
.about, .detailed-services, .packages-list, .contact-form-section {
    max-width: 1000px;
    margin: auto;
    padding: 50px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px #00000015;
    margin-bottom: 30px;
}

.about h2, .packages-list h2, .detailed-services h2 {
    font-size: 28px;
    color: #0e1a2b;
    margin-bottom: 20px;
}

.about h3, .service-item h3, .package-box h3 {
    font-size: 22px;
    color: #0e1a2b;
    margin-bottom: 10px;
}

.about p, .service-item p, .package-box ul li, .contact-form-container p {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.about ul, .package-box ul {
    padding: 0;
    list-style: none;
}

.about ul li, .package-box ul li {
    background: #f1f1f1;
    padding: 10px;
    margin: 6px 0;
    border-radius: 8px;
}

/* =========================== */
/* الخدمات التفصيلية */
/* =========================== */
.service-item {
    background: #f9f9f9;
    margin: 15px 0;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.service-item:hover {
    background: #e6e6e6;
}

/* =========================== */
/* الباقات */
/* =========================== */
.package-box {
    background: #ffffff;
    padding: 20px;
    margin: 15px 0;
    border-radius: 12px;
    box-shadow: 0 4px 10px #00000015;
}

.package-box ul li {
    background: #f1f1f1;
}

/* =========================== */
/* نموذج التواصل */
/* =========================== */
.contact-form-container {
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.contact-form-container h2 {
    text-align: center;
    margin-bottom: 25px;
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
}

.contact-form-container label {
    margin: 10px 0 5px;
    font-weight: bold;
}

.contact-form-container input,
.contact-form-container textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    text-align: right;
}

.contact-form-container textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form-container button {
    padding: 12px;
    background: #0e1a2b;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form-container button:hover {
    background: #1a2a45;
}

/* زر واتساب */
.whatsapp-contact {
    text-align: center;
    margin-top: 20px;
}

.whatsapp-contact a {
    display: inline-block;
    padding: 10px 20px;
    background: #25D366;
    color: white;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.whatsapp-contact a:hover {
    background: #1ebe57;
}

/* =========================== */
/* الفوتر */
/* =========================== */
.footer {
    background: #0a1a2a;
    color: white;
    padding: 45px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.footer-logo, .footer-links, .footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    height: 100px;
    width: auto;
    margin-bottom: 15px;
}

.footer-links a, .footer-social a {
    color: #d0d0d0;
    margin-bottom: 8px;
    display: block;
    transition: 0.3s;
}

.footer-links a:hover, .footer-social a:hover {
    color: #00bcd4;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    color: #999;
    font-size: 14px;
}

/* =========================== */
/* Responsive لكل الشاشات */
/* =========================== */
@media (max-width: 1024px) {
    .hero h2 { font-size: 32px; }
    .hero p { font-size: 16px; }
}

@media (max-width: 768px) {
    header { flex-direction: column; align-items: center; }
    nav { justify-content: center; gap: 10px; margin-top: 10px; }
    .hero { padding: 80px 15px; }
    .hero h2 { font-size: 28px; }
    .hero p { font-size: 15px; }
    .about, .detailed-services, .packages-list, .contact-form-section {
        padding: 30px 15px;
    }
    .footer-container { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
    .hero h2 { font-size: 24px; }
    .hero p { font-size: 14px; }
    .btn { font-size: 14px; padding: 10px 20px; }
    .contact-form-container input, .contact-form-container textarea { font-size: 14px; }
    .package-box ul li, .about ul li { font-size: 15px; padding: 8px; }
}