@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Manrope:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;500;600;700&family=Cormorant+Garamond:wght@500;600;700&family=Montserrat:wght@500;600;700&display=swap");

:root {
  --navy: #173b66;
  --gold: #2f5f8f;
  --ivory: #f5f9ff;
  --charcoal: #1b2430;
  --sage: #6f89a9;
  --teal: #3c6ea7;
  --sand: #e2ecf8;
  --terracotta: #23466e;
  --maroon: #0b1f36;
  --turmeric: #7fb4e6;
  --white: #ffffff;
  --shadow: 0 20px 40px rgba(11, 28, 45, 0.12);
  --shadow-soft: 0 12px 24px rgba(11, 28, 45, 0.08);
  --radius: 18px;
  --radius-lg: 28px;
  --max-width: 1180px;
  --transition: 0.4s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--charcoal);
  background: linear-gradient(180deg, rgba(245, 249, 255, 1), rgba(235, 243, 252, 0.96), rgba(221, 233, 247, 0.9));
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(47, 95, 143, 0.12), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(63, 123, 186, 0.14), transparent 35%),
    radial-gradient(circle at 20% 80%, rgba(111, 137, 169, 0.12), transparent 40%);
  pointer-events: none;
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section + .section {
  border-top: 1px solid rgba(11, 28, 45, 0.08);
}

.section.soft {
  background:
    radial-gradient(circle at top left, rgba(127, 180, 230, 0.18), transparent 60%),
    radial-gradient(circle at bottom right, rgba(47, 95, 143, 0.16), transparent 55%),
    linear-gradient(120deg, rgba(226, 236, 248, 0.6), rgba(245, 249, 255, 0.9));
}

.section.dark {
  background: linear-gradient(135deg, rgba(11, 31, 54, 0.96), rgba(23, 59, 102, 0.92));
  color: var(--ivory);
}

.section-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 20px;
  color: inherit;
}

.section-subtitle {
  margin: 0 0 36px;
  font-size: 1.05rem;
  color: inherit;
  max-width: 720px;
}

.section p {
  line-height: 1.7;
}

.eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--teal);
  margin-bottom: 12px;
  display: inline-block;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(245, 249, 255, 0.92);
  border-bottom: none;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "DM Serif Display", serif;
  color: var(--navy);
}

.brand-logo {
  gap: 14px;
}

.brand-logo-img {
  height: 46px;
  width: auto;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(11, 28, 45, 0.18));
  clip-path: none;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--navy);
  text-transform: uppercase;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: conic-gradient(from 45deg, #7fb4e6, #3c6ea7, #173b66);
  box-shadow: var(--shadow-soft);
}

.brand span {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 14px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.82rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  position: relative;
  padding-bottom: 6px;
}

.nav-links a.nav-hidden {
  display: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--navy);
}

.hero {
  min-height: 88vh;
  position: relative;
  display: grid;
  align-items: center;
  color: var(--ivory);
  overflow: hidden;
  background: var(--navy);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  transform: translateY(var(--parallax, 0px));
  will-change: transform;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(7, 25, 45, 0.9), rgba(20, 60, 105, 0.45));
}

.hero-slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0;
}

.home {
  background: linear-gradient(180deg, rgba(245, 249, 255, 1), rgba(233, 242, 252, 0.96));
}

.home .section.soft {
  background:
    radial-gradient(circle at top left, rgba(127, 180, 230, 0.16), transparent 60%),
    radial-gradient(circle at bottom right, rgba(47, 95, 143, 0.14), transparent 55%),
    linear-gradient(120deg, rgba(226, 236, 248, 0.5), rgba(245, 249, 255, 0.95));
}

.home .eyebrow {
  color: #1a4e86;
}

.page-vision {
  background: linear-gradient(180deg, rgba(236, 244, 255, 1), rgba(226, 237, 252, 0.96));
}

.page-vision .section.dark {
  background: linear-gradient(135deg, rgba(11, 31, 54, 0.96), rgba(27, 79, 132, 0.92));
}

.page-vision .eyebrow {
  color: #7fb4e6;
}

.page-why {
  background: linear-gradient(180deg, rgba(244, 249, 255, 1), rgba(232, 242, 252, 0.96));
}

.page-why .section-title {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.02em;
}

.page-why .eyebrow {
  color: #2f5f8f;
}

.page-why .section.soft {
  background:
    radial-gradient(circle at top left, rgba(127, 180, 230, 0.2), transparent 60%),
    radial-gradient(circle at bottom right, rgba(47, 95, 143, 0.18), transparent 55%),
    linear-gradient(120deg, rgba(232, 242, 252, 0.6), rgba(244, 249, 255, 0.9));
}

.page-why .card {
  border: 1px solid rgba(15, 76, 129, 0.12);
}

.hero h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  margin: 0 0 20px;
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
  max-width: 620px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-indicators {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.hero-indicators button {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  border: none;
  background: rgba(245, 249, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.hero-indicators button.active {
  background: var(--gold);
}

.btn {
  padding: 14px 28px;
  border-radius: 999px;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  transition: var(--transition);
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.primary {
  background: var(--gold);
  color: var(--ivory);
  box-shadow: var(--shadow);
}

.btn.secondary {
  border-color: rgba(245, 249, 255, 0.6);
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.08);
}

.btn.secondary.read-more {
  color: var(--navy);
  border-color: rgba(23, 59, 102, 0.45);
  background: rgba(255, 255, 255, 0.85);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card-grid {
  display: grid;
  gap: 24px;
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.card.dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ivory);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card:hover {
  transform: translateY(-6px);
}

.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(47, 95, 143, 0.22), rgba(127, 180, 230, 0.25));
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.card h3 {
  font-family: "DM Serif Display", serif;
  font-size: 1.4rem;
  margin: 0 0 12px;
  min-height: 3.1rem;
}

.card p {
  margin: 0;
  color: inherit;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.icon-item {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-soft);
}

.icon-item span {
  font-size: 0.95rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.stat {
  background: var(--navy);
  color: var(--ivory);
  padding: 22px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(47, 95, 143, 0.25), transparent);
  opacity: 0.8;
}

.stat h3 {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  margin: 0;
}

.stat p {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
}

.split {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.image-frame.ratio-16x9 {
  aspect-ratio: 16 / 9;
}

.image-frame.ratio-4x3 {
  aspect-ratio: 4 / 3;
}

.image-frame.ratio-1x1 {
  aspect-ratio: 1 / 1;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(47, 95, 143, 0.22), rgba(111, 137, 169, 0.25));
  mix-blend-mode: soft-light;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-caption {
  margin: 8px 0 0;
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(23, 59, 102, 0.7);
}

.list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.list li {
  background: rgba(245, 249, 255, 0.9);
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.section.dark .list li {
  color: var(--navy);
}

.list.compact li {
  padding: 10px 14px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(47, 95, 143, 0.35);
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  padding: 18px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
}

details summary {
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  margin-bottom: 10px;
}

details[open] summary {
  color: var(--navy);
}

.notice {
  background: rgba(23, 59, 102, 0.85);
  padding: 18px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.5);
  color: var(--ivory);
}

.highlight-bar {
  background: linear-gradient(120deg, rgba(23, 59, 102, 0.95), rgba(17, 41, 74, 0.75));
  padding: 16px 20px;
  border-radius: 14px;
  margin: 28px 0;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
}

.quick-strip {
  padding: 36px 0;
}

.quick-facts {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.fact {
  background: rgba(255, 255, 255, 0.75);
  padding: 14px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.fact h4 {
  margin: 0 0 6px;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--teal);
}

.fact p {
  margin: 0;
  font-weight: 600;
}

.mini-gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.mini-gallery .image-frame {
  border-radius: 16px;
}

.quote-card {
  background: rgba(255, 255, 255, 0.82);
  padding: 20px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  font-style: italic;
}

.stepper {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
}

.step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-soft);
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--ivory);
  font-weight: 700;
}

.sidebar-card {
  display: grid;
  gap: 12px;
}

.feature-card {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: center;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.section-band {
  background: rgba(255, 255, 255, 0.72);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.page-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(23, 59, 102, 0.25);
}

.page-dot.active {
  background: var(--gold);
}

.footer {
  background: var(--navy);
  color: var(--ivory);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer h4 {
  font-family: "DM Serif Display", serif;
  margin-top: 0;
}

.footer a {
  color: var(--ivory);
  opacity: 0.8;
}

.footer a:hover {
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(23, 59, 102, 0.9);
  color: var(--ivory);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-shell {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(240px, 1fr) minmax(0, 2fr);
  align-items: start;
}

.form-intro h3 {
  margin: 0 0 12px;
}

.form-steps {
  display: grid;
  gap: 22px;
}

.form-steps fieldset {
  border: none;
  padding: 0;
  margin: 0;
  min-width: 0;
}

.form-steps legend {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.step-indicators {
  display: flex;
  gap: 8px;
}

.step-indicator {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  background: rgba(23, 59, 102, 0.15);
  color: var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  cursor: pointer;
}

.step-indicator.active {
  background: var(--navy);
  color: var(--ivory);
}

.step-label {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(23, 59, 102, 0.7);
}

.form-step {
  display: none;
}

.form-step.active {
  display: grid;
  gap: 18px;
}

.form-section {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-soft);
}

.form-section h3 {
  margin: 0;
  font-size: 1.05rem;
}

.grid-2 {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-3 {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.step-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.office-only {
  border: 1px dashed rgba(23, 59, 102, 0.25);
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
}

.office-only summary {
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--navy);
}

.pill input {
  accent-color: var(--navy);
}

@media (max-width: 980px) {
  .form-shell {
    grid-template-columns: 1fr;
  }
}

.input {
  display: grid;
  gap: 6px;
}

.input label {
  font-size: 0.85rem;
  font-family: "Barlow Condensed", sans-serif;
}

.input input,
.input select,
.input textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(27, 36, 48, 0.18);
  font-family: inherit;
  background: rgba(255, 255, 255, 0.9);
}

.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.filter-btn {
  border: 1px solid rgba(27, 36, 48, 0.18);
  background: var(--white);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: "Barlow Condensed", sans-serif;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ivory);
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.gallery-card {
  display: grid;
  gap: 8px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
  aspect-ratio: 4 / 3;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item span {
  position: absolute;
  inset: auto 12px 12px 12px;
  background: rgba(11, 28, 45, 0.7);
  color: var(--ivory);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 28, 45, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  width: min(86vw, 900px);
  max-height: 80vh;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.map {
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow);
}

.notice-plain {
  border: 1px solid rgba(27, 36, 48, 0.18);
  padding: 18px;
  border-radius: 12px;
  background: var(--white);
}

.media-card {
  display: grid;
  gap: 14px;
}

.media-card img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.6s ease;
}

.media-card:hover img {
  transform: scale(1.05);
}

.card-note {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: rgba(11, 28, 45, 0.7);
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--gold);
  color: var(--ivory);
  padding: 14px 18px;
  border-radius: 999px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
  z-index: 180;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.floating-cta:hover {
  transform: translateY(-3px);
}

.chatbot-toggle {
  position: fixed;
  right: 22px;
  bottom: 86px;
  background: var(--navy);
  color: var(--ivory);
  border: none;
  border-radius: 999px;
  padding: 12px 16px;
  font-family: "Barlow Condensed", sans-serif;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 180;
}

.chatbot-panel {
  position: fixed;
  right: 22px;
  bottom: 150px;
  width: min(320px, 86vw);
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: none;
  z-index: 190;
}

.chatbot-panel.open {
  display: block;
}

.chatbot-header {
  background: var(--navy);
  color: var(--ivory);
  padding: 16px;
  font-family: "Barlow Condensed", sans-serif;
}

.chatbot-body {
  padding: 16px;
  display: grid;
  gap: 12px;
  max-height: 260px;
  overflow-y: auto;
  font-size: 0.9rem;
}

.chatbot-message {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(23, 59, 102, 0.6);
  color: var(--ivory);
}

.chatbot-input {
  display: flex;
  gap: 8px;
  padding: 12px 16px 16px;
  border-top: 1px solid rgba(46, 46, 46, 0.1);
}

.chatbot-input input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(46, 46, 46, 0.2);
  padding: 10px 12px;
}

.chatbot-input button {
  border: none;
  background: var(--gold);
  color: var(--ivory);
  padding: 10px 14px;
  border-radius: 999px;
  font-family: "Barlow Condensed", sans-serif;
  cursor: pointer;
}

.social-links {
  display: grid;
  gap: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.9rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-link::before {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(245, 249, 255, 0.2);
  display: grid;
  place-items: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.social-link.facebook::before {
  content: "f";
}

.social-link.instagram::before {
  content: "ig";
}

.social-link.youtube::before {
  content: "yt";
}

.social-link.linkedin::before {
  content: "in";
}

.social-link.whatsapp::before {
  content: "wa";
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 1200px) {
  .navbar {
    flex-wrap: wrap;
  }

  .nav-links {
    flex: 1 1 100%;
    justify-content: center;
  }
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    top: 72px;
    right: 0;
    background: rgba(245, 249, 255, 0.95);
    flex-direction: column;
    padding: 24px;
    height: calc(100vh - 72px);
    width: 70%;
    overflow-y: auto;
    transform: translateX(100%);
    transition: var(--transition);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 92px 0 80px;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .floating-cta,
  .chatbot-toggle {
    right: 14px;
  }

  .chatbot-panel {
    right: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
