/* ── Shared animations ── */
@keyframes float {
    0%, 100% { transform: translateY(0) }
    50%       { transform: translateY(-20px) }
}

@keyframes floatLetter {
    0%, 100% { transform: translateY(0) rotate(0deg) }
    33%       { transform: translateY(-15px) rotate(5deg) }
    66%       { transform: translateY(10px) rotate(-3deg) }
}

/* ── Hero shared components ── */
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image:
        repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%),
        repeating-linear-gradient(-45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
    background-size: 40px 40px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.hero-breadcrumb a { color: rgba(255, 255, 255, 0.6); text-decoration: none; }
.hero-breadcrumb a:hover { color: #7dd3c9; }

.hero-orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    animation: float 8s ease-in-out infinite;
}

.arabic-letter {
    position: absolute;
    font-family: 'Amiri', serif;
    color: rgba(255, 255, 255, 0.12);
    font-weight: 700;
    animation: floatLetter 10s ease-in-out infinite;
    user-select: none;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.2);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: #f0d080;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .accent { color: #7dd3c9; }
.hero-title .gold   { color: #f0d080; }

.hero-desc {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
}

/* ── Section base ── */
.section { padding: 90px 24px; }

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-light);
    color: var(--brand);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag.gold-tag {
    background: var(--gold-light);
    color: var(--gold);
}

.section-title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: #1a2e2c;
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-title .accent { color: var(--brand); }
.section-title .gold   { color: var(--gold); }

.section-sub {
    font-size: 16px;
    line-height: 1.75;
    color: #5a7270;
    max-width: 600px;
}

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── Buttons ── */
.btn-primary {
    background: #fff;
    color: var(--brand-dark);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* ── CTA section ── */
.cta-section {
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: 'نباط';
    font-family: 'Amiri', serif;
    font-size: 200px;
    color: rgba(255, 255, 255, 0.04);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ── Footer ── */
.footer {
    background: #0d3532;
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 24px 32px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand strong {
    display: block;
    color: #fff;
    font-size: 18px;
    margin-bottom: 4px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    margin-top: 12px;
}

.footer-col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 10px;
    transition: color .2s;
}

.footer-col a:hover { color: var(--brand-mid); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

/* ── Founders ── */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.founder-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 4px 24px rgba(63, 144, 135, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all .3s;
    border: 1px solid rgba(63, 144, 135, 0.1);
}

.founder-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(63, 144, 135, 0.18);
}

.founder-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Amiri', serif;
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    border: 3px solid var(--brand-light);
    box-shadow: 0 4px 16px rgba(63, 144, 135, 0.3);
}

.founder-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a2e2c;
    margin-bottom: 4px;
}

.founder-info span {
    font-size: 13px;
    color: var(--brand);
    font-weight: 600;
}

.founder-quote {
    font-size: 14px;
    color: #5a7270;
    line-height: 1.75;
    padding: 16px 18px;
    background: var(--brand-light);
    border-radius: 12px;
    border-left: 3px solid var(--brand);
    font-style: italic;
    position: relative;
}

.founder-quote::before {
    content: '\201C';
    font-size: 40px;
    color: var(--brand);
    opacity: .4;
    position: absolute;
    top: -5px;
    left: 12px;
    font-family: Georgia, serif;
    line-height: 1;
}

.founder-quote p { padding-left: 20px; }

.founder-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.founder-tag {
    background: var(--brand-light);
    color: var(--brand);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
}

/* ── Responsive (shared) ── */
@media (max-width: 768px) {
    .founders-grid { grid-template-columns: 1fr; }
    .footer-top   { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
}
