@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&display=swap');

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

:root {
  --font-family-base: 'Heebo', sans-serif;
  --navy: #0D1B4C;
  --main-bg:#F0ECE4;
  --bg: #D8D0C4;
  --bg-secondary:#F4F3EF;
  --bg-last:#FBF5E6;
  --mustard:#C9A84C;
  --yellow:#F0C222;
  --font-size-heading-xl: 40px;
  --font-size-heading-lg: 32px;
  --font-size-heading-md: 28px;
  --font-size-heading-sm: 24px;
  --font-size-heading-xs: 18px;
  --font-size-body: 16px;
  --font-size-meta: 14px;
  --font-size-caption: 12px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  font-family: var(--font-family-base);
}

body {
  font-family: inherit;
  font-size: var(--font-size-body);
  line-height: 1.6;
  color: #4A5568;
  background: var(--main-bg);
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

input,
button,
textarea,
select {
  font: inherit;
}



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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
  color: #0D1B4C;
}

.text-meta {
  font-size: var(--font-size-meta);
}

.text-small {
  font-size: var(--font-size-caption);
}

.title-large {
  font-size: var(--font-size-heading-xl);
}

.title-small {
  font-size: var(--font-size-heading-xs);
}

p:last-child {
  margin-bottom: 0;
}

ul, ol {
  padding-inline-end: 32px;
  margin-bottom: 24px;
}

::selection {
  background: rgba(0, 180, 166, 0.2);
  color: #00B4A6;
}

:focus-visible {
  outline: 2px solid #00B4A6;
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -50px;
  right: 24px;
  background: #00B4A6;
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 8px;
  z-index: 1070;
  transition: top transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.skip-link:focus {
  top: 24px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

.container-fluid {
  width: 100%;
  padding: 0 16px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main {
  flex: 1;
  padding: 32px 0;
}

.section {
  padding: 48px 0;
}
.section--gray {
  background: #F5F7FA;
}

.section--dark {
  background: #0D1B4C;
  color: #ffffff;
}

/* Page nav and footer styles for landing header/footer */
.page-nav {
  width: 100%;
  --page-nav-bg: #1B2B4B;
  --page-nav-text: #ffffff;
  --page-nav-social-bg: rgba(255, 255, 255, 0.15);
  --page-nav-social-hover: rgba(255, 255, 255, 0.25);
  --page-nav-dropdown-bg: #1B2B4B;
  --page-nav-dropdown-border: rgba(255, 255, 255, 0.12);
  --page-nav-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
  background: #1B2B4B;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 1035;
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.page-nav.scrolled {
  box-shadow: var(--page-nav-shadow);
}

.page-nav.hero-nav-active {
  background: var(--page-nav-bg);
}

.page-nav.hero-nav-docked {
  border-bottom-color: rgba(27, 43, 75, 0.12);
  box-shadow: 0 16px 45px rgba(27, 43, 75, 0.12);
}

.page-nav__inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1040;
  background: var(--page-nav-bg);
  gap: 20px;
  transition: background-color 0.35s ease;
}

.page-nav__mini-logo {
  position: relative;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.35s ease;
}

.page-nav__mini-logo img {
  display: block;
  width: 100%;
  height: 60px;
  object-fit: cover;
  object-position: right center;
  transition: opacity 0.25s ease, transform 0.35s ease;
}

.page-nav__social {
  display: flex;
  gap: 8px;
  align-items: center;
}

.page-nav__social--desktop {
  margin-inline-start: auto;
}

.page-nav__social--menu {
  display: none;
}

.page-nav__social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--page-nav-social-bg);
  color: var(--page-nav-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.page-nav__social-btn:hover {
  background: var(--page-nav-social-hover);
}

.hero-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.hero-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: top center;
  transition: opacity 0.25s ease, transform 0.45s ease;
}

.hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.hero-img-flyover {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 1048;
  overflow: visible;
  will-change: top, left, width, height, opacity, box-shadow;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: opacity 0.2s ease;
}

.hero-img-flyover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transform: translateZ(0);
}

.page-nav.hero-nav-active .page-nav__mini-logo {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-nav.hero-nav-active .page-nav__mini-logo img {
  opacity: 0;
}

.page-nav.hero-nav-docked .page-nav__mini-logo img {
  opacity: 1;
}

.page-nav.scrolled .page-nav__mini-logo {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-nav__brand {
  color: var(--page-nav-text);
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  transition: color 0.3s ease;
}

.page-nav__links {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-inline: auto;
}

.page-nav__tab {
  color: var(--page-nav-text);
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 6px;
  transition: color 0.2s ease;
}

.page-nav__tab:hover {
  color: #C9A84C;
}

.page-nav__tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px !important;
  height: 4px;
  background: #C9A84C;
  border-radius: 0px;
}

@media (min-width: 981px) {
  .page-nav__links {
    align-self: stretch;
    align-items: stretch;
  }

  .page-nav__tab,
  .page-nav__tab--dropdown {
    height: 100%;
    padding-bottom: 0;
    position: relative;
  }

  .page-nav__tab.active::after {
    bottom: 0;
  }
}

.page-nav__dropdown {
  position: relative;
}

.page-nav__tab--dropdown {
  display: flex;
  align-items: center;
  background: none;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  border: none;
  color: var(--page-nav-text);
  
  cursor: pointer;
  gap: 8px;
  padding: 0 0 0px;
}

.page-nav__dropdown-chevron {
  font-size: 12px;
  color: var(--page-nav-text);
  transition: transform 0.2s ease, color 0.3s ease;
}
.page-nav__tab--dropdown:hover .page-nav__dropdown-chevron {
  color: #C9A84C;
}


.page-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-start: 0;
  min-width: 190px;
  background: var(--page-nav-dropdown-bg);
  border: 1px solid var(--page-nav-dropdown-border);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  padding: 8px;
  display: none;
  z-index: 1060;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-nav__dropdown-link {
  display: block;
  color: var(--page-nav-text);
  text-decoration: none;
  font-size: 16px;
  padding: 8px 10px;
  border-radius: 8px;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.page-nav__dropdown-link:hover {
  background: rgba(201, 168, 76, 0.2);
  color: #c9a84c;
}

.page-nav__hamburger {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.page-nav__hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--page-nav-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.page-nav__hamburger span + span {
  margin-top: 6px;
}

.page-nav__hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.page-nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.page-nav__hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.footer {
  width: 100%;
  min-height: fit-content;
  background: #1B2B4B !important;
  border-top: 3px solid #C9A84C;
  padding: 52px 24px 32px !important;
  box-sizing: border-box;
  margin: 0 auto;
  
}

.footer__container {
    max-width: 100%;
    margin: 0 auto;
    width: 90%;
}

.footer__main {
  display: flex;
  gap: 32px;
  width: 100%;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.footer__logo {
  width: 343px;
  height: 88px;
  border-radius: 3px;
  object-fit: cover;
}

.footer__description {
  color: rgba(255, 255, 255, 0.45);
  font-size: 20px;
  font-weight: 400;
  line-height: 28.8px;
  word-wrap: break-word;
}

.footer__links {
  display: flex;
  gap: 24px;
  min-width: max-content;
}

.footer__group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: fit-content;
}

.footer__link {
  color: rgba(255, 255, 255, 0.50);
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  min-width: fit-content;
  text-decoration: none;
  word-wrap: nowrap;
}

.footer__bottom {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 32px;
  padding-top: 16px;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.30);
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  text-align: center;
  width: 100%;
}

@media (max-width: 980px) {
  .hero-img {
    display: none;
  }

  .hero-img-flyover {
    display: none;
  }

  /* On mobile the nav is always solid white/light — no JS palette morphing */
  .page-nav,
  .page-nav.hero-nav-active,
  .page-nav.hero-nav-docked {
    --page-nav-bg: #FBF5E6;
    --page-nav-text: #1B2B4B;
    --page-nav-social-bg: rgba(27, 43, 75, 0.08);
    --page-nav-social-hover: rgba(27, 43, 75, 0.16);
    --page-nav-dropdown-bg: #FBF5E6;
    --page-nav-dropdown-border: rgba(27, 43, 75, 0.12);
    background: var(--page-nav-bg) !important;
  }

  .page-nav__inner {
    background: var(--page-nav-bg) !important;
    transition: none;
  }

  .page-nav.hero-nav-active .page-nav__mini-logo img,
  .page-nav.hero-nav-docked .page-nav__mini-logo img {
    opacity: 1;
  }

  .page-nav{
   max-width: 100vw;
    overflow: visible;
   min-height: fit-content;
  }
  .page-nav__inner {
    justify-content: space-between;
    padding: 0 18px;
    gap: 12px;
  }

  .page-nav__mini-logo {
    position: static;
    transform: none;
    margin-inline-start: auto;
    margin-inline-end: 0;
    order: 3;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .page-nav__mini-logo img {
    height:30px;
  }

  .page-nav__links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    background: var(--page-nav-bg);
    padding: 20px 0 28px;
    display: none;
    z-index: 1045;
    margin-inline: 0;
    border-top: 1px solid var(--page-nav-dropdown-border);
    transition: background-color 0.35s ease, border-color 0.35s ease;
  }

  .page-nav__links.active {
    display: flex;
  }

  .page-nav__hamburger {
    display: flex;
    flex-direction: column;
    order: 1;
  }

  .page-nav__social--desktop {
    display: none;
  }

  .page-nav__social--menu {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .page-nav__tab {
    width: 90%;
    padding: 10px 16px;
    border-radius: 0;
  }

  .page-nav__dropdown {
    width: 90%;
  }

  .page-nav__tab--dropdown {
    width: 90%;
    padding: 10px 16px;
    border-radius: 8px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
  }

  .page-nav__dropdown-menu {
    position: static;
    min-width: 100%;
    margin-top: 8px;
    border-radius: 8px;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.18);
  }

  .page-nav__dropdown-link {
    text-align: center;
  }

  .page-nav__tab:not(:last-child) {
   border-bottom:1px solid rgba(73, 74, 108, 0.436);

  }


  .page-nav__brand {
    font-size: 18px;
  }
  .footer__main, .footer__brand, .footer__links{
    flex-direction: column;
  }

}

@media (max-width: 620px) {
  .page-nav__inner {
    justify-content: space-between;
  }

  .page-nav__tab {
    font-size: 18px;

  }

  .footer {
    padding: 40px 18px 24px;
  }

  .footer__logo {
    width: 260px;
    height: auto;
  }

  .footer__description,
  .footer__link {
    font-size: 18px;
  }
  .footer__description{
    text-align: center;
    align-self:center;
  }
}

.page-header {
  background: linear-gradient(135deg, #00B4A6 0%, rgb(0, 103.5, 95.45) 100%);
  color: #ffffff;
  padding: 48px 0;
  margin-bottom: 32px;
  text-align: center;
}
.page-header h1 {
  color: #ffffff;
  margin-bottom: 16px;
}
.page-header p {
  opacity: 0.9;
  font-size: 18px;
}

.grid {
  display: grid;
  gap: 32px;
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .grid--2 {
    grid-template-columns: 1fr;
  }
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .grid--3 {
    grid-template-columns: 1fr;
  }
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1200px) {
  .grid--4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

.content-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
}
@media (max-width: 992px) {
  .content-sidebar {
    grid-template-columns: 1fr;
  }
}

.sidebar-content {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .sidebar-content {
    grid-template-columns: 1fr;
  }
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 72px;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}
.site-header--scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.99);
}
.site-header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  color: #0D1B4C;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
.site-header__logo img {
  height: 70px;
  width: auto;
}
.site-header__logo-text {
  font-size: 25px;
  font-weight: 600;
  color: #0D1B4C;
  margin-right: 16px;
  display: block;
  width: 100px;
  line-height: 21px;
}
@media (max-width: 767px) {
  .site-header__logo img{
    height: 50px;
  }
  .site-header__logo-text {
    font-size: 27px;
    font-weight: 900;
    color: #0D1B4C;
    margin-right: 16px;
    display: block;
    width: fit-content;
    line-height: 17px;
  }
}
.site-header__nav {
  display: none;
  align-items: center;
  gap: 4px;
  /* margin-inline-start: auto; */
}
@media (min-width: 768px) {
  .site-header__nav {
    display: flex;
  }
}
.site-header__link {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #4A5568;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.site-header__link:hover {
  background: rgba(0, 180, 166, 0.08);
  color: white;
}
.site-header__link--active {
  color: white;
  background: rgba(0, 180, 166, 0.08);
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-inline-start: auto;
}
@media (min-width: 768px) {
  .site-header__actions {
    margin-inline-start: 0;
  }
}

.site-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .site-header__hamburger {
    display: none;
  }
}
.site-header__hamburger:hover {
  background: #F5F7FA;
}
.site-header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0D1B4C;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.site-header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.site-header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 767px) {
  .site-header__nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    right: 0;
    width: 280px;
    height: calc(100vh - 72px);
    background: #ffffff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    padding: 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1030;
    overflow-y: auto;
  }
  .site-header__nav.active {
    transform: translateX(0);
  }
  .site-header__link {
    font-size: 18px;
    padding: 16px;
    border-radius: 8px;
  }
}
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1029;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.overlay.active {
  display: block;
  opacity: 1;
}

.search-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1050;
}
.search-popup.active {
  display: block;
}

.search-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.search-popup-content {
  position: relative;
  max-width: 600px;
  margin: 120px auto 0;
  padding: 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  z-index: 1;
}
@media (max-width: 576px) {
  .search-popup-content {
    margin: 24px;
    margin-top: 80px;
  }
}

.search-popup-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: #F5F7FA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.search-popup-close:hover {
  background: #E8ECF1;
}

.search-popup-form {
  margin-top: 8px;
}

.search-popup-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #E8ECF1;
  border-radius: 12px;
  padding: 16px;
  transition: border-color 0.2s ease;
}
.search-popup-input-wrap:focus-within {
  border-color: #00B4A6;
}
.search-popup-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 18px;
  font-family: "Heebo", sans-serif;
  color: #0D1B4C;
  background: transparent;
}
.search-popup-input-wrap input::placeholder {
  color: #94a3b8;
}

.search-popup-icon {
  flex-shrink: 0;
  color: #94a3b8;
}

.search-popup-suggestions {
  margin-top: 16px;
}

.search-sug-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: #0D1B4C;
  transition: background-color 0.15s ease;
}
.search-sug-item:hover {
  background: #F5F7FA;
  color: #0D1B4C;
}

.search-sug-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.search-sug-info {
  min-width: 0;
}

.search-sug-title {
  font-weight: 500;
  font-size: 16px;
}

.search-sug-cat {
  font-size: 14px;
  color: #6B7280;
}

.search-sug-empty {
  text-align: center;
  color: #6B7280;
  padding: 24px;
  font-size: 14px;
}

body {
  padding-top: 72px;
}

.site-footer {
  background:var(--navy);
  color: var(--white);
  margin-top: auto;
}
.site-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.site-footer__main {
  padding: 48px 0 32px;
}
.site-footer__main > .site-footer__container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 768px) {
  .site-footer__main > .site-footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 576px) {
  .site-footer__main > .site-footer__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .site-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.site-footer__logo {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1;
}
.site-footer__tagline {
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  max-width: 300px;
}
@media (max-width: 576px) {
  .site-footer__tagline {
    max-width: none;
  }
}
@media (max-width: 576px) {
  .site-footer__col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.site-footer__col-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
}
.site-footer__col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 2px;
  background: #00B4A6;
  border-radius: 2px;
}
@media (max-width: 576px) {
  .site-footer__col-title::after {
    right: 50%;
    transform: translateX(50%);
  }
}
.site-footer__col-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__col-list li {
  margin-bottom: 8px;
}
.site-footer__col-list a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease, padding-inline-end 0.2s ease;
}
.site-footer__col-list a:hover {
  color: #ffffff;
  padding-inline-end: 8px;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
}
.site-footer__bottom > .site-footer__container {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .site-footer__bottom > .site-footer__container {
    text-align: center;
  }
}
.site-footer__copy {
  font-size: 14px;
  color: #6B7280;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Heebo", sans-serif;
  line-height: 1.5;
  border: 2px solid transparent;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  background: #00B4A6;
  color: #ffffff;
  border-color: #00B4A6;
}
.btn-primary:hover:not(:disabled) {
  background: rgb(0, 139.2, 128.3733333333);
  border-color: rgb(0, 139.2, 128.3733333333);
  color: #ffffff;
}

.btn-secondary {
  background: #0D1B4C;
  color: #ffffff;
  border-color: #0D1B4C;
}
.btn-secondary:hover:not(:disabled) {
  background: rgb(20.4494382022, 42.4719101124, 119.5505617978);
  border-color: rgb(20.4494382022, 42.4719101124, 119.5505617978);
  color: #ffffff;
}

.btn-danger {
  background: #E74C5A;
  color: #ffffff;
  border-color: #E74C5A;
}
.btn-danger:hover:not(:disabled) {
  background: rgb(226.1763546798, 40.0236453202, 56.8374384236);
  border-color: rgb(226.1763546798, 40.0236453202, 56.8374384236);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: #0D1B4C;
  border-color: #E8ECF1;
}
.btn-outline:hover:not(:disabled) {
  background: #F5F7FA;
  border-color: #0D1B4C;
}
.btn-outline--navy {
  color: #00B4A6;
  border-color: #00B4A6;
}
.btn-outline--navy:hover:not(:disabled) {
  background: #00B4A6;
  color: #ffffff;
}

.btn-filter {
  background: #ffffff;
  color: #6B7280;
  border: 1px solid #E8ECF1;
  border-radius: 25px;
  padding: 4px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}
.btn-filter:hover {
  border-color: #00B4A6;
  color: #00B4A6;
}
.btn-filter.active, .btn-filter--active {
  background: #00B4A6;
  color: #ffffff;
  border-color: #00B4A6;
}

.btn-sm {
  padding: 4px 16px;
  font-size: 14px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
}

.btn-block {
  display: flex;
  width: 100%;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #334155;
}

.form-control {
  width: 100%;
  padding: 24px;
  font-size: 16px;
  line-height: 1.5;
  color: #4A5568;
  background: #ffffff;
  border: 2px solid #E8ECF1;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.form-control:focus {
  outline: none;
  border-color: #00B4A6;
  box-shadow: 0 0 0 4px rgba(0, 180, 166, 0.1);
}
.form-control::placeholder {
  color: #94a3b8;
}
.form-control:disabled {
  background: #F5F7FA;
  cursor: not-allowed;
}
.form-control.is-invalid {
  border-color: #E74C5A;
}
.form-control.is-invalid:focus {
  box-shadow: 0 0 0 4px rgba(231, 76, 90, 0.1);
}
.form-control.is-valid {
  border-color: #22c55e;
}
.form-control.is-valid:focus {
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 24px center;
  padding-inline-start: 48px;
}

.input-group {
  display: flex;
}
.input-group .form-control {
  flex: 1;
  border-radius: 0;
}
.input-group .form-control:first-child {
  border-radius: 0 8px 8px 0;
}
.input-group .form-control:last-child {
  border-radius: 8px 0 0 8px;
}
.input-group .input-group-text {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  background: #F5F7FA;
  border: 2px solid #E8ECF1;
  color: #4A5568;
}
.input-group .input-group-text:first-child {
  border-radius: 0 8px 8px 0;
  border-left: 0;
}
.input-group .input-group-text:last-child {
  border-radius: 8px 0 0 8px;
  border-right: 0;
}
.input-group .btn {
  border-radius: 8px 0 0 8px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 4px;
  flex-shrink: 0;
  appearance: none;
  border: 2px solid #E8ECF1;
  background: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.form-check-input[type=checkbox] {
  border-radius: 4px;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:checked {
  background: #00B4A6;
  border-color: #00B4A6;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M13.854 3.646a.5.5 0 010 .708l-7 7a.5.5 0 01-.708 0l-3.5-3.5a.5.5 0 11.708-.708L6.5 10.293l6.646-6.647a.5.5 0 01.708 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' fill='white' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.form-check-input:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 180, 166, 0.1);
}

.form-check-label {
  cursor: pointer;
  user-select: none;
}

.form-switch .form-check-input {
  width: 44px;
  height: 24px;
  border-radius: 25px;
  position: relative;
}
.form-switch .form-check-input::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.form-switch .form-check-input:checked {
  background-image: none;
}
.form-switch .form-check-input:checked::after {
  right: calc(100% - 18px);
}

.form-text {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #6B7280;
}

.invalid-feedback {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #E74C5A;
}

.valid-feedback {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #22c55e;
}

.search-form {
  display: flex;
  gap: 16px;
}
.search-form .form-control {
  border-radius: 25px;
}
.search-form .btn {
  border-radius: 25px;
}

.form-floating {
  position: relative;
}
.form-floating .form-control {
  padding-top: 32px;
  padding-bottom: 16px;
}
.form-floating .form-control::placeholder {
  color: transparent;
}
.form-floating .form-control:focus ~ .form-label, .form-floating .form-control:not(:placeholder-shown) ~ .form-label {
  transform: translateY(-100%) scale(0.85);
  color: #00B4A6;
}
.form-floating .form-label {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  pointer-events: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  transform-origin: right center;
  background: #ffffff;
  padding: 0 8px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px 0;
}
.pagination__link {
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #0D1B4C;
  border: 2px solid #E8ECF1;
  border-radius: 50%;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}
.pagination__link:hover:not(.pagination__link--active) {
  border-color: #0D1B4C;
  background: #F5F7FA;
}
.pagination__link--active {
  background: #0D1B4C;
  color: #ffffff;
  border-color: #0D1B4C;
}
.pagination__link:focus-visible {
  outline: 2px solid var(--navy, #00B4A6);
  outline-offset: 2px;
}
.pagination__link--prev, .pagination__link--next {
  width: auto;
  border: none;
  background: none;
  color: #0D1B4C;
  gap: 4px;
}
.pagination__link--prev:hover, .pagination__link--next:hover {
  color: #00B4A6;
  background: none !important;
}

.alert {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 32px;
  border-radius: 8px;
  margin-bottom: 24px;
}
.alert i {
  flex-shrink: 0;
  margin-top: 4px;
}

.alert-success {
  background: rgba(34, 197, 94, 0.1);
  color: rgb(22.7402597403, 131.7597402597, 62.8701298701);
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.alert-success i {
  color: #22c55e;
}

.alert-danger {
  background: rgba(231, 76, 90, 0.1);
  color: rgb(203.2487684729, 27.2512315271, 43.1477832512);
  border: 1px solid rgba(231, 76, 90, 0.3);
}
.alert-danger i {
  color: #E74C5A;
}

.alert-warning {
  background: rgba(255, 215, 0, 0.1);
  color: rgb(127.5, 107.5, 0);
  border: 1px solid rgba(255, 215, 0, 0.3);
}
.alert-warning i {
  color: #FFD700;
}

.alert-info {
  background: rgba(6, 182, 212, 0.1);
  color: rgb(3.1926605505, 96.8440366972, 112.8073394495);
  border: 1px solid rgba(6, 182, 212, 0.3);
}
.alert-info i {
  color: #06b6d4;
}

.alert-dismissible {
  position: relative;
  padding-inline-start: 48px;
}
.alert-dismissible .alert-close {
  position: absolute;
  top: 24px;
  left: 24px;
  background: none;
  border: none;
  color: inherit;
  opacity: 0.7;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.alert-dismissible .alert-close:hover {
  opacity: 1;
}

.toast-container {
  position: fixed;
  top: 32px;
  left: 32px;
  z-index: 1070;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toast {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  animation: slideIn 0.3s ease;
  max-width: 400px;
}
.toast.toast-success {
  border-right: 4px solid #22c55e;
}
.toast.toast-error {
  border-right: 4px solid #E74C5A;
}
.toast.toast-warning {
  border-right: 4px solid #FFD700;
}
.toast.toast-info {
  border-right: 4px solid #06b6d4;
}

.toast-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.toast-icon.success {
  color: #22c55e;
}
.toast-icon.error {
  color: #E74C5A;
}
.toast-icon.warning {
  color: #FFD700;
}
.toast-icon.info {
  color: #06b6d4;
}

.toast-content {
  flex: 1;
}
.toast-content .toast-title {
  font-weight: 500;
  margin-bottom: 2px;
}
.toast-content .toast-message {
  font-size: 14px;
  color: #6B7280;
}

.toast-close {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}
.toast-close:hover {
  color: #334155;
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  border-radius: 25px;
  white-space: nowrap;
}

.badge-primary {
  background: #00B4A6;
  color: #ffffff;
}

.badge-secondary {
  background: #0D1B4C;
  color: #ffffff;
}

.badge-success {
  background: #22c55e;
  color: #ffffff;
}

.badge-danger {
  background: #E74C5A;
  color: #ffffff;
}

.badge-warning {
  background: #FFD700;
  color: #0D1B4C;
}

.badge-info {
  background: #06b6d4;
  color: #ffffff;
}

.badge-light {
  background: #E8ECF1;
  color: #334155;
}

.badge-dark {
  background: #1e293b;
  color: #ffffff;
}

.breadcrumbs {
  padding: 24px 0;
  max-width: 1000px;
  margin: 0 auto;
  padding-inline: 16px;
  font-size: 16px;
}
.breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs__item {
  color: #6B7280;
}
.breadcrumbs__item a {
  color: #6B7280;
  text-decoration: none;
  transition: color 0.2s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.breadcrumbs__item a:hover {
  color: var(--mustard);
}
.breadcrumbs__item a:focus-visible {
  outline: 2px solid var(--mustard);
  outline-offset: 2px;
}
.breadcrumbs__item--current {
  color: #334155;
  font-weight: 500;
}
.breadcrumbs__separator {
  color: #cbd5e1;
  font-size: 10px;
  display: flex;
  align-items: center;
}

.auth-container {
  max-width: 450px;
  margin: 0 auto;
  padding: 32px 0;
}

.auth-card {
  padding: 48px;
}
@media (max-width: 575px) {
  .auth-card {
    padding: 32px 24px;
  }
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}
.auth-header h1 {
  font-size: 28px;
  margin-bottom: 16px;
}
.auth-header p {
  color: #6B7280;
}

.auth-form .form-group {
  margin-bottom: 24px;
}
.auth-form .form-label {
  font-weight: 500;
  margin-bottom: 8px;
}
.auth-form .input-group .input-group-text {
  background: #F5F7FA;
  border-color: #E8ECF1;
  color: #6B7280;
}
.auth-form .input-group .form-control {
  border-right: none;
}
.auth-form .input-group .form-control:focus {
  border-color: #00B4A6;
}
.auth-form .input-group .form-control:focus ~ .input-group-text {
  border-color: #00B4A6;
  color: #00B4A6;
}

.auth-footer {
  text-align: center;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #E8ECF1;
}
.auth-footer p {
  color: #6B7280;
  margin: 0;
}
.auth-footer p a {
  font-weight: 500;
}

.auth-social {
  margin-top: 32px;
}
.auth-social .divider {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  color: #6B7280;
  font-size: 14px;
}
.auth-social .divider::before, .auth-social .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #E8ECF1;
}
.auth-social .divider span {
  padding: 0 24px;
}
.auth-social .social-buttons {
  display: flex;
  gap: 16px;
}
.auth-social .social-buttons .btn {
  flex: 1;
}

.profile-card h3 {
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile-info .profile-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #E8ECF1;
}
.profile-info .profile-info-item:last-child {
  border-bottom: none;
}
.profile-info .profile-info-item .label {
  color: #6B7280;
  font-size: 14px;
}
.profile-info .profile-info-item .value {
  font-weight: 500;
}

.profile-actions .btn {
  justify-content: center;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.no-results {
  text-align: center;
  padding: 48px;
  color: #6B7280;
}
.no-results i {
  font-size: 64px;
  color: #cbd5e1;
  margin-bottom: 24px;
  display: block;
}
.no-results h3 {
  color: #334155;
  margin-bottom: 16px;
}

/* .hero__search-icon { */
  /* position: absolute;
  top: 50%;
  right: 16px;
  left: auto;
  transform: translateY(-50%);
  color: #6B7280;
  font-size: 16px;
  pointer-events: none;
  z-index: 1;
}
[dir=ltr] .hero__search-icon {
  right: auto;
  left: 16px;
} */

.featured {
  background: #F5F7FA;
  padding: 32px 16px;
}
@media (min-width: 768px) {
  .featured {
    padding: 48px 32px;
  }
}
.featured__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.featured__heading {
  font-size: 28px;
  font-weight: 700;
  color: #0D1B4C;
  margin: 0 0 24px;
}
.featured__card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
@media (min-width: 768px) {
  .featured__card {
    flex-direction: row-reverse;
  }
}
.featured__image-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #F5F7FA;
}
@media (min-width: 768px) {
  .featured__image-side {
    flex: 0 0 35%;
    padding: 32px;
  }
}
.featured__owner-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
  border: 3px solid #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.featured__owner-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E8ECF1;
  color: #6B7280;
  font-size: 32px;
}
.featured__owner-name {
  font-size: 14px;
  font-weight: 600;
  color: #0D1B4C;
}
.featured__info-side {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
@media (min-width: 768px) {
  .featured__info-side {
    padding: 32px;
  }
}
.featured__badge {
  display: inline-block;
  background: #E74C5A;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 25px;
  margin-bottom: 8px;
  width: fit-content;
}
.featured__title {
  font-size: 24px;
  font-weight: 700;
  color: #0D1B4C;
  margin: 0 0 8px;
}
.featured__desc {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0 0 16px;
}
.featured__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.featured__action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  border: 1px solid #E8ECF1;
  min-height: 44px;
  color: #0D1B4C;
  background: #ffffff;
}
.featured__action:hover {
  background: #F5F7FA;
  border-color: #0D1B4C;
}
.featured__action--whatsapp {
  color: #25d366;
  border-color: #25d366;
}
.featured__action--whatsapp:hover {
  background: #25d366;
  color: #ffffff;
}
.featured__action--details {
  background: #00B4A6;
  color: #ffffff;
  border-color: #00B4A6;
}
.featured__action--details:hover {
  background: rgb(0, 139.2, 128.3733333333);
  border-color: rgb(0, 139.2, 128.3733333333);
  color: #ffffff;
}
.featured__action--website {
  color: #0D1B4C;
  border-color: #0D1B4C;
}
.featured__action--website:hover {
  background: #0D1B4C;
  color: #ffffff;
}
.featured__action--phone {
  color: #00B4A6;
  border-color: #00B4A6;
}
.featured__action--phone:hover {
  background: #00B4A6;
  color: #ffffff;
}
.featured__action:focus-visible {
  outline: 2px solid var(--navy, #00B4A6);
  outline-offset: 2px;
}

.communities-page {
  padding: 48px 16px;
}
@media (min-width: 768px) {
  .communities-page {
    padding: 64px 16px;
  }
}
.communities-page__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.communities-page__title {
  font-size: 32px;
  font-weight: 700;
  color: #0D1B4C;
  text-align: center;
  margin: 0 0 32px;
}
.communities-page__empty {
  text-align: center;
  padding: 64px 16px;
  color: #6B7280;
  font-size: 18px;
}
.communities-page__empty p {
  margin: 0;
}

.communities-section {
  padding: 32px 16px;
}
@media (min-width: 768px) {
  .communities-section {
    padding: 48px 16px;
  }
}
.communities-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.communities-section__heading {
  font-size: 28px;
  font-weight: 700;
  color: #0D1B4C;
  text-align: center;
  margin: 0 0 24px;
}

.communities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 576px) {
  .communities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.seal-section {
  max-width: 100%;
  width: 100%;
  background: #F4F3EF;
  padding: 64px 0;
}

.seal-section__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.seal-section__image-wrap {
  width: 100%;
}

.seal-section__image {
  width: 100%;
  height: auto;
  min-height: 400px;
  border-radius: 24px;
  object-fit: cover;
  display: block;
}

.seal-section__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  text-align: right;
}

.seal-section__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F0C222;
  color: #241A00;
  padding: 2px 38px;
  border-radius: 0;
  font-weight: 700;
  font-size: 16px;
}

.seal-section__title {
  margin: 0;
  color: #1B2B4B;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 800;
}

.seal-section__description {
  margin: 0;
  max-width: 560px;
  color: #424750;
  font-size: 18px;
  line-height: 1.75;
}

.seal-section__list {
  list-style: none;
  margin: 0 0px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.seal-section__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #0F223B;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
}

.seal-section__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.seal-section__icon svg {
  width: 22px;
  height: 21px;
  display: block;
}

.seal-section--gold{
  width: 100%;
  background: #FBF5E6 !important;
}

.sec-wrap-gold__content {
  display: flex;
  flex-direction: column;
  text-align: right;
  gap: 10px;
  justify-content: center;
}

.sec-wrap-gold__headline {
  max-width: 620px;
}

.sec-wrap-gold__title {
  margin: 0;
  font-size: 40px;
  line-height: 45px;
  font-weight: 700;
  color: #1B2B4B;
}

.sec-wrap-gold__description {
  margin: 0;
  max-width: 620px;
  color: #0F223B;
  font-size: 18px;
  line-height: 29.25px;
  font-weight: 400;
}

.sec-wrap-gold__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.sec-wrap-gold__feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sec-wrap-gold__feature-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  
}

.sec-wrap-gold__feature-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.sec-wrap-gold__feature-text {
  color: #1B2B4B;
  font-size: var(--font-size-heading-xs);
  line-height: 1.1;
  font-weight: 400;
}

.sec-wrap-gold__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 10px 36px;
  margin:60px 0 0;
  background: #1B2B4B;
  color: #ffffff;
  border-radius: 89px;
  text-decoration: none;
  font-size: var(--font-size-heading-sm);
  font-weight: 600;
  box-shadow:0 4px 12px rgba(27, 43, 75, 0.3);
}

.sec-wrap-gold__button:hover {
  background: #0f213d;
  color:white;
}

.sec-wrap-gold__media {
  width: 100%;
}

.sec-wrap-gold__image {
  width: 100%;
  height: auto;
  min-height: 504px;
  border-radius: 24px;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .sec-wrap-gold__grid {
    grid-template-columns: 1fr;
  }

  .sec-wrap-gold__content {
    align-items: flex-start;
    text-align: right;
  }
}

@media (max-width: 576px) {
  .sec-wrap-gold {
    padding: 40px 0;
  }

  .sec-wrap-gold__title {
    font-size: 32px;
    line-height: 40px;
  }

  .sec-wrap-gold__description,
  .sec-wrap-gold__feature-text {
    font-size: 18px;
    line-height: 26px;
  }

  .sec-wrap-gold__image {
    min-height: 320px;
  }
}

@media (max-width: 992px) {
  .seal-section__container {
    grid-template-columns: 1fr;
  }

  .seal-section__content {
    align-items: flex-start;
    text-align: right;
    order: -1;
  }
  .seal-section__image-wrap {
    order: 1;
}
}
@media (max-width: 576px) {
  .seal-section {
    padding: 40px 0;
  }

  .seal-section__title {
    font-size: 32px;
  }

  .seal-section__image {
    min-height: 280px;
  }
}
@media (min-width: 768px) {
  .communities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.community-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.community-card:has(.community-card__link):hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.community-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #F5F7FA;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 28px;
  overflow: hidden;
}
.community-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.community-card__icon i, .community-card__icon svg {
  color: #00B4A6;
}
.community-card__title {
  font-size: 16px;
  font-weight: 600;
  color: #0D1B4C;
  margin: 0 0 4px;
}
.community-card__desc {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.5;
  margin: 0;
}
.community-card__link {
  font-size: 14px;
  color: #00B4A6;
  font-weight: 500;
  text-decoration: none;
  margin-top: 8px;
}
.community-card__link:hover {
  text-decoration: underline;
}
.community-card__link:focus-visible {
  outline: 2px solid #00B4A6;
  outline-offset: 2px;
}

.review-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 16px;
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F5F7FA;
  overflow: hidden;
  flex-shrink: 0;
}
.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-card__author {
  font-weight: 600;
  color: #0D1B4C;
  font-size: 14px;
}
.review-card__date {
  font-size: 14px;
  color: #6B7280;
}
.review-card__stars {
  display: flex;
  gap: 4px;
  color: #FFD700;
}
.review-card__stars .fas,
.review-card__stars .far {
  font-size: 14px;
}
.review-card__stars .far {
  color: #E8ECF1;
}
.review-card__body {
  font-size: 14px;
  color: #4A5568;
  line-height: 1.6;
}

.biz-show {
  max-width: 100% !important;
  
  padding: 0px !important;
}
@media (min-width: 768px) {
  .biz-show {
    padding: 32px 24px;
  }
  
}
.biz-show__container {
  width: 100%;
}
.biz-show__gallery {
  margin-bottom: 24px;
}
.biz-show__slider {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 21/9;
}
@media (max-width: 767px) {
  .biz-show__slider {
    aspect-ratio: 16/9;
  }
  .sec-wrap-gold__button{
    margin:10px auto;
  }
}
.biz-show__slide {
  display: none;
}
.biz-show__slide:first-child {
  display: block;
}
.biz-show__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.biz-show__slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  color: #0D1B4C;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  z-index: 2;
}
.biz-show__slider-btn:hover {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.biz-show__slider-btn:focus-visible {
  outline: 2px solid #00B4A6;
  outline-offset: 2px;
}
.biz-show__slider-btn--prev {
  inset-inline-end: 16px;
}
.biz-show__slider-btn--next {
  inset-inline-start: 16px;
}
.biz-show__slider-dots {
  position: absolute;
  bottom: 16px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.biz-show__slider-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.biz-show__slider-dot::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: background-color 0.2s ease;
}
.biz-show__slider-dot--active::after {
  background: #00B4A6;
  width: 14px;
  height: 14px;
}
.biz-show__cover {
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 767px) {
  .biz-show__cover {
    aspect-ratio: 21/9;
  }
}
.biz-show__cover img {
  width: fit-content;
    height: 100%;
    object-fit: contain;
    border-radius: 40px;
}
.biz-show__content {
  display: grid;
  grid-template-columns: 1fr;
  background-color: var(--main-bg);
  gap: 24px;
}
@media (min-width: 992px) {
  .biz-show__content {
    grid-template-columns:30% 1fr ;
  }
}
.biz-show__main {
  min-width: 0;
}
.biz-show__header {
  margin-bottom: 24px;
}
.biz-show__header-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.biz-show__logo {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.biz-show__header-text {
  min-width: 0;
}
.biz-show__title {
  font-size: 32px;
  font-weight: 700;
  color: #0D1B4C;
  margin: 0 0 4px;
}
@media (max-width: 767px) {
  .biz-show__title {
    font-size: 28px;
  }
}
.biz-show__category-badge {
  display: inline-block;
  background: rgba(0, 180, 166, 0.1);
  color: #00B4A6;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 25px;
}
.biz-show__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #FFD700;
  font-size: 16px;
}
.biz-show__rating .far,
.biz-show__rating .fas {
  font-size: 14px;
}
.biz-show__reviews-count {
  color: #6B7280;
  font-size: 14px;
  margin-inline-start: 4px;
}
.biz-show__description {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.8;
  margin-bottom: 24px;
}
.biz-show__owner {
  margin-bottom: 24px;
  padding: 16px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.biz-show__owner-heading {
  font-size: 18px;
  font-weight: 600;
  color: #0D1B4C;
  margin: 0 0 8px;
}
.biz-show__owner-info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.biz-show__owner-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.biz-show__owner-img--placeholder {
  background: #F5F7FA;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  font-size: 18px;
}
.biz-show__owner-name {
  font-weight: 500;
  color: #0D1B4C;
}
.biz-show__map {
  margin-bottom: 24px;
}
.biz-show__map-heading {
  font-size: 18px;
  font-weight: 600;
  color: #0D1B4C;
  margin: 0 0 8px;
}
.biz-show__map-embed {
  border-radius: 12px;
  overflow: hidden;
}
.biz-show__map-embed iframe {
  display: block;
  width: 100%;
  min-height: 300px;
  border: 0;
}
.biz-show__reviews {
  margin-bottom: 24px;
}
.biz-show__reviews-heading {
  font-size: 24px;
  font-weight: 700;
  color: #0D1B4C;
  margin: 0 0 16px;
}
.biz-show__sidebar {
  height: fit-content;
}
@media (min-width: 992px) {
  .biz-show__sidebar {
    position: sticky;
    top: calc(72px + 16px);
  }
}
.biz-show__info-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 24px;
}
.biz-show__info-heading {
  font-size: 18px;
  font-weight: 700;
  color: #0D1B4C;
  margin: 0 0 16px;
}
.biz-show__info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.biz-show__info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #E8ECF1;
  font-size: 14px;
  color: #4A5568;
}
.biz-show__info-item:last-child {
  border-bottom: none;
}
.biz-show__info-item i, .biz-show__info-item svg {
  color: #00B4A6;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}
.biz-show__info-item a {
  color: #00B4A6;
  text-decoration: none;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.biz-show__info-item a:hover {
  text-decoration: underline;
}
.biz-show__info-item a:focus-visible {
  outline: 2px solid #00B4A6;
  outline-offset: 2px;
}
.biz-show__hours {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #E8ECF1;
}
.biz-show__hours-heading {
  font-size: 16px;
  font-weight: 600;
  color: #0D1B4C;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.biz-show__hours-heading i {
  color: #00B4A6;
}
.biz-show__hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.biz-show__hours-item {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 14px;
  color: #4A5568;
}
.biz-show__hours-day {
  font-weight: 500;
}
.biz-show__hours-time {
  color: #6B7280;
}
.biz-show__social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #E8ECF1;
}
.biz-show__social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F5F7FA;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A5568;
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.biz-show__social-link:hover {
  background: #00B4A6;
  color: #ffffff;
  transform: translateY(-2px);
}
.biz-show__social-link:focus-visible {
  outline: 2px solid #00B4A6;
  outline-offset: 2px;
}
.biz-show__social-link--whatsapp:hover {
  background: #25d366;
}
.biz-show__related {
  margin-top: 32px;
}
.biz-show__related-heading {
  font-size: 28px;
  font-weight: 700;
  color: #0D1B4C;
  margin: 0 0 16px;
}

.businesses-section {
  padding: 48px 0;
  background-color: #ffffff;
}
.businesses-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.businesses-section__heading {
  font-size: 32px;
  font-weight: 700;
  color: #0D1B4C;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .businesses-section__heading {
    font-size: 28px;
  }
}

.category-pills {
  margin: 0 auto 24px;
  max-width: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}
.category-pills__swiper {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  touch-action: pan-x;
  user-select: none;
}
.category-pills__swiper .swiper-wrapper {
  display: flex;
  align-items: center;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
}
.category-pills__swiper .swiper-wrapper.swiper-wrapper-active,
.category-pills__swiper .swiper-wrapper:active {
  cursor: grabbing;
}
.category-pills__slide {
  width: auto !important;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-bottom: 8px;
}
.category-pills__item {
  display: inline-flex;
  width: auto;
  flex: 0 0 auto;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 14px;
  min-height: 36px;
  height: auto;
  border-radius: 25px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  font-family: "Heebo", sans-serif;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1px solid #E8ECF1;
  background: #D8D0C4;
  color: #0D1B4C;
  cursor: grab;
  white-space: nowrap;
  user-select: none;
  pointer-events: auto;
}
.category-pills__item i {
  font-size: 16px;
}
.category-pills__item:hover {
  background: var(--main-bg);
  border-color: #0D1B4C;
}
.category-pills__item--active {
  background: #0D1B4C;
  color: #ffffff;
  border-color: #0D1B4C;
}



/* ---- banner-swiper ---- */

.banner-swiper {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #111;
}
.banner-swiper .swiper-container {
    width: 100%;
    height: 100%;
}
.banner-swiper .swiper-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .6s ease;
}
.banner-swiper .swiper-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}
.banner-swiper__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.banner-swiper .swiper-pagination {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}
.banner-swiper .swiper-pagination-button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.65);
    background: rgba(255,255,255,.35);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}
.banner-swiper .swiper-pagination-button-active {
    background: #fff;
    transform: scale(1.25);
}
.banner-swiper .swiper-pagination {
  display: none;
}
.banner-swiper__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: white;
  box-shadow: 0 ;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  transition: background 0.2s ease, transform 0.2s ease;
}
.banner-swiper__nav i {
  font-size: 40px;
  font-weight: 200;
}
.banner-swiper__nav svg {
  width: 50px;
  height: 50px;
  display: block;
}
.banner-swiper__nav svg path {
  stroke-width: 1;
}
.banner-swiper__nav:hover {
  background: transparent;
  transform: translateY(-50%) scale(1.03);
}

.banner-swiper__nav--prev {
  right: 16px;
}
.banner-swiper__nav--next {
  left: 16px;
}

@media (max-width: 768px) {
    .banner-swiper { height: 220px; }
}

/* Community categories grid */
.community-section{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 0;

}
.community-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  margin: 32px auto 32px;
  padding: 0 16px;
  max-width: 1200px;
}
.community-categories .category-cube--extra {
  display: none;
}
.community-categories.community-categories--expanded .category-cube--extra {
  display: flex;
}
.community-section h4 {
  margin: 0;
  font-size:var(--font-size-heading-lg);
  font-weight: 700;
  margin-bottom: 4px;
}
.community-section .navy {
  color: var(--navy);
}
.community-section .mustard {
  color: var(--mustard);
}
.category-cube {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 120px;
  padding: 20px;
  border: 1px solid var(--mustard);
  border-radius: 24px;
  background: #ffffff;
  color: var(--navy);
  text-align: center;
  box-shadow: 0 10px 22px rgba(13, 27, 76, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  text-decoration: none;
}
.category-cube:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(13, 27, 76, 0.12);
}
.category-cube i,
.category-cube svg {
  color: var(--mustard);
  fill: var(--mustard);
  font-size: 40px;
}
.category-cube span {
  display: block;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  font-size: var(--font-size-heading-md);
}
.category-cube--active {
  background: rgba(201, 168, 76, 0.08);
}
.community-section__cta{
  background-color: var(--navy);
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.community-section__cta--toggle {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.community-section__cta:hover {
  background-color: var(--mustard);
  color: #ffffff;
}
@media (max-width: 1200px) {
  .community-categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .community-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .community-categories {
    grid-template-columns: 1fr;
  }
}

.text-start {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-end {
  text-align: left;
}

.text-primary {
  color: #00B4A6 !important;
}

.text-secondary {
  color: #0D1B4C !important;
}

.text-success {
  color: #22c55e !important;
}

.text-danger {
  color: #E74C5A !important;
}

.text-warning {
  color: #FFD700 !important;
}

.text-info {
  color: #06b6d4 !important;
}

.text-muted {
  color: #6B7280 !important;
}

.text-white {
  color: #ffffff !important;
}

.bg-primary {
  background-color: #00B4A6 !important;
}

.bg-secondary {
  background-color: #0D1B4C !important;
}

.bg-success {
  background-color: #22c55e !important;
}

.bg-danger {
  background-color: #E74C5A !important;
}

.bg-warning {
  background-color: #FFD700 !important;
}

.bg-info {
  background-color: #06b6d4 !important;
}

.bg-light {
  background-color: #F5F7FA !important;
}

.bg-dark {
  background-color: #0D1B4C !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fs-sm {
  font-size: 14px !important;
}

.fs-base {
  font-size: 16px !important;
}

.fs-lg {
  font-size: 18px !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ms-0 {
  margin-inline-start: 0 !important;
}

.me-0 {
  margin-inline-end: 0 !important;
}

.mx-0 {
  margin-inline-start: 0 !important;
  margin-inline-end: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.m-1 {
  margin: 8px !important;
}

.mt-1 {
  margin-top: 8px !important;
}

.mb-1 {
  margin-bottom: 8px !important;
}

.ms-1 {
  margin-inline-start: 8px !important;
}

.me-1 {
  margin-inline-end: 8px !important;
}

.mx-1 {
  margin-inline-start: 8px !important;
  margin-inline-end: 8px !important;
}

.my-1 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.m-2 {
  margin: 16px !important;
}

.mt-2 {
  margin-top: 16px !important;
}

.mb-2 {
  margin-bottom: 16px !important;
}

.ms-2 {
  margin-inline-start: 16px !important;
}

.me-2 {
  margin-inline-end: 16px !important;
}

.mx-2 {
  margin-inline-start: 16px !important;
  margin-inline-end: 16px !important;
}

.my-2 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.m-3 {
  margin: 24px !important;
}

.mt-3 {
  margin-top: 24px !important;
}

.mb-3 {
  margin-bottom: 24px !important;
}

.ms-3 {
  margin-inline-start: 24px !important;
}

.me-3 {
  margin-inline-end: 24px !important;
}

.mx-3 {
  margin-inline-start: 24px !important;
  margin-inline-end: 24px !important;
}

.my-3 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.m-4 {
  margin: 32px !important;
}

.mt-4 {
  margin-top: 32px !important;
}

.mb-4 {
  margin-bottom: 32px !important;
}

.ms-4 {
  margin-inline-start: 32px !important;
}

.me-4 {
  margin-inline-end: 32px !important;
}

.mx-4 {
  margin-inline-start: 32px !important;
  margin-inline-end: 32px !important;
}

.my-4 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.m-5 {
  margin: 48px !important;
}

.mt-5 {
  margin-top: 48px !important;
}

.mb-5 {
  margin-bottom: 48px !important;
}

.ms-5 {
  margin-inline-start: 48px !important;
}

.me-5 {
  margin-inline-end: 48px !important;
}

.mx-5 {
  margin-inline-start: 48px !important;
  margin-inline-end: 48px !important;
}

.my-5 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.ps-0 {
  padding-inline-start: 0 !important;
}

.pe-0 {
  padding-inline-end: 0 !important;
}

.px-0 {
  padding-inline-start: 0 !important;
  padding-inline-end: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.p-1 {
  padding: 8px !important;
}

.pt-1 {
  padding-top: 8px !important;
}

.pb-1 {
  padding-bottom: 8px !important;
}

.ps-1 {
  padding-inline-start: 8px !important;
}

.pe-1 {
  padding-inline-end: 8px !important;
}

.px-1 {
  padding-inline-start: 8px !important;
  padding-inline-end: 8px !important;
}

.py-1 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.p-2 {
  padding: 16px !important;
}

.pt-2 {
  padding-top: 16px !important;
}

.pb-2 {
  padding-bottom: 16px !important;
}

.ps-2 {
  padding-inline-start: 16px !important;
}

.pe-2 {
  padding-inline-end: 16px !important;
}

.px-2 {
  padding-inline-start: 16px !important;
  padding-inline-end: 16px !important;
}

.py-2 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.p-3 {
  padding: 24px !important;
}

.pt-3 {
  padding-top: 24px !important;
}

.pb-3 {
  padding-bottom: 24px !important;
}

.ps-3 {
  padding-inline-start: 24px !important;
}

.pe-3 {
  padding-inline-end: 24px !important;
}

.px-3 {
  padding-inline-start: 24px !important;
  padding-inline-end: 24px !important;
}

.py-3 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.p-4 {
  padding: 32px !important;
}

.pt-4 {
  padding-top: 32px !important;
}

.pb-4 {
  padding-bottom: 32px !important;
}

.ps-4 {
  padding-inline-start: 32px !important;
}

.pe-4 {
  padding-inline-end: 32px !important;
}

.px-4 {
  padding-inline-start: 32px !important;
  padding-inline-end: 32px !important;
}

.py-4 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.p-5 {
  padding: 48px !important;
}

.pt-5 {
  padding-top: 48px !important;
}

.pb-5 {
  padding-bottom: 48px !important;
}

.ps-5 {
  padding-inline-start: 48px !important;
}

.pe-5 {
  padding-inline-end: 48px !important;
}

.px-5 {
  padding-inline-start: 48px !important;
  padding-inline-end: 48px !important;
}

.py-5 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-grid {
  display: grid !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-1 {
  flex: 1 !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.justify-start {
  justify-content: flex-start !important;
}

.justify-end {
  justify-content: flex-end !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-between {
  justify-content: space-between !important;
}

.justify-around {
  justify-content: space-around !important;
}

.align-start {
  align-items: flex-start !important;
}

.align-end {
  align-items: flex-end !important;
}

.align-center {
  align-items: center !important;
}

.align-baseline {
  align-items: baseline !important;
}

.align-stretch {
  align-items: stretch !important;
}

.gap-1 {
  gap: 8px !important;
}

.gap-2 {
  gap: 16px !important;
}

.gap-3 {
  gap: 24px !important;
}

.gap-4 {
  gap: 32px !important;
}

.gap-5 {
  gap: 48px !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.border {
  border: 1px solid #E8ECF1 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid #E8ECF1 !important;
}

.border-bottom {
  border-bottom: 1px solid #E8ECF1 !important;
}

.rounded {
  border-radius: 8px !important;
}

.rounded-sm {
  border-radius: 4px !important;
}

.rounded-lg {
  border-radius: 12px !important;
}

.rounded-pill {
  border-radius: 25px !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.shadow-none {
  box-shadow: none !important;
}

.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

.shadow {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.shadow-lg {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.object-fit-cover {
  object-fit: cover !important;
}

.object-fit-contain {
  object-fit: contain !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.cursor-default {
  cursor: default !important;
}

.user-select-none {
  user-select: none !important;
}

.user-select-all {
  user-select: all !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-clamp-2 {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
}
@media (max-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
}
@media (max-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
}
.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0D1B4C;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 28px;
  }
}

.section-subtitle {
  color: #6B7280;
  font-size: 18px;
  margin-bottom: 32px;
}

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
.loading::after {
  content: "";
  width: 40px;
  height: 40px;
  border: 3px solid #E8ECF1;
  border-top-color: #00B4A6;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.skeleton {
  background: linear-gradient(90deg, #E8ECF1 25%, #F5F7FA 50%, #E8ECF1 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@media print {
  .site-header,
  .site-footer,
  .btn {
    display: none !important;
  }
  a {
    color: #000000 !important;
    text-decoration: underline;
  }
}
