<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>تواصل معنا — عُمق</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--brand: #6a2d44;
--brand-dark: #4e1f31;
--brand-light: #f5eef0;
--brand-mid: #c97a93;
--ink: #1a1a18;
--muted: #6b6b68;
--border: rgba(106,45,68,0.12);
--bg: #faf9f7;
--white: #ffffff;
--card-shadow: 0 1px 3px rgba(106,45,68,0.08), 0 4px 16px rgba(106,45,68,0.06);
}
html { scroll-; }
body {
font-family: 'IBM Plex Sans Arabic', 'Segoe UI', Arial, sans-serif;
background: var(--bg);
color: var(--ink);
min-height: 100vh;
direction: rtl;
}
/* ── HERO ── */
.hero {
background: var(--brand);
padding: 56px 24px 48px;
text-align: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(255,255,255,0.07) 0%, transparent 70%);
pointer-events: none;
}
.hero-eyebrow {
display: inline-block;
font-size: 11px;
font-weight: 500;
letter-spacing: 0.12em;
color: var(--brand-mid);
text-transform: uppercase;
margin-bottom: 14px;
}
.hero h1 {
font-size: clamp(28px, 5vw, 40px);
font-weight: 600;
color: #fff;
line-height: 1.25;
margin-bottom: 12px;
}
.hero p {
font-size: 15px;
color: rgba(255,255,255,0.65);
font-weight: 300;
max-width: 400px;
margin: 0 auto;
line-height: 1.6;
}
/* ── GRID ── */
.container {
max-width: 680px;
margin: 0 auto;
padding: 40px 20px 60px;
}
.cards {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
margin-bottom: 12px;
}
.cards-single {
display: grid;
grid-template-columns: 1fr;
gap: 12px;
}
/* ── CARD ── */
.card {
background: var(--white);
border-radius: 16px;
border: 1px solid var(--border);
padding: 20px;
display: flex;
align-items: center;
gap: 16px;
text-decoration: none;
color: inherit;
transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
box-shadow: var(--card-shadow);
}
.card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 20px rgba(106,45,68,0.13);
border-color: rgba(106,45,68,0.25);
}
.card:active { transform: translateY(0); }
.card-icon {
width: 48px;
height: 48px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.card-icon svg {
width: 24px;
height: 24px;
}
.icon-ig { background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7); }
.icon-x { background: #000; }
.icon-wa { background: #25D366; }
.icon-mail { background: var(--brand-light); }
.card-text { flex: 1; min-width: 0; }
.card-label {
font-size: 11px;
font-weight: 500;
color: var(--muted);
letter-spacing: 0.06em;
margin-bottom: 3px;
}
.card-value {
font-size: 15px;
font-weight: 500;
color: var(--ink);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.card-arrow {
color: var(--brand-mid);
opacity: 0.6;
flex-shrink: 0;
}
/* ── DIVIDER ── */
.divider {
text-align: center;
margin: 32px 0 28px;
position: relative;
}
.divider::before {
content: '';
position: absolute;
top: 50%;
right: 0;
left: 0;
height: 1px;
background: var(--border);
}
.divider span {
position: relative;
background: var(--bg);
padding: 0 14px;
font-size: 12px;
color: var(--muted);
font-weight: 500;
letter-spacing: 0.06em;
}
/* ── FOOTER NOTE ── */
.footer-note {
text-align: center;
margin-top: 40px;
padding-top: 24px;
border-top: 1px solid var(--border);
}
.footer-note p {
font-size: 13px;
color: var(--muted);
line-height: 1.7;
}
.footer-note strong {
color: var(--brand);
font-weight: 500;
}
/* ── MOBILE ── */
@media (max-width: 440px) {
.hero { padding: 44px 20px 36px; }
.cards { grid-template-columns: 1fr; }
.card { padding: 16px; }
.card-icon { width: 42px; height: 42px; border-radius: 10px; }
.card-icon svg { width: 20px; height: 20px; }
}
@media (prefers-reduced-motion: reduce) {
.card { transition: none; }
}
</style>
</head>
<body>
<!-- HERO -->
تواصل معنا
موجودين بخدمتك
أي استفسار أو طلب، تواصل معنا عبر القنوات التالية وسيتم الرد في أقرب وقت
<!-- CARDS -->
<!-- Instagram + X -->
<!-- WhatsApp -->
</body>
</html>