/* ============================================================
   ARBAH GROUP — Design System
   Palette: Navy #0e2a47 / Gold #d4a53a
   ============================================================ */

:root {
  --navy-900: #0a1f38;
  --navy-800: #0e2a47;
  --navy-700: #123a5f;
  --navy-600: #1b4f7d;
  --gold-500: #d4a53a;
  --gold-400: #e2b955;
  --gold-600: #b98a26;
  --flow-red: #e23b32;
  --flow-red-dark: #7a1414;
  --flow-red-arrow: #c62828;
  --ink: #1d2a3a;
  --muted: #5b6b7d;
  --line: #e7ecf2;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --bg-navy-grad: linear-gradient(135deg, #0a1f38 0%, #123a5f 55%, #1b4f7d 100%);
  --shadow-sm: 0 4px 14px rgba(14, 42, 71, .06);
  --shadow-md: 0 12px 34px rgba(14, 42, 71, .10);
  --shadow-lg: 0 28px 60px rgba(14, 42, 71, .16);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1220px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --font: "Tajawal", "Segoe UI", Tahoma, system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
svg { width: 24px; height: 24px; flex: none; }
.about-img .big-mark svg { width: 120px; height: 120px; }
.hv-icon svg, .value .v-ic svg, .brand-card .b-ic svg, .ci-item .ci-ic svg, .contact-social a svg, .footer-social a svg { width: 26px; height: 26px; }
.gitem .g-ic { display: grid; place-items: center; }
.gitem .g-ic svg { width: 54px; height: 54px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 800; color: var(--navy-800); letter-spacing: -.2px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-600); font-weight: 800; font-size: .82rem;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}
.section-tag::before { content: ""; width: 26px; height: 2px; background: var(--gold-500); }
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.7rem); margin-bottom: 16px; }
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 620px; }
.section-head { margin-bottom: 46px; }
.text-center { text-align: center; }
.text-center .section-sub { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border-radius: 50px; font-weight: 800; font-size: .98rem;
  cursor: pointer; border: none; transition: all .35s var(--ease); position: relative;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold { background: var(--gold-500); color: #1a1200; box-shadow: 0 12px 26px rgba(212,165,58,.35); }
.btn-gold:hover { background: var(--gold-400); transform: translateY(-3px); box-shadow: 0 18px 34px rgba(212,165,58,.45); }
.btn-navy { background: var(--navy-800); color: #fff; }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-ghost:hover { background: #fff; color: var(--navy-800); transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--navy-800); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--gold-500); color: var(--gold-600); transform: translateY(-3px); }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar { position: fixed; inset: 0 0 auto 0; z-index: 1001; height: 38px; background: #08192e; color: rgba(255,255,255,.85); font-size: .85rem; }
.topbar a { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.85); transition: color .25s var(--ease); }
.topbar a:hover { color: var(--gold-400); }
.topbar svg { width: 15px; height: 15px; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 38px; gap: 16px; }
.topbar-contact { display: flex; align-items: center; gap: 22px; }
.topbar-social { display: flex; align-items: center; gap: 14px; }
.topbar-wa { color: #4ade80 !important; font-weight: 700; }
.topbar-wa:hover { color: #86efac !important; }
@media (max-width: 720px) { .topbar-contact a:nth-child(2) { display: none; } .topbar-social a:not(.topbar-wa) { display: none; } }

/* Floating WhatsApp */
.wa-float { position: fixed; bottom: 26px; inset-inline-start: 26px; z-index: 1200; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.45); transition: transform .3s var(--ease); }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; inset: 38px 0 auto 0; z-index: 1000;
  padding: 16px 0; transition: all .4s var(--ease);
}
.nav.scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); padding: 10px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; flex: none; }
/* the logo artwork is dark-on-white, so it always sits on a white plaque
   to stay legible over the transparent navy nav and the dark footer */
.brand-logo {
  height: 48px; width: auto; flex: none;
  background: #fff; border-radius: 12px; padding: 7px 13px;
  box-shadow: 0 8px 18px rgba(14,42,71,.16);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.brand:hover .brand-logo { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(14,42,71,.22); }
.nav.scrolled .brand-logo { height: 44px; box-shadow: none; padding: 4px 8px; }

.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;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 13px; border-radius: 50px; font-weight: 700; font-size: .95rem;
  color: var(--navy-800); transition: all .25s var(--ease); position: relative;
  white-space: nowrap; /* Turkish labels are long enough to wrap and grow the bar */
}
.nav.on-dark:not(.scrolled) .nav-links a { color: rgba(255,255,255,.88); }
.nav-links a:hover { color: var(--gold-600); }
.nav.on-dark:not(.scrolled) .nav-links a:hover { color: var(--gold-400); }
.nav-links a.active { color: var(--gold-600); }
.nav-links a.active::after {
  content: ""; position: absolute; bottom: 2px; right: 15px; left: 15px; height: 2px;
  background: var(--gold-500); border-radius: 2px;
}
.nav.on-dark:not(.scrolled) .nav-links a.active { color: var(--gold-400); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--navy-800); border-radius: 2px; transition: .3s; }
.nav-toggle span + span { margin-top: 6px; }
.nav.on-dark:not(.scrolled) .nav-toggle span { background: #fff; }

/* mobile drawer — kicks in early enough that the longer Turkish labels
   never have to share the bar with the logo and the CTA */
.nav-drawer { display: none; }
@media (max-width: 1220px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-toggle { display: block; }
  .nav-drawer {
    display: block; position: fixed; inset: 0; z-index: 1100;
    background: var(--bg-navy-grad); padding: 90px 30px 30px;
    transform: translateX(100%); transition: transform .45s var(--ease); visibility: hidden;
  }
  html[dir="rtl"] .nav-drawer { transform: translateX(-100%); }
  .nav-drawer.open { transform: translateX(0); visibility: visible; }
  .nav-drawer a {
    display: block; color: #fff; font-size: 1.35rem; font-weight: 800;
    padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12);
    opacity: 0; transform: translateY(14px);
  }
  .nav-drawer.open a { animation: drawerIn .5s var(--ease) forwards; }
  .nav-drawer a.active { color: var(--gold-400); }
  .drawer-close { position: absolute; top: 24px; left: 24px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; }
  html[dir="rtl"] .drawer-close { left: auto; right: 24px; }
}
@keyframes drawerIn { to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--bg-navy-grad); color: #fff; overflow: hidden;
  padding: 140px 0 90px;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
  background-size: 34px 34px; opacity: .6;
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: 0; }
.orb-gold { width: 420px; height: 420px; background: var(--gold-500); top: -120px; left: -80px; animation: float1 14s ease-in-out infinite; }
.orb-blue { width: 500px; height: 500px; background: #1b6bb0; bottom: -180px; right: -120px; animation: float2 18s ease-in-out infinite; }
@keyframes float1 { 50% { transform: translate(60px, 50px) scale(1.1); } }
@keyframes float2 { 50% { transform: translate(-50px, -40px) scale(1.08); } }

.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hero-copy { position: relative; z-index: 3; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px; border-radius: 50px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); font-weight: 700; font-size: .88rem; margin-bottom: 26px;
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 0 rgba(226,185,85,.7); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 12px rgba(226,185,85,0); } }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 5.2vw, 4.1rem); line-height: 1.15; margin-bottom: 22px; }
.hero h1 .accent { color: var(--gold-400); }
.hero p.lead { font-size: 1.18rem; color: rgba(255,255,255,.82); max-width: 560px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 50px; flex-wrap: wrap; }
.hero-stats .num { font-size: 2.4rem; font-weight: 900; color: var(--gold-400); }
.hero-stats .lbl { color: rgba(255,255,255,.72); font-size: .92rem; }

/* hero visual card cluster — clean contained grid */
.hero-visual { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; animation: cardFloat 8s ease-in-out infinite; }
.hero-visual .glass {
  border-radius: 20px; background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(10px); padding: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
}
.hv-1 { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 6px; }
.hv-2, .hv-3 { display: flex; flex-direction: column; gap: 4px; }
@keyframes cardFloat { 50% { transform: translateY(-14px); } }
.hv-icon { width: 50px; height: 50px; border-radius: 13px; background: var(--gold-500); display: grid; place-items: center; color: #1a1200; margin-bottom: 12px; }
.hv-1 h4 { color: #fff; font-size: 1.35rem; }
.hv-1 p { color: rgba(255,255,255,.72); font-size: .92rem; margin: 0; }
.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; z-index: 1; line-height: 0; }
.hero-wave svg { width: 100%; height: 90px; }

/* ============================================================
   SECTIONS / CARDS
   ============================================================ */
section { padding: 96px 0; position: relative; }
.bg-soft { background: var(--bg-soft); }

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; transition: all .4s var(--ease); position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; top: 0; right: 0; left: 0; height: 3px;
  background: var(--gold-500); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); color: var(--gold-400); margin-bottom: 20px;
  transition: all .4s var(--ease);
}
.card:hover .card-icon { background: var(--gold-500); color: var(--navy-900); transform: rotate(-6deg); }
.card-icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; }

/* feature list */
.feat { display: flex; gap: 16px; align-items: flex-start; }
.feat-num { font-size: 1.5rem; font-weight: 900; color: var(--gold-500); flex: none; }
.feat h4 { font-size: 1.15rem; margin-bottom: 6px; }
.feat p { color: var(--muted); }

/* ---------- Services flow chart ---------- */
/* Grid columns are fixed left/right regardless of page language, so the
   zigzag shape stays identical in ar/tr/en; only text alignment flips. */
.flow-chart { direction: ltr; max-width: 720px; margin: 0 auto; }
.flow-row {
  display: grid; grid-template-columns: 1fr 64px 1fr; align-items: center;
  column-gap: 6px;
}
.flow-box {
  position: relative; background: var(--flow-red); color: #fff;
  font-weight: 800; font-size: 1.02rem; text-align: center;
  padding: 16px 20px; border-radius: 10px; overflow: hidden;
  box-shadow: 0 10px 22px rgba(194, 40, 30, .28);
}
html[dir="rtl"] .flow-box { direction: rtl; }
.flow-box::before {
  content: ""; position: absolute; top: 0; left: 0;
  border-width: 0 0 18px 18px; border-style: solid;
  border-color: transparent transparent var(--flow-red-dark) transparent;
}
.flow-arrow { width: 100%; height: 22px; background: var(--flow-red-arrow); }
.flow-arrow.dir-left  { clip-path: polygon(100% 15%, 40% 15%, 40% 0%, 0% 50%, 40% 100%, 40% 85%, 100% 85%); }
.flow-arrow.dir-right { clip-path: polygon(0% 15%, 60% 15%, 60% 0%, 100% 50%, 60% 100%, 60% 85%, 0% 85%); }
.flow-vconn { width: 22px; height: 34px; margin: 4px 0; background: var(--flow-red-arrow);
  clip-path: polygon(30% 0%, 70% 0%, 70% 55%, 100% 55%, 50% 100%, 0% 55%, 30% 55%); }
.flow-vconn.side-left  { justify-self: start; margin-inline-start: calc(16.66% - 11px); }
.flow-vconn.side-right { justify-self: end;   margin-inline-end: calc(16.66% - 11px); }
@media (max-width: 640px) {
  .flow-row { grid-template-columns: 1fr; row-gap: 10px; }
  .flow-row .flow-box { grid-column: 1 !important; }
  .flow-row .flow-arrow {
    grid-column: 1 !important; width: 22px; height: 26px; justify-self: center;
    clip-path: polygon(30% 0%, 70% 0%, 70% 55%, 100% 55%, 50% 100%, 0% 55%, 30% 55%) !important;
  }
  .flow-vconn.side-left, .flow-vconn.side-right { justify-self: center; margin-inline: 0; }
}

/* ---------- About / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse { direction: ltr; }
.split.reverse > * { direction: rtl; }
.about-visual { position: relative; }
.about-img {
  aspect-ratio: 4/3.4; border-radius: 24px; background: var(--bg-navy-grad); position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg); display: grid; place-items: center;
}
.about-img::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.08) 1px, transparent 0); background-size: 28px 28px;
}
.about-img .big-mark { font-size: 8rem; font-weight: 900; color: rgba(212,165,58,.9); position: relative; z-index: 1; }
.about-img .about-logo {
  position: relative; z-index: 1; width: 68%; max-width: 340px; height: auto;
  background: #fff; border-radius: 20px; padding: 26px 30px;
  box-shadow: 0 22px 50px rgba(6,20,40,.42);
}
.about-badge {
  position: absolute; bottom: -24px; left: -24px; background: #fff; border-radius: 18px; padding: 20px 26px;
  box-shadow: var(--shadow-lg); text-align: center; border: 1px solid var(--line);
}
html[dir="rtl"] .about-badge { left: auto; right: -24px; }
.about-badge .num { font-size: 2.4rem; font-weight: 900; color: var(--navy-800); line-height: 1; }
.about-badge .lbl { color: var(--muted); font-size: .85rem; }

/* values */
.value { padding: 26px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); transition: .35s var(--ease); }
.value:hover { border-color: var(--gold-500); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.value .v-ic { width: 52px; height: 52px; border-radius: 14px; background: rgba(212,165,58,.14); color: var(--gold-600); display: grid; place-items: center; margin-bottom: 16px; }
.value h4 { margin-bottom: 8px; }
.value p { color: var(--muted); font-size: .96rem; }

/* ---------- Brands ---------- */
.brand-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 260px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; color: #fff;
  background: var(--bg-navy-grad); transition: .45s var(--ease); box-shadow: var(--shadow-md);
}
.brand-card .b-bg { position: absolute; inset: 0; opacity: .9; transition: .5s var(--ease); z-index: 0; }
.brand-card > * { position: relative; z-index: 1; }
.brand-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.brand-card:hover .b-bg { transform: scale(1.06); }
.brand-card .b-ic { width: 56px; height: 56px; border-radius: 14px; background: rgba(255,255,255,.16); display: grid; place-items: center; margin-bottom: auto; backdrop-filter: blur(6px); }
.brand-card h3 { color: #fff; font-size: 1.4rem; margin: 16px 0 6px; }
.brand-card p { color: rgba(255,255,255,.82); font-size: .95rem; }
.brand-card .b-tag { position: absolute; top: 22px; left: 22px; background: var(--gold-500); color: var(--navy-900); font-weight: 800; font-size: .78rem; padding: 5px 12px; border-radius: 50px; z-index: 2; }
html[dir="rtl"] .brand-card .b-tag { left: auto; right: 22px; }

/* gradient variants */
.g-teal { background: linear-gradient(140deg, #0b3b3f, #0f6b6f); }
.g-plum { background: linear-gradient(140deg, #3a1030, #7a2455); }
.g-sun { background: linear-gradient(140deg, #4a2a08, #b06a12); }
.g-sea { background: linear-gradient(140deg, #06263f, #135b8f); }
.g-forest { background: linear-gradient(140deg, #0c2e1a, #1c6b3a); }

/* ---------- Stats band ---------- */
.stats-band { background: var(--bg-navy-grad); color: #fff; position: relative; overflow: hidden; }
.stats-band::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.05) 1px, transparent 0); background-size: 30px 30px;
}
.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-item .num { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 900; color: var(--gold-400); line-height: 1; }
.stat-item .lbl { color: rgba(255,255,255,.78); margin-top: 8px; font-weight: 600; }

/* ---------- Branches ---------- */
.branch {
  display: flex; gap: 20px; padding: 26px; border-radius: var(--radius); background: #fff;
  border: 1px solid var(--line); transition: .35s var(--ease);
}
.branch:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.branch .flag { width: 60px; height: 60px; border-radius: 14px; flex: none; display: grid; place-items: center; font-size: 1.8rem; background: var(--bg-soft); }
.branch h4 { margin-bottom: 4px; }
.branch .b-city { color: var(--gold-600); font-weight: 800; font-size: .9rem; }
.branch p { color: var(--muted); font-size: .92rem; margin-top: 6px; }

/* ---------- Partners ---------- */
.partner {
  aspect-ratio: 16/9; border-radius: var(--radius-sm); background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center; padding: 24px; transition: .35s var(--ease); text-align: center;
}
.partner:hover { border-color: var(--gold-500); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
/* used instead of the 4-up grid / marquee when there are only a few partners */
.partner-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; }
.partner-row .partner { flex: 0 1 300px; }
.partner b { color: var(--navy-800); font-size: 1.15rem; font-weight: 900; letter-spacing: .5px; }
.partner span { display: block; color: var(--muted); font-size: .78rem; }

/* ---------- News ---------- */
.news-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: .4s var(--ease); }
.news-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.news-thumb { aspect-ratio: 16/9; position: relative; overflow: hidden; display: grid; place-items: center; color: rgba(255,255,255,.25); }
.news-thumb svg { width: 70px; height: 70px; }
.news-date { position: absolute; top: 16px; right: 16px; background: #fff; border-radius: 12px; padding: 8px 12px; text-align: center; box-shadow: var(--shadow-sm); }
html[dir="rtl"] .news-date { right: auto; left: 16px; }
.news-date .d { font-size: 1.3rem; font-weight: 900; color: var(--navy-800); line-height: 1; }
.news-date .m { font-size: .72rem; color: var(--muted); }
.news-body { padding: 24px; }
.news-cat { color: var(--gold-600); font-weight: 800; font-size: .8rem; letter-spacing: 1px; text-transform: uppercase; }
.news-body h3 { font-size: 1.2rem; margin: 8px 0 10px; }
.news-body p { color: var(--muted); font-size: .95rem; margin-bottom: 14px; }
.news-more { color: var(--navy-800); font-weight: 800; display: inline-flex; align-items: center; gap: 8px; transition: gap .3s; }
.news-card:hover .news-more { gap: 14px; color: var(--gold-600); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; grid-auto-rows: 220px; }
.gitem { border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: pointer; display: grid; place-items: center; color: rgba(255,255,255,.9); }
.gitem.tall { grid-row: span 2; }
.gitem.wide { grid-column: span 2; }
.gitem .g-label { position: absolute; inset: auto 0 0 0; padding: 20px; background: linear-gradient(transparent, rgba(10,31,56,.85)); font-weight: 800; transform: translateY(10px); opacity: 0; transition: .4s var(--ease); }
.gitem:hover .g-label { transform: translateY(0); opacity: 1; }
.gitem .g-ic { transition: .4s var(--ease); }
.gitem:hover .g-ic { transform: scale(1.15); }

/* ---------- Contact ---------- */
.contact-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 46px; align-items: stretch; }
.contact-info { background: var(--bg-navy-grad); color: #fff; border-radius: var(--radius); padding: 40px; position: relative; overflow: hidden; }
.contact-info::after { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; background: rgba(212,165,58,.18); bottom: -100px; left: -60px; filter: blur(30px); }
.contact-info h3 { color: #fff; font-size: 1.6rem; margin-bottom: 10px; }
.contact-info > p { color: rgba(255,255,255,.78); margin-bottom: 30px; }
.ci-item { display: flex; gap: 16px; margin-bottom: 24px; position: relative; z-index: 1; }
.ci-item .ci-ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.12); display: grid; place-items: center; color: var(--gold-400); flex: none; }
.ci-item b { display: block; font-size: .82rem; color: rgba(255,255,255,.6); font-weight: 600; }
.ci-item span { font-weight: 700; }
.contact-social { display: flex; gap: 12px; margin-top: 30px; position: relative; z-index: 1; }
.contact-social a { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.12); display: grid; place-items: center; transition: .3s; }
.contact-social a:hover { background: var(--gold-500); color: var(--navy-900); transform: translateY(-4px); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 700; margin-bottom: 8px; font-size: .92rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 1rem; transition: .3s; background: #fff; color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(212,165,58,.14); }
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { display: none; margin-top: 16px; padding: 14px 18px; border-radius: 12px; background: rgba(30,150,80,.1); color: #1c7a44; font-weight: 700; }
.form-note.show { display: block; animation: drawerIn .4s var(--ease) forwards; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--bg-navy-grad); color: #fff; padding: 160px 0 90px; position: relative; overflow: hidden; text-align: center;
}
.page-hero::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0); background-size: 32px 32px; }
.page-hero .hero-orb { opacity: .35; }
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.4rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.8); max-width: 640px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb { display: inline-flex; gap: 8px; align-items: center; margin-top: 20px; font-size: .9rem; color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--gold-400); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--bg-navy-grad); color: #fff; border-radius: 28px; padding: 60px; text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: rgba(212,165,58,.2); top: -140px; right: -80px; filter: blur(40px); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.6rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 560px; margin: 0 auto 28px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-900); color: rgba(255,255,255,.72); padding: 70px 0 0; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer .brand-logo { height: 54px; }
.footer p { margin: 18px 0; font-size: .96rem; max-width: 320px; }
.footer h5 { color: #fff; font-size: 1.05rem; margin-bottom: 20px; font-weight: 800; }
.footer-links a { display: block; padding: 7px 0; transition: .25s; }
.footer-links a:hover { color: var(--gold-400); padding-inline-start: 8px; }
.footer .ci-item { margin-bottom: 16px; }
.footer .ci-item .ci-ic { background: rgba(255,255,255,.07); }
.footer .ci-item span { color: #fff; font-weight: 600; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: .3s; }
.footer-social a:hover { background: var(--gold-500); color: var(--navy-900); transform: translateY(-4px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .9rem; }
.footer-bottom a:hover { color: var(--gold-400); }

/* ============================================================
   ANIMATIONS (scroll reveal)
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(40px); }
[data-reveal="right"] { transform: translateX(-40px); }
[data-reveal="zoom"] { transform: scale(.9); }
[data-reveal].in { transform: none; }
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }
[data-delay="5"] { transition-delay: .5s; }

/* uploaded images */
.card-photo { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 18px; display: block; }
.brand-card.has-img { background-size: cover; background-position: center; }
.brand-card.has-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,31,56,.30), rgba(10,31,56,.9)); z-index: 0; }
.news-thumb.has-img { background-size: cover !important; background-position: center; }
.news-thumb.has-img > svg, .news-thumb.has-img > span[data-icon] { display: none; }
.gitem.has-img { background-size: cover; background-position: center; }
.gitem.has-img .g-ic { display: none; }

/* marquee */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: scrollX 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scrollX { to { transform: translateX(-50%); } }
.marquee-item { font-size: 1.4rem; font-weight: 900; color: var(--muted); opacity: .7; white-space: nowrap; }

/* language switcher */
.lang-switch { position: relative; }
.lang-current { display: inline-flex; align-items: center; gap: 6px; background: rgba(0,0,0,.05); border: 1px solid var(--line); color: var(--navy-800); padding: 9px 13px; border-radius: 50px; font-family: inherit; font-weight: 800; font-size: .82rem; cursor: pointer; }
.nav.on-dark:not(.scrolled) .lang-current { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.28); color: #fff; }
.lang-menu { position: absolute; top: calc(100% + 8px); inset-inline-end: 0; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-md); padding: 6px; min-width: 140px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .25s var(--ease); z-index: 30; }
.lang-switch:hover .lang-menu, .lang-switch:focus-within .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-menu a { display: block; padding: 9px 12px; border-radius: 8px; font-weight: 700; font-size: .9rem; color: var(--navy-800); }
.lang-menu a:hover { background: var(--bg-soft); }
.lang-menu a.on { background: var(--gold-500); color: var(--navy-900); }
.drawer-langs { display: flex; gap: 10px; margin-top: 26px; }
.drawer-langs a { color: #fff; border: 1px solid rgba(255,255,255,.3); padding: 8px 16px; border-radius: 50px; font-weight: 800; font-size: .95rem; }
.drawer-langs a.on { background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500); }
@media (max-width: 1220px) { .lang-switch { display: none; } }

/* back to top */
.to-top { position: fixed; bottom: 26px; left: 26px; width: 48px; height: 48px; border-radius: 14px; background: var(--navy-800); color: #fff; display: grid; place-items: center; cursor: pointer; opacity: 0; transform: translateY(20px); transition: .35s var(--ease); z-index: 900; box-shadow: var(--shadow-md); }
.to-top.show { opacity: 1; transform: none; }
.to-top:hover { background: var(--gold-500); color: var(--navy-900); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner, .split, .contact-wrap { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 70px 0; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4, .form-row, .gallery-grid, .footer-grid { grid-template-columns: 1fr; }
  .gitem.wide { grid-column: span 1; }
  .hero-stats { gap: 22px; }
  .cta-band, .contact-info, .form-card { padding: 32px 24px; }
  .container { padding: 0 18px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
