:root {
    --navy-deep: #0a1628;
    --navy-mid: #112240;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --white: #f8f9fa;
    --text-muted: #8899aa;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    background: var(--navy-deep);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

html[lang="ar"] body {
    font-family: 'Noto Naskh Arabic', serif;
}

html[lang="en"] h1, html[lang="en"] h2, html[lang="en"] h3, html[lang="en"] .font-display {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
}

html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] .font-display {
    font-family: 'Noto Naskh Arabic', serif;
}

html[lang="ar"] .en { display: none !important; }
html[lang="en"] .ar { display: none !important; }

/* Scroll progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    width: 0%;
    z-index: 10001;
    pointer-events: none;
    transition: width 0.05s linear;
}

/* Nav */
.site-header {
    position: fixed;
    top: 3px;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 1rem 0;
    transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
    background: rgba(10, 22, 40, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    color: var(--white);
}

.me-2 { margin-inline-end: 0.5rem; }

.brand img,
.footer-brand img {
    flex-shrink: 0;
    object-fit: contain;
}

.brand-text {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

html[lang="en"] .brand-text { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.15rem; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 0.85rem;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.88;
    transition: color 0.2s, opacity 0.2s;
}

.nav-links a:hover {
    color: var(--gold-light);
    opacity: 1;
}

.lang-toggle {
    border: 1px solid rgba(201, 168, 76, 0.5);
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold-light);
    padding: 0.45rem 0.9rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.lang-toggle:hover {
    background: rgba(201, 168, 76, 0.22);
    border-color: var(--gold);
}

.menu-btn {
    display: none;
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gold-light);
    transition: transform 0.25s, opacity 0.25s;
}

.site-header.nav-open .menu-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .menu-btn span:nth-child(2) { opacity: 0; }
.site-header.nav-open .menu-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991px) {
    .menu-btn { display: flex; }
    .nav-panel {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 22, 40, 0.97);
        padding: 5.5rem 1.5rem 2rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s;
    }

    .site-header.nav-open .nav-panel {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-links a {
        padding: 0.85rem 1rem;
        border-bottom: 1px solid rgba(136, 153, 170, 0.15);
    }

    .nav-actions-mobile {
        margin-top: 1rem;
        display: flex;
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .nav-panel {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }

    .nav-actions-mobile { display: contents; }
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* Hero */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6.5rem 1.25rem 4rem;
    overflow: hidden;
    background: var(--navy-deep);
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(17, 34, 64, 0.9) 0%, transparent 55%),
        linear-gradient(165deg, var(--navy-deep) 0%, #0d1f3a 45%, var(--navy-mid) 100%);
    z-index: 0;
}

.hero-parallax {
    position: absolute;
    inset: -8%;
    z-index: 1;
    will-change: transform;
}

.hero-map-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.45;
}

.hero-map-wrap svg {
    width: min(140%, 1600px);
    height: auto;
    max-height: 100%;
}

.route-line {
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-dasharray: 8 14;
    animation: routeFlow 22s linear infinite;
    filter: drop-shadow(0 0 4px rgba(201, 168, 76, 0.35));
}

.route-line.slow { animation-duration: 32s; animation-direction: reverse; }
.route-line.fast { animation-duration: 14s; }

@keyframes routeFlow {
    to { stroke-dashoffset: -400; }
}

.map-dot {
    fill: var(--gold-light);
    opacity: 0.35;
}

.gold-accent-line {
    position: absolute;
    width: 140%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
    top: 28%;
    left: -20%;
    transform: rotate(-8deg);
    pointer-events: none;
    z-index: 2;
}

.gold-accent-line.b2 {
    top: 62%;
    transform: rotate(6deg);
    opacity: 0.5;
}

.float-emoji {
    position: absolute;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    opacity: 0.55;
    z-index: 3;
    pointer-events: none;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.float-emoji.plane {
    top: 22%;
    animation: driftPlane 28s ease-in-out infinite;
}

.float-emoji.ship {
    top: 48%;
    animation: driftShip 36s ease-in-out infinite;
    animation-delay: -8s;
}

.float-emoji.truck {
    top: 68%;
    animation: driftTruck 24s ease-in-out infinite;
    animation-delay: -4s;
}

html[dir="ltr"] .float-emoji.plane { animation-name: driftPlaneLtr; }
html[dir="ltr"] .float-emoji.ship { animation-name: driftShipLtr; }
html[dir="ltr"] .float-emoji.truck { animation-name: driftTruckLtr; }

@keyframes driftPlane {
    0%, 100% { right: -5%; transform: translateY(0) scaleX(-1); }
    50% { right: 85%; transform: translateY(-20px) scaleX(-1); }
}

@keyframes driftShip {
    0%, 100% { right: 10%; transform: translateY(0); }
    50% { right: 75%; transform: translateY(12px); }
}

@keyframes driftTruck {
    0%, 100% { right: -8%; transform: translateY(0) scaleX(-1); }
    50% { right: 70%; transform: translateY(-8px) scaleX(-1); }
}

@keyframes driftPlaneLtr {
    0%, 100% { left: -5%; transform: translateY(0); }
    50% { left: 85%; transform: translateY(-20px); }
}

@keyframes driftShipLtr {
    0%, 100% { left: 10%; transform: translateY(0); }
    50% { left: 75%; transform: translateY(12px); }
}

@keyframes driftTruckLtr {
    0%, 100% { left: -8%; transform: translateY(0); }
    50% { left: 70%; transform: translateY(-8px); }
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 900px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2rem, 5.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--white);
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.45);
}

.hero h1 .gold-text {
    color: var(--gold-light);
    display: block;
    margin-top: 0.25rem;
}

.hero-sub {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
    cursor: pointer;
    border: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #a88a3d 100%);
    color: var(--navy-deep);
}

.btn-gold:hover {
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gold-light);
    border: 2px solid rgba(201, 168, 76, 0.65);
}

.btn-outline:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: var(--gold);
}

/* Stats */
.stats-bar {
    background: linear-gradient(180deg, #0c1a30 0%, var(--navy-mid) 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding: 3rem 1.25rem;
}

.stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (max-width: 900px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
}

.stat-num {
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1.1;
}

html[lang="en"] .stat-num { font-family: 'Cormorant Garamond', Georgia, serif; }

.stat-label {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Sections common */
.section {
    padding: 5rem 1.25rem;
    position: relative;
}

.section-title {
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.65rem;
    color: var(--white);
}

.section-kicker {
    text-align: center;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.section-intro {
    text-align: center;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 3rem;
    font-size: 1.02rem;
}

/* About */
.about {
    background: var(--navy-deep);
}

.about-grid {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
}

.about-copy p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1.02rem;
}

.reg-badge {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin-top: 1.5rem;
    padding: 0.85rem 1.25rem;
    background: rgba(17, 34, 64, 0.85);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 10px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.reg-badge strong { color: var(--gold-light); font-weight: 600; }

.glass-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.glass-card {
    background: rgba(248, 249, 250, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 1.35rem 1.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.25s, transform 0.25s;
}

.glass-card:hover {
    border-color: rgba(201, 168, 76, 0.45);
    transform: translateY(-2px);
}

.glass-card h3 {
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.glass-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Services */
.services {
    background: var(--navy-mid);
}

.services-grid {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
    .services-grid { grid-template-columns: 1fr; }
}

.service-card {
    background: rgba(10, 22, 40, 0.65);
    border: 1px solid rgba(136, 153, 170, 0.18);
    border-radius: 14px;
    padding: 1.5rem 1.35rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, 0.65);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(201, 168, 76, 0.2);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 0.85rem;
    display: block;
    transition: transform 0.35s ease;
    color: var(--gold-light);
}

.service-card:hover .service-icon {
    transform: rotate(-8deg) scale(1.08);
}

.service-card h3 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.65rem;
}

.service-card .svc-bilingual {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    margin: -0.35rem 0 0.65rem;
    opacity: 0.95;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Why us */
.why {
    background: linear-gradient(135deg, #0f1f38 0%, var(--navy-deep) 50%, #0d1a2e 100%);
    overflow: hidden;
}

.why::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.25;
    top: 120px;
    left: -10%;
    transform: rotate(-4deg);
    pointer-events: none;
}

.why-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.why-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: center;
}

.why-row:nth-child(even) {
    direction: ltr;
}

html[dir="rtl"] .why-row:nth-child(even) {
    direction: rtl;
}

@media (max-width: 600px) {
    .why-row, html[dir="rtl"] .why-row:nth-child(even) {
        grid-template-columns: 1fr;
        direction: inherit !important;
        text-align: center;
    }

    .why-icon-wrap { margin: 0 auto; }
}

.why-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.why-row h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.35rem;
}

.why-row p {
    color: var(--text-muted);
    font-size: 0.98rem;
}

/* Contact */
.contact {
    background: var(--navy-mid);
}

.contact-split {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-split { grid-template-columns: 1fr; }
}

.map-frame {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.25);
    aspect-ratio: 16/11;
    background: var(--navy-deep);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    min-height: 280px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.info-row {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.85rem 1rem;
    background: rgba(10, 22, 40, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.92rem;
    color: var(--text-muted);
}

.info-row a {
    color: var(--gold-light);
    text-decoration: none;
}

.info-row a:hover { text-decoration: underline; }

.contact-form {
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 14px;
    padding: 1.75rem;
}

.form-group {
    margin-bottom: 1.1rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(136, 153, 170, 0.3);
    background: rgba(248, 249, 250, 0.06);
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-status {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--gold-light);
    min-height: 1.25rem;
}

/* Footer */
.footer {
    background: #070f1a;
    padding: 3rem 1.25rem 2rem;
    border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { justify-content: center; }
    .footer-links ul { padding: 0; }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 280px;
}

html[dir="rtl"] .footer-tagline { margin-right: 0; }
html[dir="ltr"] .footer-tagline { margin-left: 0; }

@media (max-width: 768px) {
    .footer-tagline { margin-left: auto; margin-right: auto; }
}

.footer h4 {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.92rem;
    line-height: 2;
}

.footer-links a:hover { color: var(--gold-light); }

.social-link {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
}

.social-link:hover { text-decoration: underline; }

.footer-copy {
    max-width: 1100px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
}
