/* ==========================================================================
   Blesson Facility — Design System
   Corporate FM brand: royal blue + deep navy + gold accent
   ========================================================================== */

:root {
  --primary: #0046ad;
  --primary-light: #0062ff;
  --primary-dark: #003480;
  --navy: #0a192f;
  --navy-2: #061221;
  --gold: #c9a227;
  --cyan: #00b8d9;
  --violet: #7c3aed;
  --pink: #ec4899;
  --gradient-vivid: linear-gradient(135deg, var(--primary) 0%, var(--cyan) 55%, var(--violet) 100%);
  --gradient-vivid-2: linear-gradient(135deg, var(--violet) 0%, var(--pink) 50%, var(--gold) 100%);
  --slate-50: #f8fafc;
  --slate-100: #eef2f7;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-600: #475569;
  --slate-700: #334155;
  --ink: #0f1b2d;
  --white: #ffffff;
  --success: #1f9d55;
  --whatsapp: #25d366;

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(10, 25, 47, 0.06);
  --shadow: 0 12px 32px rgba(10, 25, 47, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 25, 47, 0.16);
  --container: 1200px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, ul, ol, dl { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; color: var(--navy); }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p.lead { font-size: 1.15rem; color: var(--slate-600); }
.text-muted { color: var(--slate-600); }
.text-gold { color: var(--gold); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

section { padding: 88px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 12px;
}
.section-tag::before { content: ""; width: 24px; height: 2px; background: var(--gold); display: inline-block; }
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.bg-slate { background: var(--slate-50); }
.bg-navy { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%); color: #dbe4f3; }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-primary-grad { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: var(--white); }
.border-top { border-top: 1px solid var(--slate-200); }
.border-bottom { border-bottom: 1px solid var(--slate-200); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px; border-radius: 999px; font-weight: 700; font-size: 0.98rem;
  border: 2px solid transparent; transition: all 0.25s var(--ease); white-space: nowrap;
}
.btn-primary { background: linear-gradient(to right, var(--primary), var(--primary-light)); color: var(--white); box-shadow: 0 10px 24px rgba(0,70,173,0.25); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(0,70,173,0.32); }
.btn-outline { border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.btn-outline-navy { border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); transform: translateY(-3px); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); box-shadow: 0 10px 24px rgba(37,211,102,0.3); }
.btn-whatsapp:hover { transform: translateY(-3px); background: #1ebe57; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

/* ---------- Header / Nav ---------- */
.top-strip {
  background: var(--navy); color: #b9c6dc; font-size: 0.82rem;
  padding: 8px 0;
}
.top-strip .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.top-strip a { color: #dbe4f3; font-weight: 600; }
.top-strip a:hover { color: var(--white); }
.top-strip .top-links { display: flex; gap: 20px; flex-wrap: wrap; }
.top-strip .top-links span { display: inline-flex; align-items: center; gap: 6px; }
.top-strip svg { width: 14px; height: 14px; flex: none; }
@media (max-width: 768px) { .hide-sm { display: none !important; } }
@media (max-width: 480px) { .hide-xs { display: none !important; } }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--slate-200);
}
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex: none; }
.brand-text { line-height: 1.15; }
.brand-text .b1 { display: block; font-weight: 800; color: var(--navy); letter-spacing: 0.04em; font-size: 1.05rem; }
.brand-text .b2 { display: block; font-weight: 600; color: var(--primary); letter-spacing: 0.18em; font-size: 0.68rem; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 10px 16px; border-radius: 999px; font-weight: 600; font-size: 0.94rem;
  color: var(--slate-700); transition: all 0.2s var(--ease);
}
.nav-links a:hover, .nav-links a.active { background: var(--slate-100); color: var(--primary); }
.nav-links .btn { margin-left: 8px; }

.nav-toggle {
  display: none; background: none; border: none; padding: 8px; width: 44px; height: 44px;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { display: none; }
.nav-toggle svg { width: 26px; height: 26px; color: var(--navy); }

@media (max-width: 992px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 86vw);
    background: var(--white); flex-direction: column; align-items: stretch;
    padding: 90px 24px 24px; box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transform: translateX(100%); transition: transform 0.35s var(--ease);
    gap: 4px; z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 14px 16px; }
  .nav-links .btn { margin-left: 0; margin-top: 10px; text-align: center; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(10,25,47,0.5); opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease); z-index: 998; }
  .nav-backdrop.open { opacity: 1; pointer-events: auto; }
}

/* ---------- Breadcrumb ---------- */
.breadcrumb-bar { background: var(--slate-50); border-bottom: 1px solid var(--slate-200); padding: 14px 0; font-size: 0.86rem; }
.breadcrumb-bar a { color: var(--primary); font-weight: 600; }
.breadcrumb-bar span.sep { margin: 0 8px; color: var(--slate-400); }
.breadcrumb-bar span.current { color: var(--slate-600); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: var(--white);
  min-height: 86vh; display: flex; align-items: center;
  background: var(--navy);
}
.hero picture, .hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(6,18,33,0.88) 0%, rgba(6,18,33,0.72) 45%, rgba(6,18,33,0.92) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 60px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2); padding: 8px 18px; border-radius: 999px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; margin-bottom: 22px;
}
.eyebrow svg { width: 16px; height: 16px; color: var(--gold); }
.hero h1 { color: var(--white); max-width: 820px; }
.hero p.lead { color: #dbe4f3; max-width: 640px; margin-top: 18px; }
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 28px; margin-top: 52px; flex-wrap: wrap; }
.hero-badges .badge-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #cfdbee; }
.hero-badges svg { width: 20px; height: 20px; color: var(--gold); flex: none; }

/* Page (inner) header — for non-home pages */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white); padding: 64px 0 56px; position: relative; overflow: hidden;
}
.page-hero .section-tag { color: var(--cyan); }
.page-hero h1 { color: var(--white); max-width: 760px; font-size: clamp(2.1rem, 4.8vw, 3.6rem); letter-spacing: -0.03em; }
.page-hero p.lead { color: #cfdbee; max-width: 640px; margin-top: 14px; }
.page-hero { clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%); padding-bottom: 96px; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--slate-50); padding: 34px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust-grid .item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.trust-grid svg { width: 30px; height: 30px; color: var(--primary); }
.trust-grid strong { font-size: 0.92rem; color: var(--navy); font-weight: 700; }
@media (max-width: 768px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Stat cards ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card {
  background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius);
  padding: 28px 20px; text-align: center; transition: all 0.3s var(--ease);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.stat-card .num { font-size: 2.1rem; font-weight: 800; color: var(--primary); display: block; }
.stat-card .label { font-size: 0.86rem; color: var(--slate-600); font-weight: 600; margin-top: 4px; }
@media (max-width: 768px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Grid layouts ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 992px) { .grid-2 { grid-template-columns: 1fr; gap: 36px; } .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-3 { grid-template-columns: 1fr; } .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Service cards ---------- */
.service-card {
  background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius-lg);
  padding: 34px 26px; transition: all 0.4s var(--ease); height: 100%; display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-icon {
  width: 62px; height: 62px; border-radius: 18px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--cyan)); color: var(--white); margin-bottom: 20px; flex: none;
}
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--slate-600); font-size: 0.96rem; flex: 1; }
.service-card .card-link { margin-top: 18px; display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--primary); font-size: 0.92rem; }
.service-card .card-link svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.service-card:hover .card-link svg { transform: translateX(4px); }

/* Photo service card variant */
.photo-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); border: 1px solid var(--slate-200); transition: all 0.4s var(--ease); height: 100%; }
.photo-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.photo-card .img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.photo-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.photo-card:hover .img-wrap img { transform: scale(1.08); }
.photo-card .body { padding: 24px; }

/* ---------- Sector / industry cards ---------- */
.sector-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg);
  padding: 38px 28px; text-align: center; transition: all 0.4s var(--ease); backdrop-filter: blur(6px);
}
.sector-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-8px); border-color: var(--primary); box-shadow: 0 20px 40px rgba(0,70,173,0.28); }
.sector-icon { width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary), var(--cyan)); }
.sector-icon svg { width: 32px; height: 32px; color: var(--white); }
.sector-card h4 { color: var(--white); margin-bottom: 10px; }
.sector-card p { color: #b9c6dc; font-size: 0.9rem; }

/* ---------- Advantage / feature list ---------- */
.feature-row { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--slate-200); }
.feature-row:last-child { border-bottom: none; }
.feature-row .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--slate-100); display: flex; align-items: center; justify-content: center; flex: none; }
.feature-row .ic svg { width: 22px; height: 22px; color: var(--primary); }
.feature-row h4 { margin-bottom: 4px; font-size: 1.05rem; }
.feature-row p { color: var(--slate-600); font-size: 0.94rem; }
.bg-navy .feature-row { border-bottom-color: rgba(255,255,255,0.14); }
.bg-navy .feature-row .ic { background: rgba(255,255,255,0.08); }
.bg-navy .feature-row .ic svg { color: var(--cyan); }
.bg-navy .feature-row h4 { color: var(--white); }
.bg-navy .feature-row p { color: #b9c6dc; }

/* ---------- Location chips ---------- */
.location-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.location-chip {
  display: flex; align-items: center; gap: 12px; background: var(--white); border: 1px solid var(--slate-200);
  border-radius: var(--radius); padding: 18px 20px; transition: all 0.25s var(--ease);
}
.location-chip:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.location-chip svg { width: 20px; height: 20px; color: var(--primary); flex: none; }
.location-chip strong { display: block; color: var(--navy); font-size: 0.98rem; }
.location-chip span { font-size: 0.8rem; color: var(--slate-600); }
@media (max-width: 992px) { .location-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .location-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- CTA band ---------- */
.cta-band { border-radius: var(--radius-lg); padding: 56px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.85); }
@media (max-width: 768px) { .cta-band { padding: 36px 24px; text-align: center; justify-content: center; } }

/* ---------- Forms ---------- */
.form-control, .form-select, textarea.form-control {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--slate-200); border-radius: var(--radius-sm);
  background: var(--white); font-size: 0.96rem; margin-bottom: 16px; transition: border-color 0.2s var(--ease);
}
.form-control:focus, .form-select:focus, textarea:focus { outline: none; border-color: var(--primary); }
.form-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
label.form-label { display: block; font-weight: 600; font-size: 0.86rem; margin-bottom: 6px; color: var(--slate-700); }
.form-note { font-size: 0.8rem; color: var(--slate-400); margin-top: -8px; margin-bottom: 16px; }

/* ---------- Contact info cards ---------- */
.contact-info-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--slate-200); }
.contact-info-card:last-child { border-bottom: none; }
.contact-info-card .ic { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--primary), var(--cyan)); display: flex; align-items: center; justify-content: center; flex: none; }
.contact-info-card .ic svg { width: 22px; height: 22px; color: var(--white); }
.contact-info-card h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { color: var(--slate-600); font-size: 0.94rem; }
.contact-info-card a:hover { color: var(--primary); }

/* ---------- Map ---------- */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--slate-200); box-shadow: var(--shadow-sm); height: 100%; min-height: 360px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }

/* ---------- Badges / pills ---------- */
.pill { display: inline-flex; align-items: center; gap: 6px; background: var(--slate-100); color: var(--slate-700); font-size: 0.78rem; font-weight: 700; padding: 6px 14px; border-radius: 999px; }
.pill.gold { background: rgba(201,162,39,0.12); color: #8a6d1a; }
.pill-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--slate-200); padding: 22px 0; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; font-weight: 700; color: var(--navy); font-size: 1.02rem; }
.faq-q svg { width: 20px; height: 20px; color: var(--primary); flex: none; transition: transform 0.3s var(--ease); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding-top: 14px; color: var(--slate-600); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-2); color: #9fb0c9; padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 44px; height: 44px; border-radius: 50%; }
.footer-brand .b1 { color: var(--white); font-weight: 800; letter-spacing: 0.04em; }
.footer-brand .b2 { color: var(--cyan); font-weight: 600; letter-spacing: 0.18em; font-size: 0.68rem; }
.site-footer p { font-size: 0.9rem; line-height: 1.7; }
.site-footer h5 { color: var(--white); font-size: 0.92rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 18px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; transition: color 0.2s var(--ease); }
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: all 0.2s var(--ease); }
.footer-social a:hover { background: var(--primary); }
.footer-social svg { width: 17px; height: 17px; color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; }
.footer-bottom a:hover { color: var(--white); }
@media (max-width: 992px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- WhatsApp float + modal ---------- */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; width: 62px; height: 62px; border-radius: 50%;
  background: var(--whatsapp); color: var(--white); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,0.42); z-index: 900; animation: pulse-green 2.4s infinite;
  transition: transform 0.25s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; }
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.modal-overlay {
  position: fixed; inset: 0; background: rgba(10,25,47,0.6); display: none; align-items: center; justify-content: center;
  z-index: 1100; padding: 20px; backdrop-filter: blur(3px);
}
.modal-overlay.open { display: flex; }
.modal-box { background: var(--white); border-radius: var(--radius-lg); max-width: 440px; width: 100%; overflow: hidden; box-shadow: var(--shadow-lg); }
.modal-head { background: var(--whatsapp); color: var(--white); padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; }
.modal-head h5 { color: var(--white); font-size: 1.05rem; display: flex; align-items: center; gap: 10px; }
.modal-close { background: rgba(255,255,255,0.2); border: none; color: var(--white); width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.modal-body { padding: 24px; }

/* ---------- Breakout / misc ---------- */
.divider-dot { width: 60px; height: 3px; background: var(--gold); margin: 16px auto; border-radius: 2px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--primary); color: #fff; padding: 10px 18px; z-index: 2000; }
.skip-link:focus { left: 10px; top: 10px; }

@media (max-width: 992px) {
  .grid-2.reverse-mobile { display: flex; flex-direction: column-reverse; }
}

/* Utility */
.mt-0{margin-top:0}.mb-0{margin-bottom:0}.mt-24{margin-top:24px}.mb-24{margin-bottom:24px}
.text-center{text-align:center}
.fw-700{font-weight:700}

/* ==========================================================================
   ENERGY & MOTION UPGRADE — gradient blobs, glass, tilt, reveal, marquee
   ========================================================================== */

/* ---- Gradient blob glow (hero + dark sections + CTA bands) ---- */
@keyframes blobFloatA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(4%, 6%) scale(1.08); }
  66%      { transform: translate(-3%, -4%) scale(0.96); }
}
@keyframes blobFloatB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-6%, 5%) scale(1.1); }
}

.hero { position: relative; }
.hero::before {
  content: ""; position: absolute; inset: -10%; z-index: 1; pointer-events: none;
  background:
    radial-gradient(38% 42% at 82% 18%, rgba(0, 184, 217, 0.42) 0%, rgba(0, 184, 217, 0) 70%),
    radial-gradient(34% 40% at 12% 78%, rgba(124, 58, 237, 0.38) 0%, rgba(124, 58, 237, 0) 70%),
    radial-gradient(30% 34% at 55% 100%, rgba(201, 162, 39, 0.26) 0%, rgba(201, 162, 39, 0) 70%);
  filter: blur(10px);
  animation: blobFloatA 16s ease-in-out infinite;
}

.bg-navy { position: relative; overflow: hidden; }
.bg-navy::before {
  content: ""; position: absolute; inset: -15%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(32% 38% at 88% 8%, rgba(0, 184, 217, 0.22) 0%, rgba(0, 184, 217, 0) 70%),
    radial-gradient(30% 36% at 6% 92%, rgba(124, 58, 237, 0.20) 0%, rgba(124, 58, 237, 0) 70%);
  filter: blur(6px);
  animation: blobFloatB 20s ease-in-out infinite;
}
.bg-navy > .container { position: relative; z-index: 1; }

.cta-band { position: relative; overflow: hidden; isolation: isolate; }
.cta-band::before {
  content: ""; position: absolute; inset: -20%; z-index: 0; pointer-events: none;
  background: radial-gradient(40% 60% at 90% 0%, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 70%),
              radial-gradient(35% 50% at 5% 100%, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 70%);
  animation: blobFloatA 14s ease-in-out infinite;
}
.cta-band > * { position: relative; z-index: 1; }

/* ---- Gradient text ---- */
.grad-text {
  background: var(--gradient-vivid);
  background-size: 200% 200%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  animation: gradShift 6s ease infinite;
}
@keyframes gradShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* ---- Bigger, punchier hero type ---- */
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); letter-spacing: -0.03em; }
.eyebrow { box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 8px 24px rgba(0,184,217,0.18); }

/* ---- Button shine sweep ---- */
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn::before {
  content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); transition: left 0.7s ease; z-index: 1; pointer-events: none;
}
.btn:hover::before { left: 130%; }
.btn-primary { background: var(--gradient-vivid); background-size: 200% 200%; animation: gradShift 8s ease infinite; }
.btn-primary:hover { background-position: 100% 50%; }

/* ---- Glass / gradient-edge cards ---- */
.service-card, .stat-card, .photo-card { position: relative; overflow: hidden; isolation: isolate; }
.service-card::after, .stat-card::after {
  content: ""; position: absolute; inset: 0; padding: 1.5px; border-radius: inherit;
  background: var(--gradient-vivid);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.4s var(--ease); pointer-events: none; z-index: 0;
}
.service-card:hover::after, .stat-card:hover::after { opacity: 1; }
.service-icon { position: relative; }
.service-icon::after {
  content: ""; position: absolute; inset: -6px; border-radius: 22px; background: var(--gradient-vivid);
  opacity: 0; filter: blur(10px); z-index: -1; transition: opacity 0.4s var(--ease);
}
.service-card:hover .service-icon::after { opacity: 0.55; }

.sector-card { position: relative; }
.sector-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: var(--gradient-vivid); opacity: 0; transition: opacity 0.4s var(--ease);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.sector-card:hover::before { opacity: 1; }

/* ---- 3D tilt (JS adds inline transform; this sets the stage) ---- */
.tilt { transform-style: preserve-3d; transition: transform 0.15s ease-out, box-shadow 0.3s ease; will-change: transform; }

/* ---- Scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view { transition-delay: calc(var(--stagger, 0) * 90ms); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero::before, .bg-navy::before, .cta-band::before, .grad-text, .btn-primary { animation: none; }
}

/* ---- Animated counters ---- */
.stat-card .num { font-variant-numeric: tabular-nums; }

/* ---- Sticky header shrink-on-scroll ---- */
.site-header { transition: box-shadow 0.3s ease, padding 0.3s ease; }
.site-header.scrolled { box-shadow: 0 8px 28px rgba(10,25,47,0.10); }
.site-header.scrolled .navbar { padding: 6px 0; }
.site-header.scrolled .brand img { width: 40px; height: 40px; }
.navbar, .brand img { transition: all 0.3s ease; }

/* ---- Marquee ticker ---- */
.marquee-wrap { overflow: hidden; padding: 22px 0; background: var(--navy-2); }
.marquee-track { display: flex; width: max-content; gap: 48px; animation: marquee 26s linear infinite; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { display: flex; align-items: center; gap: 10px; color: #8ea3c4; font-weight: 700; font-size: 0.92rem; letter-spacing: 0.03em; white-space: nowrap; }
.marquee-item svg { width: 18px; height: 18px; color: var(--cyan); flex: none; }
.marquee-dot { color: var(--gold); }

/* ---- Floating decorative shapes (generic) ---- */
.shape-dot { position: absolute; border-radius: 50%; background: var(--gradient-vivid); opacity: 0.15; filter: blur(2px); pointer-events: none; }

/* ---- Angled divider under hero ---- */
.hero-divider { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 2; line-height: 0; }
.hero-divider svg { width: 100%; height: 60px; display: block; }

/* ---- Number pop on stat hover ---- */
.stat-card .num { display: inline-block; transition: transform 0.3s var(--ease); }
.stat-card:hover .num { transform: scale(1.12); }
