/* صفحة واحدة - موقع الشركة */

:root {
    --primary: #0a4d68;
    --primary-dark: #062c3e;
    --accent: #e8b923;
    --text: #1e293b;
    --text-muted: #64748b;
    --bg: #f8fafc;
    --white: #fff;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(10, 77, 104, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
}

.wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* الهيدر */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 1.3rem;
}

.logo-icon {
    font-size: 1.6rem;
}

/* زر اللغة */
.btn-lang {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    min-width: 44px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.2s;
}

.btn-lang:hover {
    background: var(--primary-dark);
}

/* الترويسة */
.hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.hero-sub {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* الأقسام */
.section {
    padding: 48px 0;
}

.section-alt {
    background: var(--white);
}

.section-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 24px;
    padding-bottom: 8px;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
}

.content-box {
    background: var(--white);
    padding: 28px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.section-alt .content-box {
    background: var(--bg);
}

.content-box p {
    margin-bottom: 16px;
    color: var(--text);
}

.content-box p:last-child {
    margin-bottom: 0;
}

.content-box ul {
    margin: 16px 0 0 24px;
}

.content-box li {
    margin-bottom: 8px;
}

/* بطاقات العناوين */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.card h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.card p {
    color: var(--text);
    font-size: 0.95rem;
}

.card .example {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* التواصل */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.contact-item {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.contact-item a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* الفوتر */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 24px 0;
    text-align: center;
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* الموبايل */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .section {
        padding: 36px 0;
    }
}
