:root {
    --blue-900: #0e4f73;
    --blue-700: #18678f;
    --green-700: #2f8a72;
    --green-100: #e7f3ef;
    --bg-main: #f3f7f8;
    --white: #ffffff;
    --text-main: #13232f;
    --text-muted: #4d6270;
    --line: #d5e2e8;
    --shadow-soft: 0 10px 30px rgba(17, 43, 62, 0.08);
    --font-head: "Cairo", "Segoe UI", sans-serif;
    --font-body: "Noto Sans Arabic", "Tahoma", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text-main);
    background:
        radial-gradient(circle at 9% 7%, #e4f1f7 0, transparent 36%),
        radial-gradient(circle at 88% 0, #e3f1eb 0, transparent 31%),
        var(--bg-main);
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.container {
    width: min(1120px, 92%);
    margin-inline: auto;
}

.section-space {
    padding: 3.5rem 0;
}

.skip-link {
    position: absolute;
    top: -100px;
    right: 1rem;
    background: var(--blue-900);
    color: var(--white);
    padding: 0.6rem 0.9rem;
    border-radius: 0.5rem;
    z-index: 1000;
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(8px);
    background-color: color-mix(in srgb, var(--white) 88%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
}

.header-inner {
    min-height: 78px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.8rem;
    padding-block: 0.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
}

.brand-mark {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.8rem;
    display: grid;
    place-items: center;
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--white);
    background: linear-gradient(145deg, var(--blue-700), var(--green-700));
}

.brand-text {
    display: grid;
    gap: 0.1rem;
}

.brand-text strong {
    font-family: var(--font-head);
    font-size: 1rem;
    line-height: 1.2;
}

.brand-text small {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.menu-toggle {
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--blue-900);
    font-family: var(--font-body);
    font-weight: 700;
    border-radius: 999px;
    padding: 0.45rem 0.95rem;
    cursor: pointer;
}

.main-nav {
    display: none;
    width: 100%;
    order: 3;
    grid-column: 1 / -1;
    margin-top: 0.55rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    padding: 0.65rem;
}

.main-nav.is-open {
    display: grid;
    gap: 0.2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-main);
    padding: 0.6rem 0.8rem;
    border-radius: 0.65rem;
    font-weight: 600;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    background: #eef5f9;
}

.desktop-cta {
    display: none;
}

.btn {
    border: 0;
    border-radius: 999px;
    text-decoration: none;
    font-family: var(--font-head);
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
    box-shadow: 0 8px 18px rgba(18, 92, 128, 0.22);
}

.btn-outline {
    color: var(--blue-900);
    border: 1px solid var(--blue-900);
    background: color-mix(in srgb, var(--white) 87%, #d8ecf6 13%);
}

.btn-block {
    width: 100%;
}

.eyebrow {
    margin: 0;
    color: var(--blue-700);
    font-weight: 700;
    letter-spacing: 0.01em;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--font-head);
    line-height: 1.4;
}

h1 {
    font-size: clamp(1.6rem, 5vw, 2.6rem);
    margin-top: 0.45rem;
}

h2 {
    font-size: clamp(1.4rem, 4.2vw, 2rem);
    margin-top: 0.35rem;
    margin-bottom: 0.9rem;
}

h3 {
    font-size: 1.08rem;
}

.hero-grid {
    display: grid;
    gap: 1.45rem;
}

.hero-lead {
    margin-top: 0.7rem;
    color: var(--text-muted);
    font-size: 1.01rem;
}

.quick-facts {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: grid;
    gap: 0.45rem;
}

.quick-facts li {
    width: fit-content;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.hero-meta {
    margin-top: 1.05rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-right: 4px solid var(--green-700);
    border-radius: 0.9rem;
    padding: 0.8rem 1rem;
}

.hero-meta p {
    margin: 0.2rem 0;
}

.hero-visual {
    margin: 0;
    position: relative;
}

.hero-visual img {
    border-radius: 1.2rem;
    box-shadow: var(--shadow-soft);
    min-height: 290px;
    object-fit: cover;
}

.hero-visual figcaption {
    margin-top: 0.7rem;
    color: var(--text-muted);
    font-size: 0.93rem;
}

.visual-tag {
    position: absolute;
    left: 0.9rem;
    bottom: 3.25rem;
    background: color-mix(in srgb, var(--green-100) 90%, var(--white));
    border: 1px solid color-mix(in srgb, var(--green-700) 35%, var(--white));
    color: #215647;
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
}

.about-layout {
    display: grid;
    gap: 1.2rem;
    align-items: start;
}

.about-main {
    background: color-mix(in srgb, var(--white) 90%, #eef6fa 10%);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1.1rem;
}

.about-main p {
    margin-top: 0.7rem;
    margin-bottom: 0;
}

.about-stats {
    display: grid;
    gap: 0.7rem;
}

.stat-chip {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0.95rem;
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.stat-chip strong {
    font-family: var(--font-head);
    color: var(--blue-900);
    font-size: 1.4rem;
}

.stat-chip.muted {
    background: #f7fbfd;
}

.stat-chip.accent {
    background: color-mix(in srgb, var(--green-100) 75%, var(--white));
}

.specialties-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.4rem;
}

.specialties-list li {
    background: var(--white);
    border: 1px dashed #bfd1db;
    border-radius: 0.7rem;
    padding: 0.6rem 0.8rem;
    font-weight: 600;
}

.services-grid {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
}

.service-card {
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
}

.service-card h3 {
    margin-bottom: 0.4rem;
}

.service-card p {
    margin: 0;
    color: var(--text-muted);
}

.card-a {
    background: #ffffff;
    border-right: 4px solid var(--blue-700);
}

.card-b {
    background: #f3f9fc;
    border-right: 4px solid #5399ba;
}

.card-c {
    background: #f2faf8;
    border-right: 4px solid var(--green-700);
}

.card-d {
    background: #ffffff;
    border-style: dashed;
}

.card-e {
    background: #f8f9fc;
    border-right: 4px solid #6c82ad;
}

.card-f {
    background: #f8fcfa;
    border-right: 4px solid #4f9e8a;
}

.why-layout {
    display: grid;
    gap: 1rem;
}

.trust-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.8rem;
}

.trust-list li {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    padding: 0.9rem;
}

.trust-list h3 {
    margin-bottom: 0.25rem;
}

.trust-list p {
    margin: 0;
    color: var(--text-muted);
}

.quality-panel {
    background: linear-gradient(160deg, #0f577f, #196885 58%, #2f8a72);
    color: var(--white);
    border-radius: 1.05rem;
    padding: 1.05rem;
    box-shadow: var(--shadow-soft);
}

.quality-panel h3 {
    margin-bottom: 0.7rem;
}

.quality-panel dl {
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.quality-panel div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    padding-bottom: 0.45rem;
}

.quality-panel div:last-child {
    border-bottom: 0;
}

.quality-panel dt {
    font-weight: 700;
}

.quality-panel dd {
    margin: 0.15rem 0 0;
    opacity: 0.96;
}

.reviews-grid {
    display: grid;
    gap: 0.9rem;
    margin-top: 1rem;
}

.review {
    margin: 0;
    border-radius: 1rem;
    padding: 1rem;
}

.review p {
    margin: 0;
}

.review cite {
    display: block;
    margin-top: 0.65rem;
    color: var(--text-muted);
    font-style: normal;
    font-size: 0.92rem;
}

.review-a {
    background: #ffffff;
    border: 1px solid var(--line);
    border-top: 4px solid var(--blue-700);
}

.review-b {
    background: #f6fbfe;
    border: 1px solid #cfe0e9;
}

.review-c {
    background: #f4faf7;
    border: 1px solid #cce1d9;
    border-right: 4px solid var(--green-700);
}

.contact-layout {
    display: grid;
    gap: 1rem;
}

.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.7rem;
}

.contact-list li {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0.85rem;
    padding: 0.8rem;
}

.contact-list h3 {
    font-size: 0.98rem;
    margin-bottom: 0.2rem;
}

.contact-list p {
    margin: 0;
    color: var(--text-muted);
}

.contact-list a {
    color: var(--blue-900);
}

.map-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 0.85rem;
    box-shadow: var(--shadow-soft);
}

.map-surface {
    min-height: 235px;
    border-radius: 0.8rem;
    background:
        linear-gradient(120deg, rgba(13, 79, 115, 0.18), rgba(47, 138, 114, 0.16)),
        url("https://images.unsplash.com/photo-1516549655669-dfbd9ea3ef95?auto=format&fit=crop&w=1000&q=80") center/cover;
}

.map-card p {
    margin: 0.65rem 0 0;
    color: var(--text-muted);
}

.booking-layout {
    display: grid;
    gap: 1rem;
    align-items: start;
}

.booking-text {
    background: color-mix(in srgb, var(--white) 90%, #ecf6fb 10%);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1rem;
}

.booking-text p {
    color: var(--text-muted);
}

.booking-form {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1rem;
    display: grid;
    gap: 0.5rem;
}

.booking-form label {
    font-weight: 700;
    font-size: 0.9rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    font: inherit;
    width: 100%;
    border: 1px solid #c7d8e1;
    border-radius: 0.65rem;
    background: #fbfdff;
    padding: 0.7rem 0.75rem;
    color: var(--text-main);
}

.phone-grid {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 0.5rem;
    direction: ltr;
}

.phone-grid input {
    text-align: left;
}

#phone-code {
    background: #eef5f9;
    font-weight: 700;
}

.field-help {
    margin: -0.1rem 0 0.3rem;
    color: var(--text-muted);
    font-size: 0.83rem;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: var(--blue-700);
    outline: 3px solid rgba(24, 103, 143, 0.14);
}

.form-feedback {
    margin: 0;
    min-height: 1.4rem;
    color: var(--blue-900);
    font-weight: 700;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #f8fbfc;
    padding: 1rem 0 5rem;
}

.footer-layout {
    display: grid;
    gap: 0.6rem;
    color: var(--text-muted);
}

.footer-layout p {
    margin: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--blue-900);
    font-weight: 700;
}

.mobile-sticky-cta {
    position: fixed;
    bottom: 0.8rem;
    right: 50%;
    transform: translateX(50%);
    width: min(470px, 94%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    z-index: 40;
}

.mobile-sticky-cta a {
    text-decoration: none;
    border-radius: 999px;
    padding: 0.7rem;
    text-align: center;
    font-family: var(--font-head);
    font-weight: 700;
    border: 1px solid var(--line);
    box-shadow: 0 7px 18px rgba(16, 42, 59, 0.15);
}

.mobile-sticky-cta a:first-child {
    background: var(--white);
    color: var(--blue-900);
}

.mobile-sticky-cta a:last-child {
    color: var(--white);
    background: linear-gradient(135deg, var(--green-700), var(--blue-900));
    border-color: transparent;
}

@media (min-width: 760px) {
    .section-space {
        padding: 4.4rem 0;
    }

    .hero-grid,
    .about-layout,
    .booking-layout,
    .contact-layout,
    .why-layout {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 1.3rem;
    }

    .hero-visual {
        margin-top: 0.8rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reviews-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: start;
    }

    .review-b {
        margin-top: 1rem;
    }

    .footer-layout {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .site-footer {
        padding-bottom: 1.2rem;
    }

    .mobile-sticky-cta {
        display: none;
    }
}

@media (min-width: 920px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
    }

    .menu-toggle {
        display: none;
    }

    .main-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.2rem;
        margin: 0;
        order: 0;
        grid-column: auto;
        background: transparent;
        border: 0;
        padding: 0;
        width: auto;
    }

    .desktop-cta {
        display: inline-flex;
    }

    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: center;
    }

    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}