:root {
  --blue-900: #0d3554;
  --blue-800: #113f63;
  --blue-700: #145886;
  --blue-600: #1d6a9f;
  --blue-100: #e8f1f7;
  --blue-050: #f5f9fc;
  --ink: #14212b;
  --muted: #5d6d78;
  --line: #dbe5ed;
  --line-strong: #c7d5df;
  --surface: #ffffff;
  --surface-soft: #f7f9fb;
  --neutral: #eef2f5;
  --shadow: 0 18px 40px rgba(13, 53, 84, 0.14);
  --container: 1180px;
  --radius: 8px;
  --focus: 0 0 0 3px rgba(20, 88, 134, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

body.admin-open {
  background: var(--surface-soft);
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--surface);
  border: 1px solid var(--blue-700);
  border-radius: 4px;
  color: var(--blue-900);
  padding: 8px 12px;
}

.skip-link:focus {
  transform: translateY(0);
  outline: none;
  box-shadow: var(--focus);
}

.loading-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  color: var(--blue-800);
  background: var(--surface);
}

.loading-mark {
  width: 48px;
  height: 48px;
  border: 4px solid var(--blue-100);
  border-top-color: var(--blue-700);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: grid;
  grid-template-columns: 86px minmax(145px, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand-logo-box {
  width: 86px;
  height: 52px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.brand-logo-box img {
  width: 82px;
  height: 48px;
  object-fit: contain;
}

.brand-text strong {
  display: block;
  color: var(--blue-900);
  font-size: 1rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link,
.admin-link,
.icon-button {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--blue-900);
  padding: 9px 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.nav-link:hover,
.admin-link:hover,
.icon-button:hover,
.nav-link[aria-current="page"] {
  background: var(--blue-050);
  color: var(--blue-700);
}

.icon-button {
  width: 42px;
  padding: 0;
}

.icon-button svg,
.floating-actions svg,
.button svg,
.small-action svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.mobile-menu {
  display: none;
}

.hero {
  min-height: 700px;
  position: relative;
  display: grid;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(8, 35, 58, 0.92) 0%, rgba(13, 53, 84, 0.78) 42%, rgba(13, 53, 84, 0.38) 72%, rgba(13, 53, 84, 0.16) 100%),
    url("/assets/hero-psa.webp");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--surface));
}

.hero-inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 96px 0 118px;
}

.hero-content {
  max-width: 720px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-pills span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: #f4f8fb;
  padding: 6px 12px;
  font-size: 0.88rem;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-100);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: 3.25rem;
  line-height: 1.08;
  font-weight: 800;
}

.hero p {
  max-width: 640px;
  margin: 22px 0 0;
  color: #edf5fb;
  font-size: 1.16rem;
}

.hero-actions,
.section-actions,
.form-actions,
.admin-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 30px;
}

.button,
.small-action {
  border: 1px solid transparent;
  border-radius: 6px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  font-weight: 700;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.button:hover,
.small-action:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #ffffff;
  background: var(--blue-700);
  border-color: var(--blue-700);
}

.hero .button.primary {
  color: var(--blue-900);
  background: #ffffff;
  border-color: #ffffff;
}

.button.secondary {
  color: var(--blue-900);
  background: #ffffff;
  border-color: var(--line-strong);
}

.hero .button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.56);
}

.button.ghost {
  color: var(--blue-700);
  background: transparent;
  border-color: var(--line-strong);
}

.button.danger {
  color: #ffffff;
  background: #7f1d1d;
  border-color: #7f1d1d;
}

.small-action {
  min-height: 36px;
  padding: 7px 10px;
  border-color: var(--line-strong);
  color: var(--blue-900);
  background: var(--surface);
  font-size: 0.9rem;
}

.section {
  padding: 76px 0;
  background: var(--surface);
}

.section.soft {
  background: var(--surface-soft);
}

.section.blue {
  background: var(--blue-900);
  color: #ffffff;
}

.section.narrow {
  padding: 54px 0;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--blue-700);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section.blue .section-kicker {
  color: var(--blue-100);
}

.section-title {
  margin: 0;
  color: var(--blue-900);
  font-size: 2.1rem;
  line-height: 1.16;
}

.section.blue .section-title,
.section.blue .lead,
.section.blue p {
  color: #ffffff;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 760px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card,
.service-card,
.post-card,
.faq-item,
.calendar-row,
.metric,
.process-step,
.approach-card,
.industry-item,
.contact-panel,
.admin-panel,
.editor-panel,
.result-item,
.auth-panel,
.notice {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.card,
.service-card,
.post-card,
.metric,
.process-step,
.approach-card,
.industry-item,
.contact-panel,
.admin-panel,
.editor-panel,
.auth-panel,
.notice {
  box-shadow: 0 10px 24px rgba(13, 53, 84, 0.06);
}

.card,
.metric,
.process-step,
.industry-item,
.contact-panel,
.admin-panel,
.editor-panel,
.auth-panel,
.notice {
  padding: 22px;
}

.metric strong {
  display: block;
  color: var(--blue-900);
  font-size: 1.25rem;
  line-height: 1.24;
}

.approach-card {
  padding: 22px;
}

.approach-card svg {
  width: 28px;
  height: 28px;
  color: var(--blue-700);
  margin-bottom: 16px;
}

.approach-card h3 {
  margin: 0 0 8px;
  color: var(--blue-900);
  line-height: 1.25;
}

.approach-card p {
  margin: 0;
  color: var(--muted);
}

.metric span,
.card-meta,
.post-meta,
.fine-print,
.muted {
  color: var(--muted);
  font-size: 0.92rem;
}

.service-card,
.post-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 190px 1fr;
}

.service-card img,
.post-card img,
.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 20px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.card-body h3,
.process-step h3,
.industry-item h3,
.contact-panel h3,
.admin-panel h2,
.editor-panel h2,
.auth-panel h1 {
  margin: 0;
  color: var(--blue-900);
  line-height: 1.25;
}

.card-body p,
.process-step p,
.industry-item p,
.contact-panel p {
  margin: 0;
  color: var(--muted);
}

.tag-row,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag,
.filter-chip {
  min-height: 32px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: var(--blue-900);
  background: var(--surface);
  padding: 5px 10px;
  font-size: 0.86rem;
  font-weight: 700;
}

.filter-chip {
  cursor: pointer;
}

.filter-chip.active {
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: #ffffff;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 36px;
  align-items: start;
}

.value-list,
.plain-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.value-list li,
.plain-list li {
  border-left: 3px solid var(--blue-700);
  background: var(--blue-050);
  padding: 10px 12px;
  border-radius: 0 6px 6px 0;
  color: var(--blue-900);
}

.process-step .step-index {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--blue-700);
  font-weight: 800;
  margin-bottom: 16px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item summary {
  min-height: 54px;
  padding: 16px 18px;
  cursor: pointer;
  color: var(--blue-900);
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--blue-700);
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  border-top: 1px solid var(--line);
  margin: 0;
  padding: 16px 18px 18px;
  color: var(--muted);
}

.page-hero {
  background: var(--blue-900);
  color: #ffffff;
  padding: 76px 0 62px;
}

.page-hero .container {
  display: grid;
  gap: 16px;
}

.page-hero h1 {
  margin: 0;
  font-size: 2.7rem;
  line-height: 1.12;
}

.page-hero p {
  max-width: 780px;
  color: var(--blue-100);
  font-size: 1.08rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 32px;
  align-items: start;
}

.detail-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
}

.prose {
  color: var(--muted);
  font-size: 1.02rem;
}

.prose p {
  margin-bottom: 1rem;
}

.map-frame,
.embed-frame {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.map-frame {
  height: 390px;
}

.map-frame iframe,
.embed-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-frame {
  height: 580px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 26px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.contact-row svg {
  width: 20px;
  height: 20px;
  color: var(--blue-700);
  flex: 0 0 auto;
  margin-top: 2px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--blue-900);
  font-weight: 800;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  padding: 10px 12px;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  margin: 0;
}

.checkbox-field span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-900);
  font-weight: 800;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.form-status {
  margin-top: 12px;
  color: var(--blue-900);
  font-weight: 700;
}

.calendar-tools {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.calendar-row {
  display: grid;
  grid-template-columns: 1.1fr 0.55fr 0.65fr 1.6fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  margin-bottom: 10px;
}

.calendar-row strong {
  color: var(--blue-900);
}

.calendar-row span {
  color: var(--muted);
}

.search-shell {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(13, 53, 84, 0.35);
  display: none;
  padding: 84px 16px 24px;
}

.search-shell.open {
  display: block;
}

.search-dialog {
  width: min(760px, 100%);
  max-height: calc(100vh - 120px);
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.search-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.search-results {
  overflow: auto;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.result-item {
  padding: 14px;
}

.result-item strong {
  display: block;
  color: var(--blue-900);
}

.result-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  gap: 10px;
}

.floating-actions a,
.floating-actions button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--blue-900);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(13, 53, 84, 0.14);
}

.floating-actions a:hover,
.floating-actions button:hover {
  color: var(--blue-700);
}

.empty-state {
  padding: 22px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--surface);
}

.footer {
  background: var(--blue-900);
  color: #ffffff;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr;
  gap: 34px;
}

.footer a,
.footer p {
  color: var(--blue-100);
}

.footer .brand-logo-box {
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 34px;
  padding-top: 18px;
  color: var(--blue-100);
  font-size: 0.9rem;
}

.admin-shell {
  min-height: 100vh;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  background: var(--blue-900);
  color: #ffffff;
}

.admin-topbar h1 {
  font-size: 1.05rem;
  margin: 0;
  margin-right: auto;
}

.admin-layout {
  width: min(100% - 32px, 1320px);
  margin: 26px auto 54px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.admin-nav {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 8px;
}

.admin-nav button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--blue-900);
  text-align: left;
  padding: 8px 11px;
  font-weight: 800;
}

.admin-nav button.active {
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: #ffffff;
}

.admin-content {
  display: grid;
  gap: 18px;
}

.admin-panel h2,
.editor-panel h2 {
  font-size: 1.25rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.admin-table th,
.admin-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--blue-900);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.admin-table td:last-child {
  width: 180px;
}

.editor-panel {
  display: none;
  scroll-margin-top: 96px;
}

.editor-panel.open {
  display: block;
  border: 2px solid var(--blue-700);
  box-shadow: var(--shadow);
}

.admin-form {
  margin-top: 16px;
}

.admin-form textarea.small {
  min-height: 74px;
}

.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--surface-soft);
}

.auth-panel {
  width: min(460px, 100%);
}

.auth-panel .brand-logo-box {
  margin-bottom: 16px;
}

.notice {
  color: var(--blue-900);
  background: var(--blue-050);
}

.inline-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin: 28px 0 8px;
  color: var(--blue-900);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1080px) {
  .nav-wrap {
    gap: 12px;
  }

  .brand {
    min-width: 230px;
  }

  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 16px 18px;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-link,
  .admin-link {
    justify-content: flex-start;
    border-radius: 6px;
  }

  .mobile-menu {
    display: inline-flex;
    margin-left: auto;
  }

  .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid.three,
  .grid.five,
  .contact-grid,
  .detail-layout,
  .about-band,
  .footer-grid,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav-wrap {
    width: min(100% - 20px, var(--container));
    min-height: 72px;
  }

  .brand {
    grid-template-columns: 74px minmax(120px, 1fr);
    min-width: 0;
    gap: 8px;
  }

  .brand-logo-box {
    width: 74px;
    height: 46px;
  }

  .brand-logo-box img {
    width: 70px;
    height: 42px;
  }

  .brand-text strong {
    font-size: 0.9rem;
  }

  .brand-text span {
    font-size: 0.72rem;
  }

  .hero {
    min-height: 640px;
    background-position: center;
  }

  .hero-inner {
    width: min(100% - 24px, var(--container));
    padding: 78px 0 108px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 54px 0;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .section-head,
  .calendar-tools {
    display: grid;
    align-items: start;
  }

  .section-title {
    font-size: 1.72rem;
  }

  .page-hero h1 {
    font-size: 2.05rem;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .post-card {
    grid-template-rows: 170px 1fr;
  }

  .calendar-row {
    grid-template-columns: 1fr;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }

  .footer {
    padding-bottom: 78px;
  }

  .admin-topbar {
    flex-wrap: wrap;
    padding: 12px;
  }

  .admin-layout {
    width: min(100% - 24px, 1320px);
  }

  .admin-nav {
    grid-template-columns: 1fr;
  }

  .admin-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
/ *   C a l e n d a r   G r i d   S t y l e s   * / 
 
 . c a l e n d a r - w r a p p e r   { 
 
     m a r g i n - b o t t o m :   2 r e m ; 
 
     b a c k g r o u n d :   # f f f f f f ; 
 
     b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ; 
 
     b o r d e r - r a d i u s :   8 p x ; 
 
     o v e r f l o w :   h i d d e n ; 
 
 } 
 
 . c a l e n d a r - h e a d e r - b a r   { 
 
     b a c k g r o u n d :   # f 8 f a f c ; 
 
     p a d d i n g :   1 r e m ; 
 
     b o r d e r - b o t t o m :   1 p x   s o l i d   # e 2 e 8 f 0 ; 
 
     d i s p l a y :   f l e x ; 
 
     j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
 
     a l i g n - i t e m s :   c e n t e r ; 
 
     f l e x - w r a p :   w r a p ; 
 
     g a p :   1 r e m ; 
 
 } 
 
 . c a l e n d a r - h e a d e r - b a r   h 3   { 
 
     m a r g i n :   0 ; 
 
     f o n t - s i z e :   1 . 2 5 r e m ; 
 
 } 
 
 . c a l e n d a r - l e g e n d   { 
 
     d i s p l a y :   f l e x ; 
 
     g a p :   1 r e m ; 
 
     f o n t - s i z e :   0 . 8 7 5 r e m ; 
 
 } 
 
 . l e g e n d - i t e m   { 
 
     d i s p l a y :   f l e x ; 
 
     a l i g n - i t e m s :   c e n t e r ; 
 
     g a p :   0 . 2 5 r e m ; 
 
 } 
 
 . l e g e n d - c o l o r   { 
 
     d i s p l a y :   i n l i n e - b l o c k ; 
 
     w i d t h :   1 2 p x ; 
 
     h e i g h t :   1 2 p x ; 
 
     b o r d e r - r a d i u s :   2 p x ; 
 
 } 
 
 . c o l o r - i n c o m e - t a x   {   b a c k g r o u n d :   # e f 4 4 4 4 ;   } 
 
 . c o l o r - g s t   {   b a c k g r o u n d :   # 3 b 8 2 f 6 ;   } 
 
 . c o l o r - t o d a y   {   b a c k g r o u n d :   # 2 2 c 5 5 e ;   } 
 
 
 
 . c a l e n d a r - g r i d   { 
 
     d i s p l a y :   g r i d ; 
 
     g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 7 ,   1 f r ) ; 
 
     b a c k g r o u n d :   # e 2 e 8 f 0 ; 
 
     g a p :   1 p x ; 
 
 } 
 
 . c a l e n d a r - c e l l   { 
 
     b a c k g r o u n d :   # f f f f f f ; 
 
     m i n - h e i g h t :   8 0 p x ; 
 
     p a d d i n g :   0 . 5 r e m ; 
 
     d i s p l a y :   f l e x ; 
 
     f l e x - d i r e c t i o n :   c o l u m n ; 
 
 } 
 
 . c a l e n d a r - c e l l . e m p t y   { 
 
     b a c k g r o u n d :   # f 8 f a f c ; 
 
 } 
 
 . d a y - n a m e   { 
 
     b a c k g r o u n d :   # f 8 f a f c ; 
 
     p a d d i n g :   0 . 5 r e m ; 
 
     t e x t - a l i g n :   c e n t e r ; 
 
     f o n t - w e i g h t :   6 0 0 ; 
 
     f o n t - s i z e :   0 . 8 7 5 r e m ; 
 
     c o l o r :   # 6 4 7 4 8 b ; 
 
 } 
 
 . d a y - n u m b e r   { 
 
     f o n t - w e i g h t :   6 0 0 ; 
 
     m a r g i n - b o t t o m :   0 . 5 r e m ; 
 
 } 
 
 . c a l e n d a r - c e l l . t o d a y   . d a y - n u m b e r   { 
 
     c o l o r :   # 2 2 c 5 5 e ; 
 
 } 
 
 . d u e - b a d g e s   { 
 
     d i s p l a y :   f l e x ; 
 
     f l e x - d i r e c t i o n :   c o l u m n ; 
 
     g a p :   0 . 2 5 r e m ; 
 
 } 
 
 . d u e - b a d g e   { 
 
     f o n t - s i z e :   0 . 7 r e m ; 
 
     p a d d i n g :   0 . 1 2 5 r e m   0 . 2 5 r e m ; 
 
     b o r d e r - r a d i u s :   4 p x ; 
 
     c o l o r :   w h i t e ; 
 
     l i n e - h e i g h t :   1 . 2 ; 
 
     w h i t e - s p a c e :   n o w r a p ; 
 
     o v e r f l o w :   h i d d e n ; 
 
     t e x t - o v e r f l o w :   e l l i p s i s ; 
 
 } 
 
 . d u e - b a d g e . i n c o m e - t a x   {   b a c k g r o u n d :   # e f 4 4 4 4 ;   } 
 
 . d u e - b a d g e . g s t   {   b a c k g r o u n d :   # 3 b 8 2 f 6 ;   } 
 
 . d u e - b a d g e . o t h e r   {   b a c k g r o u n d :   # 6 4 7 4 8 b ;   } 
 
 
 
 / *   F A Q   A c c o r d i o n   S t y l e s   * / 
 
 d e t a i l s . f a q - i t e m   { 
 
     b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ; 
 
     b o r d e r - r a d i u s :   8 p x ; 
 
     m a r g i n - b o t t o m :   1 r e m ; 
 
     b a c k g r o u n d :   # f f f f f f ; 
 
 } 
 
 d e t a i l s . f a q - i t e m   s u m m a r y   { 
 
     p a d d i n g :   1 . 2 5 r e m ; 
 
     f o n t - w e i g h t :   6 0 0 ; 
 
     f o n t - s i z e :   1 . 1 2 5 r e m ; 
 
     c u r s o r :   p o i n t e r ; 
 
     l i s t - s t y l e :   n o n e ; 
 
     d i s p l a y :   f l e x ; 
 
     j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
 
     a l i g n - i t e m s :   c e n t e r ; 
 
 } 
 
 d e t a i l s . f a q - i t e m   s u m m a r y : : - w e b k i t - d e t a i l s - m a r k e r   { 
 
     d i s p l a y :   n o n e ; 
 
 } 
 
 d e t a i l s . f a q - i t e m   s u m m a r y : : a f t e r   { 
 
     c o n t e n t :   ' + ' ; 
 
     f o n t - s i z e :   1 . 5 r e m ; 
 
     c o l o r :   # 6 4 7 4 8 b ; 
 
     l i n e - h e i g h t :   1 ; 
 
 } 
 
 d e t a i l s . f a q - i t e m [ o p e n ]   s u m m a r y : : a f t e r   { 
 
     c o n t e n t :   ' � � ' ; 
 
 } 
 
 d e t a i l s . f a q - i t e m   p   { 
 
     p a d d i n g :   0   1 . 2 5 r e m   1 . 2 5 r e m ; 
 
     m a r g i n :   0 ; 
 
     c o l o r :   # 4 7 5 5 6 9 ; 
 
 } 
 
 
.hero-slider-container {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  background-image: none;
  background-color: var(--blue-900);
}
.hero-slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  z-index: 2;
}
.hero-bg-video {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(8, 35, 58, 0.92) 0%, rgba(13, 53, 84, 0.78) 42%, rgba(13, 53, 84, 0.38) 72%, rgba(13, 53, 84, 0.16) 100%);
  z-index: -1;
}
.hero-slider-nav {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.slider-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none; cursor: pointer;
  transition: background 0.3s;
  padding: 0;
}
.slider-dot.active {
  background: #fff;
}
.hero-slide .hero-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   Chatbot Widget Styles
   ========================================================================== */
.chatbot-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: inherit;
}

.chatbot-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(13, 53, 84, 0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.2s ease;
}

.chatbot-btn:hover {
  transform: scale(1.1);
  background: var(--blue-700);
}

.chatbot-btn svg {
  width: 28px;
  height: 28px;
}

.chatbot-window {
  position: absolute;
  bottom: calc(100% + 16px);
  right: 0;
  width: 350px;
  height: 500px;
  z-index: 10000;
  max-height: calc(100vh - 120px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.95);
  transform-origin: bottom right;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--line);
}

.chatbot-widget.open .chatbot-window {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  background: var(--primary);
  color: #fff;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.chatbot-close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  display: flex;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.chatbot-close:hover {
  opacity: 1;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.4;
  word-wrap: break-word;
}

.chat-bubble.bot {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.chat-bubble.user {
  background: var(--primary);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  box-shadow: 0 2px 8px rgba(13, 53, 84, 0.1);
}

.chatbot-input-area {
  padding: 12px;
  background: #fff;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 8px;
}

.chatbot-input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 10px 16px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.chatbot-input:focus {
  border-color: var(--primary);
}

.chatbot-send {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.chatbot-send:hover {
  background: var(--blue-700);
}

.chatbot-send svg {
  width: 20px;
  height: 20px;
}


}

/* FAB Cluster Styles */
.fab-cluster {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.fab-item {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.fab-item:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.fab-item svg {
  width: 32px;
  height: 32px;
}

.fab-item.wa svg path {
  fill: #25D366;
}

@media (max-width: 480px) {
  .chatbot-window {
    width: calc(100vw - 32px);
    height: 400px;
    max-height: calc(100vh - 120px);
    right: -16px;
    bottom: calc(100% + 16px);
  }
  
  .chatbot-widget {
    bottom: 16px;
    right: 16px;
  }
}

/* Typing Indicator */
.psa-typing {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: 12px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  border: 1px solid var(--line);
  width: fit-content;
}

.psa-typing.active {
  display: flex;
}

.psa-dot {
  width: 6px;
  height: 6px;
  background: #888;
  border-radius: 50%;
  animation: psaBounce 1.4s infinite ease-in-out both;
}

.psa-dot:nth-child(1) { animation-delay: -0.32s; }
.psa-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes psaBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}


/* ==========================================================================
   PREMIUM CHATBOT & FAB WIDGET STYLES (OVERRIDE)
   ========================================================================== */

/* Toggle Button Pulse Animation & Premium Look */
.chatbot-btn {
  background: linear-gradient(135deg, #0d3554, #1e5a8a) !important;
  box-shadow: 0 8px 28px rgba(13, 53, 84, 0.4) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  position: relative;
}
.chatbot-btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #1e5a8a;
  opacity: 0.8;
  animation: chatbotPulse 2s infinite;
  pointer-events: none;
}
@keyframes chatbotPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.chatbot-btn:hover {
  transform: scale(1.1) rotate(5deg) !important;
  box-shadow: 0 12px 32px rgba(13, 53, 84, 0.5) !important;
}

/* Chatbot Window Glassmorphism */
.chatbot-window {
  width: 360px !important;
  height: 520px !important;
  border-radius: 20px !important;
  backdrop-filter: blur(20px) !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(13, 53, 84, 0.1) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1) !important;
}

/* Premium Header with animated vibe */
.chatbot-header {
  background: linear-gradient(135deg, #0d3554, #1a5b8e) !important;
  padding: 20px 16px !important;
  border-top-left-radius: 19px;
  border-top-right-radius: 19px;
}
.chatbot-header h3 {
  font-family: 'Outfit', 'Inter', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
}

/* Modern Input Styling */
.chatbot-input-area {
  padding: 16px !important;
  border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}
.chatbot-input {
  border: 1px solid rgba(13, 53, 84, 0.15) !important;
  border-radius: 30px !important;
  padding: 12px 20px !important;
  font-size: 0.95rem !important;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease !important;
}
.chatbot-input:focus {
  border-color: #1a5b8e !important;
  box-shadow: 0 0 0 3px rgba(26, 91, 142, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.02) !important;
}

.chatbot-send {
  background: linear-gradient(135deg, #0d3554, #1a5b8e) !important;
  width: 44px !important;
  height: 44px !important;
  transition: all 0.3s ease !important;
}
.chatbot-send:hover {
  transform: scale(1.08) !important;
  box-shadow: 0 4px 12px rgba(13, 53, 84, 0.3) !important;
}

/* Rounded Speech Bubbles */
.chat-bubble {
  border-radius: 16px !important;
  padding: 14px 18px !important;
  font-size: 0.92rem !important;
  line-height: 1.5 !important;
  max-width: 80% !important;
  margin-bottom: 4px;
}
.chat-bubble.bot {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-bottom-left-radius: 4px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
  color: #1e293b !important;
}
.chat-bubble.user {
  background: linear-gradient(135deg, #0d3554, #1a5b8e) !important;
  border-bottom-right-radius: 4px !important;
  box-shadow: 0 4px 15px rgba(13, 53, 84, 0.15) !important;
  color: #ffffff !important;
}

/* FAB Cluster Styling */
.fab-cluster {
  gap: 12px !important;
}

/* Premium Rounded FAB Items with soft color glows */
.fab-item {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.05) !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  position: relative;
}

.fab-item.wa {
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25) !important;
}
.fab-item.wa:hover {
  transform: scale(1.15) translateY(-2px) !important;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4) !important;
}
.fab-item.wa svg {
  transition: transform 0.3s ease;
}
.fab-item.wa:hover svg {
  transform: scale(1.08) rotate(10deg);
}

.fab-item.insta {
  box-shadow: 0 8px 24px rgba(214, 36, 159, 0.25) !important;
}
.fab-item.insta:hover {
  transform: scale(1.15) translateY(-2px) !important;
  box-shadow: 0 12px 28px rgba(214, 36, 159, 0.4) !important;
}
.fab-item.insta svg {
  transition: transform 0.3s ease;
}
.fab-item.insta:hover svg {
  transform: scale(1.08) rotate(-10deg);
}
