:root {
  --navy: #071A2F;
  --navy-rgb: 7, 26, 47;
  --deep: #0B2748;
  --blue: #0D6EFD;
  --sky: #38BDF8;
  --gold: #F6B93B;
  --light: #F8FAFC;
  --text: #1F2937;
  --muted: #6B7280;
  --white: #FFFFFF;
  --green: #16A34A;
  --red: #DC2626;
  --line: #E5E7EB;
  --shadow: 0 18px 50px rgba(7, 26, 47, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Open Sans, Arial, sans-serif;
  color: var(--text);
  background: #F4F7FB;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(100% - 40px, 1560px); margin: 0 auto; }
@media (min-width: 1600px) {
  .container { width: calc(100% - 72px); max-width: 1760px; }
}
.section { padding: 88px 0; }
.section.alt { background: #EEF4FA; }
.section.dark { background: var(--navy); color: var(--white); }
.section-head { max-width: 1080px; margin: 0 0 34px; }
.section-head.center { margin-inline: auto; text-align: center; max-width: 1120px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}
h1, h2, h3, h4 {
  font-family: Poppins, Montserrat, Arial, sans-serif;
  margin: 0 0 14px;
  line-height: 1.15;
  color: inherit;
  letter-spacing: 0;
}
h1 { font-size: clamp(40px, 6vw, 72px); }
h2 { font-size: clamp(30px, 4vw, 46px); }
h3 { font-size: 22px; }
p { margin: 0 0 18px; color: var(--muted); }
.dark p, .hero p, .page-banner p { color: rgba(255,255,255,.78); }

.btn, button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius, 8px);
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-blue { color: var(--white); background: var(--blue); box-shadow: 0 14px 30px rgba(13,110,253,.25); }
.btn-gold { color: #1C1404; background: var(--gold); box-shadow: 0 14px 30px rgba(246,185,59,.28); }
.btn-outline { color: var(--white); border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.08); }
.btn-light { background: var(--white); color: var(--navy); border: 1px solid var(--line); }
.btn-small { min-height: 36px; padding: 8px 12px; font-size: 13px; }

.preloader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 9999;
  background: var(--navy);
  color: var(--white);
  transition: opacity .35s ease, visibility .35s ease;
}
.preloader span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,.22);
  border-top-color: var(--gold);
  animation: spin 1s linear infinite;
}
.preloader strong { margin-top: 78px; position: absolute; letter-spacing: 0; }
.preloader.is-hidden { opacity: 0; visibility: hidden; }
@keyframes spin { to { transform: rotate(360deg); } }
.no-scroll { overflow: hidden; }
.menu-overlay { position: fixed; inset: 0; background: rgba(7,26,47,.45); backdrop-filter: blur(4px); z-index: 1999; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.menu-overlay.is-open { opacity: 1; visibility: visible; }

.topbar { background: var(--deep); color: rgba(255,255,255,.86); font-size: 13px; }
.topbar-inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}
.topbar-left, .topbar-right { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.topbar a:hover { color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229,231,235,.72);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-stuck { background: rgba(255,255,255,.97); box-shadow: 0 16px 40px rgba(7,26,47,.11); }
.nav-wrap { min-height: 108px; display: flex; align-items: center; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 320px; flex: 0 0 auto; }
.brand img { width: 92px; height: 92px; object-fit: contain; flex: 0 0 92px; filter: drop-shadow(0 12px 24px rgba(7,26,47,.18)); }
.brand span { display: grid; gap: 2px; min-width: 0; }
.brand strong {
  display: block;
  color: var(--navy);
  background: linear-gradient(90deg, var(--navy), var(--blue) 58%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.05;
  white-space: nowrap;
}
.brand small { color: var(--muted); display: block; font-size: 12px; line-height: 1.25; font-weight: 700; max-width: 220px; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 6px; flex: 1; }
.main-nav > a, .nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
}
.main-nav > a.nav-pill, .nav-dropdown > a.nav-pill {
    background: rgba(239,246,255,.86);
    color: var(--blue);
    padding: 0 14px;
    border-radius: 8px;
    font-weight: 800;
    margin: 0 2px;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}
.main-nav > a.nav-pill:hover, .nav-dropdown:hover > a.nav-pill {
    background: #DBEAFE;
    color: var(--blue);
    transform: translateY(-1px);
}
.main-nav > a.nav-pill.active, .nav-dropdown > a.nav-pill.active {
    background: #DBEAFE;
    color: var(--blue);
}
.main-nav > a:hover, .nav-dropdown:hover > a, .main-nav .active {
  background: #DBEAFE;
  border-color: #DBEAFE;
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(13,110,253,.08);
}
.main-nav > a.highlight-color, .nav-dropdown > a.highlight-color, .dropdown-menu a.highlight-color { color: var(--gold); }
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 230px;
  padding: 12px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(7,26,47,.14);
  border: 1px solid rgba(229,231,235,.9);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
}
.dropdown-menu a:hover { background: var(--light); color: var(--blue); }
.mega-menu {
  width: min(720px, 90vw);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}
.icon-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); cursor: pointer; transition: background .2s, box-shadow .2s; position: relative; z-index: 2005; flex-direction: column; justify-content: center; align-items: center; gap: 5px; box-shadow: 0 10px 24px rgba(7,26,47,.08); }
.menu-toggle:hover { background: var(--light); box-shadow: 0 14px 30px rgba(7,26,47,.12); }
.menu-toggle span { display: block; width: 22px; height: 2px; border-radius: 999px; background: var(--navy); transition: all .3s cubic-bezier(0.4, 0, 0.2, 1); }
.menu-toggle span:nth-child(2) { width: 14px; margin-left: 8px; }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }
.service-side-section { margin-bottom: 64px; }
.service-side-section .section-header { border-bottom: 2px solid var(--gold); padding-bottom: 12px; margin-bottom: 32px; width: fit-content; min-width: 200px; }
.service-side-section .section-header h2 { margin: 0; color: var(--navy); }
.service-side-section .section-content-wrapper { display: grid; gap: 42px; align-items: start; }
.service-side-section.side-right .section-content-wrapper { grid-template-columns: 1.1fr .9fr; }
.service-side-section.side-left .section-content-wrapper { grid-template-columns: .9fr 1.1fr; }
.service-side-section.side-top .section-content-wrapper, .service-side-section.side-bottom .section-content-wrapper { grid-template-columns: 1fr; }
.section-media img { border-radius: var(--radius); object-fit: cover; max-width: 100%; transition: transform .4s ease; }
.section-media:hover img { transform: scale(1.02); }
.section-media.frame-shadow img { box-shadow: var(--shadow); }
.section-media.frame-border img { border: 2px solid var(--line); }
.section-text { font-size: 17px; line-height: 1.8; color: var(--text); }
.section-text ul { padding-left: 20px; }
.section-html-extra { margin-top: 24px; }
.search-panel {
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  transition: max-height .25s ease, border-color .25s ease;
}
.search-panel.is-open { max-height: 95px; border-color: var(--line); }
.search-panel form { display: flex; gap: 10px; padding: 14px 0; }
.search-panel input { flex: 1; }

.hero { position: relative; overflow: hidden; background: var(--navy); color: var(--white); }
.hero-slider { position: relative; min-height: 760px; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .65s ease;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.02); }
.hero-media video { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.02); }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,26,47,.92), rgba(7,26,47,.72) 48%, rgba(7,26,47,.26));
}
.hero-overlay-blue::after { background: linear-gradient(90deg, rgba(11,39,72,.92), rgba(13,110,253,.42)); }
.hero-overlay-glass::after { background: linear-gradient(90deg, rgba(7,26,47,.78), rgba(56,189,248,.18)); }
.hero-overlay-light::after { background: linear-gradient(90deg, rgba(7,26,47,.74), rgba(7,26,47,.18)); }
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: grid;
  align-content: center;
  max-width: 1060px;
  padding: 86px 0 120px;
}
.hero-content .eyebrow { animation: premiumTextIn .8s cubic-bezier(.16,1,.3,1) both; }
.hero-content h1,
.hero-content h2 {
  background: linear-gradient(90deg, #FFFFFF 0%, #E0F2FE 62%, #F6B93B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: premiumTextIn 1s cubic-bezier(.16,1,.3,1) .06s both;
}
.hero-content p { max-width: 900px; font-size: 20px; animation: premiumTextIn 1.05s cubic-bezier(.16,1,.3,1) .16s both; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: premiumTextIn 1.1s cubic-bezier(.16,1,.3,1) .26s both; }
.hero-glass {
  position: absolute;
  right: max(28px, calc((100vw - 1560px) / 2));
  bottom: 72px;
  z-index: 3;
  width: min(390px, calc(100% - 48px));
  padding: 18px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(14px);
  color: var(--white);
}
.hero-glass strong { display: block; font-size: 28px; }
.hero-glass span { color: rgba(255,255,255,.78); }
.hero-dots {
  position: absolute;
  z-index: 4;
  left: max(28px, calc((100vw - 1560px) / 2));
  bottom: 42px;
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 32px;
  height: 4px;
  border: 0;
  border-radius: 8px;
  background: rgba(255,255,255,.36);
}
.hero-dots button.is-active { background: var(--gold); }
.hero-arrows {
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
}
.hero-arrows button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(10px);
  pointer-events: auto;
  transform: translateY(-50%);
  transition: transform .26s cubic-bezier(.16,1,.3,1), background .2s ease, color .2s ease, border-color .2s ease;
}
.hero-arrows button[data-hero-prev] { left: max(18px, calc((100vw - 1760px) / 2 + 18px)); }
.hero-arrows button[data-hero-next] { right: max(18px, calc((100vw - 1760px) / 2 + 18px)); }
.hero-arrows button[data-hero-toggle] {
  top: auto;
  right: max(28px, calc((100vw - 1760px) / 2 + 28px));
  bottom: 42px;
  width: 40px;
  height: 40px;
  transform: none;
  font-size: 18px;
}
.hero-arrows button:hover { transform: translateY(-50%) scale(1.08); background: var(--gold); color: #1C1404; border-color: var(--gold); }
.hero-arrows button[data-hero-toggle]:hover { transform: scale(1.08); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideIn { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes premiumTextIn {
  from { opacity: 0; transform: translate3d(0, 28px, 0); filter: blur(8px); }
  to { opacity: 1; transform: translate3d(0, 0, 0); filter: blur(0); }
}

.quick-grid, .service-grid, .feature-grid, .stats-grid, .process-grid, .gallery-grid, .news-grid, .team-grid, .link-grid, .admin-stats {
  display: grid;
  gap: 22px;
}
.quick-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: -52px; position: relative; z-index: 5; }
.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.process-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.news-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card, .quick-card, .service-card, .news-card, .team-card, .testimonial-card, .stat-card, .process-card, .info-card, .form-card {
  background: var(--white);
  border: 1px solid rgba(226,232,240,.9);
  border-radius: var(--radius, 8px);
  box-shadow: 0 18px 46px rgba(7,26,47,.08);
}
.quick-card, .stat-card, .process-card, .info-card { padding: 24px; }
.quick-card { min-height: 152px; transition: transform .22s ease, box-shadow .22s ease; }
.quick-card:hover, .service-card:hover, .news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.icon-pill {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--navy);
  background: #E0F2FE;
  font-size: 13px;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 46px;
  align-items: center;
}
.media-frame { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); position: relative; }
.media-frame img { width: 100%; min-height: 460px; object-fit: cover; transition: transform .45s ease; }
.media-frame:hover img { transform: scale(1.04); }
.check-list { display: grid; gap: 12px; padding: 0; margin: 22px 0; list-style: none; }
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
}
.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex: 0 0 18px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px #DCFCE7;
}

.service-card { overflow: hidden; transition: transform .22s ease, box-shadow .22s ease; }
.service-card figure { margin: 0; height: 218px; overflow: hidden; background: #E5E7EB; }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover img { transform: scale(1.06); }
.service-card .body { padding: 22px; }
.service-card h3 { min-height: 52px; }

.highlight-band {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.highlight-band .feature-grid .info-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: var(--white); }
.highlight-band .info-card p { color: rgba(255,255,255,.72); }
.stat-card strong { display: block; color: var(--blue); font-size: 42px; font-family: Poppins, sans-serif; line-height: 1; }
.stat-card span { color: var(--muted); font-weight: 800; }
.process-card { position: relative; }
.process-card b {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: #1C1404;
  margin-bottom: 16px;
}

.page-banner {
  min-height: 360px;
  display: grid;
  align-items: center;
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(7,26,47,.9), rgba(7,26,47,.48)), var(--banner);
  background-size: cover;
  background-position: center;
}
.page-banner h1 { max-width: 850px; }
.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin: 20px 0 0;
  color: rgba(255,255,255,.82);
  font-weight: 700;
}
.breadcrumb a:hover { color: var(--gold); }

.content-body { max-width: none; }
.content-body h2, .content-body h3 { margin-top: 28px; color: var(--navy); }
.content-body p { font-size: 17px; }
.service-rich-content img, .service-extra-html img { border-radius: 8px; margin: 18px 0; }
.service-rich-content table, .service-extra-html table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.service-rich-content th, .service-rich-content td, .service-extra-html th, .service-extra-html td { border: 1px solid var(--line); padding: 10px; text-align: left; }
.service-video { margin: 32px 0; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; background: var(--navy); box-shadow: var(--shadow); position: relative; }
.service-video::after { content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; background: var(--gold); }
.service-video iframe, .service-video video { width: 100%; height: 100%; border: 0; display: block; }
.section-media img, .content-body img { margin: 24px 0; border-radius: var(--radius); }
.content-body h2 { border-bottom: 2px solid var(--line); padding-bottom: 10px; margin-top: 42px; margin-bottom: 24px; }
.sidebar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 42px;
  align-items: start;
}
.sidebar-box {
  padding: 24px;
  border: 1px solid rgba(226,232,240,.92);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
  position: sticky;
  top: 130px;
}
.sidebar-box a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--deep);
  font-weight: 800;
}
.sidebar-box a:hover { color: var(--blue); }
.sidebar-box .btn { width: 100%; margin-top: 12px; border-bottom: 0; color: #1C1404; }

.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 8px; background: var(--white); overflow: hidden; }
.faq-item button {
  width: 100%;
  padding: 18px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-answer p { padding: 0 18px 18px; margin: 0; }
.faq-item.is-open .faq-answer { max-height: 220px; }

.form-card { padding: 28px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: grid; gap: 7px; color: var(--deep); font-weight: 800; margin-bottom: 7px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
input, select, textarea {
  width: 100%;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  padding: 12px 13px;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
textarea { min-height: 140px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(13,110,253,.12); }
.checkbox-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--light);
  font-weight: 700;
}
.checkbox-grid input { width: auto; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

.gallery-toolbar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.filter-btn {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  padding: 9px 13px;
  font-weight: 800;
  cursor: pointer;
}
.filter-btn.is-active { background: var(--blue); color: var(--white); border-color: var(--blue); }
.gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(90deg, #EEF2F7, #F8FAFC, #EEF2F7);
  background-size: 200% 100%;
  animation: skeleton 1.6s ease infinite;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; animation: none; }
.gallery-item figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(7,26,47,.8);
  color: var(--white);
  font-weight: 800;
}
@keyframes skeleton { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  z-index: 9998;
  background: rgba(7,26,47,.88);
  padding: 28px;
}
.lightbox.is-open { display: grid; }
.lightbox img { max-height: 82vh; border-radius: 8px; box-shadow: var(--shadow); }

.news-card { overflow: hidden; }
.news-card img { height: 220px; width: 100%; object-fit: cover; }
.news-card .body { padding: 22px; }
.meta-line { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; color: var(--muted); font-size: 13px; font-weight: 800; margin-bottom: 10px; }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 34px; }
.pagination a, .pagination span {
  min-width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}
.pagination .current { background: var(--blue); color: var(--white); border-color: var(--blue); }

.testimonial-slider { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.testimonial-card { padding: 24px; }
.stars { color: var(--gold); font-weight: 900; margin-bottom: 12px; }
.partner-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}
.partner-logo {
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--deep);
  font-weight: 900;
  text-align: center;
}
.ceo-message {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  position: relative;
  overflow: hidden;
}
.ceo-message-inner {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.ceo-message.is-media-right .ceo-message-media { order: 2; }
.ceo-message.is-media-right .ceo-message-copy { order: 1; }
.ceo-message.no-media .ceo-message-inner { grid-template-columns: minmax(0, 860px); justify-content: center; }
.ceo-message-media {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #E5E7EB;
  position: relative;
}
.ceo-message-media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: var(--gold);
}
.ceo-message-media img {
  width: 100%;
  min-height: 430px;
  height: 100%;
  object-fit: cover;
}
.ceo-message-copy {
  border-left: 4px solid var(--gold);
  padding-left: 28px;
}
.ceo-message-copy .eyebrow { margin-bottom: 10px; }
.ceo-message-copy h2 { color: var(--navy); }
.ceo-message-subtitle {
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 18px;
}
.ceo-message-body {
  color: var(--text);
  font-size: 17px;
  line-height: 1.85;
}
.ceo-message-body p:last-child { margin-bottom: 0; }
.cta-band {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--deep));
  padding: 54px 0;
}
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.cta-inner p { max-width: 720px; }

.site-footer { background: #061426; color: rgba(255,255,255,.78); padding: 72px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .9fr 1fr; gap: 36px; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--white); font-weight: 900; }
.footer-brand img { width: 78px; height: 62px; object-fit: contain; }
.site-footer h2 { color: var(--white); font-size: 17px; margin-bottom: 18px; }
.footer-nav-list a { display: block; margin: 8px 0; color: rgba(255,255,255,.78); transition: color .2s ease; }
.footer-nav-list a:hover { color: var(--gold); }
.footer-sub-nav { padding-left: 14px; margin-top: -4px; margin-bottom: 12px; border-left: 1px solid rgba(255,255,255,.1); }
.footer-sub-nav a { font-size: 14px; margin: 4px 0; opacity: .85; }
.social-row { display: flex; gap: 14px; flex-wrap: wrap; }
.social-row a { display: inline-flex; }
.support-note { color: var(--gold); font-weight: 900; }
.newsletter-form label { display: block; color: var(--white); font-size: 16px; font-weight: 800; margin-bottom: 12px; }
.newsletter-form div { display: flex; gap: 0; border-radius: 8px; overflow: hidden; }
.newsletter-form input { border-radius: 8px 0 0 8px; border: 0; height: 46px; }
.newsletter-form button { border: 0; border-radius: 0 8px 8px 0; background: var(--gold); color: #1C1404; font-weight: 900; padding: 0 20px; height: 46px; cursor: pointer; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; margin-top: 44px; }
.footer-bottom span:last-child { display: flex; gap: 16px; }

.whatsapp-float, .back-to-top {
  position: fixed;
  right: 22px;
  z-index: 900;
  border: 0;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: var(--shadow);
}
.whatsapp-float { bottom: 86px; background: var(--green); color: var(--white); }
.back-to-top { bottom: 28px; background: var(--navy); color: var(--white); cursor: pointer; opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s ease; }
.back-to-top.is-visible { opacity: 1; visibility: visible; }

.toast-alert {
  position: fixed;
  right: 22px;
  top: 122px;
  z-index: 1002;
  max-width: 380px;
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow);
  font-weight: 800;
  animation: toastIn .34s ease both;
}
.toast-alert.error { background: var(--red); }
.toast-alert.is-hiding { animation: toastOut .28s ease both; }
@keyframes toastIn { from { opacity: 0; transform: translateY(-12px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes toastOut { from { opacity: 1; transform: translateY(0) scale(1); } to { opacity: 0; transform: translateY(-12px) scale(.96); } }
.status-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  background: #E0F2FE;
  color: var(--deep);
  font-size: 12px;
  font-weight: 900;
}
.status-badge.new { background: #FEF3C7; color: #92400E; }
.status-badge.confirmed, .status-badge.active, .status-badge.published { background: #DCFCE7; color: #166534; }
.status-badge.cancelled, .status-badge.inactive { background: #FEE2E2; color: #991B1B; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.theme-voyager-classic {
  --navy: #0A2540;
  --deep: #143A5A;
  --blue: #1B75BB;
  --gold: #E63946;
  --light: #F4F8FB;
}
.theme-voyager-classic .topbar { background: #0A2540; }
.theme-voyager-classic .btn-gold { color: #fff; background: #E63946; box-shadow: 0 14px 30px rgba(230,57,70,.24); }
.theme-voyager-classic .hero-media::after { background: linear-gradient(90deg, rgba(10,37,64,.9), rgba(20,58,90,.54)); }
.animation-minimal .reveal { opacity: 1; transform: none; transition: none; }
.button-blue-gold .btn-gold { background: var(--blue); color: #fff; }
.button-classic-red .btn-gold { background: #E63946; color: #fff; }
.frame-border .media-frame, .frame-border .service-video { box-shadow: none; border: 2px solid var(--line); }
.frame-glass .media-frame { box-shadow: none; border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.12); }
.frame-none .media-frame, .frame-none .service-video { box-shadow: none; border: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
