:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #eef4ff;
  --text: #0f1f35;
  --muted: #5c6b82;
  --border: rgba(16, 42, 81, 0.12);
  --primary: #153e75;
  --primary-2: #1f6fb2;
  --accent: #f2c14e;
  --accent-2: #f97316;
  --shadow: 0 20px 60px rgba(13, 39, 76, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  background:
    linear-gradient(rgba(6, 26, 54, 0.48), rgba(6, 26, 54, 0.48)),
    url("../img/background.png") center top / cover fixed no-repeat,
    radial-gradient(circle at top left, rgba(31, 111, 178, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(242, 193, 78, 0.12), transparent 22%),
    var(--bg);
  font-family: "Inter", "Segoe UI", sans-serif;
}

.home-hero,
.home-links,
.home-footer {
  background: transparent;
}

.home-hero {
  padding: 1rem 0 1.25rem;
}

.home-links {
  padding: 0 0 1.5rem;
}

.home-footer {
  padding: 1.4rem 0 3rem;
  color: #101828;
}

.home-footer .container {
  background: rgba(236, 236, 236, 0.95);
  padding: 1rem 1.25rem 0.85rem;
}

.home-footer h6 {
  color: #111827;
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.home-footer ul {
  list-style: disc;
  padding-left: 1.15rem;
  margin: 0;
}

.home-footer li + li {
  margin-top: 0.45rem;
}

.home-footer a,
.home-footer p {
  color: #111827;
  margin-bottom: 0.45rem;
}

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

a:hover {
  color: var(--primary-2);
}

img {
  max-width: 100%;
}

.topbar {
  background: linear-gradient(90deg, rgba(10, 36, 71, 0.9), rgba(21, 62, 117, 0.9));
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.85rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  flex-wrap: wrap;
}

.topbar-links,
.topbar-contacts {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar-links a,
.topbar-contacts a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.header-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.95rem;
}

.header-social a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.topbar-links a:hover,
.topbar-contacts a:hover {
  color: #ffffff;
}

.topbar a,
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.site-header {
  background: linear-gradient(90deg, rgba(7, 26, 49, 0.88), rgba(18, 56, 107, 0.88));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 24px rgba(9, 22, 41, 0.16);
}

.site-header .navbar {
  padding: 0.9rem 0;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.navbar-brand img,
.footer-brand img {
  width: auto;
  height: 42px;
}

.navbar-brand span,
.footer-brand span {
  font-size: 1.05rem;
}

.navbar-toggler {
  border: 0;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  padding: 0.85rem 0.95rem !important;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.site-header .btn-outline-brand {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.site-header .btn-outline-brand:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-brand,
.btn-brand:focus,
.btn-brand:hover {
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 30px rgba(31, 111, 178, 0.24);
}

.btn-outline-brand {
  color: var(--primary);
  border: 1px solid rgba(21, 62, 117, 0.22);
  background: rgba(255, 255, 255, 0.8);
}

.btn-outline-brand:hover {
  color: #ffffff;
  border-color: var(--primary);
  background: var(--primary);
}

.btn-ghost {
  color: var(--primary);
  background: rgba(21, 62, 117, 0.07);
  border: 1px solid rgba(21, 62, 117, 0.08);
}

.btn-ghost:hover {
  color: var(--primary);
  background: rgba(21, 62, 117, 0.12);
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.9rem 1.35rem;
}

.btn-sm {
  padding: 0.6rem 1rem;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::before {
  width: 420px;
  height: 420px;
  right: -180px;
  top: -120px;
  background: radial-gradient(circle, rgba(31, 111, 178, 0.24), transparent 66%);
}

.hero-section::after {
  width: 320px;
  height: 320px;
  left: -140px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(242, 193, 78, 0.16), transparent 66%);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(21, 62, 117, 0.08);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 1.2rem 0 1rem;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  line-height: 0.97;
  letter-spacing: -0.05em;
  color: var(--text);
}

.hero-copy p {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 1.75rem 0 2rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card,
.feature-card,
.info-card,
.review-card,
.contact-card,
.page-card,
.content-card,
.modal-card,
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.metric-card {
  padding: 1rem 1.1rem;
}

.metric-card strong {
  display: block;
  font-size: 1.2rem;
  color: var(--primary);
}

.metric-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-panel {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 1.2rem;
  background:
    linear-gradient(135deg, rgba(21, 62, 117, 0.94), rgba(31, 111, 178, 0.92)),
    linear-gradient(135deg, #173d73, #153e75);
  box-shadow: 0 30px 80px rgba(13, 39, 76, 0.22);
}

.hero-panel img {
  display: block;
  width: 100%;
  border-radius: calc(var(--radius-xl) - 10px);
  object-fit: cover;
}

.hero-panel .floating-note {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  max-width: 16rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.section-shell {
  padding: 5rem 0;
}

.section-shell.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 247, 251, 0.94));
}

.section-title {
  text-align: center;
  margin-bottom: 2.25rem;
}

.section-title span,
.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section-title h2,
.page-title h1,
.page-card h2 {
  font-family: "Montserrat", "Inter", sans-serif;
  letter-spacing: -0.04em;
  color: var(--text);
}

.section-title h2 {
  margin: 0.7rem 0 0.65rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.section-title p {
  margin: 0 auto;
  max-width: 42rem;
  color: var(--muted);
}

.feature-card {
  height: 100%;
  padding: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.info-card:hover,
.review-card:hover,
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(13, 39, 76, 0.16);
}

.feature-icon,
.info-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(21, 62, 117, 0.1), rgba(31, 111, 178, 0.15));
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.feature-card h3,
.info-card h3,
.review-card h3,
.stat-card h3,
.contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.feature-card p,
.info-card p,
.review-card p,
.contact-card p,
.page-card p {
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.7;
}

.about-grid {
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.about-image .mini-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  color: var(--primary);
  font-weight: 700;
}

.info-card,
.review-card,
.stat-card,
.contact-card,
.content-card,
.page-card {
  padding: 1.5rem;
}

.review-card .quote {
  color: var(--primary-2);
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
}

.review-card .meta,
.contact-list {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.contact-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.contact-list i {
  color: var(--primary);
  margin-top: 0.2rem;
}

.page-title {
  padding: 3.5rem 0 1.5rem;
}

.page-title h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 0.5rem;
}

.page-title p {
  color: var(--muted);
  max-width: 44rem;
}

.page-title .page-kicker,
.page-title h1,
.page-title p {
  color: #ffffff;
}

.page-title .page-kicker {
  background: rgba(255, 255, 255, 0.12);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  letter-spacing: 0.12em;
}

.page-card {
  overflow: hidden;
}

.page-card .card-header,
.content-card .card-header {
  background: rgba(21, 62, 117, 0.04);
  border-bottom: 1px solid rgba(21, 62, 117, 0.08);
  padding: 1rem 1.25rem;
}

.page-card .card-body,
.content-card .card-body {
  padding: 1.25rem;
}

.page-card .card-footer,
.content-card .card-footer {
  background: rgba(21, 62, 117, 0.03);
  border-top: 1px solid rgba(21, 62, 117, 0.08);
  padding: 1rem 1.25rem;
}

.filter-panel {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 251, 255, 1));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-control,
.form-select {
  border-radius: 14px;
  border-color: rgba(15, 31, 53, 0.14);
  padding: 0.85rem 1rem;
  color: var(--text);
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(31, 111, 178, 0.65);
  box-shadow: 0 0 0 0.2rem rgba(31, 111, 178, 0.12);
}

.table-theme {
  margin-bottom: 0;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

.table-theme thead th {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #ffffff;
  border: 0;
  font-size: 0.92rem;
  white-space: nowrap;
}

.table-theme tbody td {
  vertical-align: middle;
  border-top-color: rgba(15, 31, 53, 0.06);
}

.table-theme tbody tr:hover td {
  background: rgba(31, 111, 178, 0.04);
}

.badge-soft {
  background: rgba(31, 111, 178, 0.1);
  color: var(--primary);
  border: 1px solid rgba(31, 111, 178, 0.1);
}

.pagination .page-link {
  color: var(--primary);
  border-color: rgba(21, 62, 117, 0.16);
  border-radius: 12px;
  margin: 0 0.15rem;
}

.pagination .page-link:hover {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

.pagination .page-item.active .page-link {
  background: var(--primary);
  border-color: var(--primary);
}

.footer {
  margin-top: 2rem;
  padding: 4rem 0 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(31, 111, 178, 0.18), transparent 24%),
    linear-gradient(180deg, #071a31, #061424);
  color: rgba(255, 255, 255, 0.82);
}

.home-carousel {
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  background: #061a36;
}

.home-carousel .carousel-item {
  position: relative;
}

.home-carousel img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.slide-banner {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  align-items: stretch;
  overflow: hidden;
  background: #214985;
}

.slide-banner-blue {
  background:
    linear-gradient(90deg, rgba(11, 39, 84, 0.96) 0%, rgba(11, 39, 84, 0.96) 56%, rgba(11, 39, 84, 0.2) 56%, rgba(11, 39, 84, 0.2) 100%),
    #214985;
}

.slide-copy {
  padding: 1.4rem 1.5rem 1.25rem 1.5rem;
  color: #ffffff;
}

.slide-copy h2 {
  margin: 0 0 0.75rem;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2.4rem);
  font-weight: 800;
  line-height: 1.1;
}

.slide-copy ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.slide-art {
  position: relative;
  min-height: 100%;
}

.slide-art img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.home-carousel .carousel-caption {
  left: 0;
  right: auto;
  bottom: 1.1rem;
  text-align: left;
  padding: 1rem 1.25rem;
  margin-left: 1.1rem;
  max-width: min(90%, 30rem);
  border-radius: 18px;
  background: rgba(6, 26, 54, 0.45);
  backdrop-filter: blur(8px);
}

.home-carousel .carousel-caption h1 {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(1.3rem, 2vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.home-carousel .carousel-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
}

.home-carousel .carousel-indicators {
  list-style: none !important;
  counter-reset: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  bottom: 0.75rem;
  margin-bottom: 0;
}

.home-carousel .carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 0;
  text-indent: -9999px;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}

.home-carousel .carousel-indicators .active {
  background-color: var(--accent);
}

.home-carousel .carousel-control-prev,
.home-carousel .carousel-control-next {
  width: 8%;
  opacity: 1;
}

.home-carousel .carousel-control-prev-icon,
.home-carousel .carousel-control-next-icon {
  width: 2rem;
  height: 2rem;
  background-size: 100% 100%;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}

.home-carousel .carousel-control-prev {
  left: 0.75rem;
}

.home-carousel .carousel-control-next {
  right: 0.75rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.menu-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  min-height: 360px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: linear-gradient(180deg, #fdfdfd, #f5f8ff);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  text-align: center;
  overflow: hidden;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.menu-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

@media (max-width: 991.98px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-card img {
    min-height: 300px;
  }
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #ffffff;
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 800;
}

.footer h6 {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.scroll-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 18px 30px rgba(31, 111, 178, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 999;
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.modal-card {
  border: 0;
}

.modal-title {
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 800;
}

.alert,
.swal2-popup {
  border-radius: 18px !important;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.list-check li {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  color: var(--muted);
}

.list-check i {
  color: var(--primary-2);
  margin-top: 0.2rem;
}

blockquote {
  padding: 1rem 1.25rem;
  background: rgba(21, 62, 117, 0.04);
  border-left: 4px solid var(--primary-2);
  border-radius: 16px;
  color: var(--muted);
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 4rem 0 3rem;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    line-height: 1.02;
  }
}

@media (max-width: 767.98px) {
  .topbar-inner {
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .slide-banner {
    grid-template-columns: 1fr;
  }

  .slide-art {
    min-height: 0;
  }

  .slide-copy {
    padding: 1rem 1rem 0.75rem;
  }
}
