/* ==========================================================
   PRO COMMUNICATION — Stylesheet
   ========================================================== */

:root,
html[data-theme="dark"] {
  --bg: #040d1f;
  --bg-2: #071430;
  --bg-3: #0a1d45;
  --surface: rgba(255,255,255,0.04);
  --surface-2: rgba(255,255,255,0.06);
  --surface-solid: #0a1d45;
  --surface-alt: #071430;
  --text: #ffffff;
  --text-soft: #c5cee0;
  --muted: #8a9bb8;
  --border: rgba(255,255,255,0.08);
  --border-2: rgba(255,255,255,0.12);
  --primary: #1a6fff;
  --primary-dark: #0d47cc;
  --primary-light: #3d8bff;
  --primary-soft: rgba(26,111,255,0.12);
  --primary-soft-2: rgba(26,111,255,0.2);
  --accent: #64a8ff;
  --gold: #c9a84c;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.2), 0 2px 8px rgba(0,0,0,0.15);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.25);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.35);
  --radius: 6px;
  --radius-lg: 10px;
  --container: 1200px;
}

html[data-theme="light"] {
  --bg: #ffffff;
  --bg-2: #f4f7fc;
  --bg-3: #e8eef9;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --surface-solid: #ffffff;
  --surface-alt: #f4f7fc;
  --text: #0a1733;
  --text-soft: #455168;
  --muted: #7a8aa3;
  --border: #dfe5f0;
  --border-2: #c5cee0;
  --primary: #1a6fff;
  --primary-dark: #0d47cc;
  --primary-light: #3d8bff;
  --primary-soft: #eef4ff;
  --primary-soft-2: #d6e4ff;
  --accent: #1155cc;
  --shadow-sm: 0 1px 2px rgba(15,30,60,0.04), 0 2px 8px rgba(15,30,60,0.05);
  --shadow-md: 0 6px 18px rgba(15,30,60,0.08);
  --shadow-lg: 0 16px 40px rgba(15,30,60,0.10);
}

html[data-theme="light"] body { color: var(--text); }
html[data-theme="light"] h1,
html[data-theme="light"] h2,
html[data-theme="light"] h3,
html[data-theme="light"] h4,
html[data-theme="light"] h5 { color: var(--text); }
html[data-theme="light"] .nav-wrap { background: rgba(255,255,255,0.75); }
html[data-theme="light"] .nav-wrap.scrolled { background: rgba(255,255,255,0.95); border-bottom-color: var(--border); }
html[data-theme="light"] .nav-links a:hover { color: var(--text); }
html[data-theme="light"] .hero-bg { background: var(--surface-alt); background-image: linear-gradient(rgba(26,111,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(26,111,255,0.05) 1px, transparent 1px); }
html[data-theme="light"] .hero-bg::before { background: radial-gradient(circle, rgba(26,111,255,0.08), transparent 70%); }
html[data-theme="light"] .hero-bg::after { background: radial-gradient(circle, rgba(201,168,76,0.06), transparent 70%); }
html[data-theme="light"] .footer { background: #0a1733; }
html[data-theme="light"] .scroll-down { border-color: var(--text-soft); }
html[data-theme="light"] .scroll-down span { background: var(--text); }
html[data-theme="light"] .nav-drawer { background: #fff; }
html[data-theme="light"] .nav-drawer .nav-links a { color: var(--text-soft); }
html[data-theme="light"] .nav-drawer .nav-links a:hover,
html[data-theme="light"] .nav-drawer .nav-links a.active { color: var(--primary); }
html[data-theme="light"] .stats-section { background: linear-gradient(135deg, #eef4ff, #d6e4ff); }
html[data-theme="light"] .stat-num { color: var(--text); }
html[data-theme="light"] .stat-num sup { color: var(--primary); }
html[data-theme="light"] .stat-label { color: var(--text-soft); }
html[data-theme="light"] .field input,
html[data-theme="light"] .field select,
html[data-theme="light"] .field textarea { color: var(--text); background: var(--surface-alt); }
html[data-theme="light"] .field select option { background: #fff; color: var(--text); }
html[data-theme="light"] .t-btn { color: var(--text); }
html[data-theme="light"] .filter-btn { color: var(--text-soft); }
html[data-theme="light"] .filter-btn:hover { color: var(--primary); }
html[data-theme="light"] .filter-btn.active { color: #fff; }
html[data-theme="light"] .corp-row strong { color: var(--text); }
html[data-theme="light"] .tl-item strong { color: var(--text); }
html[data-theme="light"] .contact-list strong { color: var(--text); }
html[data-theme="light"] .iso-text strong { color: var(--text); }
html[data-theme="light"] .contact-form h3 { color: var(--text); }
html[data-theme="light"] .modal { background: #fff; }
html[data-theme="light"] .modal-section h3 { color: var(--text); }
html[data-theme="light"] .featured-content { color: var(--text); }
html[data-theme="light"] .featured-content h3 { color: var(--text); }
html[data-theme="light"] .modal-year strong { color: var(--text); }

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

.skip-link { display: none; }

/* Lucide icons */
[data-lucide] {
  width: 22px;
  height: 22px;
  stroke-width: 1.75;
}
.svc-icon [data-lucide],
.mini-icon [data-lucide],
.ci-icon [data-lucide] {
  width: 24px;
  height: 24px;
  color: var(--primary);
}
.sector span [data-lucide] {
  width: 32px;
  height: 32px;
  color: var(--primary);
}
.footer-contact [data-lucide] {
  width: 16px;
  height: 16px;
  color: var(--primary-light);
}

/* ============================
   TYPOGRAPHY
   ============================ */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.1rem; font-family: 'Inter', sans-serif; font-weight: 700; }
h5 { font-size: 0.95rem; font-family: 'Inter', sans-serif; font-weight: 700; margin-bottom: 1rem; }
p { color: var(--text-soft); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  padding: 4px 0;
  border-bottom: 2px solid var(--primary);
}

.grad {
  color: var(--primary);
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--primary-soft);
  color: var(--accent);
  border-color: var(--primary);
}
.btn-light {
  background: #fff;
  color: var(--primary-dark);
  font-weight: 700;
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; padding: 14px 24px; }

/* ============================
   NAVIGATION
   ============================ */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(4,13,31,0.5);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.nav-wrap.scrolled {
  background: rgba(4,13,31,0.92);
  border-bottom-color: var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.nav > .logo { min-width: 0; flex-shrink: 1; }
.logo-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
/* The disc holds the background colour. The filter that recolours the
   emblem lives on the <img> only, so it never darkens the disc itself. */
.logo-disc {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Dark mode (default): black disc */
  background: #000;
}
html[data-theme="light"] .logo-disc { background: #fff; } /* light mode: white disc */
.footer .logo-disc { background: #000; }                  /* footer is always dark */
.drawer-head .logo-disc { width: 36px; height: 36px; }
.footer .logo-disc { width: 48px; height: 48px; }

.logo-mark {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Dark mode (default): gold emblem -> white */
  filter: brightness(0) invert(1);
}
html[data-theme="light"] .logo-mark { filter: brightness(0); } /* light: gold -> black */
.footer .logo-mark { filter: brightness(0) invert(1); }        /* footer: white */
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.nav-drawer { display: contents; }
.nav-drawer .drawer-head,
.nav-drawer .drawer-cta { display: none; }
.nav-drawer .nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.drawer-backdrop { display: none; }
.nav-links a {
  color: var(--text-soft);
  font-weight: 500;
  font-size: 0.94rem;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { padding: 10px 18px; font-size: 0.9rem; }

.theme-toggle {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 9px;
  cursor: pointer;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.theme-toggle:hover { background: var(--primary-soft); color: var(--accent); border-color: var(--primary); }
.theme-toggle [data-lucide] { width: 18px; height: 18px; }
.theme-toggle .theme-icon-light { display: none; }
.theme-toggle .theme-icon-dark { display: inline; }
html[data-theme="light"] .theme-toggle .theme-icon-light { display: inline; }
html[data-theme="light"] .theme-toggle .theme-icon-dark { display: none; }

.hamburger {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  padding: 10px;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}
.hamburger:hover { background: var(--primary-soft); color: var(--accent); }
html[data-theme="light"] .hamburger { color: #0a1733; border-color: #cbd3e2; }
html[data-theme="light"] .hamburger:hover { color: var(--primary); background: var(--primary-soft); }
html[data-theme="light"] .theme-toggle { color: #0a1733; border-color: #cbd3e2; }
.hamburger [data-lucide] { width: 22px; height: 22px; }

.drawer-close {
  background: var(--surface-alt);
  border: none;
  border-radius: 6px;
  padding: 8px;
  cursor: pointer;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.drawer-close:hover { background: var(--primary-soft); color: var(--primary); }
.drawer-close [data-lucide] { width: 22px; height: 22px; }

body.menu-open { overflow: hidden; }

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #020818 0%, #040d1f 40%, #071a3a 70%, #040d1f 100%);
  background-image:
    linear-gradient(rgba(26,111,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,111,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -1;
}
.hero-bg::before,
.hero-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
}
.hero-bg::before {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,111,255,0.18), transparent 70%);
  top: -100px; right: -100px;
}
.hero-bg::after {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,168,76,0.1), transparent 70%);
  bottom: -80px; left: 100px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}
.hero h1 { margin: 0.4em 0 1.1rem; }
.lead { font-size: 1.13rem; color: var(--text-soft); max-width: 560px; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 540px;
}
.hero-stats > div {
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 4px;
}
.hero-stats strong {
  display: block;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  margin-bottom: 4px;
}
.hero-stats span { font-size: 0.82rem; color: var(--muted); }

.hero-visual {
  position: relative;
  height: 480px;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.orb, .grid-pattern { display: none; }
.hero-visual img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  border-radius: 10px;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.35));
}

.scroll-down {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 16px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.scroll-down:hover { opacity: 1; }
.scroll-down span {
  display: block;
  width: 3px; height: 7px;
  background: #fff;
  margin: 8px auto 0;
  border-radius: 2px;
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}

/* ============================
   SECTIONS
   ============================ */
.section {
  padding: 100px 0;
  position: relative;
}
.section-alt {
  background: var(--bg-2);
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head .sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-top: 0.5rem;
}

/* ============================
   ABOUT
   ============================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p { margin-bottom: 1.1rem; }
.check-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 10px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
}
.check-list li {
  color: var(--text-soft);
}
.check-list li strong { color: #fff; }
html[data-theme="light"] .check-list li strong { color: var(--text); }
html[data-theme="light"] .check-list li { color: var(--text-soft); }
html[data-theme="light"] .iso-text strong { color: var(--text); }
html[data-theme="light"] .tl-item strong { color: var(--text); }
html[data-theme="light"] .corp-row strong { color: var(--text); }
html[data-theme="light"] .contact-list strong { color: var(--text); }
html[data-theme="light"] .modal-features strong { color: var(--text); }
html[data-theme="light"] .modal-section p strong { color: var(--primary); }
html[data-theme="light"] .featured-content { color: var(--text); }
html[data-theme="light"] .featured-lead { color: var(--text-soft); }
html[data-theme="light"] .featured-lead strong { color: var(--primary); }
html[data-theme="light"] .meta-item strong { color: var(--text); }
html[data-theme="light"] .year-card li,
html[data-theme="light"] .year-card ul { color: var(--text-soft); }
html[data-theme="light"] .modal-year li,
html[data-theme="light"] .modal-year ul { color: var(--text-soft); }
html[data-theme="light"] .modal-features li { color: var(--text-soft); }
html[data-theme="light"] .admin-bio { color: var(--text-soft); }
html[data-theme="light"] .modal { background: #fff; border: 1px solid var(--border); }
html[data-theme="light"] .modal-year,
html[data-theme="light"] .modal-features li,
html[data-theme="light"] .year-card { background: var(--surface-alt); }
html[data-theme="light"] .modal-section p { color: var(--text-soft); }
html[data-theme="light"] .modal-section h3 { color: var(--text); }
html[data-theme="light"] .nav-drawer .drawer-head { border-bottom-color: var(--border); }
html[data-theme="light"] .nav-drawer .drawer-head .logo-text { color: var(--text); }
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 1px;
  width: 20px; height: 20px;
  background: var(--primary);
  color: #fff;
  border-radius: 2px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
}

.iso-badge {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.iso-text strong { color: #fff; }
.iso-text span { color: var(--text-soft); }
.iso-badge::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--primary);
}
.iso-mark {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.iso-mark::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1.5px dashed rgba(255,255,255,0.5);
  border-radius: 50%;
}
.iso-ring {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  opacity: 0.9;
}
.iso-mark strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  line-height: 1;
  margin-top: 2px;
}
.iso-mark small {
  font-size: 0.62rem;
  opacity: 0.9;
  margin-top: 2px;
}
.iso-text strong {
  display: block;
  font-size: 0.98rem;
  color: var(--text);
  margin-bottom: 3px;
}
.iso-text span {
  font-size: 0.86rem;
  color: var(--text-soft);
}

.footer-iso {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  font-size: 0.82rem;
  color: #c5cbdc;
}
.footer-contact { display: grid; gap: 12px; }
.footer-contact li { display: flex; align-items: center; gap: 10px; }
.footer-iso-badge {
  color: var(--primary-light);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.mini-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.mini-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-soft-2);
  background: var(--surface-2);
}
.mini-card p { color: var(--text-soft); }
.mini-icon {
  margin-bottom: 14px;
  width: 48px; height: 48px;
  background: var(--primary-soft);
  border-radius: 4px;
  display: grid; place-items: center;
}
.mini-card h4 { margin-bottom: 6px; }
.mini-card p { font-size: 0.9rem; }

/* ============================
   ADMINISTRATOR / CEO
   ============================ */
.admin-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: start;
}
.admin-portrait-wrap {
  position: relative;
  position: sticky;
  top: 100px;
}
.admin-portrait {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.admin-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.admin-quote {
  color: var(--gold);
  border-left-color: var(--gold);
}
.admin-bio { color: var(--text-soft); }
.admin-tags span {
  background: var(--primary-soft);
  border: 1px solid var(--primary-soft-2);
  color: var(--accent);
}
.tl-item strong { color: #fff; }
.tl-item span { color: var(--text-soft); }
.tl-dot::after { background: var(--border); }
.admin-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  margin: 1.5rem 0;
  padding-left: 20px;
  border-left: 3px solid var(--primary);
}
.admin-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  margin-top: 1.5rem;
  margin-bottom: 4px;
}
.admin-title {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}
.admin-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.5rem;
}
.admin-tags span {
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 600;
}
.admin-bio {
  margin-bottom: 2rem;
}
.timeline { margin-top: 1.5rem; }
.timeline-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.tl-item {
  display: flex;
  gap: 18px;
  margin-bottom: 1.5rem;
  position: relative;
}
.tl-dot {
  flex-shrink: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 6px;
  position: relative;
}
.tl-dot::after {
  content: '';
  position: absolute;
  top: 12px; left: 5px;
  width: 2px; bottom: -22px;
  background: var(--border);
}
.tl-item:last-child .tl-dot::after { display: none; }
.tl-item strong {
  display: block;
  font-size: 0.98rem;
  color: var(--text);
  margin-bottom: 4px;
}
.tl-item span {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.5;
}

/* ============================
   STATS BAR
   ============================ */
.stats-section {
  background: linear-gradient(135deg, var(--bg-3) 0%, #071a3a 100%);
  color: #fff;
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-box {
  padding: 30px 20px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.stat-num sup { font-size: 1.4rem; color: var(--primary-light); }
.stat-label {
  font-size: 0.85rem;
  color: #b9c4d8;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 10px;
}

/* ============================
   PORTFOLIO
   ============================ */
.portfolio-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  background: var(--surface);
  color: var(--text-soft);
  border: 1px solid var(--border);
  padding: 10px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { color: #fff; border-color: var(--primary); }
.filter-btn.active {
  background: var(--primary);
  color: #fff;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, opacity 0.3s;
  cursor: pointer;
}
.portfolio-item:hover {
  transform: translateY(-6px);
  border-color: var(--primary-soft-2);
}
.portfolio-item.hidden {
  opacity: 0.2;
  transform: scale(0.96);
  pointer-events: none;
}
.port-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-3), #0d2358);
  display: grid;
  place-items: center;
  color: var(--accent);
}
.port-img [data-lucide] {
  width: 56px;
  height: 56px;
  stroke-width: 1.5;
  color: var(--accent);
  opacity: 0.5;
}
.port-info { padding: 22px 24px; }
.port-cat {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 6px;
}
.port-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--text);
}

/* ============================
   FEATURED PROJECT (Beer Fest)
   ============================ */
.featured-project {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  cursor: pointer;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.featured-project:hover {
  transform: translateY(-4px);
  border-color: var(--primary-soft-2);
  box-shadow: var(--shadow-lg);
}
.featured-project:hover .featured-overlay { opacity: 1; }
.featured-project:hover .featured-img img { transform: scale(1.04); }

.featured-img {
  position: relative;
  background: linear-gradient(135deg, var(--bg-3), #0d2358);
  min-height: 420px;
  overflow: hidden;
}
.featured-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 0.5s;
}
.featured-img-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,0.4);
  pointer-events: none;
}
.featured-img-fallback [data-lucide] { width: 80px; height: 80px; stroke-width: 1; }
.featured-img-fallback span {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
}
.featured-img:not(.no-image) .featured-img-fallback { display: none; }

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: #1a1208;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(201,168,76,0.3);
}
.featured-badge [data-lucide] { width: 14px; height: 14px; }

.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,13,31,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
  color: #fff;
  font-weight: 600;
}
.featured-overlay span { display: inline-flex; align-items: center; gap: 8px; }
.featured-overlay [data-lucide] { width: 18px; height: 18px; }

.featured-content { padding: 40px 40px; }
.featured-content h3 {
  font-size: 2rem;
  margin: 8px 0 16px;
}
.featured-lead {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}
.featured-lead strong { color: var(--accent); }

.years-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 1.8rem;
}
.year-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  transition: border-color 0.25s, background 0.25s;
}
.year-card:hover { border-color: var(--primary); }
.year-card-current { border-color: var(--primary-soft-2); }
.year-card-upcoming {
  background: linear-gradient(135deg, var(--primary-soft), transparent);
  border-color: var(--primary);
}
.year-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.year-card-upcoming .year-num { color: var(--primary); }
.year-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 6px 0 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.year-card ul {
  list-style: none;
  padding-left: 0;
  font-size: 0.84rem;
  color: var(--text-soft);
}
.year-card li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 4px;
}
.year-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  background: var(--primary);
  border-radius: 50%;
}
.upcoming-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-soft);
}
.meta-item [data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
.meta-item strong { color: var(--text); font-weight: 600; }

@media (max-width: 960px) {
  .featured-project { grid-template-columns: 1fr; }
  .featured-img { min-height: 300px; }
  .featured-content { padding: 28px 24px; }
  .years-grid { grid-template-columns: 1fr; }
  .featured-meta { grid-template-columns: 1fr; }
}

/* ============================
   MODAL
   ============================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4,13,31,0.8);
  backdrop-filter: blur(6px);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  overflow-y: auto;
  padding: 40px 20px;
}
.modal-backdrop.open { opacity: 1; visibility: visible; }
.modal {
  max-width: 880px;
  margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
}
.modal-backdrop.open .modal { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.5);
  color: #fff;
  cursor: pointer;
  z-index: 2;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(0,0,0,0.8); }
.modal-close [data-lucide] { width: 20px; height: 20px; }

.modal-hero {
  position: relative;
  height: 320px;
  background: linear-gradient(135deg, var(--bg-3), #0d2358);
  overflow: hidden;
}
.modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,13,31,0.95) 0%, rgba(4,13,31,0.7) 50%, rgba(4,13,31,0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 36px;
  color: #fff;
}
.modal-hero-overlay .port-cat {
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.modal-hero-overlay h2,
.modal-hero-overlay h2 * {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 8px 0 14px;
  color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.modal-hero-overlay h2 .grad {
  color: #ffffff !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
}
.modal-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.92rem;
  color: #ffffff;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.modal-hero-meta span { display: inline-flex; align-items: center; gap: 6px; color: #ffffff; }
.modal-hero-meta [data-lucide] { width: 16px; height: 16px; color: #ffffff; }

.modal-body { padding: 36px; }
.modal-section { margin-bottom: 2rem; }
.modal-section:last-child { margin-bottom: 0; }
.modal-section h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.8rem;
  font-family: 'Playfair Display', serif;
}
.modal-section p {
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}
.modal-section p strong { color: var(--accent); }
.modal-section p em { color: var(--gold); font-style: italic; }

.modal-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 1rem;
}
.modal-year {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.modal-year-current {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary-soft), transparent);
}
.modal-year-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.modal-year-head strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--accent);
}
.modal-year-current .modal-year-head strong { color: var(--primary); }
.modal-year-head span { font-size: 0.78rem; color: var(--muted); font-weight: 600; }
.modal-year ul { list-style: none; padding-left: 0; font-size: 0.85rem; color: var(--text-soft); }
.modal-year li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 6px;
}
.modal-year li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 5px; height: 5px;
  background: var(--primary);
  border-radius: 50%;
}

.modal-features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.modal-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--text-soft);
}
.modal-features [data-lucide] {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}
.modal-features strong { color: var(--text); font-weight: 600; }

.modal-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 30px;
  border-radius: var(--radius);
  margin-top: 2rem;
  text-align: center;
}
.modal-cta h3, .modal-cta p { color: #fff; }
.modal-cta p { margin-bottom: 1.2rem; }
.modal-cta-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.modal-cta .btn-ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.modal-cta .btn-ghost:hover { background: rgba(255,255,255,0.2); color: #fff; }
.modal-cta .btn-ghost [data-lucide] { width: 16px; height: 16px; margin-left: 4px; }

body.modal-open { overflow: hidden; }

@media (max-width: 720px) {
  .modal-body { padding: 24px; }
  .modal-hero { height: 240px; }
  .modal-hero-overlay { padding: 20px; }
  .modal-timeline { grid-template-columns: 1fr; }
  .modal-features { grid-template-columns: 1fr; }
}

/* ============================
   CORPORATE INFO
   ============================ */
.corp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.corp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.25s, border-color 0.25s;
}
.corp-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-soft-2);
}
.corp-row strong { color: #fff; }
.corp-row span { color: var(--muted); }
.corp-row { border-bottom-color: var(--border); }
.corp-icon {
  width: 50px; height: 50px;
  border-radius: 4px;
  background: var(--primary-soft);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.corp-icon [data-lucide] {
  width: 24px;
  height: 24px;
  color: var(--primary);
}
.corp-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.corp-row {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.corp-row:last-child { border-bottom: none; }
.corp-row strong {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
}
.corp-row strong a { color: var(--primary); }
.corp-row strong a:hover { text-decoration: underline; }
.corp-row span {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ============================
   WHATSAPP & SOCIAL
   ============================ */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: 1.5rem;
  transition: all 0.2s;
}
.whatsapp-btn:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37,211,102,0.25);
}
.whatsapp-btn [data-lucide] { width: 18px; height: 18px; }

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.social-btn {
  width: 40px; height: 40px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  display: grid;
  place-items: center;
  color: #9aa3b8;
  transition: all 0.2s;
}
.social-btn:hover {
  background: var(--primary);
  color: #fff;
}
.social-btn [data-lucide] { width: 18px; height: 18px; }

/* ============================
   SERVICES
   ============================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-soft-2);
  background: var(--surface-2);
}
.service-card p, .service-card li { color: var(--text-soft); }
.service-card ul { border-top-color: var(--border); }
.service-card:hover::before { transform: scaleY(1); }
.svc-icon {
  width: 56px; height: 56px;
  border-radius: 6px;
  background: var(--primary-soft);
  border: 1px solid var(--primary-soft-2);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.svc-icon [data-lucide] { color: var(--accent); }
.mini-icon { background: var(--primary-soft); border: 1px solid var(--primary-soft-2); }
.mini-icon [data-lucide] { color: var(--accent); }
.sector span { background: var(--primary-soft); border: 1px solid var(--primary-soft-2); }
.sector span [data-lucide] { color: var(--accent); }
.corp-icon { background: var(--primary-soft); border: 1px solid var(--primary-soft-2); }
.corp-icon [data-lucide] { color: var(--accent); }
.ci-icon [data-lucide] { color: var(--accent); }
.service-card h3 { margin-bottom: 0.6rem; }
.service-card p {
  font-size: 0.93rem;
  margin-bottom: 1rem;
}
.service-card ul {
  border-top: 1px dashed var(--border);
  padding-top: 14px;
}
.service-card li {
  position: relative;
  padding-left: 18px;
  font-size: 0.86rem;
  color: var(--text-soft);
  margin-bottom: 6px;
}
.service-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--primary);
}

/* ============================
   SECTORS
   ============================ */
.sectors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.sector {
  padding: 30px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.sector:hover {
  transform: translateY(-4px);
  border-color: var(--primary-soft-2);
  background: var(--surface-2);
}
.sector p { color: var(--text-soft); }
.sector span {
  width: 56px; height: 56px;
  background: var(--primary-soft);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.sector h4 { margin-bottom: 6px; }
.sector p { font-size: 0.86rem; }

/* ============================
   WHY US
   ============================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.why-card {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.why-card:hover { border-color: var(--primary-soft-2); background: var(--surface-2); }
.why-card p { color: var(--text-soft); }
.why-num { color: var(--accent); border-bottom-color: var(--primary); }
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.why-card h3 { margin-bottom: 0.6rem; }
.why-card p { font-size: 0.93rem; }

/* ============================
   TESTIMONIALS
   ============================ */
.testimonial-slider {
  position: relative;
  overflow: hidden;
  padding: 8px 4px 4px;
}
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.testimonial {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  display: flex;
  flex-direction: column;
}
.testimonial:hover {
  transform: translateY(-4px);
  border-color: var(--primary-soft-2);
  background: var(--surface-2);
}
.t-text { color: var(--text-soft); font-style: italic; font-family: 'Playfair Display', serif; font-size: 1.05rem; }
.t-quote { color: var(--accent); }
.t-quote {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--primary);
  margin-bottom: 8px;
  height: 38px;
}
.t-text {
  font-size: 0.96rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.t-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-top: auto;
}

.t-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 36px;
}
.t-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 1.2rem;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
  display: grid;
  place-items: center;
}
.t-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.t-dot { background: var(--border-2); }
.t-dots {
  display: flex;
  gap: 8px;
}
.t-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
}
.t-dot.active {
  width: 28px;
  border-radius: 6px;
  background: var(--primary);
}

/* ============================
   CTA BANNER
   ============================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark), #072a80);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.05), transparent 70%);
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-inner h2,
.cta-inner h2 * { color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; margin-bottom: 0.4rem; }
html[data-theme="light"] .cta-inner h2,
html[data-theme="light"] .cta-inner h2 * { color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; }
.cta-inner p { color: rgba(255,255,255,0.9); }

/* ============================
   CONTACT
   ============================ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}
.contact-info p { margin-bottom: 2rem; }
.contact-list {
  display: grid;
  gap: 18px;
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.contact-list strong { color: #fff; }
.contact-list span, .contact-list a { color: var(--text-soft); }
.ci-icon {
  width: 44px; height: 44px;
  background: var(--primary-soft);
  border: 1px solid var(--primary-soft-2);
  border-radius: 4px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-list strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.contact-list span, .contact-list a {
  color: var(--text-soft);
  font-size: 0.92rem;
}
.contact-list a:hover { color: var(--primary); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: var(--radius-lg);
}
.contact-form h3 { color: #fff; }
.field label { color: var(--text-soft); }
.contact-form h3 {
  margin-bottom: 1.2rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: #fff;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}
.field select option { background: var(--bg-2); color: #fff; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255,255,255,0.06);
}
.form-status {
  margin-top: 14px;
  font-size: 0.9rem;
  text-align: center;
  min-height: 1.2em;
}
.form-status.success { color: #16a34a; }
.form-status.error { color: #dc2626; }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--bg);
  color: #c5cbdc;
  padding: 70px 0 24px;
}
.footer .logo-text { color: #fff; }
.footer .logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer .logo-mark {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer .social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.footer .social-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c5cee0;
  transition: all 0.2s;
}
.footer .social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.footer .social-btn [data-lucide] {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand p {
  color: #9aa3b8;
  margin-top: 14px;
  font-size: 0.93rem;
  max-width: 320px;
}
.footer h5 { color: #ffffff !important; }
html[data-theme="light"] .footer h5 { color: #ffffff !important; }
.footer ul { display: grid; gap: 10px; }
.footer ul a, .footer ul li {
  color: #9aa3b8;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  color: #6b7387;
  flex-wrap: wrap;
  gap: 10px;
}

/* ============================
   REVEAL ANIMATIONS
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 320px; order: -1; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-grid { grid-template-columns: 1fr; gap: 40px; }
  .admin-portrait-wrap { position: relative; top: 0; max-width: 360px; margin: 0 auto; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .corp-grid { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .testimonial { flex: 0 0 calc((100% - 24px) / 2); }
}

@media (max-width: 720px) {
  .testimonial { flex: 0 0 100%; padding: 28px 24px; }
  .nav { padding: 10px 14px; gap: 8px; }
  .nav .logo-disc { width: 34px; height: 34px; }
  .nav .logo-text { font-size: 0.92rem; }
  .hamburger { padding: 8px; }
  .hamburger [data-lucide] { width: 20px; height: 20px; }

  .section { padding: 70px 0; }
  .section-head { margin-bottom: 40px; }
  .hero { padding: 110px 0 60px; }
  .hero-stats { grid-template-columns: 1fr; gap: 10px; max-width: 100%; }
  .hero-stats > div { display: flex; align-items: baseline; gap: 10px; padding: 12px 16px; }
  .hero-stats strong { font-size: 1.3rem; margin: 0; }
  .about-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; text-align: left; }
  .footer { padding: 50px 0 24px; }
  .footer-brand p { max-width: 100%; }
  .footer .social-links { margin-top: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; padding-top: 24px; }
  .contact-form { padding: 26px; }
  .cta-inner { flex-direction: column; text-align: center; align-items: stretch; }
  .stats-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .stat-num { font-size: 2.6rem; }
  .admin-quote { font-size: 1.1rem; }
  .admin-badge { right: 16px; bottom: -16px; padding: 12px 18px; }
  .admin-badge strong { font-size: 1.4rem; }
}

/* ============================
   MOBILE NAV DRAWER (overrides)
   ============================ */
@media (max-width: 900px) {
  .nav-cta { display: none; }
  .hamburger { display: inline-flex; }
  .theme-toggle { padding: 8px; }
  .theme-toggle [data-lucide] { width: 16px; height: 16px; }
  .nav { padding: 12px 18px; gap: 10px; }
  .nav .logo-disc { width: 38px; height: 38px; }
  .nav .logo-text { font-size: 1rem; }

  .nav-drawer {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: min(86vw, 360px);
    height: 100dvh;
    height: 100vh;
    background: var(--bg-2);
    z-index: 200;
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    overflow-y: auto;
  }
  html[data-theme="light"] .nav-drawer { background: #fff; }
  .nav-drawer.open { transform: translateX(0); }

  .nav-drawer .drawer-head {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
  }
  .nav-drawer .drawer-head .logo-text { font-size: 1rem; }
  .nav-drawer .drawer-head .logo-disc { width: 34px; height: 34px; }

  .nav-drawer .nav-links {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0;
    flex: 1;
  }
  .nav-drawer .nav-links li { width: 100%; }
  .nav-drawer .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 1rem;
    color: var(--text-soft);
    border-left: 3px solid transparent;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }
  .nav-drawer .nav-links a:hover,
  .nav-drawer .nav-links a.active {
    background: var(--primary-soft);
    border-left-color: var(--primary);
    color: #fff;
  }
  html[data-theme="light"] .nav-drawer .nav-links a:hover,
  html[data-theme="light"] .nav-drawer .nav-links a.active { color: var(--primary); }
  .nav-drawer .nav-links a::after { display: none; }

  .nav-drawer .drawer-cta {
    display: inline-flex !important;
    margin: 16px 20px 20px;
    justify-content: center;
  }

  .drawer-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(4,13,31,0.6);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(2px);
  }
  .drawer-backdrop.open { opacity: 1; visibility: visible; }
}

@media (max-width: 480px) {
  .nav { padding: 10px 14px; gap: 6px; }
  .nav .logo-disc { width: 34px; height: 34px; }
  .nav .logo-text { display: none; }
  .hamburger { padding: 8px; }
  .hamburger [data-lucide] { width: 20px; height: 20px; }
}
