/* style.css */

/* تعريف الألوان الخاصة بالموقع */
:root {
    --primary-color: #004aad; /* أزرق داكن (للبحر والقوة) */
    --secondary-color: #0066cc; /* أزرق فاتح (للبحر) */
    --accent-color: #fca311; /* لون برتقالي/ذهبي للتمييز (الرمال/الفرص) */
    --text-color: #1a1a1a;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

/* تنسيقات عامة تعتمد على خط القاهرة */
body {
    font-family: 'Cairo', sans-serif;
    color: var(--text-color);
}

/* تخصيص شريط التنقل (Navbar) */
.navbar-custom {
    background-color: var(--primary-color) !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.navbar-brand {
    font-weight: 900;
    font-size: 1.8rem;
}
.nav-link {
    font-weight: 600;
    margin-inline-start: 10px;
}
.nav-link:hover, .nav-link.active {
    color: var(--accent-color) !important;
}
.navbar-dark .navbar-nav .nav-link.active {
    border-bottom: 2px solid var(--accent-color);
}

/* تنسيق البانر العلوي (لشراء الدومين) */
.buy-banner-strip {
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 10px 0;
    font-weight: 700;
}
.buy-banner-strip a.btn {
    background-color: var(--primary-color);
    border: none;
    font-weight: 700;
    transition: background-color 0.3s;
}
.buy-banner-strip a.btn:hover {
    background-color: var(--secondary-color);
}

/* تنسيق العناوين داخل الأقسام */
.section-title {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 10px;
}
.section-title::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 5px;
}

/* تنسيقات كروت الأقسام (المحتوى) */
.info-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 12px;
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.info-card i {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-left: 10px;
}
.card-body h4 {
    color: var(--primary-color);
    font-weight: 700;
}

/* تنسيق قسم الـ Hero (للرئيسية) */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}
.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 900;
    text-shadow: 0 3px 6px rgba(0,0,0,0.2);
}
.hero-section p {
    font-size: 1.3rem;
    margin-top: 20px;
}

/* تنسيق الـ Footer */
.footer-custom {
    background-color: #1f2937;
    color: #e5e7eb;
    padding-top: 40px;
    font-size: 0.9rem;
}
.footer-custom h5 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 15px;
}
.footer-custom a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-custom a:hover {
    color: var(--white);
}
.footer-custom ul {
    list-style: none;
    padding: 0;
}
.footer-custom ul li {
    margin-bottom: 8px;
}
/* ... [تنسيقات سابقة من الخطوة السابقة] ... */

/* تنسيقات خاصة بنموذج الاتصال (مُستخلصة ومُعدّلة لتناسب Bootstrap) */
.contact-form-section {
    padding: 40px 0;
}
.contact-form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: right;
    margin: auto;
}
.contact-form-card label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--text-color);
}
.contact-form-card input, 
.contact-form-card textarea { 
    width: 100%; 
    padding: 12px; 
    margin-bottom: 15px; 
    border: 1px solid #ccc; 
    border-radius: 8px; 
    font-family: 'Cairo', sans-serif;
    background-color: #f9f9f9;
}
.contact-form-card button[type="submit"] { 
    background-color: #e63946; /* لون حماسي لزر الإرسال */
    color: var(--white); 
    border: none; 
    padding: 14px 40px; 
    border-radius: 10px; 
    font-size: 1.1rem; 
    cursor: pointer; 
    transition: 0.3s; 
    width: 100%;
    font-weight: 700;
}
.contact-form-card button[type="submit"]:hover { 
    background-color: #d00000; 
    transform: translateY(-2px);
}
.success-message { 
    background-color: #d4f8e8; 
    color: #007a46; 
    padding: 15px; 
    border-radius: 8px; 
    margin-top: 15px; 
    display: none; 
    text-align: center;
    font-weight: 700;
}