/* =====================================================================
   OSE for Logistics Services — modern corporate theme
   Brand: deep navy (#183650) + cyan accent (#58bed3)
   One lean stylesheet. Custom properties, logical props for RTL support.
   ===================================================================== */

:root {
    --navy:        #0e2a43;
    --navy-2:      #16395a;
    --navy-3:      #1f4d72;
    --accent:      #58bed3;          /* brand accent */
    --accent-2:    #2aa3c2;          /* deeper accent for text/links on white */
    --accent-soft: #e8f6fa;

    --ink:    #15212e;
    --body:   #44515f;
    --muted:  #6b7886;
    --line:   #e7edf2;
    --bg:     #ffffff;
    --bg-soft:#f4f8fb;
    --bg-soft-2:#eef4f9;

    --grad: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 55%, var(--accent-2) 140%);
    --grad-accent: linear-gradient(135deg, var(--accent-2), var(--accent));

    --container: 1200px;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 26px;

    --shadow-sm: 0 2px 10px rgba(15, 42, 67, .06);
    --shadow:    0 14px 40px rgba(15, 42, 67, .10);
    --shadow-lg: 0 30px 70px rgba(15, 42, 67, .16);

    --ease: cubic-bezier(.22, 1, .36, 1);
    --header-h: 76px;
    --topbar-h: 42px;
    --chrome-h: calc(var(--topbar-h) + var(--header-h));

    --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

html[dir="rtl"] {
    --font: 'Cairo', 'Inter', system-ui, -apple-system, 'Segoe UI', Tahoma, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--body);
    background: var(--bg);
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 { color: var(--ink); line-height: 1.18; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.02em; }
p { margin: 0 0 1rem; }
a { color: var(--accent-2); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--navy); }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding: 72px 0; }
main { display: block; }

.grid { display: grid; gap: 28px; }
@media (min-width: 700px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 700px)  { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px)  { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 700px)  { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px)  { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* ---------- section heading ---------- */
.eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: var(--accent-2); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad-accent); border-radius: 2px; }
.sec-head { max-width: 680px; margin-bottom: 54px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.sec-head p { color: var(--muted); font-size: 1.08rem; margin: 0; }

/* ---------- buttons ---------- */
.btn {
    --bg: var(--navy); --fg: #fff;
    display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    padding: 14px 26px; border-radius: 50px; font-weight: 700; font-size: .98rem;
    background: var(--bg); color: var(--fg); border: 1.5px solid transparent;
    cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .2s;
    white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(15,42,67,.22); color: var(--fg); }
.btn--primary { background: var(--grad); color: #fff; }
.btn--accent { background: var(--grad-accent); color: var(--navy); }
.btn--light { --fg: var(--navy); background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.btn--light:hover { background: var(--bg-soft); color: var(--navy); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--outline:hover { border-color: var(--accent); color: var(--navy); }
.btn--ghost-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.3); }
.btn--ghost-light:hover { background: #fff; color: var(--navy); }
.btn--whatsapp { background: #25d366; color: #fff; }
.btn--block { width: 100%; }

/* ---------- top bar ---------- */
.topbar { background: var(--navy); color: rgba(255,255,255,.82); font-size: .85rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 42px; }
.topbar a { color: rgba(255,255,255,.82); }
.topbar a:hover { color: #fff; }
.topbar__info { display: flex; align-items: center; gap: 22px; }
.topbar__info span, .topbar__info a { display: inline-flex; align-items: center; gap: .45rem; }
.topbar__info svg { width: 15px; height: 15px; color: var(--accent); }
.topbar__social { display: flex; gap: 14px; }
.topbar__social a { display: inline-flex; }
.topbar__social svg { width: 15px; height: 15px; }
@media (max-width: 860px) { .topbar__info span:not(.always) { display: none; } }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); transition: box-shadow .3s, background .3s; }
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,.97); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 40px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { position: relative; color: var(--ink); font-weight: 600; font-size: .97rem; padding: 10px 14px; border-radius: 10px; }
.nav a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px; background: var(--grad-accent); border-radius: 2px; transform: scaleX(0); transform-origin: center; transition: transform .25s var(--ease); }
.nav a:hover { color: var(--navy); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--navy); }

.header-tools { display: flex; align-items: center; gap: 8px; }
.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 12px; background: var(--bg-soft); color: var(--navy); border: 1px solid var(--line); cursor: pointer; transition: background .2s, color .2s, transform .2s; }
.icon-btn:hover { background: var(--accent-soft); color: var(--accent-2); transform: translateY(-2px); }
.icon-btn svg { width: 19px; height: 19px; }

/* language dropdown */
.lang { position: relative; }
.lang__btn { display: inline-flex; align-items: center; gap: .4rem; height: 42px; padding: 0 12px; border-radius: 12px; background: var(--bg-soft); border: 1px solid var(--line); color: var(--navy); font-weight: 700; font-size: .85rem; cursor: pointer; transition: background .2s; }
.lang__btn:hover { background: var(--accent-soft); }
.lang__btn svg { width: 16px; height: 16px; }
.lang__menu { position: absolute; inset-inline-end: 0; top: calc(100% + 10px); min-width: 180px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s var(--ease); z-index: 50; }
.lang.open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__menu a { display: flex; align-items: center; gap: .6rem; padding: 9px 12px; border-radius: 9px; color: var(--ink); font-weight: 600; font-size: .92rem; }
.lang__menu a:hover { background: var(--bg-soft); }
.lang__menu a.active { background: var(--accent-soft); color: var(--accent-2); }
.lang__menu .flag { font-size: 1.05rem; line-height: 1; }

.menu-toggle { display: none; }

/* ---------- mobile nav ---------- */
.mobile-nav { position: fixed; inset: 0; z-index: 300; visibility: hidden; }
.mobile-nav__overlay { position: absolute; inset: 0; background: rgba(14,42,67,.5); opacity: 0; transition: opacity .3s; border: 0; padding: 0; margin: 0; cursor: pointer; width: 100%; height: 100%; }
.mobile-nav__panel { position: absolute; inset-block: 0; inset-inline-end: 0; width: min(86%, 340px); background: #fff; box-shadow: var(--shadow-lg); padding: 22px; transform: translateX(110%); transition: transform .35s var(--ease); display: flex; flex-direction: column; gap: 6px; overflow-y: auto; }
html[dir="rtl"] .mobile-nav__panel { transform: translateX(-110%); }
.mobile-nav.open { visibility: visible; }
.mobile-nav.open .mobile-nav__overlay { opacity: 1; }
.mobile-nav.open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mobile-nav__head img { height: 36px; }
.mobile-nav a.m-link { padding: 13px 12px; border-radius: 12px; color: var(--ink); font-weight: 700; font-size: 1.05rem; }
.mobile-nav a.m-link:hover, .mobile-nav a.m-link.active { background: var(--bg-soft); color: var(--navy); }
.mobile-nav .btn { margin-top: 14px; }

/* ---------- search overlay ---------- */
.search { position: fixed; inset: 0; z-index: 400; display: flex; justify-content: center; padding-top: 12vh; visibility: hidden; }
.search__overlay { position: absolute; inset: 0; background: rgba(14,42,67,.55); backdrop-filter: blur(4px); opacity: 0; transition: opacity .3s; border: 0; padding: 0; margin: 0; cursor: pointer; width: 100%; height: 100%; }
.search__box { position: relative; width: min(92%, 620px); background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg); padding: 10px; transform: translateY(-20px) scale(.98); opacity: 0; transition: .3s var(--ease); max-height: 70vh; display: flex; flex-direction: column; }
.search.open { visibility: visible; }
.search.open .search__overlay { opacity: 1; }
.search.open .search__box { transform: none; opacity: 1; }
.search__field { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-bottom: 1px solid var(--line); }
.search__field svg { width: 22px; height: 22px; color: var(--muted); flex: none; }
.search__field input { flex: 1; border: 0; font-size: 1.15rem; font-family: inherit; color: var(--ink); background: transparent; padding: 8px 0; }
.search__field input:focus { outline: none; }
.search__close { border: 0; background: var(--bg-soft); width: 34px; height: 34px; border-radius: 9px; cursor: pointer; color: var(--muted); font-size: 1.1rem; }
.search__results { overflow-y: auto; padding: 8px; }
.search__results a { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 12px; color: var(--ink); }
.search__results a:hover, .search__results a.is-active { background: var(--bg-soft); }
.search__results .r-ico { width: 36px; height: 36px; border-radius: 9px; background: var(--accent-soft); color: var(--accent-2); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.search__results .r-ico svg { width: 18px; height: 18px; }
.search__results .r-title { font-weight: 700; }
.search__results .r-type { font-size: .8rem; color: var(--muted); }
.search__empty { padding: 26px 16px; text-align: center; color: var(--muted); }
.search__hint { padding: 10px 18px 6px; font-size: .8rem; color: var(--muted); }

/* ---------- hero ---------- */
.hero {
    position: relative;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--chrome-h));
    min-height: calc(100svh - var(--chrome-h));
}
.hero > .container { width: 100%; }
.hero__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(105deg, rgba(8,28,46,.95) 0%, rgba(13,44,70,.86) 45%, rgba(13,44,70,.45) 100%); }
html[dir="rtl"] .hero::after { background: linear-gradient(255deg, rgba(8,28,46,.95) 0%, rgba(13,44,70,.86) 45%, rgba(13,44,70,.45) 100%); }
.hero__inner { padding: clamp(28px, 5vh, 56px) 0; max-width: 720px; }
.hero .eyebrow { color: var(--accent); }
.hero .eyebrow::before { background: var(--accent); }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 5.2vw, 4rem); letter-spacing: -.03em; margin-bottom: 18px; }
.hero p { color: rgba(255,255,255,.86); font-size: 1.18rem; max-width: 560px; margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__points { display: flex; flex-wrap: wrap; gap: 12px 26px; }
.hero__points li { display: flex; align-items: center; gap: .55rem; color: rgba(255,255,255,.9); font-weight: 600; font-size: .96rem; }
.hero__points svg { width: 20px; height: 20px; color: var(--accent); flex: none; }
@media (max-height: 760px) {
    .hero h1 { font-size: clamp(1.85rem, 4.5vw, 2.6rem); margin-bottom: 12px; }
    .hero p { font-size: 1.02rem; margin-bottom: 20px; }
    .hero__cta { margin-bottom: 22px; }
    .hero__inner { padding: 20px 0; }
}

/* ---------- feature cards ---------- */
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; height: 100%; }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature__ico { width: 60px; height: 60px; border-radius: 16px; background: var(--accent-soft); color: var(--accent-2); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: background .3s, color .3s; }
.feature:hover .feature__ico { background: var(--grad); color: #fff; }
.feature__ico svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.25rem; }
.feature p { margin: 0; color: var(--muted); font-size: .98rem; }

/* ---------- service cards ---------- */
.service { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); height: 100%; display: flex; flex-direction: column; }
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service__img { position: relative; aspect-ratio: 16/10; overflow: visible; }
.service__media { position: absolute; inset: 0; overflow: hidden; }
.service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service:hover .service__media img { transform: scale(1.07); }
.service__ico { position: absolute; inset-inline-start: 20px; bottom: -26px; z-index: 2; width: 54px; height: 54px; border-radius: 14px; background: var(--grad); color: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow); }
.service__ico svg { width: 26px; height: 26px; }
.service__body { padding: 38px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.service h3 { font-size: 1.3rem; }
.service p { color: var(--muted); font-size: .97rem; margin-bottom: 16px; flex: 1; }
.service__link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--accent-2); font-size: .92rem; }
.service__link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.service:hover .service__link svg { transform: translateX(4px); }
html[dir="rtl"] .service__link svg { transform: scaleX(-1); }
html[dir="rtl"] .service:hover .service__link svg { transform: scaleX(-1) translateX(4px); }

/* ---------- about ---------- */
.about-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 992px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-media { position: relative; }
.about-media__main { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-media__badge { position: absolute; inset-inline-end: -10px; bottom: -22px; background: var(--grad); color: #fff; border-radius: var(--radius); padding: 20px 26px; box-shadow: var(--shadow-lg); text-align: center; }
.about-media__badge b { display: block; font-size: 2rem; line-height: 1; }
.about-media__badge span { font-size: .82rem; opacity: .9; }
.about-points { display: grid; gap: 14px; margin: 24px 0 30px; }
.about-points li { display: flex; align-items: flex-start; gap: .7rem; font-weight: 600; color: var(--ink); }
.about-points svg { width: 22px; height: 22px; color: var(--accent-2); flex: none; margin-top: 2px; }

.mv-grid { display: grid; gap: 22px; margin-top: 40px; }
@media (min-width: 700px) { .mv-grid { grid-template-columns: 1fr 1fr; } }
.mv-card { background: var(--bg-soft); border-radius: var(--radius); padding: 28px; border-inline-start: 4px solid var(--accent); }
.mv-card h3 { font-size: 1.2rem; display: flex; align-items: center; gap: .6rem; }
.mv-card svg { width: 24px; height: 24px; color: var(--accent-2); }
.mv-card p { margin: 0; color: var(--muted); font-size: .98rem; }

/* ---------- stats band ---------- */
.stats { background: var(--grad); color: #fff; position: relative; overflow: hidden; }
.stats::before { content: ""; position: absolute; inset-inline-end: -80px; top: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(88,190,211,.35), transparent 70%); }
.stats .grid { position: relative; }
.stat { text-align: center; }
.stat b { display: block; font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; line-height: 1; background: linear-gradient(180deg,#fff,#bfe7f0); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat span { color: rgba(255,255,255,.82); font-weight: 600; font-size: .98rem; }

/* ---------- process ---------- */
.steps { counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 26px 28px; height: 100%; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step__num { counter-increment: step; font-size: 2.4rem; font-weight: 800; line-height: 1; background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 14px; }
.step__num::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.15rem; }
.step p { margin: 0; color: var(--muted); font-size: .96rem; }

/* ---------- testimonials ---------- */
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; height: 100%; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tcard__quote { width: 42px; height: 42px; color: var(--accent); margin-bottom: 16px; opacity: .9; }
.tcard__stars { display: flex; gap: 3px; margin-bottom: 14px; color: #f6b73c; }
.tcard__stars svg { width: 18px; height: 18px; }
.tcard p { color: var(--ink); font-size: 1.02rem; flex: 1; }
.tcard__person { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.tcard__person img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.tcard__person b { display: block; color: var(--ink); font-size: 1rem; }
.tcard__person span { color: var(--muted); font-size: .88rem; }

/* ---------- partners ---------- */
.partners { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px 56px; }
.partners img { height: 46px; width: auto; filter: grayscale(1); opacity: .55; transition: filter .3s, opacity .3s, transform .3s; }
.partners img:hover { filter: none; opacity: 1; transform: scale(1.06); }

/* ---------- faq accordion ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--accent); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 700; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 1.05rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { width: 22px; height: 22px; flex: none; color: var(--accent-2); transition: transform .3s var(--ease); }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--muted); }
.faq-item .faq-body p { margin: 0; }

/* ---------- cta band ---------- */
.cta-band { position: relative; color: #fff; overflow: hidden; isolation: isolate; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 64px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.cta-band__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(8,28,46,.95), rgba(13,44,70,.82)); }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.85); margin: 0; max-width: 520px; }

/* ---------- contact ---------- */
.contact-cards { display: grid; gap: 22px; }
@media (min-width: 700px) { .contact-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .contact-cards { grid-template-columns: repeat(4, 1fr); } }
.ccard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; text-align: center; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.ccard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.ccard__ico { width: 58px; height: 58px; border-radius: 16px; background: var(--accent-soft); color: var(--accent-2); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.ccard__ico svg { width: 26px; height: 26px; }
.ccard h3 { font-size: 1.05rem; margin-bottom: 6px; }
.ccard p, .ccard a { color: var(--muted); margin: 0; font-size: .97rem; word-break: break-word; }
.ccard a:hover { color: var(--accent-2); }

.contact-split { display: grid; gap: 36px; margin-top: 56px; align-items: stretch; }
@media (min-width: 992px) { .contact-split { grid-template-columns: 1fr 1fr; } }
.contact-actions { background: var(--grad); color: #fff; border-radius: var(--radius-lg); padding: clamp(30px, 4vw, 48px); }
.contact-actions h3 { color: #fff; font-size: 1.5rem; }
.contact-actions p { color: rgba(255,255,255,.85); }
.contact-actions .btn-stack { display: grid; gap: 12px; margin-top: 24px; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); min-height: 360px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* breadcrumb / page hero */
.page-hero { position: relative; color: #fff; overflow: hidden; isolation: isolate; }
.page-hero__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(110deg, rgba(8,28,46,.94), rgba(13,44,70,.7)); }
.page-hero__inner { padding: clamp(60px, 9vw, 110px) 0; }
.page-hero .eyebrow { color: var(--accent); }
.page-hero .eyebrow::before { background: var(--accent); }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 14px; }
.crumbs { display: flex; gap: .5rem; align-items: center; color: rgba(255,255,255,.75); font-size: .95rem; }
.crumbs a { color: rgba(255,255,255,.9); }
.crumbs a:hover { color: #fff; }
.crumbs svg { width: 16px; height: 16px; opacity: .7; }
html[dir="rtl"] .crumbs svg { transform: scaleX(-1); }

/* error 404 */
.error-wrap { text-align: center; max-width: 620px; margin-inline: auto; }
.error-wrap .big { font-size: clamp(6rem, 18vw, 12rem); font-weight: 800; line-height: 1; background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); padding-top: 72px; }
.footer-grid { display: grid; gap: 40px; padding-bottom: 50px; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
@media (min-width: 992px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; } }
.site-footer img.flogo {margin-bottom: 18px; }
.site-footer p { color: rgba(255,255,255,.6); font-size: .96rem; }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; letter-spacing: .01em; }
.footer-links li + li { margin-top: 11px; }
.footer-links a { color: rgba(255,255,255,.68); font-size: .96rem; display: inline-flex; align-items: center; gap: .5rem; }
.footer-links a:hover { color: var(--accent); }
.fcontact li { display: flex; gap: .7rem; margin-bottom: 14px; color: rgba(255,255,255,.7); font-size: .95rem; }
.fcontact svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 3px; }
.fcontact a { color: rgba(255,255,255,.7); }
.fcontact a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); color: #fff; display: inline-flex; align-items: center; justify-content: center; transition: background .25s, transform .25s; }
.footer-social a:hover { background: var(--grad-accent); transform: translateY(-3px); color: var(--navy); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; text-align: center; font-size: .9rem; color: rgba(255,255,255,.55); }

/* ---------- back to top ---------- */
.to-top { position: fixed; inset-inline-end: 22px; bottom: 82px; width: 48px; height: 48px; border-radius: 50%; background: var(--grad); color: #fff; border: 0; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(14px); transition: .3s var(--ease); z-index: 150; }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top svg { width: 20px; height: 20px; }

/* floating whatsapp */
.wa-float { position: fixed; inset-inline-end: 22px; bottom: 22px; width: 52px; height: 52px; border-radius: 50%; background: #25d366; color: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow); z-index: 150; transition: transform .25s var(--ease); }
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 26px; height: 26px; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* ---------- responsive nav ---------- */
@media (max-width: 992px) {
    .nav { display: none; }
    .menu-toggle { display: inline-flex; }
    .lang__btn .lang__name { display: none; }
}

.no-scroll { overflow: hidden; }
