﻿/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:       #003764;
  --navy-dark:  #002448;
  --navy-mid:   #004d8c;
  --blue:       #0066a1;
  --blue-lt:    #0082c8;
  --accent:     #00a0dc;
  --warm:       #e8830a;
  --white:      #ffffff;
  --off-white:  #f7f9fc;
  --gray-50:    #f3f6f9;
  --gray-100:   #e8ecf1;
  --gray-200:   #cdd5df;
  --gray-400:   #8a9ab5;
  --text:       #1a2840;
  --text-muted: #5c6e82;
  --border:     #dde3ec;
  --success:    #0a8a5c;
  --shadow-sm:  0 1px 4px rgba(0,55,100,.08);
  --shadow:     0 4px 20px rgba(0,55,100,.12);
  --shadow-lg:  0 12px 48px rgba(0,55,100,.16);
  --shadow-xl:  0 24px 80px rgba(0,55,100,.2);
  --r:          3px;
  --r-md:       6px;
  --r-lg:       12px;
  --ease:       0.22s ease;

  /* Typography scale  fixed hierarchy */
  --fs-hero:   clamp(48px, 6.5vw, 84px);
  --fs-h1:     clamp(36px, 5vw, 60px);
  --fs-h2:     clamp(26px, 3.5vw, 44px);
  --fs-h3:     clamp(20px, 2.5vw, 28px);
  --fs-h4:     18px;
  --fs-body-lg: 18px;
  --fs-body:   16px;
  --fs-sm:     14px;
  --fs-xs:     12px;
  --fs-label:  11px;

  --font-en: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
  --font-ar: 'Tajawal', 'Segoe UI', Arial, sans-serif;
  --topbar-h: 38px;
  --nav-h:    72px;
}

.fg select {
  background-image: none !important;
}

/* Hide any inline decorative icons across the site */

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-en); font-size: var(--fs-body); color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; }
html[lang="ar"] body { font-family: var(--font-ar); }
img { max-width: 100%; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Language ───────────────────────────────────────────────── */
.ar { display: none !important; }
.en { display: inline !important; }
html[lang="ar"] .ar { display: inline !important; }
html[lang="ar"] .en { display: none !important; }
.ar.blk { display: none !important; }
.en.blk { display: block !important; }
html[lang="ar"] .ar.blk { display: block !important; }
html[lang="ar"] .en.blk { display: none !important; }
.ar.flx { display: none !important; }
html[lang="ar"] .ar.flx { display: flex !important; }
html[lang="ar"] .en.flx { display: none !important; }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1220px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }

/* ── Typography (strict hierarchy) ─────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 35px; font-weight: 1000;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.eyebrow.on-dark { color: #6fd4f5; }
.eyebrow.on-dark { content:''; width:24px; height:2px; background:currentColor; border-radius:2px; }

h1, .h1 { font-size: var(--fs-h1); font-weight: 800; line-height: 1.1; letter-spacing: -.01em; color: var(--navy); }
h2, .h2 { font-size: var(--fs-h2); font-weight: 700; line-height: 1.2; letter-spacing: -.005em; color: var(--navy); }
h3, .h3 { font-size: var(--fs-h3); font-weight: 700; line-height: 1.28; color: var(--navy); }
h4, .h4 { font-size: var(--fs-h4); font-weight: 700; line-height: 1.4; color: var(--navy); }
.lead { font-size: var(--fs-body-lg); color: var(--text-muted); line-height: 1.72; }
p { font-size: var(--fs-body); color: var(--text-muted); line-height: 1.75; }

.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--white); }
.on-dark .lead, .on-dark p { color: rgba(255,255,255,.75); }
.on-dark .eyebrow { color: #6fd4f5; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn { display:inline-flex; align-items:center; gap:9px; padding:13px 28px; font-size:var(--fs-sm); font-weight:700; border-radius:var(--r); transition:all var(--ease); cursor:pointer; white-space:nowrap; }
.btn svg { width:16px; height:16px; flex-shrink:0; }
.btn-primary { background:var(--navy); color:var(--white); }
.btn-primary:hover { background:var(--navy-dark); transform:translateY(-1px); box-shadow:var(--shadow); }
.btn-outline { border:2px solid var(--navy); color:var(--navy); }
.btn-outline:hover { background:var(--navy); color:var(--white); }
.btn-white { background:var(--white); color:var(--navy); }
.btn-white:hover { background:var(--off-white); transform:translateY(-1px); }
.btn-ghost { border:1.5px solid rgba(255,255,255,.5); color:var(--white); }
.btn-ghost:hover { background:rgba(255,255,255,.12); border-color:var(--white); }
.btn-accent { background:var(--warm); color:var(--white); }
.btn-accent:hover { background:#cc6f00; transform:translateY(-1px); box-shadow:var(--shadow); }
.btn-sm { padding:9px 20px; font-size:var(--fs-xs); }
.btn-lg { padding:16px 36px; font-size:var(--fs-body); }

/* ── Topbar ─────────────────────────────────────────────────── */
#topbar { height:var(--topbar-h); background:var(--navy-dark); border-bottom:1px solid rgba(255,255,255,.08); position:relative; z-index:1001; }
.topbar-inner { max-width:1220px; margin:0 auto; padding:0 32px; height:100%; display:flex; align-items:center; justify-content:space-between; }
.topbar-links { display:flex; align-items:center; gap:20px; }
.topbar-links a, .topbar-sep { font-size:var(--fs-xs); color:rgba(255,255,255,.6); transition:color var(--ease); }
.topbar-links a:hover { color:var(--white); }
.topbar-right { display:flex; align-items:center; gap:14px; }
.lang-toggle { display:flex; align-items:center; gap:6px; padding:4px 13px; border:1px solid rgba(255,255,255,.28); border-radius:20px; color:rgba(255,255,255,.8); font-size:var(--fs-label); font-weight:700; letter-spacing:.08em; transition:all var(--ease); }
.lang-toggle:hover { border-color:var(--white); color:var(--white); }
.lang-toggle svg { width:13px; height:13px; }

/* ── Navbar ─────────────────────────────────────────────────── */
#navbar { height:var(--nav-h); background:var(--white); border-bottom:1px solid var(--border); position:sticky; top:0; z-index:1000; transition:box-shadow var(--ease); }
#navbar.scrolled { box-shadow:var(--shadow); }
.nav-inner { max-width:1220px; margin:0 auto; padding:0 32px; height:100%; display:flex; align-items:center; }
.logo-wrap { display:flex; align-items:center; gap:12px; margin-inline-end:44px; flex-shrink:0; }
.logo-img { height:44px; width:auto; }
.logo-div { width:1px; height:36px; background:var(--border); }
.logo-text { font-size:11px; font-weight:700; color:var(--navy); line-height:1.4; max-width:110px; }

.nav-menu { display:flex; align-items:center; height:100%; flex:1; }
.nav-item { position:relative; height:100%; display:flex; align-items:center; }
.nav-link { display:flex; align-items:center; gap:5px; height:100%; padding:0 17px; font-size:14.5px; font-weight:600; color:var(--text); border-bottom:3px solid transparent; transition:color var(--ease), border-color var(--ease); white-space:nowrap; }
.nav-link:hover, .nav-item.active .nav-link { color:var(--navy); border-bottom-color:var(--navy); }
.nav-link svg { width:13px; height:13px; transition:transform var(--ease); }
.nav-item:hover .nav-link svg { transform:rotate(180deg); }

/* Mega dropdown */
.nav-drop { position:absolute; top:100%; inset-inline-start:0; background:var(--white); border:1px solid var(--border); border-top:3px solid var(--navy); box-shadow:var(--shadow-lg); border-radius:0 0 var(--r-md) var(--r-md); opacity:0; visibility:hidden; transform:translateY(8px); transition:all var(--ease); z-index:100; min-width:220px; }
.nav-drop.wide { display:grid; grid-template-columns:repeat(3,1fr); min-width:660px; padding:28px 32px 24px; }
.nav-item:hover .nav-drop { opacity:1; visibility:visible; transform:translateY(0); }
.nav-drop:not(.wide) a { display:block; padding:11px 20px; font-size:var(--fs-sm); color:var(--text); border-bottom:1px solid var(--gray-50); transition:background var(--ease), color var(--ease); }
.nav-drop:not(.wide) a:hover { background:var(--off-white); color:var(--navy); }
.drop-col h5 { font-size:10px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:var(--navy); margin-bottom:12px; padding-bottom:8px; border-bottom:1px solid var(--border); }
.drop-col a { display:flex; align-items:center; gap:7px; padding:7px 0; font-size:13px; color:var(--text); transition:color var(--ease); }
.drop-col a:hover { color:var(--navy); }
.drop-col a::before { content:''; width:5px; height:5px; border-radius:50%; background:var(--accent); flex-shrink:0; opacity:0; transition:opacity var(--ease); }
.drop-col a:hover::before { opacity:1; }

.nav-actions { display:flex; align-items:center; gap:10px; margin-inline-start:auto; }
.hamburger { display:none; flex-direction:column; gap:5px; padding:8px; }
.hamburger span { width:22px; height:2px; background:var(--navy); border-radius:2px; transition:all var(--ease); }

/* Page indicator bar */
.page-bar { background:var(--gray-50); border-bottom:1px solid var(--border); }
.page-bar-inner { max-width:1220px; margin:0 auto; padding:0 32px; display:flex; align-items:center; overflow-x:auto; }
.page-bar-inner a { font-size:12.5px; color:var(--text-muted); padding:0 16px; height:38px; display:flex; align-items:center; border-bottom:2px solid transparent; white-space:nowrap; transition:all var(--ease); }
.page-bar-inner a:hover, .page-bar-inner a.active { color:var(--navy); border-bottom-color:var(--navy); }

/* ── Mobile Nav ─────────────────────────────────────────────── */
#mob-nav { position:fixed; inset:0; background:var(--navy-dark); z-index:9999; display:flex; flex-direction:column; transform:translateX(-100%); transition:transform .3s ease; }
html[lang="ar"] #mob-nav { transform:translateX(100%); }
#mob-nav.open { transform:translateX(0) !important; }
.mob-head { display:flex; align-items:center; justify-content:space-between; padding:16px 24px; border-bottom:1px solid rgba(255,255,255,.1); }
.mob-logo { height:36px; filter:brightness(0) invert(1); }
.mob-x { width:36px; height:36px; display:flex; align-items:center; justify-content:center; color:var(--white); font-size:22px; }
.mob-links { flex:1; overflow-y:auto; padding:8px 0; }
.mob-links a { display:flex; align-items:center; padding:14px 24px; color:rgba(255,255,255,.82); font-size:16px; font-weight:600; border-bottom:1px solid rgba(255,255,255,.05); transition:all var(--ease); }
.mob-links a:hover { color:var(--white); background:rgba(255,255,255,.06); }
.mob-foot { padding:20px 24px; border-top:1px solid rgba(255,255,255,.1); display:flex; flex-direction:column; gap:10px; }

/* ── Page Hero ──────────────────────────────────────────────── */
.page-hero { position:relative; min-height:480px; display:flex; align-items:flex-start; justify-content:flex-start; background:var(--navy-dark); overflow:hidden; }
html[lang="ar"] .page-hero { justify-content:flex-end; }
.page-hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; filter:contrast(1.3) brightness(1.1); }
.page-hero-overlay { position:absolute; inset:0; background:linear-gradient(108deg, rgba(0,36,72,.94) 0%, rgba(0,55,100,.78) 55%, rgba(0,102,161,.20) 100%); }
.page-hero > .container { max-width:100%; width:100%; padding:0; display:flex; justify-content:flex-start; }
html[lang="ar"] .page-hero > .container { justify-content:flex-start; }
.page-hero-content { position:relative; z-index:2; padding:80px 40px; max-width:1200px; width:auto; margin:0; text-align:left; flex:0 0 auto; margin-left:0; margin-right:auto; }
html[lang="ar"] .page-hero-content { text-align:right; margin-left:auto; margin-right:0; }
html[lang="en"] .page-hero-content { text-align:left; margin-left:0; margin-right:auto; }
.page-hero-content .hero-tag { display:inline-flex; align-items:center; gap:8px; background:rgba(0,160,220,.18); border:1px solid rgba(0,160,220,.35); padding:6px 14px; border-radius:20px; font-size:var(--fs-label); font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:#70d0f5; margin-bottom:22px; }
.page-hero-content h1 .ar, .page-hero-content .hero-sub .ar { display:block; direction:rtl; }
.page-hero-content h1 .en, .page-hero-content .hero-sub .en { display:block; direction:ltr; }
.page-hero-content .hero-tag .dot { width:6px; height:6px; border-radius:50%; background:var(--accent); }
.page-hero-content h1 { font-size: var(--fs-hero); font-weight: 1000; color: var(--white); line-height: 1.1; letter-spacing: -.02em; margin-bottom: 20px; max-width: 1000px; width: 100%; text-shadow: 0 0 15px rgba(0, 160, 220, 0.6), 0 0 30px rgba(0, 160, 220, 0.3); }
.page-hero-content h1 .hero-lang { display:inline; }
.page-hero-content h1 .hero-company { font-size:inherit; display:inline; }
.page-hero-content h1 .hero-lang { font-size: 1.2em; }
.page-hero-content h1 .hero-company { font-size: 0.6em; margin-inline-start: 0.4em; } 
.page-hero-content h1 .accent { color: #00a0dc; text-shadow: 0 0 15px rgba(0, 0, 0, 0.7), 0 0 30px rgba(14, 65, 83, 0.973); }
.page-hero-content .hero-sub { font-size:clamp(18px, 2.2vw, 24px); color:#ffffff; line-height:1.55; margin-bottom:36px; max-width:600px; font-weight:400; text-shadow: 0 0 10px rgb(0, 0, 0), 0 0 5px rgba(131, 5, 5, 0.986); }
.page-hero-content .hero-actions { display:flex; gap:12px; flex-wrap:wrap; }

/* Breadcrumb */
.breadcrumb { display:flex; align-items:center; gap:8px; margin-bottom:20px; font-size:var(--fs-xs); color:rgba(255,255,255,.5); flex-wrap:wrap; }
.breadcrumb a { color:rgba(255,255,255,.5); transition:color var(--ease); }
.breadcrumb a:hover { color:var(--white); }
.breadcrumb svg { width:10px; height:10px; flex-shrink:0; }

/* ── Hero KPI Strip ─────────────────────────────────────────── */
.kpi-strip { background:var(--navy); }
.kpi-strip-inner { display:flex; max-width:1220px; margin:0 auto; }
.kpi-box { flex:1; padding:36px 32px; text-align:center; border-inline-end:1px solid rgba(255,255,255,.1); }
.kpi-box:last-child { border-inline-end:none; }
.kpi-num { font-size:clamp(36px, 5vw, 56px); font-weight:800; color:var(--white); line-height:1; margin-bottom:8px; }
.kpi-num sup { font-size:.4em; vertical-align:super; }
.kpi-lbl { font-size:var(--fs-xs); font-weight:600; color:rgba(255,255,255,.58); letter-spacing:.04em; }

/* ── Ticker Band ────────────────────────────────────────────── */
.ticker { background:var(--navy); overflow:hidden; height:46px; display:flex; align-items:center; border-top:1px solid rgba(255,255,255,.1); }
.ticker-track { display:flex; animation:ticker 34s linear infinite; white-space:nowrap; }
.ticker-item { display:inline-flex; align-items:center; gap:8px; padding:0 32px; font-size:12.5px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:rgba(255,255,255,.75); border-inline-end:1px solid rgba(255,255,255,.12); }
.ticker-item svg { width:14px; height:14px; color:var(--accent); flex-shrink:0; }
@keyframes ticker { from { transform:translateX(0); } to { transform:translateX(-50%); } }
html[lang="ar"] .ticker-track { animation-direction:reverse; }

/* ── Section Headers ────────────────────────────────────────── */
.section-header { margin-bottom:56px; }
.section-header.centered { text-align:center; }
.section-header.centered .lead { max-width:640px; margin:12px auto 0; }
.section-header .lead { max-width:640px; margin-top:12px; }

/* ── Cards ──────────────────────────────────────────────────── */
.card { background:var(--white); border:1px solid var(--border); border-radius:var(--r-md); overflow:hidden; transition:all var(--ease); }
.card:hover { box-shadow:var(--shadow-lg); transform:translateY(-3px); }
.card-img { height:200px; position:relative; overflow:hidden; }
.card-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.card:hover .card-img img { transform:scale(1.04); }
.card-body { padding:24px; }
.card-body h3 { margin-bottom:10px; font-size:var(--fs-h4); }
.card-body p { font-size:var(--fs-sm); line-height:1.65; margin-bottom:16px; }
.card-tag { display:inline-block; padding:3px 11px; background:rgba(0,160,220,.12); border:1px solid rgba(0,160,220,.28); border-radius:20px; font-size:10.5px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--blue); margin-bottom:12px; }
.card-link { display:inline-flex; align-items:center; gap:6px; font-size:var(--fs-sm); font-weight:700; color:var(--blue); transition:gap var(--ease); }
.card-link:hover { gap:10px; }
.card-link svg { width:14px; height:14px; }

/* Grid helpers */
.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }

/* ── Feature Row (image + text) why GTC ─────────────────────────────── */
.feature-row { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.feature-row.reverse { direction:rtl; }
.feature-row.reverse > * { direction:ltr; }
html[lang="ar"] .feature-row.reverse { direction:ltr; }
html[lang="ar"] .feature-row.reverse > * { direction:rtl; }
.feature-visual { border-radius:var(--r-lg); overflow:hidden; position:relative; }
.feature-visual img { width:100%; height:460px; object-fit:cover; border-radius:var(--r-lg); }
.feature-badge { position:absolute; bottom:24px; inset-inline-end:24px; background:var(--white); border-radius:var(--r-md); padding:18px 22px; box-shadow:var(--shadow-lg); }
.badge-big { font-size:32px; font-weight:800; color:var(--navy); line-height:1; }
.badge-big sup { font-size:14px; }
.badge-lbl { font-size:11px; color:var(--text-muted); margin-top:4px; }
.feature-content h2 { font-size: clamp(24px, 4vw, 30px); margin-bottom: 16px; }
.feature-content p { margin-bottom:18px; }
.feature-list { margin:24px 0; display:flex; flex-direction:column; gap:12px; }
.feature-list-item { display:flex; gap:12px; align-items:flex-start; }
.check-icon { width:22px; height:22px; border-radius:50%; background:rgba(0,160,220,.12); display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px; }
.check-icon svg { width:12px; height:12px; color:var(--accent); }
.feature-list-item p { margin:0; font-size:var(--fs-sm); font-weight:500; color:var(--text); }

/* ── Service Tabs ───────────────────────────────────────────── */
.tabs-layout { display:grid; grid-template-columns:280px 1fr; gap:48px; align-items:start; }
.tab-btn { display:flex; gap:14px; padding:16px 18px; border-radius:var(--r-md); cursor:pointer; transition:all var(--ease); border:1.5px solid transparent; margin-bottom:6px; }
.tab-btn:hover { background:var(--gray-50); border-color:var(--border); }
.tab-btn.active { background:var(--navy); border-color:var(--navy); box-shadow:var(--shadow); }
.tab-ico { width:42px; height:42px; border-radius:var(--r); background:rgba(0,160,220,.1); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.tab-btn.active .tab-ico { background:rgba(255,255,255,.15); }
.tab-ico svg { width:20px; height:20px; color:var(--accent); }
.tab-btn.active .tab-ico svg { color:var(--white); }
.tab-label { font-size:14px; font-weight:700; color:var(--text); margin-bottom:3px; }
.tab-btn.active .tab-label { color:var(--white); }
.tab-sub { font-size:12px; color:var(--text-muted); }
.tab-btn.active .tab-sub { color:rgba(255,255,255,.65); }
.tab-panel { display:none; }
.tab-panel.active { display:block; animation:panelIn .3s ease; }
@keyframes panelIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:none; } }
.panel-card { background:var(--gray-50); border:1px solid var(--border); border-radius:var(--r-lg); overflow:hidden; }
.panel-hero-img { height:260px; position:relative; }
.panel-hero-img img { width:100%; height:100%; object-fit:cover; }
.panel-hero-overlay { position:absolute; inset:0; background:linear-gradient(to top, rgba(0,24,48,.75) 0%, transparent 55%); }
.panel-hero-text { position:absolute; bottom:28px; inset-inline-start:32px; }
.panel-hero-text h3 { font-size:var(--fs-h3); font-weight:700; color:var(--white); margin-bottom:6px; }
.panel-hero-text p { font-size:var(--fs-sm); color:rgba(255,255,255,.78); max-width:400px; }
.panel-body { padding:28px 32px; }
.panel-features { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:24px; }
.pf { display:flex; gap:10px; padding:13px; background:var(--white); border-radius:var(--r); border:1px solid var(--border); }
.pf-dot { width:8px; height:8px; border-radius:50%; background:var(--accent); flex-shrink:0; margin-top:5px; }
.pf-text { font-size:var(--fs-sm); color:var(--text); font-weight:500; line-height:1.5; }
.panel-cta { display:flex; gap:12px; flex-wrap:wrap; }

/* ── Why Cards ──────────────────────────────────────────────── */
.diff-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.diff-card { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); border-radius:var(--r-md); padding:28px; transition:all var(--ease); position:relative; overflow:hidden; }
.diff-card::after { content:''; position:absolute; top:0; inset-inline-start:0; width:3px; height:100%; background:var(--accent); opacity:0; transition:opacity var(--ease); }
.diff-card:hover { background:rgba(255,255,255,.09); border-color:rgba(255,255,255,.18); }
.diff-card:hover::after { opacity:1; }
.diff-card .num { font-size:30px; font-weight:800; letter-spacing:.12em; color:var(--accent); display:block; margin-bottom:10px; }
.diff-card h3 { font-size:16px; font-weight:700; color:var(--white); margin-bottom:10px; }
.diff-card p { font-size:var(--fs-sm); color:rgba(255,255,255,.62); line-height:1.68; margin-bottom:14px; }
.diff-pill { display:inline-block; padding:3px 11px; background:rgba(0,160,220,.2); border:1px solid rgba(0,160,220,.32); border-radius:20px; font-size:10.5px; font-weight:700; color:var(--accent); }

/* ── Comparison Table ───────────────────────────────────────── */
.cmp-wrap { overflow-x:auto; border-radius:var(--r-lg); border:1px solid rgba(255,255,255,.09); }
.cmp-table { width:100%; border-collapse:collapse; background:rgba(0,0,0,.2); min-width:560px; }
.cmp-table th { padding:14px 22px; font-size:30px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; border-bottom:2px solid rgba(255,255,255,.1); }
.cmp-table th:nth-child(2) { background:rgba(0,160,220,.12); color:var(--accent); }
.cmp-table th:nth-child(1) { color:rgba(255,255,255,.45); text-align:start; }
.cmp-table th:nth-child(3) { color:rgba(255,255,255,.38); }
.cmp-table td { padding:13px 22px; font-size:var(--fs-sm); border-bottom:1px solid rgba(255,255,255,.05); color:rgba(255,255,255,.68); }
.cmp-table td:nth-child(2) { background:rgba(0,160,220,.07); font-weight:600; color:var(--white); }
.cmp-table td:first-child { color:rgba(255,255,255,.52); font-weight:500; }
.cmp-table tr:last-child td { border-bottom:none; }
.chk { color:#4ade80; } .crs { color:rgba(255,80,80,.7); } .prt { color:#fbbf24; }

/* ── Process Steps ──────────────────────────────────────────── */
.steps { display:grid; grid-template-columns:repeat(5,1fr); gap:0; position:relative; margin-top:64px; }
.steps::before { content:''; position:absolute; top:28px; inset-inline-start:9%; inset-inline-end:9%; height:2px; background:linear-gradient(90deg, var(--border), var(--accent), var(--border)); }
.step { text-align:center; padding:0 16px; }
.step-circle { width:58px; height:58px; border-radius:50%; background:var(--navy); color:var(--white); font-size:20px; font-weight:800; display:flex; align-items:center; justify-content:center; margin:0 auto 20px; position:relative; z-index:2; box-shadow:0 0 0 6px var(--white), 0 0 0 7px var(--border); }
.step h4 { font-size:14px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.step p { font-size:12.5px; color:var(--white); line-height:1.6; text-shadow:0 0 5px rgba(255, 187, 0, 0.712); }

/* ── Industry Cards ─────────────────────────────────────────── */
.ind-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.ind-card { background:var(--white); border:1px solid var(--border); border-radius:var(--r-md); padding:28px 22px; text-align:center; transition:all var(--ease); }
.ind-card:hover { border-color:var(--blue-lt); box-shadow:var(--shadow); transform:translateY(-3px); }
.ind-ico { width:60px; height:60px; border-radius:50%; background:linear-gradient(135deg, rgba(0,102,161,.1), rgba(0,160,220,.15)); display:flex; align-items:center; justify-content:center; margin:0 auto 18px; }
.ind-ico svg { width:28px; height:28px; color:var(--blue); }
.ind-card h4 { font-size:15px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.ind-card p { font-size:var(--fs-xs); color:var(--text-muted); line-height:1.6; margin-bottom:14px; }
.ind-list { text-align:start; font-size:12px; color:var(--text-muted); }
.ind-list li { padding:4px 0; border-bottom:1px solid var(--gray-100); display:flex; align-items:center; gap:6px; }
.ind-list li::before { content:'→'; color:var(--accent); font-size:10px; }

/* ── Project Cards ──────────────────────────────────────────── */
.proj-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.proj-card { background:var(--white); border:1px solid var(--border); border-radius:var(--r-md); overflow:hidden; transition:all var(--ease); }
.proj-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.proj-img { height:200px; position:relative; overflow:hidden; }
.proj-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.proj-card:hover .proj-img img { transform:scale(1.05); }
.proj-cat-tag { position:absolute; bottom:14px; inset-inline-start:14px; background:var(--warm); color:var(--white); font-size:10px; font-weight:700; letter-spacing:.07em; text-transform:uppercase; padding:4px 11px; border-radius:20px; }
.proj-body { padding:22px; }
.proj-body h4 { font-size:15px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.proj-body p { font-size:var(--fs-sm); color:var(--text-muted); line-height:1.6; margin-bottom:14px; }
.proj-meta { display:flex; gap:14px; font-size:var(--fs-xs); color:var(--text-muted); }
.proj-meta span { display:flex; align-items:center; gap:5px; }
.proj-meta svg { width:13px; height:13px; }
.proj-filter { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:32px; }
.filter-btn { padding:7px 19px; border:1.5px solid var(--border); border-radius:20px; font-size:var(--fs-sm); font-weight:600; color:var(--text-muted); background:var(--white); transition:all var(--ease); }
.filter-btn.active, .filter-btn:hover { border-color:var(--navy); background:var(--navy); color:var(--white); }

/* ── Insights / Newsroom ────────────────────────────────────── */
.news-featured { display:grid; grid-template-columns:1.4fr 1fr; gap:0; border-radius:var(--r-lg); overflow:hidden; border:1px solid var(--border); margin-bottom:48px; }
.news-feat-img { height:400px; position:relative; }
.news-feat-img img { width:100%; height:100%; object-fit:cover; }
.news-feat-body { padding:40px; background:var(--white); display:flex; flex-direction:column; justify-content:center; }
.news-feat-body .card-tag { margin-bottom:12px; }
.news-feat-body h2 { font-size:clamp(22px, 3vw, 34px); font-weight:700; color:var(--navy); margin-bottom:14px; line-height:1.3; }
.news-feat-body .date { font-size:var(--fs-xs); color:var(--text-muted); margin-bottom:16px; display:flex; align-items:center; gap:6px; }
.news-feat-body p { font-size:15px; color:var(--text-muted); line-height:1.7; margin-bottom:24px; }
.news-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.news-card { background:var(--white); border:1px solid var(--border); border-radius:var(--r-md); overflow:hidden; transition:all var(--ease); }
.news-card:hover { box-shadow:var(--shadow); transform:translateY(-2px); }
.news-card-img { height:180px; overflow:hidden; }
.news-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.news-card:hover .news-card-img img { transform:scale(1.04); }
.news-card-body { padding:20px; }
.news-card-body .card-tag { margin-bottom:8px; }
.news-card-body h4 { font-size:15px; font-weight:700; color:var(--navy); margin-bottom:8px; line-height:1.4; }
.news-card-body p { font-size:var(--fs-sm); color:var(--text-muted); line-height:1.65; margin-bottom:14px; }
.news-card-body .date { font-size:var(--fs-xs); color:var(--gray-400); }

/* ── Testimonials ───────────────────────────────────────────── */
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.testi-card { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); border-radius:var(--r-md); padding:28px; }
.testi-quote { font-size:32px; color:var(--accent); line-height:1; margin-bottom:12px; }
.testi-text { font-size:15px; color:rgba(255,255,255,.78); line-height:1.7; margin-bottom:20px; font-style:italic; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar { width:44px; height:44px; border-radius:50%; background:rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; font-size:18px; font-weight:700; color:var(--white); flex-shrink:0; }
.testi-name { font-size:13.5px; font-weight:700; color:var(--white); }
.testi-role { font-size:var(--fs-xs); color:rgba(255,255,255,.5); }

/* ── Timeline ───────────────────────────────────────────────── */
.timeline { position:relative; padding-inline-start:24px; }
.timeline::before { content:''; position:absolute; top:0; bottom:0; inset-inline-start:18px; width:2px; background:linear-gradient(to bottom, var(--accent), var(--navy)); }
.tl-item { display:flex; gap:22px; padding-bottom:32px; }
.tl-dot { width:38px; height:38px; border-radius:50%; background:var(--white); border:2.5px solid var(--accent); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:10px; font-weight:800; color:var(--navy); z-index:1; }
.tl-content h4 { font-size:15px; font-weight:700; color:var(--navy); margin-bottom:6px; }
.tl-content p { font-size:var(--fs-sm); color:var(--text-muted); line-height:1.65; }

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner { background:linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%); padding:80px 0; text-align:center; position:relative; overflow:hidden; }
.cta-banner::before { content:''; position:absolute; top:-50%; right:-10%; width:600px; height:600px; border-radius:50%; background:radial-gradient(ellipse, rgba(0,160,220,.12) 0%, transparent 70%); }
.cta-banner h2 { font-size:clamp(28px, 4vw, 48px); font-weight:800; color:var(--white); margin-bottom:14px; position:relative; }
.cta-banner p { font-size:var(--fs-body-lg); color:rgba(255,255,255,.72); margin-bottom:36px; max-width:580px; margin-inline:auto; position:relative; }
.cta-banner .cta-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; position:relative; }

/* ── Contact ────────────────────────────────────────────────── */
.contact-layout { display:grid; grid-template-columns:360px 1fr; gap:56px; }
.contact-info h3 { font-size:var(--fs-h3); margin-bottom:8px; }
.contact-info .lead { margin-bottom:32px; }
.cdetail { display:flex; gap:14px; padding:16px 0; border-bottom:1px solid var(--border); }
.cdetail:first-of-type { border-top:1px solid var(--border); }
.cdetail-ico { width:40px; height:40px; border-radius:var(--r); background:rgba(0,102,161,.08); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.cdetail-ico svg { width:18px; height:18px; color:var(--blue); }
.cdetail-label { font-size:10.5px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--text-muted); margin-bottom:3px; }
.cdetail-val { font-size:14.5px; font-weight:600; color:var(--text); }
.cdetail-val a { color:var(--blue); transition:color var(--ease); }
.cdetail-val a:hover { color:var(--navy); }
.socials { display:flex; gap:8px; margin-top:22px; }
.soc { width:38px; height:38px; border-radius:var(--r); border:1.5px solid var(--border); display:flex; align-items:center; justify-content:center; transition:all var(--ease); }
.soc:hover { border-color:var(--navy); background:var(--navy); }
.soc svg { width:16px; height:16px; color:var(--text-muted); }
.soc:hover svg { color:var(--white); }
.contact-form-box { background:var(--gray-50); border:1px solid var(--border); border-radius:var(--r-lg); padding:40px; }
.form-title { font-size:20px; font-weight:700; color:var(--navy); margin-bottom:28px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.fg { margin-bottom:16px; }
.fg label { display:block; font-size:12px; font-weight:700; color:var(--text); letter-spacing:.03em; margin-bottom:6px; }
.fg input, .fg select, .fg textarea { width:100%; padding:12px 14px; border:1.5px solid var(--border); border-radius:var(--r); font-size:var(--fs-sm); color:var(--text); background:var(--white); transition:border-color var(--ease), box-shadow var(--ease); outline:none; -webkit-appearance:none; appearance:none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color:var(--navy); box-shadow:0 0 0 3px rgba(0,55,100,.08); }
.fg textarea { min-height:130px; resize:vertical; }
.fg select { background-image:none !important; background-repeat:no-repeat; background-position:calc(100% - 14px) center; padding-inline-end:36px; }
html[lang="ar"] .fg select { background-position:14px center; }
.submit-btn { display:flex; align-items:center; justify-content:center; gap:10px; width:100%; padding:15px; background:var(--navy); color:var(--white); font-size:15px; font-weight:700; border-radius:var(--r); transition:all var(--ease); }
.submit-btn:hover { background:var(--navy-dark); transform:translateY(-1px); box-shadow:var(--shadow); }
.submit-btn svg { width:18px; height:18px; }
.form-success { display:none; text-align:center; padding:56px 24px; }
.fs-ico { width:64px; height:64px; border-radius:50%; background:rgba(10,138,92,.1); display:flex; align-items:center; justify-content:center; margin:0 auto 16px; }
.fs-ico svg { width:32px; height:32px; color:var(--success); }
.form-success h4 { font-size:22px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.form-success p { font-size:var(--fs-sm); color:var(--text-muted); }

/* ── Certifications ─────────────────────────────────────────── */
.cert-bar { display:flex; align-items:center; overflow-x:auto; }
.cert-item { display:flex; align-items:center; gap:12px; padding:22px 40px; border-inline-end:1px solid var(--border); flex-shrink:0; }
.cert-item:last-child { border-inline-end:none; }
.cert-ico { width:44px; height:44px; border-radius:var(--r); background:var(--white); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; }
.cert-ico svg { width:22px; height:22px; color:var(--navy); }
.cert-name { font-size:13px; font-weight:700; color:var(--text); }
.cert-desc { font-size:11.5px; color:var(--text-muted); }

/* ── About Team ─────────────────────────────────────────────── */
.team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.team-card { background:var(--white); border:1px solid var(--border); border-radius:var(--r-md); overflow:hidden; text-align:center; transition:all var(--ease); }
.team-card:hover { box-shadow:var(--shadow); transform:translateY(-2px); }
.team-img { height:220px; position:relative; overflow:hidden; }
.team-img img { width:100%; height:100%; object-fit:cover; }
.team-body { padding:24px; }
.team-body h4 { font-size:16px; font-weight:700; color:var(--navy); margin-bottom:4px; }
.team-role { font-size:var(--fs-xs); color:var(--accent); font-weight:700; letter-spacing:.05em; text-transform:uppercase; margin-bottom:10px; }
.team-body p { font-size:var(--fs-sm); color:var(--text-muted); line-height:1.65; }

/* ── Values ─────────────────────────────────────────────────── */
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.value-card { padding:32px; border-radius:var(--r-md); background:var(--gray-50); border:1px solid var(--border); transition:all var(--ease); }
.value-card:hover { background:var(--white); box-shadow:var(--shadow); }
.value-icon { width:52px; height:52px; border-radius:var(--r-md); display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.value-icon svg { width:24px; height:24px; }
.value-card h4 { font-size:17px; font-weight:700; color:var(--navy); margin-bottom:10px; }
.value-card p { font-size:var(--fs-sm); color:var(--text-muted); line-height:1.7; }

/* ── Stats Banner ───────────────────────────────────────────── */
.stats-row { display:grid; grid-template-columns:repeat(4,1fr); }
.stat-box { padding:52px 36px; text-align:center; border-inline-end:1px solid rgba(255,255,255,.1); }
.stat-box:last-child { border-inline-end:none; }
.stat-num { font-size:clamp(40px,6vw,60px); font-weight:800; color:var(--white); line-height:1; margin-bottom:8px; }
.stat-num sup { font-size:.42em; }
.stat-lbl { font-size:var(--fs-sm); color:rgba(255,255,255,.58); font-weight:500; }

/* ── Footer ─────────────────────────────────────────────────── */
footer { background:var(--navy-dark); color:var(--white); padding:72px 0 0; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.3fr; gap:48px; padding-bottom:60px; }
.footer-logo { height:44px; margin-bottom:18px; }
.footer-desc { font-size:var(--fs-sm); color:rgba(255,255,255,.5); line-height:1.75; max-width:300px; margin-bottom:22px; }
.footer-soc { display:flex; gap:8px; }
.footer-soc a { width:34px; height:34px; border-radius:var(--r); border:1px solid rgba(255,255,255,.14); display:flex; align-items:center; justify-content:center; transition:all var(--ease); }
.footer-soc a:hover { background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.3); }
.footer-soc a svg { width:14px; height:14px; color:rgba(255,255,255,.65); }
.footer-col h5 { font-size:10.5px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.4); margin-bottom:18px; }
.footer-links li { margin-bottom:10px; }
.footer-links a { font-size:var(--fs-sm); color:rgba(255,255,255,.6); transition:color var(--ease); display:flex; align-items:center; gap:6px; }
.footer-links a:hover { color:var(--white); }
.footer-links a::before { content:''; width:4px; height:4px; border-radius:50%; background:var(--accent); flex-shrink:0; opacity:0; transition:opacity var(--ease); }
.footer-links a:hover::before { opacity:1; }
.footer-nl { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.09); border-radius:var(--r-md); padding:16px; }
.footer-nl p { font-size:12.5px; color:rgba(255,255,255,.55); margin-bottom:10px; line-height:1.5; }
.nl-row { display:flex; gap:8px; }
.nl-row input { flex:1; padding:9px 12px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18); border-radius:var(--r); color:var(--white); font-size:13px; outline:none; transition:border-color var(--ease); }
.nl-row input::placeholder { color:rgba(255,255,255,.3); }
.nl-row input:focus { border-color:var(--accent); }
.nl-row button { padding:9px 14px; background:var(--accent); color:var(--white); border-radius:var(--r); font-size:12px; font-weight:700; transition:background var(--ease); }
.nl-row button:hover { background:#008ec5; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.07); padding:18px 0; display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.footer-bottom p { font-size:var(--fs-xs); color:rgba(255,255,255,.38); }
.footer-badges { display:flex; gap:10px; flex-wrap:wrap; }
.footer-badge { display:flex; align-items:center; gap:5px; padding:4px 12px; border:1px solid rgba(255,255,255,.1); border-radius:20px; font-size:11px; font-weight:700; color:rgba(255,255,255,.45); }
.footer-badge svg { width:12px; height:12px; color:var(--accent); }

/* ── Fade-in animations ─────────────────────────────────────── */
.fi { opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease; }
.fi.visible { opacity:1; transform:none; }
.d1{transition-delay:.08s}.d2{transition-delay:.16s}.d3{transition-delay:.24s}.d4{transition-delay:.32s}.d5{transition-delay:.4s}

/* ── Responsive ─────────────────────────────────────────────── */
@media(max-width:1100px){
  .diff-grid,.ind-grid{grid-template-columns:repeat(2,1fr);}
  .steps{grid-template-columns:repeat(3,1fr);} .steps::before{display:none;}
  .stats-row{grid-template-columns:repeat(2,1fr);} .stat-box{border-bottom:1px solid rgba(255,255,255,.1);}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .news-featured{grid-template-columns:1fr;}
  .news-feat-img{height:300px;}
}
@media(max-width:900px){
  .nav-menu,.nav-actions .btn:not(.hamburger){display:none;}
  .hamburger{display:flex;}
  .tabs-layout{grid-template-columns:1fr;}
  .feature-row{grid-template-columns:1fr;gap:40px;}
  .feature-badge{display:none;}
  .contact-layout{grid-template-columns:1fr;}
  .proj-grid,.news-grid{grid-template-columns:repeat(2,1fr);}
  .testi-grid,.team-grid,.values-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:640px){
  .container{padding:0 18px;}
  .section{padding:64px 0;}
  .topbar-links{display:none;} .topbar-inner{justify-content:flex-end;}
  .grid-2,.grid-3,.grid-4,.diff-grid,.ind-grid,.proj-grid,.news-grid,.testi-grid,.team-grid,.values-grid{grid-template-columns:1fr;}
  .kpi-strip-inner{flex-wrap:wrap;} .kpi-box{flex:1 1 50%;border-bottom:1px solid rgba(255,255,255,.1);}
  .steps{grid-template-columns:1fr 1fr;}
  .stats-row{grid-template-columns:1fr 1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .panel-features,.form-row{grid-template-columns:1fr;}
  .page-hero-content h1{font-size:clamp(36px,10vw,52px);}
}

/* ── LOADING SCREEN STYLES ────────────────────────────── */
/* ═════════════════════════════════════════════════════════════════════════ */
/* GTC LOADING SCREEN - CSS MODULE                                           */
/* Designed to match GTC website design and color scheme                     */
/* ═════════════════════════════════════════════════════════════════════════ */

/* ── Loading Screen Container ──────────────────────────────────────────── */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    gap: 32px;
    padding: 32px;
}

.loading-screen.fade-out {
    animation: fadeOut 0.6s ease-in-out forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

/* ── Logo Animation ────────────────────────────────────────────────────── */
.loading-logo {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.logo-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 3px solid #e8ecf1;
    border-top-color: #00a0dc;
    border-right-color: #0082c8;
    border-radius: 50%;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.logo-inner {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid #003764;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: 800;
    color: #003764;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 55, 100, 0.08);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ── Loading Text ──────────────────────────────────────────────────────── */
.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.loading-title {
    font-size: 24px;
    font-weight: 700;
    color: #003764;
    letter-spacing: -0.01em;
    text-align: center;
}

.loading-subtitle {
    font-size: 14px;
    color: #0066a1;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.8;
}

/* ── Progress Bar ──────────────────────────────────────────────────────── */
.loading-bar-container {
    width: 240px;
    height: 4px;
    background: #e8ecf1;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 55, 100, 0.06);
    margin-top: 16px;
}

.loading-bar {
    height: 100%;
    background: linear-gradient(90deg, #0082c8, #00a0dc, #e8830a);
    border-radius: 2px;
    animation: progress 2.5s ease-in-out infinite;
}

@keyframes progress {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

/* ── Accent Elements ───────────────────────────────────────────────────── */
.loading-accent {
    position: absolute;
    pointer-events: none;
}

.accent-top-left {
    top: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 160, 220, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.accent-bottom-right {
    bottom: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(0, 102, 161, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-reverse 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
}

@keyframes float-reverse {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ── Responsive Design ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .loading-screen {
        gap: 24px;
        padding: 24px;
    }

    .loading-logo {
        width: 100px;
        height: 100px;
        margin-bottom: 12px;
    }

    .logo-circle {
        width: 100px;
        height: 100px;
    }

    .logo-inner {
        width: 65px;
        height: 65px;
        font-size: 24px;
    }

    .loading-title {
        font-size: 20px;
    }

    .loading-subtitle {
        font-size: 12px;
    }

    .loading-bar-container {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .loading-screen {
        gap: 20px;
    }

    .loading-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 8px;
    }

    .logo-circle {
        width: 80px;
        height: 80px;
    }

    .logo-inner {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

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

    .loading-subtitle {
        font-size: 11px;
    }

    .loading-bar-container {
        width: 160px;
    }
}
