:root {
  --ink: #111111;
  --muted: #6b7280;
  --brand: #0b0b0b;
  --brand-2: #f97316;
  --accent: #fb923c;
  --soft: #f8f8f8;
  --line: rgba(11, 11, 11, 0.1);
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 24px 70px rgba(11, 11, 11, 0.14);
}

@property --card-border-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes cardBorderSpin {
  to {
    --card-border-angle: 360deg;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
}

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

.text-muted {
  color: var(--muted) !important;
}

.conference-announcement-modal {
  z-index: 1080;
}

.conference-announcement-card {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.conference-announcement-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}

.conference-announcement-head {
  padding: clamp(22px, 4vw, 34px) clamp(20px, 4vw, 38px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(17, 17, 17, 0.82)),
    url("../images/upaoi/home-event-1.png") center / cover;
  border-bottom: 5px solid var(--brand-2);
}

.conference-announcement-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: #fed7aa;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.conference-announcement-head h2 {
  max-width: 700px;
  margin: 0;
  padding-right: 28px;
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  line-height: 1.18;
  font-weight: 900;
}

.conference-announcement-body {
  padding: clamp(20px, 3vw, 30px) clamp(20px, 4vw, 38px) 30px;
  color: #202020;
  font-size: 0.95rem;
  line-height: 1.62;
}

.conference-announcement-body p {
  margin: 0 0 12px;
}

.conference-announcement-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin: 6px 0 18px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-2), var(--accent));
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.25);
}

.conference-announcement-link span {
  overflow-wrap: anywhere;
}

.conference-announcement-signature {
  margin-bottom: 0 !important;
  font-weight: 600;
}

@media (max-width: 575px) {
  .conference-announcement-modal .modal-dialog {
    margin: 14px;
  }

  .conference-announcement-body {
    max-height: 66vh;
    overflow-y: auto;
  }
}

.site-header {
  z-index: 1040;
  position: sticky;
  top: 0;
  width: 100%;
  overflow: visible;
}

.site-title-bar {
  padding: 8px 0 9px;
  color: #fff;
  text-align: left;
  font-size: clamp(0.75rem, 1.5vw, 1.1rem);
  line-height: 1.2;
  font-weight: 900;
  background: linear-gradient(90deg, #f97316 0%, #fb923c 50%, #f97316 100%);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.site-title-bar marquee {
  display: block;
}

.site-sticky-area {
  position: relative;
  top: auto;
  z-index: 1040;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 25%, #0d0d0d 50%, #1a1a1a 75%, #0f0f0f 100%);
  border-bottom: 3px solid rgba(249, 115, 22, 0.3);
  border-top: 4px solid #f97316;
  box-shadow: 0 12px 40px rgba(11, 11, 11, 0.4);
  transition: box-shadow 0.3s ease;
  padding: 0;
  width: 100%;
  overflow: visible;
}

.site-sticky-area.compact {
  position: relative;
  top: auto;
  z-index: 1040;
  padding: 0;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 25%, #0d0d0d 50%, #1a1a1a 75%, #0f0f0f 100%);
  border-bottom: 3px solid rgba(249, 115, 22, 0.3);
  border-top: 4px solid #f97316;
  box-shadow: 0 12px 40px rgba(11, 11, 11, 0.4);
  will-change: transform;
}

.site-logo-row {
  display: grid;
  place-items: center;
  padding: 16px 0;
  background: transparent;
  transition: padding 0.25s ease;
}

.site-logo {
  width: clamp(58px, 6vw, 76px);
  aspect-ratio: 1;
  display: block;
  flex: 0 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.4), 0 10px 28px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  margin: 0;
  padding: 0;
}

.site-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-logo:hover {
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.6), 0 14px 36px rgba(249, 115, 22, 0.25);
  transform: scale(1.08);
}

.navbar.site-nav {
  padding: 0;
  background: transparent;
  width: 100%;
}

.navbar.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(60px, 12vw, 120px);
  max-width: 100%;
  padding: 14px clamp(20px, 4vw, 48px);
  background: transparent;
  border: none;
  border-radius: 0;
  min-height: 78px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-sticky-area.compact .site-logo {
  width: clamp(54px, 5.5vw, 70px);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.35), 0 8px 22px rgba(0, 0, 0, 0.35);
}

.site-sticky-area.compact .navbar.site-nav {
  padding: 0;
}

.site-sticky-area.compact .navbar.site-nav .container {
  padding: 12px clamp(18px, 3.5vw, 40px);
  min-height: 72px;
  gap: clamp(16px, 3.5vw, 40px);
}

.site-sticky-area.compact .nav-link {
  font-size: 0.88rem;
  padding: 8px 10px !important;
}

.navbar-toggler {
  margin-left: auto;
  border: 1.5px solid rgba(249, 115, 22, 0.5);
  background: rgba(249, 115, 22, 0.18);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-collapse {
  align-items: center;
  justify-content: flex-end;
  width: auto;
  flex-grow: 1;
  margin-left: auto;
  margin-top: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.navbar-toggler:hover {
  background: rgba(249, 115, 22, 0.28);
  border-color: rgba(249, 115, 22, 0.7);
  transform: scale(1.05);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.3rem rgba(249, 115, 22, 0.3);
  border-color: rgba(249, 115, 22, 0.7);
}

.navbar-toggler-icon {
  filter: invert(1) brightness(1.3);
  background-size: 1.2rem;
}

.navbar.scrolled {
  box-shadow: none;
}

.nav-link {
  position: relative;
  font-weight: 700;
  font-size: clamp(0.80rem, 0.85vw, 0.92rem);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  padding: 10px 14px !important;
  white-space: nowrap;
  transition: all 0.3s ease;
  letter-spacing: 0.4px;
  background: transparent !important;
}

.nav-link:hover {
  color: #f97316;
  background: rgba(249, 115, 22, 0.12) !important;
  transform: translateX(2px);
}

.nav-link.active {
  color: #f97316 !important;
  background: rgba(249, 115, 22, 0.2) !important;
  font-weight: 800;
  box-shadow: inset 0 0 8px rgba(249, 115, 22, 0.2);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2.5px;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0), #f97316, rgba(249, 115, 22, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-caret {
  font-size: 0.72rem;
  margin-left: 4px;
}

.site-nav .dropdown {
  position: relative;
}

.site-dropdown {
  min-width: 190px;
  padding: 8px;
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 10px;
  background: rgba(17, 17, 17, 0.98);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.site-dropdown .dropdown-item {
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 9px 12px;
}

.site-dropdown .dropdown-item:hover,
.site-dropdown .dropdown-item:focus,
.site-dropdown .dropdown-item.active {
  color: #f97316;
  background: rgba(249, 115, 22, 0.14);
}

.btn-brand {
  border: 0;
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--brand-2), var(--accent));
  box-shadow: 0 16px 36px rgba(249, 115, 22, 0.28);
}

.btn-brand:hover {
  color: #fff;
  transform: translateY(-2px);
}

.btn-soft {
  border: 1px solid rgba(249, 115, 22, 0.2);
  color: var(--brand-2);
  font-weight: 800;
  border-radius: 999px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.76);
}

.hero {
  min-height: clamp(500px, 70vh, 700px);
  padding: clamp(52px, 6vw, 82px) 0 clamp(54px, 6vw, 76px);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  background: #0b0b0b;
}

.home-hero {
  background: #0b0b0b;
}

.hero-bg-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-carousel .carousel-inner,
.hero-bg-carousel .carousel-item,
.hero-bg-carousel img {
  width: 100%;
  height: 100%;
}

.hero-bg-carousel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
} 

.hero-bg-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.78) 0%, rgba(11, 11, 11, 0.56) 42%, rgba(249, 115, 22, 0.28) 100%),
    linear-gradient(180deg, rgba(11, 11, 11, 0.08), rgba(11, 11, 11, 0.46));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: #ffffff;
  transform: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #fff7ed;
  font-weight: 800;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.13);
  padding: 8px 14px;
  border-radius: 999px;
}

.hero h1,
.page-hero h1 {
  color: #fff;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(1.95rem, 3.25vw, 3.45rem);
  max-width: 680px;
}

.hero p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 620px;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.62;
}

.hero-panel {
  position: relative;
  z-index: 2;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  background: #fff;
  max-height: 420px;
}

.floating-note {
  margin-top: 14px;
  margin-left: 0;
  width: 100%;
  position: relative;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 44px rgba(11, 11, 11, 0.16);
}

.section {
  padding: 86px 0;
}

.compact-section {
  padding-top: 68px;
  padding-bottom: 68px;
}

.section-soft {
  background: linear-gradient(180deg, #f8f8f8, #ffffff);
}

.section-title {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-title h2 {
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0;
}

.fw-black {
  font-weight: 900;
}

.section-title p {
  color: var(--muted);
  font-size: 1.05rem;
}

.stat-card,
.feature-card,
.doctor-card,
.event-card,
.news-card,
.contact-card,
.content-card,
.poster-card,
.official-logo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(11, 11, 11, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card::before,
.feature-card::before,
.doctor-card::before,
.event-card::before,
.news-card::before,
.contact-card::before,
.content-card::before,
.poster-card::before,
.official-logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1px;
  pointer-events: none;
  background: conic-gradient(
    from var(--card-border-angle),
    rgba(249, 115, 22, 0),
    rgba(249, 115, 22, 0.82),
    rgba(251, 146, 60, 0.36),
    rgba(249, 115, 22, 0)
  );
  border-radius: inherit;
  opacity: 0.72;
  animation: cardBorderSpin 5s linear infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.stat-card:hover,
.feature-card:hover,
.doctor-card:hover,
.event-card:hover,
.news-card:hover,
.content-card:hover,
.poster-card:hover,
.official-logo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(11, 11, 11, 0.14);
}

.stat-card {
  padding: 24px;
}

.stat-card strong {
  display: block;
  font-size: 2.45rem;
  font-weight: 900;
  color: var(--brand-2);
}

.feature-card {
  padding: 26px;
  height: 100%;
}

.icon-badge {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-2), var(--accent));
}

.doctor-card {
  overflow: hidden;
  height: 100%;
}

.doctor-card,
.event-card,
.poster-card,
.gallery-tile {
  isolation: isolate;
}

.doctor-card img {
  width: 100%;
  height: 320px;
  display: block;
  object-fit: cover;
  object-position: top center;
  background: linear-gradient(180deg, #ffffff, #f8f8f8);
}

.doctor-card .body,
.event-card .body,
.news-card .body {
  padding: 22px;
}

.tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--brand-2);
  background: rgba(249, 115, 22, 0.1);
}

.event-card {
  overflow: hidden;
  height: 100%;
}

.event-card img,
.news-card img {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(180deg, #ffffff, #f8f8f8);
}

.date-box {
  width: 70px;
  min-width: 70px;
  border-radius: 18px;
  color: #fff;
  text-align: center;
  padding: 10px 8px;
  background: linear-gradient(135deg, var(--brand-2), var(--accent));
}

.date-box span {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 250px;
  box-shadow: 0 18px 45px rgba(11, 11, 11, 0.12);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #fff;
  transition: transform 0.45s ease;
}

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

.gallery-tile .overlay {
  position: absolute;
  inset: auto 14px 14px 14px;
  color: #fff;
  padding: 16px;
  border-radius: 18px;
  background: rgba(11, 11, 11, 0.62);
  backdrop-filter: blur(14px);
  transform: translateY(10px);
  opacity: 0;
  transition: 0.25s ease;
}

.gallery-tile:hover .overlay {
  transform: translateY(0);
  opacity: 1;
}

.page-hero {
  padding: 150px 0 80px;
  background:
    linear-gradient(115deg, rgba(11, 11, 11, 0.88), rgba(249, 115, 22, 0.48)),
    url("../images/upaoi/06-cochlear-implant-blog-aoo--scaled-Aq2oRZkeBeh2ypgK.jpg") center/cover;
}

.official-logo-card {
  display: grid;
  place-items: center;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.official-logo-card img {
  max-width: 260px;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
}

.content-card {
  border-radius: 24px;
  padding: clamp(24px, 4vw, 42px);
}

.announcement-marquee {
  display: block;
  color: #f97316;
  font-weight: 900;
}

.poster-card {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 22px;
}

.poster-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #fff;
  padding: 0;
}

.event-feature-section .row {
  align-items: stretch;
}

.event-poster-card,
.event-info-card {
  height: 100%;
  min-height: 100%;
}

.event-poster-card {
  background: linear-gradient(180deg, #fff7ed, #ffffff);
}

.event-info-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  border-color: rgba(249, 115, 22, 0.12);
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.08), transparent 42%),
    #fff;
}

.event-info-card .btn {
  align-self: flex-start;
}

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

.benefit-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
}

.benefit-list i {
  color: var(--brand-2);
  font-size: 1.2rem;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
}

.timeline {
  border-left: 2px solid rgba(249, 115, 22, 0.24);
  padding-left: 26px;
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand-2);
  box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.14);
}

.form-control,
.form-select {
  border-radius: 16px;
  border-color: rgba(11, 11, 11, 0.12);
  padding: 13px 15px;
}

.map-frame {
  overflow: hidden;
  border-radius: 22px;
  min-height: 390px;
  border: 1px solid var(--line);
}

.map-frame iframe {
  width: 100%;
  height: 390px;
  border: 0;
}

.footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  padding: 76px 0 34px;
  background:
    radial-gradient(circle at 12% 0%, rgba(249, 115, 22, 0.22), transparent 32%),
    #0b0b0b;
}

.footer-panel {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.footer h5,
.footer strong {
  color: #fff;
}

.footer h5 {
  margin-bottom: 16px;
  font-weight: 900;
}

.footer p,
.footer small {
  color: rgba(255, 255, 255, 0.74);
}

.footer-brand {
  display: inline-flex !important;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px !important;
  color: #fff !important;
  font-size: 1.55rem;
  font-weight: 900;
}

.footer-brand img {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.24);
}

.footer-about {
  max-width: 360px;
  line-height: 1.65;
}

.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 10px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer a:hover {
  color: #f97316;
  transform: translateX(4px);
}

.footer-brand:hover {
  color: #f97316 !important;
  transform: none;
}

.footer-email {
  display: inline-block !important;
}

.footer-rule {
  margin: 34px 0 24px;
  border-color: rgba(255, 255, 255, 0.14);
  opacity: 1;
}

.privacy-hero,
.terms-hero {
  min-height: clamp(320px, 36vw, 430px);
  display: flex;
  align-items: center;
  padding: clamp(72px, 8vw, 98px) 0 clamp(44px, 6vw, 60px);
}

.privacy-hero {
  background:
    linear-gradient(115deg, rgba(11, 11, 11, 0.82), rgba(249, 115, 22, 0.4)),
    url("../images/upaoi/doctor-examining-ear-senior-woman.jpg") center 20% / cover no-repeat;
}

.terms-hero {
  background:
    linear-gradient(115deg, rgba(11, 11, 11, 0.82), rgba(249, 115, 22, 0.4)),
    url("../images/upaoi/endocrinologist-examining-throat-young-woman-clinic-women-with-thyroid-gland-test-endocrinology-hormones-treatment-inflammation-sore-throat.jpg") center 35% / cover no-repeat;
}

.footer-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 0;
}

.footer-policy-links {
  display: inline-flex;
  gap: 18px;
  margin-left: clamp(28px, 4vw, 56px);
}

.footer-policy-link {
  display: inline-block !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.84) !important;
  font-weight: 700;
}

.footer-policy-link:hover {
  color: #f97316 !important;
  transform: none !important;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

.carousel-control-prev,
.carousel-control-next {
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(11, 11, 11, 0.72);
}

.navbar-nav {
  flex-wrap: nowrap;
  gap: clamp(8px, 1.8vw, 24px);
  display: flex;
  align-items: center;
  margin: 0;
  list-style: none;
}

@media (min-width: 1200px) {
  .navbar.site-nav .container {
    max-width: 100%;
    padding: 14px clamp(28px, 4.5vw, 52px);
    gap: clamp(60px, 15vw, 140px);
    justify-content: flex-start;
    align-items: center;
    min-height: 80px;
  }

  .navbar-collapse {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    flex-grow: 0;
    margin-left: auto;
    margin-top: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  .navbar-nav {
    flex-wrap: nowrap;
    gap: clamp(6px, 1.5vw, 22px);
  }

  .site-logo {
    margin-right: 0;
  }

  .nav-link {
    padding: 10px 14px !important;
    font-size: 0.90rem;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .nav-link {
    font-size: 0.85rem;
    padding: 10px 12px !important;
  }

  .site-logo {
    width: clamp(56px, 5.5vw, 70px);
  }

  .navbar.site-nav .container {
    gap: clamp(20px, 3.5vw, 36px);
  }
}

@media (max-width: 1199px) {
  .site-title-bar {
    padding-inline: 12px;
    font-size: 0.8rem;
  }

  .navbar.site-nav {
    padding: 0;
    width: 100%;
  }

  .navbar.site-nav .container {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    min-height: 76px;
    padding: 12px clamp(16px, 3vw, 32px);
  }

  .site-logo {
    width: clamp(54px, 5.5vw, 66px);
    order: 1;
  }

  .navbar-toggler {
    margin: 0;
    order: 2;
    flex-shrink: 0;
  }

  .navbar-collapse {
    width: 100% !important;
    margin-top: 10px !important;
    padding: 12px 14px 14px !important;
    border-radius: 10px;
    background: rgba(249, 115, 22, 0.1) !important;
    border: 1px solid rgba(249, 115, 22, 0.2) !important;
    box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    order: 3;
  }

  .navbar-collapse.show {
    display: flex !important;
    flex-direction: column;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 6px;
    width: 100%;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    padding: 10px 12px !important;
    font-size: 0.88rem;
    display: block;
    text-align: left;
    border-radius: 8px;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.85) !important;
  }

  .nav-link:hover {
    background: rgba(249, 115, 22, 0.15) !important;
    color: #f97316 !important;
  }

  .nav-link.active {
    background: rgba(249, 115, 22, 0.2) !important;
    color: #f97316 !important;
    box-shadow: inset 0 0 8px rgba(249, 115, 22, 0.2);
  }

  .site-sticky-area.compact {
    position: relative;
    padding: 0;
  }

  .site-sticky-area.compact .site-logo {
    width: clamp(52px, 5vw, 64px);
  }

  .site-sticky-area.compact .navbar.site-nav .container {
    padding: 11px clamp(14px, 2.5vw, 28px);
    min-height: 72px;
    gap: 14px;
  }
}

@media (max-width: 575px) {
  .site-title-bar {
    font-size: 0.7rem;
    padding: 6px 0 7px;
  }

  .navbar.site-nav .container {
    padding: 10px clamp(12px, 2vw, 16px);
    min-height: 70px;
    gap: 12px;
  }

  .site-logo {
    width: clamp(48px, 5.5vw, 56px);
  }

  .navbar-collapse {
    margin-top: 10px !important;
    padding: 10px 12px 12px !important;
    background: rgba(249, 115, 22, 0.12) !important;
  }

  .nav-link {
    padding: 9px 11px !important;
    font-size: 0.82rem;
  }

  .navbar-toggler {
    padding: 6px 10px;
  }
}
