:root {
    --dt-ink: #132033;
    --dt-ink-soft: #334155;
    --dt-muted: #64748b;
    --dt-line: #d9e2ec;
    --dt-paper: #f7f3ec;
    --dt-panel: #ffffff;
    --dt-navy: #10233f;
    --dt-gold: #b48745;
    --dt-gold-soft: #ead7b4;
    --dt-green: #1f6f5b;
    --dt-shadow: 0 18px 45px rgba(16, 35, 63, 0.11);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.design-two-body {
    margin: 0;
    direction: rtl;
    background: var(--dt-paper);
    color: var(--dt-ink);
    font-family: "Tajawal", Arial, sans-serif;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

.dt-model-switch {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.82rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--dt-navy);
    border: 1px solid rgba(16, 35, 63, 0.1);
    box-shadow: 0 20px 42px rgba(16, 35, 63, 0.16);
    text-decoration: none;
    font-weight: 800;
    backdrop-filter: blur(14px);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.dt-model-switch:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 24px 52px rgba(16, 35, 63, 0.22);
}

.dt-model-switch__icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(180, 135, 69, 0.14);
    color: var(--dt-gold);
    flex-shrink: 0;
}

.dt-model-switch__label {
    line-height: 1;
}

a {
    color: inherit;
}

.dt-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.dt-topbar {
    background: var(--dt-navy);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.86rem;
}

.dt-topbar-inner,
.dt-nav-inner,
.dt-footer-grid,
.dt-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.dt-topbar-inner {
    min-height: 42px;
}

.dt-topbar a {
    text-decoration: none;
    color: white;
}

.dt-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 243, 236, 0.92);
    border-bottom: 1px solid rgba(16, 35, 63, 0.1);
    backdrop-filter: blur(18px);
}

.dt-nav-inner {
    min-height: 78px;
}

.dt-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.dt-brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dt-navy);
    color: var(--dt-gold-soft);
    box-shadow: var(--dt-shadow);
}

.dt-brand-text strong,
.dt-footer-brand strong {
    display: block;
    font-size: 1.12rem;
    line-height: 1.2;
}

.dt-brand-text span,
.dt-footer-brand span {
    color: var(--dt-muted);
    font-size: 0.76rem;
    font-weight: 700;
}

.dt-nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dt-nav-link {
    position: relative;
    padding: 0.65rem 0.9rem;
    color: var(--dt-ink-soft);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
}

.dt-nav-link:hover,
.dt-nav-link.is-active {
    color: var(--dt-navy);
    background: rgba(180, 135, 69, 0.1);
}

.dt-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dt-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--dt-line);
    border-radius: 8px;
    background: var(--dt-panel);
    color: var(--dt-navy);
    cursor: pointer;
}

.dt-mobile-menu {
    display: none;
    padding: 0 16px 18px;
}

.dt-mobile-menu.is-open {
    display: block;
}

.dt-mobile-menu a {
    display: block;
    padding: 0.85rem 1rem;
    margin-top: 0.35rem;
    border-radius: 8px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.76);
    color: var(--dt-ink);
    font-weight: 700;
}

.dt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 44px;
    padding: 0.72rem 1.15rem;
    border-radius: 8px;
    border: 1px solid transparent;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

.dt-btn:hover {
    transform: translateY(-2px);
}

.dt-btn-primary {
    background: var(--dt-navy);
    color: white;
    box-shadow: 0 14px 28px rgba(16, 35, 63, 0.18);
}

.dt-btn-primary:hover {
    background: #18345a;
}

.dt-btn-gold {
    background: var(--dt-gold);
    color: white;
    box-shadow: 0 14px 28px rgba(180, 135, 69, 0.22);
}

.dt-btn-outline {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(16, 35, 63, 0.18);
    color: var(--dt-navy);
}

.dt-section {
    padding: 88px 0;
}

.dt-section-alt {
    background: #fffaf2;
}

.dt-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(247, 243, 236, 0.96) 0%, rgba(247, 243, 236, 0.86) 46%, rgba(247, 243, 236, 0.36) 100%),
        var(--dt-hero-image, none) center/cover no-repeat;
}

.dt-hero::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    bottom: 0;
    width: 100%;
    height: 96px;
    background: linear-gradient(180deg, transparent, var(--dt-paper));
    pointer-events: none;
}

.dt-hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    padding: 110px 0 120px;
}

.dt-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--dt-gold);
    font-weight: 900;
    margin-bottom: 1rem;
}

.dt-kicker::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--dt-gold);
}

.dt-title {
    margin: 0;
    color: var(--dt-navy);
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
}

.dt-title span {
    color: var(--dt-gold);
}

.dt-lead {
    color: var(--dt-ink-soft);
    font-size: clamp(1rem, 2vw, 1.22rem);
    line-height: 2;
    margin: 1.35rem 0 0;
}

.dt-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.dt-hero-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 2.2rem;
    border: 1px solid rgba(16, 35, 63, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(16, 35, 63, 0.1);
    box-shadow: var(--dt-shadow);
}

.dt-hero-stat {
    background: rgba(255, 255, 255, 0.82);
    padding: 1.1rem;
}

.dt-hero-stat strong {
    display: block;
    color: var(--dt-navy);
    font-size: 1.45rem;
    line-height: 1.1;
}

.dt-hero-stat span {
    color: var(--dt-muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.dt-section-head {
    max-width: 760px;
    margin-bottom: 2.5rem;
}

.dt-section-head.center {
    margin-inline: auto;
    text-align: center;
}

.dt-section-head.center .dt-kicker {
    justify-content: center;
}

.dt-section-head.center .dt-kicker::before {
    display: none;
}

.dt-section-title {
    margin: 0;
    color: var(--dt-navy);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.18;
    font-weight: 900;
}

.dt-section-text {
    margin: 1rem 0 0;
    color: var(--dt-muted);
    font-size: 1.05rem;
    line-height: 2;
}

.dt-grid-2,
.dt-grid-3,
.dt-grid-4 {
    display: grid;
    gap: 1.25rem;
}

.dt-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dt-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dt-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dt-card {
    background: var(--dt-panel);
    border: 1px solid rgba(16, 35, 63, 0.1);
    border-radius: 8px;
    padding: 1.35rem;
    box-shadow: 0 14px 34px rgba(16, 35, 63, 0.07);
}

.dt-card.lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dt-card.lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--dt-shadow);
}

.dt-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: rgba(180, 135, 69, 0.12);
    color: var(--dt-gold);
}

.dt-card h3 {
    margin: 0 0 0.55rem;
    color: var(--dt-navy);
    font-size: 1.2rem;
    line-height: 1.45;
}

.dt-card p,
.dt-card li {
    color: var(--dt-muted);
}

.dt-card p {
    margin: 0;
}

.dt-insight-card h3 {
    margin-top: 0.85rem;
}

.dt-mini-metric {
    padding: 0.9rem 1rem;
    border-radius: 8px;
    background: rgba(180, 135, 69, 0.08);
    border: 1px solid rgba(16, 35, 63, 0.08);
}

.dt-mini-metric strong {
    display: block;
    color: var(--dt-navy);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.dt-mini-metric span {
    color: var(--dt-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.dt-list {
    display: grid;
    gap: 0.75rem;
    padding: 0;
    margin: 1rem 0 0;
    list-style: none;
}

.dt-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

.dt-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--dt-gold);
    margin-top: 0.76rem;
    flex: 0 0 auto;
}

.dt-media-card {
    min-height: 420px;
    border-radius: 8px;
    background: var(--dt-image, none) center/cover no-repeat;
    position: relative;
    overflow: hidden;
    box-shadow: var(--dt-shadow);
}

.dt-media-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(16, 35, 63, 0.76));
}

.dt-media-note {
    position: absolute;
    z-index: 1;
    inset-inline: 1.2rem;
    bottom: 1.2rem;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    padding: 1rem;
    color: var(--dt-navy);
}

.dt-band {
    background: var(--dt-navy);
    color: white;
    padding: 76px 0;
}

.dt-band .dt-section-title,
.dt-band .dt-card h3 {
    color: white;
}

.dt-band .dt-section-text,
.dt-band .dt-card p,
.dt-band .dt-card li {
    color: rgba(255, 255, 255, 0.72);
}

.dt-band .dt-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(234, 215, 180, 0.16);
    box-shadow: none;
}

.dt-process {
    counter-reset: dt-step;
}

.dt-process .dt-card {
    position: relative;
    padding-top: 3.5rem;
}

.dt-process .dt-card::before {
    counter-increment: dt-step;
    content: counter(dt-step, decimal-leading-zero);
    position: absolute;
    top: 1.1rem;
    inset-inline-start: 1.25rem;
    color: var(--dt-gold);
    font-weight: 900;
    font-size: 1.1rem;
}

.dt-page-hero {
    padding: 126px 0 72px;
    background:
        linear-gradient(135deg, rgba(16, 35, 63, 0.96), rgba(16, 35, 63, 0.84)),
        var(--dt-hero-image, none) center/cover no-repeat;
    color: white;
}

.dt-page-hero .dt-title,
.dt-page-hero .dt-section-title {
    color: white;
}

.dt-page-hero .dt-lead,
.dt-page-hero .dt-section-text {
    color: rgba(255, 255, 255, 0.78);
}

.dt-actions-center {
    justify-content: center;
}

.dt-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    font-size: 0.92rem;
}

.dt-breadcrumb a {
    color: white;
    text-decoration: none;
}

.dt-tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0.18rem 0.65rem;
    border-radius: 999px;
    background: rgba(180, 135, 69, 0.12);
    color: var(--dt-gold);
    font-weight: 800;
    font-size: 0.82rem;
}

.dt-blog-meta {
    color: var(--dt-muted);
    font-size: 0.92rem;
    font-weight: 700;
    margin-top: 1rem;
}

.dt-blog-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dt-blog-link {
    margin-top: 1rem;
    color: var(--dt-navy);
    font-weight: 800;
    text-decoration: none;
}

.dt-blog-link:hover {
    color: var(--dt-gold);
}

.dt-blog-tags {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.dt-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.dt-filter-btn {
    border: 1px solid rgba(16, 35, 63, 0.12);
    background: white;
    color: var(--dt-ink-soft);
    border-radius: 999px;
    padding: 0.55rem 0.95rem;
    font-weight: 800;
    cursor: pointer;
}

.dt-filter-btn.is-active {
    background: var(--dt-navy);
    color: white;
}

.dt-form {
    display: grid;
    gap: 1rem;
}

.dt-field {
    display: grid;
    gap: 0.4rem;
}

.dt-field label {
    color: var(--dt-navy);
    font-weight: 800;
}

.dt-field input,
.dt-field select,
.dt-field textarea {
    width: 100%;
    border: 1px solid rgba(16, 35, 63, 0.16);
    border-radius: 8px;
    padding: 0.85rem 0.95rem;
    color: var(--dt-ink);
    background: #fffdf8;
    font: inherit;
}

.dt-field textarea {
    min-height: 150px;
    resize: vertical;
}

.dt-map {
    min-height: 330px;
    border-radius: 8px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(16, 35, 63, 0.86), rgba(31, 111, 91, 0.72)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 18px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.dt-faq {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.dt-faq-item {
    background: var(--dt-panel);
    border: 1px solid rgba(16, 35, 63, 0.1);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(16, 35, 63, 0.06);
    overflow: hidden;
}

.dt-faq-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--dt-navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.2rem;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    text-align: right;
}

.dt-faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(180, 135, 69, 0.12);
    color: var(--dt-gold);
    font-size: 1.1rem;
    line-height: 1;
    transition: transform 0.2s ease, background 0.2s ease;
}

.dt-faq-toggle.is-open .dt-faq-icon {
    transform: rotate(45deg);
    background: rgba(16, 35, 63, 0.08);
}

.dt-faq-answer {
    display: none;
    padding: 0 1.2rem 1.2rem;
}

.dt-faq-answer.is-open {
    display: block;
}

.dt-faq-answer p {
    margin: 0;
    color: var(--dt-muted);
}

.dt-cta {
    padding: 72px 0;
    background: linear-gradient(135deg, var(--dt-navy), #17385e);
    color: white;
}

.dt-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.dt-cta h2 {
    margin: 0;
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    line-height: 1.25;
}

.dt-cta p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0.8rem 0 0;
    max-width: 680px;
}

.dt-footer {
    background: #0c1728;
    color: white;
    padding-top: 58px;
}

.dt-footer-grid {
    align-items: flex-start;
    display: grid;
    grid-template-columns: 1.25fr 0.8fr 0.8fr 1fr;
}

.dt-footer a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.dt-footer a:hover {
    color: var(--dt-gold-soft);
}

.dt-footer p,
.dt-footer li {
    color: rgba(255, 255, 255, 0.66);
}

.dt-footer h3 {
    margin: 0 0 1rem;
    color: white;
}

.dt-footer-list {
    display: grid;
    gap: 0.55rem;
    padding: 0;
    list-style: none;
}

.dt-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 42px;
    padding: 18px 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
}

@media (max-width: 980px) {
    .dt-topbar {
        display: none;
    }

    .dt-nav-links,
    .dt-nav-actions .dt-btn {
        display: none;
    }

    .dt-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .dt-hero {
        min-height: auto;
        background:
            linear-gradient(180deg, rgba(247, 243, 236, 0.95), rgba(247, 243, 236, 0.92)),
            var(--dt-hero-image, none) center/cover no-repeat;
    }

    .dt-hero-content {
        padding: 72px 0 84px;
    }

    .dt-grid-2,
    .dt-grid-3,
    .dt-grid-4,
    .dt-footer-grid {
        grid-template-columns: 1fr;
    }

    .dt-cta-inner {
        display: block;
    }

    .dt-cta .dt-actions {
        margin-top: 1.5rem;
    }
}

@media (max-width: 640px) {
    .dt-model-switch {
        right: 1rem;
        bottom: 1rem;
        padding: 0.75rem;
    }

    .dt-model-switch__label {
        display: none;
    }

    .dt-container {
        width: min(100% - 24px, 1180px);
    }

    .dt-nav-inner {
        min-height: 68px;
    }

    .dt-brand-mark {
        width: 40px;
        height: 40px;
    }

    .dt-brand-text strong {
        font-size: 1rem;
    }

    .dt-brand-text span {
        display: none;
    }

    .dt-section {
        padding: 64px 0;
    }

    .dt-hero-strip {
        grid-template-columns: 1fr;
    }

    .dt-actions,
    .dt-cta .dt-actions {
        display: grid;
    }

    .dt-btn {
        width: 100%;
    }

    .dt-page-hero {
        padding: 96px 0 56px;
    }
}
