
:root {
    --bg: #1e0903;
    --bg-soft: #2c0f05;
    --panel: rgba(58, 20, 6, 0.78);
    --panel-2: rgba(91, 39, 13, 0.62);
    --line: rgba(227, 186, 88, 0.18);
    --text: #f7efe6;
    --muted: #d9c3b2;
    --gold: #d6a748;
    --gold-2: #f1d37c;
    --shadow: 0 25px 60px rgba(0, 0, 0, 0.38);
    --radius: 24px;
    --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Noto Naskh Arabic", "Amiri", "Segoe UI", Tahoma, Arial, sans-serif;
    color: var(--text);
    background:
            radial-gradient(circle at 15% 10%, rgba(222, 184, 80, 0.10), transparent 20%),
            radial-gradient(circle at 80% 15%, rgba(222, 184, 80, 0.08), transparent 18%),
            radial-gradient(circle at 50% 55%, rgba(114, 42, 10, 0.38), transparent 38%),
            linear-gradient(180deg, #190702 0%, #2b0e05 38%, #180602 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
}

body::before {
    background-image:
            linear-gradient(120deg, transparent 0 49%, rgba(226, 175, 84, 0.045) 50%, transparent 51%),
            linear-gradient(60deg, transparent 0 49%, rgba(226, 175, 84, 0.03) 50%, transparent 51%);
    background-size: 140px 140px, 120px 120px;
    opacity: 0.45;
}

body::after {
    background:
            radial-gradient(circle at 50% 0%, rgba(241, 211, 124, 0.10), transparent 24%),
            radial-gradient(circle at 50% 100%, rgba(214, 167, 72, 0.05), transparent 24%);
    z-index: -3;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: rgba(26, 8, 2, 0.62);
    border-bottom: 1px solid rgba(223, 182, 92, 0.12);
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 78px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.brand-mark {
    position: relative;
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
}

.brand-mark span {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 32px;
    height: 32px;
    border: 2px solid rgba(241, 211, 124, 0.85);
    border-radius: 50%;
    transform-origin: center center;
    margin: -16px;
    box-shadow: 0 0 16px rgba(241, 211, 124, 0.18);
}

.brand-mark span:nth-child(1) { transform: translate(-50%, -50%) translateY(-14px); }
.brand-mark span:nth-child(2) { transform: translate(-50%, -50%) rotate(60deg) translateY(-14px); }
.brand-mark span:nth-child(3) { transform: translate(-50%, -50%) rotate(120deg) translateY(-14px); }
.brand-mark::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, #fff9d2 0%, var(--gold-2) 45%, rgba(214, 167, 72, 0.18) 100%);
    box-shadow: 0 0 18px rgba(241, 211, 124, 0.8), 0 0 40px rgba(214, 167, 72, 0.24);
}

.brand-text {
    line-height: 1.15;
}

.brand-text strong {
    display: block;
    font-size: 1.12rem;
    color: #f8ead1;
}

.brand-text small {
    color: rgba(233, 213, 194, 0.78);
    font-size: 0.83rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-link {
    color: var(--muted);
    font-size: 0.97rem;
    padding: 0.45rem 0.2rem;
    transition: color 0.2s ease;
}

.nav-link:hover { color: var(--gold-2); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 50px;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

.btn-primary {
    color: #2d1106;
    background: linear-gradient(135deg, #f1d37c, #d5a03d 75%);
    box-shadow: 0 18px 34px rgba(213, 160, 61, 0.24);
}

.btn-secondary {
    color: var(--gold-2);
    border-color: rgba(241, 211, 124, 0.24);
    background: rgba(255, 255, 255, 0.03);
}

.hero {
    position: relative;
    padding: 5rem 0 3rem;
    isolation: isolate;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    color: #f8e9cb;
    background: rgba(241, 211, 124, 0.08);
    border: 1px solid rgba(241, 211, 124, 0.12);
    margin-bottom: 1.1rem;
    font-size: 0.92rem;
}

.hero h1 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 4.45rem);
    line-height: 1.06;
    color: #fdf5e8;
    text-wrap: balance;
}

.hero h1 .accent {
    color: var(--gold-2);
    text-shadow: 0 0 22px rgba(241, 211, 124, 0.12);
}

.subtitle {
    margin: 1rem 0 1.35rem;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    color: #f3dfc9;
    max-width: 42rem;
    line-height: 1.9;
}

.lead {
    margin: 0;
    max-width: 44rem;
    color: rgba(241, 231, 221, 0.82);
    line-height: 2;
    font-size: 1.06rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.55rem;
}

.meta-chip {
    padding: 0.72rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(241, 211, 124, 0.10);
    color: #edd9c9;
    font-size: 0.98rem;
}

.meta-chip strong {
    color: #fff3da;
}

.hero-visual {
    position: relative;
    min-height: 620px;
    display: grid;
    place-items: center;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(6px);
    opacity: 0.9;
    animation: float 8s ease-in-out infinite;
}

.orb.one {
    width: 220px;
    height: 220px;
    right: 0;
    top: 40px;
    background: radial-gradient(circle, rgba(241, 211, 124, 0.17), rgba(214, 167, 72, 0.05) 55%, transparent 70%);
}

.orb.two {
    width: 280px;
    height: 280px;
    left: 18px;
    bottom: 24px;
    background: radial-gradient(circle, rgba(109, 39, 10, 0.38), rgba(109, 39, 10, 0.02) 58%, transparent 72%);
    animation-delay: -2s;
}

.cover-wrap {
    position: relative;
    width: min(100%, 420px);
    border-radius: 30px;
    padding: 16px;
    background: linear-gradient(180deg, rgba(247, 230, 195, 0.08), rgba(164, 101, 27, 0.04));
    border: 1px solid rgba(241, 211, 124, 0.16);
    box-shadow: var(--shadow);
}

.cover-wrap::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 38px;
    border: 1px solid rgba(241, 211, 124, 0.10);
    pointer-events: none;
}

.cover-wrap::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 10px;
    width: 52%;
    height: 26px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: radial-gradient(circle, rgba(241, 211, 124, 0.26), transparent 70%);
    filter: blur(12px);
    pointer-events: none;
}

.cover {
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.42);
    /*transform: rotate(-2deg);*/
    transform-origin: center center;
}

.section {
    padding: 1.2rem 0 4.2rem;
}

.section-head {
    max-width: 720px;
    margin-bottom: 1.7rem;
}

.section-kicker {
    color: var(--gold-2);
    font-size: 0.92rem;
    letter-spacing: 0.6px;
    margin-bottom: 0.6rem;
    display: block;
}

.section h2 {
    margin: 0 0 0.8rem;
    font-size: clamp(1.65rem, 2.2vw, 2.5rem);
    color: #fff6e8;
}

.section p.section-desc {
    margin: 0;
    color: rgba(241, 231, 221, 0.78);
    line-height: 1.95;
    font-size: 1.02rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
}

.card {
    background: linear-gradient(180deg, rgba(72, 26, 8, 0.86), rgba(34, 11, 4, 0.82));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.4rem;
}

.card h3 {
    margin: 0 0 0.65rem;
    color: #fbe7c3;
    font-size: 1.25rem;
}

.card p,
.card li {
    color: rgba(244, 235, 227, 0.82);
    line-height: 1.95;
    margin: 0;
    font-size: 1rem;
}

.card + .card { margin-top: 0; }

.quote-card {
    position: relative;
    overflow: hidden;
}

.quote-card::before {
    content: "";
    position: absolute;
    inset-inline-start: -70px;
    top: -80px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid rgba(241, 211, 124, 0.13);
    opacity: 0.75;
}

.quote-card::after {
    content: "";
    position: absolute;
    inset-inline-end: -60px;
    bottom: -70px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 1px solid rgba(241, 211, 124, 0.10);
    opacity: 0.45;
}

.quote {
    font-size: 1.15rem;
    line-height: 2.1;
    color: #fff4de;
    margin: 0 0 0.85rem;
    position: relative;
    z-index: 1;
}

.quote-note {
    color: rgba(241, 231, 221, 0.72);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.feature {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(241, 211, 124, 0.10);
    border-radius: 22px;
    padding: 1.25rem;
    min-height: 180px;
}

.feature strong {
    display: block;
    margin-bottom: 0.45rem;
    color: #fbe5c1;
    font-size: 1.05rem;
}

.feature p {
    margin: 0;
    color: rgba(241, 231, 221, 0.78);
    line-height: 1.9;
    font-size: 0.98rem;
}

.book-map {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.map-card {
    padding: 1.2rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(56, 19, 6, 0.92), rgba(25, 8, 2, 0.88));
    border: 1px solid rgba(241, 211, 124, 0.12);
    min-height: 195px;
}

.map-card span {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: var(--gold-2);
    font-size: 0.9rem;
    letter-spacing: 0.4px;
}

.map-card h3 {
    margin: 0 0 0.6rem;
    color: #fff3db;
    font-size: 1.12rem;
}

.map-card p {
    margin: 0;
    color: rgba(241, 231, 221, 0.78);
    line-height: 1.9;
    font-size: 0.97rem;
}

.rights-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.85rem;
}

.rights-list li {
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(241, 211, 124, 0.10);
    color: rgba(241, 231, 221, 0.82);
}

.cta-panel {
    padding: 1.8rem;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(72, 26, 8, 0.96), rgba(26, 8, 2, 0.94));
    border: 1px solid rgba(241, 211, 124, 0.14);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.2rem;
    align-items: center;
}

.cta-panel h2 {
    margin: 0 0 0.7rem;
    font-size: clamp(1.7rem, 2vw, 2.4rem);
    color: #fff3dd;
}

.cta-panel p {
    margin: 0;
    color: rgba(241, 231, 221, 0.78);
    line-height: 1.95;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: flex-start;
}

.site-footer {
    padding: 1.1rem 0 2.5rem;
}

.footer-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    color: rgba(241, 231, 221, 0.62);
    border-top: 1px solid rgba(241, 211, 124, 0.10);
    padding-top: 1.25rem;
}

.footer-wrap small {
    font-size: 0.92rem;
}

.inline-link {
    color: var(--gold-2);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 1024px) {
    .hero-grid,
    .cta-panel,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .features,
    .book-map {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-visual { min-height: unset; }
}

@media (max-width: 720px) {
    .header-wrap {
        min-height: 72px;
        gap: 0.8rem;
    }

    .header-actions {
        display: none;
    }

    .hero {
        padding-top: 3.2rem;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn { width: 100%; }

    .features,
    .book-map {
        grid-template-columns: 1fr;
    }

    .cover {
        transform: none;
    }

    .meta-chip {
        width: 100%;
    }

    .section {
        padding-bottom: 3rem;
    }
}



 .contact-box {
     background: rgba(255, 255, 255, 0.03);
     border: 1px solid rgba(255, 200, 120, 0.18);
     border-radius: 24px;
     padding: 28px 24px;
     backdrop-filter: blur(6px);
 }

.contact-box h3 {
    margin: 0 0 18px;
    font-size: 1.5rem;
    color: #f7e7cf;
}

.contact-box p {
    margin: 0 0 18px;
    line-height: 1.9;
    color: #ead8c0;
    font-size: 1rem;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #fff5e8;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 200, 120, 0.14);
    border-radius: 18px;
    padding: 14px 16px;
    transition: 0.25s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 200, 120, 0.28);
}

.contact-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 214, 153, 0.08);
    border: 1px solid rgba(255, 214, 153, 0.18);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: #f7d29a;
}

.contact-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-text strong {
    font-size: 1rem;
    color: #fff5e8;
    margin-bottom: 2px;
}

.contact-text span {
    font-size: 0.92rem;
    color: #d9c2a4;
    line-height: 1.7;
}

html[dir="rtl"] .contact-item,
body[dir="rtl"] .contact-item {
    /*flex-direction: row-reverse;*/
}

html[dir="rtl"] .contact-text,
body[dir="rtl"] .contact-text {
    align-items: flex-start;
    text-align: right;
}
.email-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.email-text {
    user-select: text;
    -webkit-user-select: text;
    cursor: text;
    direction: ltr;
}

.copy-email-btn {
    margin-inline-start: auto;
    min-height: 38px;
    padding: 0.55rem 0.9rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 200, 120, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: #fff5e8;
    cursor: pointer;
    font-family: inherit;
}

.copy-email-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}