/* Base */
:root {
    --bg0: #070a12;
    --bg1: #0b1220;
    --text: #e5e7eb;
    --muted: rgba(229, 231, 235, 0.78);
    --muted2: rgba(229, 231, 235, 0.62);

    --surface: rgba(255, 255, 255, 0.08);
    --surface2: rgba(255, 255, 255, 0.12);
    --border: rgba(255, 255, 255, 0.14);

    --accent: #60a5fa;
    --accent2: #a78bfa;
    --success: #34d399;

    --radius: 18px;
    --radius-sm: 14px;
    --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);

    --container: 1120px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background:
        radial-gradient(1100px 700px at 8% 0%, rgba(96, 165, 250, 0.24), transparent 60%),
        radial-gradient(1000px 700px at 92% 12%, rgba(167, 139, 250, 0.22), transparent 60%),
        radial-gradient(900px 700px at 50% 110%, rgba(52, 211, 153, 0.18), transparent 62%),
        linear-gradient(180deg, var(--bg0), var(--bg1) 55%, #070a12);
    min-height: 100vh;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(92%, var(--container));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    inset-block-start: 12px;
    inset-inline-start: 12px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border-radius: 12px;
    transform: translateY(-200%);
    transition: transform 0.2s ease;
    z-index: 2000;
}

.skip-link:focus {
    transform: translateY(0);
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: 2px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 18, 32, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-block: 14px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    padding: 4px;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-name {
    font-weight: 700;
    letter-spacing: 0.2px;
    font-size: 17px;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-sub {
    font-size: 13px;
    color: var(--muted2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-switch {
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 4px;
}

.lang-btn {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--muted);
    padding: 8px 10px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: 0.2s ease;
}

.lang-btn[aria-pressed="true"] {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.25), rgba(167, 139, 250, 0.20));
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
}

.nav-toggle-lines {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    margin-inline: auto;
    position: relative;
    border-radius: 999px;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.nav-toggle-lines::before {
    transform: translateY(-6px);
}

.nav-toggle-lines::after {
    transform: translateY(6px);
}

.primary-nav {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding-block: 12px;
}

.nav-link {
    padding: 10px 12px;
    border-radius: 14px;
    color: var(--muted);
    font-weight: 700;
    transition: 0.2s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    padding-block: 64px 32px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(closest-side, rgba(96, 165, 250, 0.16), transparent 62%),
        radial-gradient(closest-side, rgba(167, 139, 250, 0.14), transparent 62%);
    filter: blur(0px);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
    align-items: center;
}

.hero-copy {
    padding-block: 18px;
}

.hero-title {
    font-size: clamp(28px, 3.3vw, 44px);
    line-height: 1.2;
    letter-spacing: 0.2px;
}

.hero-lead {
    margin-top: 14px;
    color: var(--muted);
    font-size: 18px;
    max-width: 58ch;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.badge-icon {
    width: 28px;
    height: 28px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.26), rgba(167, 139, 250, 0.22));
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.badge-text {
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
}

.hero-card {
    border-radius: calc(var(--radius) + 8px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    padding: 18px;
}

.hero-card-inner {
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.10);
    background:
        radial-gradient(600px 220px at 20% 10%, rgba(96, 165, 250, 0.20), transparent 62%),
        radial-gradient(600px 220px at 80% 25%, rgba(167, 139, 250, 0.18), transparent 62%),
        rgba(255, 255, 255, 0.06);
    padding: 16px;
    display: grid;
    gap: 10px;
}

.hero-card-top {
    height: 28px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.hero-card-row {
    height: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card-row:nth-child(3) {
    width: 86%;
}

.hero-card-row:nth-child(4) {
    width: 72%;
}

.hero-media {
    border-radius: calc(var(--radius) + 8px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow);
    overflow: hidden;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.hero-media-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

/* Sections */
.section {
    padding-block: 44px;
}

.section-alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-head {
    text-align: center;
    margin-bottom: 26px;
}

.section-title {
    font-size: 28px;
    letter-spacing: 0.2px;
}

.section-subtitle {
    margin-top: 10px;
    color: var(--muted);
    max-width: 72ch;
    margin-inline: auto;
}

.grid {
    display: grid;
    gap: 16px;
}

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

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

/* Cards */
.card,
.feature,
.about-card,
.map-card,
.contact-card,
.gallery-item {
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.card {
    padding: 16px;
    display: grid;
    gap: 10px;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

.card-img {
    border-radius: calc(var(--radius) - 6px);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.card-title {
    font-size: 18px;
    font-weight: 700;
}

.card-muted {
    color: var(--muted);
    font-size: 14px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    min-height: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.25s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item figcaption {
    position: absolute;
    inset-inline: 12px;
    inset-block-end: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25));
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.2px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* Features */
.feature {
    padding: 18px;
    display: grid;
    gap: 10px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.26), rgba(167, 139, 250, 0.20));
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-title {
    font-size: 18px;
}

.feature-text {
    color: var(--muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 16px;
    border: 1px solid transparent;
    font-weight: 800;
    letter-spacing: 0.1px;
    transition: 0.2s ease;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.95), rgba(167, 139, 250, 0.85));
    color: #0b1220;
    box-shadow: 0 18px 50px rgba(96, 165, 250, 0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 60px rgba(96, 165, 250, 0.28);
}

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

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.30);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.14);
    background: transparent;
    color: #fff;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 16px;
}

.about-card {
    padding: 18px;
}

.about-card p {
    color: var(--muted);
    margin-bottom: 14px;
}

.about-list {
    list-style: none;
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-weight: 700;
}

.about-stats {
    display: grid;
    gap: 12px;
}

.stat {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.15);
    padding: 14px;
}

.stat-value {
    font-size: 22px;
    font-weight: 900;
}

.stat-label {
    color: var(--muted2);
    font-weight: 700;
    margin-top: 6px;
}

/* Map */
.map-card {
    overflow: hidden;
}

.map-card iframe {
    width: 100%;
    border: 0;
    aspect-ratio: 16 / 9;
    display: block;
}

.map-actions {
    padding: 16px;
    display: flex;
    justify-content: center;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
}

.contact-card {
    padding: 18px;
    display: grid;
    gap: 14px;
}

.contact-item {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.16);
    padding: 14px;
}

.contact-label {
    color: var(--muted2);
    font-weight: 800;
    font-size: 13px;
}

.contact-value {
    display: inline-block;
    margin-top: 8px;
    font-weight: 900;
    letter-spacing: 0.2px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hours {
    display: grid;
    gap: 10px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.16);
    color: var(--muted);
    font-weight: 800;
}

.hours-time {
    color: #fff;
    font-weight: 900;
}

.small-muted {
    color: var(--muted2);
    font-size: 13px;
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    inset-block-end: 18px;
    inset-inline-end: 18px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.floating-wa-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #0b1220;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.95), rgba(96, 165, 250, 0.75));
}

.floating-wa-text {
    font-weight: 900;
}

/* Footer */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.22);
}

.footer-inner {
    padding-block: 18px;
    text-align: center;
    color: var(--muted2);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 920px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

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

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

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .nav-toggle {
        display: inline-grid;
        place-items: center;
    }

    .nav-inner {
        justify-content: stretch;
        flex-direction: column;
        align-items: stretch;
        padding-block: 14px;
    }

    .primary-nav {
        max-height: 0;
        overflow: hidden;
        border-top: 0;
        transition: max-height 0.25s ease;
    }

    .site-header.nav-open .primary-nav {
        max-height: 360px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-link {
        background: rgba(255, 255, 255, 0.04);
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item--wide {
        grid-column: span 1;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
    }
}

