/* ═══════════════════════════════════════════════
   about.css — متجر الرياض | من نحن
   ═══════════════════════════════════════════════ */

/* ── Hero ── */
.about-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(15,23,42,.55), rgba(30,58,95,.45)), url('../imgs/bg.webp') center/cover no-repeat;
    overflow: hidden;
    isolation: isolate;
}
.about-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 60px 24px;
}
.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50px;
    padding: 8px 22px;
    font-size: 13px;
    color: #93c5fd;
    margin-bottom: 28px;
}
.about-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 16px;
}
.about-hero h1 span {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-hero p {
    font-size: 17px;
    color: #fff;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ── Split: Content + Image ── */
.ab-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    position: relative;
}

/* ── Section dots ── */
.ab-dots {
    position: absolute;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, #2563eb 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: .4;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.ab-dots::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.5) 50%, transparent 70%);
    animation: abShimmer 3s ease-in-out infinite;
    pointer-events: none;
}
.ab-dots-tr { top: 28px; right: 28px; }
.ab-dots-bl { bottom: 28px; left: 28px; }
@keyframes abShimmer {
    0% { transform: translateX(-100%) skewX(-15deg); }
    60% { transform: translateX(100%) skewX(-15deg); }
    100% { transform: translateX(100%) skewX(-15deg); }
}
.ab-split-content {
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ── Image side — decorative design ── */
.ab-split-image {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.ab-split-image-img {
    width: 100%;
    max-width: 460px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
}
.ab-split-image-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
}

/* ── Section base ── */
.about-section {
    padding: 60px 24px;
    background: #fff;
}
.about-section-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* ── Content Blocks ── */
.ab-block {
    display: flex;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid #f1f5f9;
}
.ab-split-content .ab-block:first-of-type { padding-top: 0; }
.ab-split-content .ab-block:last-of-type { border-bottom: none; padding-bottom: 0; }
.about-blocks .ab-block:first-of-type { padding-top: 0; }
.about-blocks .ab-block:last-of-type { border-bottom: none; }
.ab-block-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}
.ab-block-content { flex: 1; min-width: 0; }
.ab-block-content h2 {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px;
}
.ab-block-content > p {
    font-size: 15px;
    line-height: 2;
    color: #475569;
    margin: 0;
}

/* ── Contact channels ── */
.ab-contact-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}
.ab-channel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 13px;
    color: #1e293b;
    font-weight: 500;
    transition: .25s;
}
.ab-channel i {
    width: 30px;
    height: 30px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}
.ab-channel:hover { border-color: #bfdbfe; background: #fafbff; }

/* ── Closing ── */
.ab-closing {
    text-align: center;
    padding: 56px 24px 64px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}
.ab-closing p {
    font-size: 15px;
    line-height: 2;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .ab-split { grid-template-columns: 1fr; }
    .ab-split-image { min-height: 300px; }
    .ab-split-image::after { background: linear-gradient(to top, transparent 30%, rgba(255,255,255,.06) 100%); }
    .ab-split-content { padding: 40px 24px; }
}
@media (max-width: 768px) {
    .about-section { padding: 44px 20px; }
    .ab-block { gap: 16px; }
    .ab-block-icon { width: 48px; height: 48px; font-size: 17px; }
    .ab-contact-channels { flex-direction: column; }
    .ab-channel { width: 100%; }
}
@media (max-width: 640px) {
    .about-hero { min-height: 320px; }
    .about-hero-inner { padding: 40px 20px; }
    .ab-split-content { padding: 32px 20px; }
    .ab-block { padding: 24px 0; flex-direction: column; gap: 12px; }
    .ab-closing { padding: 40px 20px 48px; }
}
