:root {
  --color-primary: #309B9C;
  --color-primary-dark: #246B6E;
  --color-gold: #C2A66B;
  --color-btn-gold1: #CCAA63;
  --color-btn-gold2: #B99656;
  --color-text: #232A36;
  --color-text-muted: #39424F;
  --navbar-height: 107px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: #fff;
}

* {
  font-family: 'Alexandria', sans-serif;
}

/* ── Navbar ── */
.bz-navbar {
  min-height: var(--navbar-height);
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
  position: relative;
  z-index: 1000;
}

.bz-navbar .container-fluid {
  min-height: var(--navbar-height);
  padding-inline: 80px;
}

.bz-logo {
  height: 72px;
  width: auto;
}

.bz-nav {
  gap: 70px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bz-nav .nav-item a {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--color-text);
  text-decoration: none;
  padding-bottom: 4px;
  position: relative;
  white-space: nowrap;
}

.bz-nav .nav-item a:hover {
  color: var(--color-primary);
}

.bz-nav .nav-item.active a {
  font-weight: 700;
  color: var(--color-primary);
}

.bz-nav .nav-item.active a::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

.bz-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  text-decoration: none;
}

.bz-lang svg {
  width: 24px;
  height: 24px;
}

.bz-lang span {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1;
}

.bz-btn-join {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 32px;
  height: 44px;
  min-width: 150px;
  background: linear-gradient(84.72deg, #CCAA63 55.11%, #B99656 93.66%);
  box-shadow: 0px 5.95px 8.92px -5px rgba(194, 166, 107, 0.6);
  border-radius: 12px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s;
}

.bz-btn-join:hover {
  opacity: .88;
  color: #fff;
}

.navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none !important;
}

@media (max-width: 991.98px) {
  .bz-navbar {
    height: auto;
  }

  .bz-navbar .container-fluid {
    padding-inline: 24px;
    flex-wrap: wrap;
  }

  .bz-navbar .navbar-collapse {
    width: 100%;
    background: #fff;
    padding-bottom: 16px;
  }

  .bz-nav {
    gap: 24px;
    flex-direction: column !important;
    padding: 16px 0;
  }

  .bz-nav .nav-item.active a::after {
    bottom: -4px;
  }

  .bz-lang,
  .bz-btn-join {
    margin-top: 8px;
  }
}

/* ── Hero ── */
.bz-hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--navbar-height));
  overflow: visible;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.bz-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 88px;
  width: 100%;
  max-width: 1169px;
  padding-inline: 24px;
}

.bz-hero-title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 500;
  font-size: 75px;
  line-height: 130%;
  color: #131926;
  margin-bottom: 32px;
}

.bz-hero-title-accent {
  color: #309B9C;
}

.bz-hero-subtitle {
  font-family: 'Alexandria', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: #232A36;
  max-width: 850px;
  margin-bottom: 32px;
}

.bz-hero-soon {
  font-family: 'Alexandria', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 130%;
  color: #246B6E;
  margin-bottom: 40px;
}

.bz-hero-fade {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 180%;
  height: 260px;
  background: linear-gradient(to top, #ffffff 45%, rgba(255, 255, 255, 0.9) 75%, transparent 100%);
  filter: blur(24px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

.bz-hero-cta {
  gap: 12px;
  min-width: 291px;
  height: 64px;
  font-size: 20px;
}

@media (max-width: 991.98px) {
  .bz-hero {
    height: auto;
    min-height: calc(100vh - var(--navbar-height));
    padding-bottom: 80px;
  }

  .bz-hero-title {
    font-size: 52px;
  }

  .bz-hero-subtitle {
    font-size: 18px;
  }

  .bz-hero-soon {
    font-size: 24px;
  }
}

@media (max-width: 575.98px) {
  .bz-hero-title {
    font-size: 36px;
  }

  .bz-hero-subtitle {
    font-size: 16px;
  }

  .bz-hero-cta {
    min-width: unset;
    width: 100%;
    max-width: 291px;
  }
}

/* ── Ticker ── */
.bz-ticker {
  position: relative;
  z-index: 3;
  width: 100%;
  overflow: hidden;
  padding: 28px 0;
  background: #fff;
  opacity: 0.4;
  direction: ltr;
}

.bz-ticker-track {
  display: flex;
  direction: ltr;
  width: max-content;
  will-change: transform;
}

.bz-ticker-group {
  display: flex;
  direction: ltr;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  flex-shrink: 0;
}

.bz-ticker-text {
  font-family: 'Alexandria', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  color: #1E4F51;
  white-space: nowrap;
}

.bz-ticker-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  filter: invert(22%) sepia(40%) saturate(600%) hue-rotate(140deg) brightness(78%) contrast(90%);
}

/* ── Why Bait Zain ── */
.bz-why {
  background: #fff;
  padding: 100px 0;
}

.bz-why-inner {
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.bz-why-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.bz-why-title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 130%;
  color: #246B6E;
  margin: 0;
  text-align: center;
}

.bz-why-subtitle {
  font-family: 'Alexandria', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 185%;
  color: #4D5663;
  max-width: 639px;
  margin: 0;
  text-align: center;
}

.bz-why-body {
  display: flex;
  flex-direction: row;
  gap: 86px;
  align-items: stretch;
}

.bz-why-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bz-why-media {
  flex: 1;
  position: relative;
  border-radius: 48px;
  overflow: hidden;
  min-height: 500px;
}

.bz-why-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bz-why-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26, 22, 15, 0.8) 0%, rgba(26, 22, 15, 0) 50%, rgba(26, 22, 15, 0) 100%);
  pointer-events: none;
}

.bz-why-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 133px;
  height: 133px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: transform .2s;
}

.bz-why-play:hover {
  transform: translate(-50%, -50%) scale(1.07);
}

.bz-why-play-ring {
  width: 113px;
  height: 113px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 4px;
}

.bz-why-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  padding: 40px 48px;
  background: rgba(255, 255, 255, 0.5);
  border: 1.5px solid rgba(215, 200, 167, 1);
  border-radius: 24px;
  flex: 1;
}

.bz-why-card-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: #D4F3F0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bz-why-card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: right;
}

.bz-why-card-title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  color: #131926;
  margin: 0;
}

.bz-why-card-desc {
  font-family: 'Alexandria', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 165%;
  color: #232A36;
  margin: 0;
}

@media (max-width: 1199.98px) {
  .bz-why-inner {
    padding: 0 40px;
    gap: 64px;
  }

  .bz-why-body {
    gap: 48px;
  }

  .bz-why-title {
    font-size: 42px;
  }
}

@media (max-width: 991.98px) {
  .bz-why-body {
    flex-direction: column-reverse;
  }

  .bz-why-media {
    min-height: 400px;
  }
}

@media (max-width: 575.98px) {
  .bz-why {
    padding: 64px 0;
  }

  .bz-why-inner {
    padding: 0 20px;
    gap: 48px;
  }

  .bz-why-title {
    font-size: 32px;
  }

  .bz-why-subtitle {
    font-size: 18px;
  }

  .bz-why-card {
    padding: 24px;
  }

  .bz-why-card-title {
    font-size: 20px;
  }

  .bz-why-card-desc {
    font-size: 16px;
  }
}

/* ── Services Section ── */
.bz-services {
  background: #F2FBFA;
  padding: 119px 0 119px;
}

.bz-services-inner {
  max-width: 1756px;
  margin: 0 auto;
  padding: 0 82px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.bz-services-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.bz-services-title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 600;
  font-size: 56px;
  line-height: 130%;
  color: #246B6E;
  margin: 0;
  text-align: center;
}

.bz-services-subtitle {
  font-family: 'Alexandria', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  color: #4D5663;
  margin: 0;
  text-align: center;
}

.bz-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 93px;
}

.bz-svc-card {
  position: relative;
  height: 551px;
  border-radius: 21px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  filter: drop-shadow(17px 20px 50.4px rgba(0, 0, 0, 0.25));
}

.bz-svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 100%);
  border-radius: 21px;
  z-index: 0;
}

.bz-svc-glass {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 40px 40px;
}

.bz-svc-title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 150%;
  color: #ffffff;
  margin: 0;
  text-align: right;
}

.bz-svc-desc {
  font-family: 'Alexandria', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 38px;
  color: #ffffff;
  margin: 0;
  text-align: right;
  width: 100%;
}

@media (max-width: 1199.98px) {
  .bz-services-inner {
    padding: 0 40px;
    gap: 64px;
  }

  .bz-services-grid {
    gap: 48px;
  }

  .bz-services-title {
    font-size: 42px;
  }
}

@media (max-width: 991.98px) {
  .bz-services-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bz-svc-card {
    height: 420px;
  }
}

@media (max-width: 575.98px) {
  .bz-services {
    padding: 64px 0;
  }

  .bz-services-inner {
    padding: 0 20px;
    gap: 48px;
  }

  .bz-services-title {
    font-size: 32px;
  }

  .bz-services-subtitle {
    font-size: 18px;
  }

  .bz-svc-card {
    height: 340px;
  }

  .bz-svc-glass {
    padding: 16px 24px 24px;
  }

  .bz-svc-title {
    font-size: 28px;
  }

  .bz-svc-desc {
    font-size: 16px;
    line-height: 30px;
  }
}

/* ── How to Register ── */
.bz-steps {
  background: #fff;
  padding: 100px 0;
}

.bz-steps-inner {
  max-width: 1761px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}

.bz-steps-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 639px;
}

.bz-steps-title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 130%;
  color: #246B6E;
  margin: 0;
  text-align: center;
}

.bz-steps-subtitle {
  font-family: 'Alexandria', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 185%;
  color: #4D5663;
  margin: 0;
  text-align: center;
}

.bz-steps-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 57px;
  width: 100%;
}

.bz-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.bz-step-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 549 / 761;
}

.bz-step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 62px;
}

.bz-step-badge {
  position: absolute;
  top: 12px;
  right: 8px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  z-index: 4;
}

.bz-step-badge--teal {
  background: #246B6E;
}

.bz-step-badge--gold {
  background: #B99656;
}

.bz-step-badge span {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 73px;
  line-height: 1;
  color: #ffffff;
}

.bz-step-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #1A160F 0%, rgba(26, 22, 15, 0) 59.12%);
  border-radius: 62px;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
  pointer-events: none;
}

.bz-step-hover-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 40px 48px;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.bz-step-hover-text p {
  font-family: 'Alexandria', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 130%;
  color: #fff;
  text-align: right;
  margin: 0;
}

.bz-step-img-wrap:hover .bz-step-hover-overlay,
.bz-step-img-wrap:hover .bz-step-hover-text {
  opacity: 1;
}

.bz-step-name {
  font-family: 'Alexandria', sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 130%;
  color: #131926;
  margin: 0;
  text-align: center;
}

.bz-step-desc {
  font-family: 'Alexandria', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 160%;
  color: #4D5663;
  margin: 0;
  text-align: center;
}

@media (max-width: 1199.98px) {
  .bz-steps-inner {
    padding: 0 40px;
    gap: 64px;
  }

  .bz-steps-row {
    gap: 32px;
  }

  .bz-steps-title {
    font-size: 42px;
  }

  .bz-step-name {
    font-size: 32px;
  }

  .bz-step-badge {
    width: 110px;
    height: 110px;
    right: 12px;
  }

  .bz-step-badge span {
    font-size: 56px;
  }
}

@media (max-width: 991.98px) {
  .bz-steps-row {
    flex-direction: column;
    align-items: center;
  }

  .bz-step {
    width: 100%;
    max-width: 480px;
  }
}

@media (max-width: 575.98px) {
  .bz-steps {
    padding: 64px 0;
  }

  .bz-steps-inner {
    padding: 0 20px;
    gap: 48px;
  }

  .bz-steps-title {
    font-size: 32px;
  }

  .bz-steps-subtitle {
    font-size: 18px;
  }

  .bz-step-name {
    font-size: 24px;
  }

  .bz-step-desc {
    font-size: 18px;
  }

  .bz-step-badge {
    width: 72px;
    height: 72px;
  }

  .bz-step-badge span {
    font-size: 44px;
  }
}

/* ── Contact Section ── */
.bz-contact {
  background: #fff;
  padding: 100px 0;
}

.bz-contact-inner {
  max-width: 1564px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}

.bz-contact-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 639px;
}

.bz-contact-title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 130%;
  color: #246B6E;
  margin: 0;
  text-align: center;
}

.bz-contact-subtitle {
  font-family: 'Alexandria', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 185%;
  color: #4D5663;
  margin: 0;
  text-align: center;
}

.bz-contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.bz-contact-input {
  width: 100%;
  height: 64px;
  padding: 4px 24px;
  background: #fff;
  border: 1.5px solid #8E99A9;
  border-radius: 16px;
  font-family: 'Alexandria', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #141B34;
  text-align: right;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.bz-contact-input:focus {
  border-color: #309B9C;
}

.bz-contact-input::placeholder {
  color: #8E99A9;
}

.bz-contact-field-wrap {
  position: relative;
  width: 100%;
}

.bz-contact-input--icon {
  padding-left: 48px;
}

.bz-contact-arrow {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.bz-contact-textarea {
  width: 100%;
  height: 460px;
  padding: 20px 26px;
  background: #fff;
  border: 1.5px solid #8E99A9;
  border-radius: 13px;
  font-family: 'Alexandria', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #141B34;
  text-align: right;
  outline: none;
  resize: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.bz-contact-textarea:focus {
  border-color: #309B9C;
}

.bz-contact-textarea::placeholder {
  color: #8E99A9;
}

.bz-contact-btn {
  align-self: flex-end;
  width: 273px;
  height: 64px;
  padding: 16px 48px;
  background: linear-gradient(84.72deg, #CCAA63 55.11%, #B99656 93.66%);
  box-shadow: 0px 5.95px 8.92px -5px rgba(194, 166, 107, 0.6);
  border-radius: 16px;
  border: none;
  font-family: 'Alexandria', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s;
}

.bz-contact-btn:hover {
  opacity: 0.88;
}

@media (max-width: 1199.98px) {
  .bz-contact-inner { padding: 0 40px; gap: 64px; }
  .bz-contact-title  { font-size: 42px; }
}

@media (max-width: 575.98px) {
  .bz-contact        { padding: 64px 0; }
  .bz-contact-inner  { padding: 0 20px; gap: 48px; }
  .bz-contact-title  { font-size: 32px; }
  .bz-contact-subtitle { font-size: 18px; }
  .bz-contact-textarea { height: 280px; }
  .bz-contact-btn    { width: 100%; align-self: stretch; }
}

/* ── CTA Banner Section ── */
.bz-cta {
  position: relative;
  width: 100%;
  min-height: 522px;
  background: #1E4F51;
  border-top: 4px solid #B99656;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bz-cta-bg-img {
  position: absolute;
  inset: 0;
  background-size: auto;
  background-repeat: repeat;
  background-position: top center;
  pointer-events: none;
}

.bz-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 1064px;
  width: 100%;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  text-align: center;
}

.bz-cta-title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 600;
  font-size: 56px;
  line-height: 157%;
  color: #fff;
  margin: 0;
}

.bz-cta-subtitle {
  font-family: 'Alexandria', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 185%;
  color: #fff;
  margin: -32px 0 0;
}

.bz-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 242px;
  height: 64px;
  justify-content: center;
  background: linear-gradient(84.72deg, #CCAA63 55.11%, #B99656 93.66%);
  border-radius: 16px;
  font-family: 'Alexandria', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
  box-shadow: 0px 6px 12px -4px rgba(185, 150, 86, 0.5);
}

.bz-cta-btn:hover {
  opacity: 0.88;
  color: #fff;
}

@media (max-width: 1199.98px) {
  .bz-cta-title { font-size: 42px; }
  .bz-cta-inner { gap: 40px; }
}

@media (max-width: 575.98px) {
  .bz-cta-inner  { padding: 60px 24px; gap: 32px; }
  .bz-cta-title  { font-size: 30px; }
  .bz-cta-subtitle { font-size: 16px; }
  .bz-cta-btn    { width: 100%; }
}

/* ── Footer ── */
.bz-footer {
  position: relative;
  width: 100%;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.bz-footer-bg {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  z-index: 0;
}

.bz-footer-top,
.bz-footer-divider,
.bz-footer-contacts,
.bz-footer-copy { position: relative; z-index: 1; }

.bz-footer-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1760px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 80px 0;
  gap: 40px;
}

.bz-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 404px;
  flex-shrink: 0;
}

.bz-footer-desc {
  font-family: 'Alexandria', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 194%;
  color: #fff;
  text-align: center;
  margin: 0;
}

.bz-footer-cta {
  margin-top: 62px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  flex: 1;
  max-width: 539px;
}

.bz-footer-cta-title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #B99656;
  margin: 0;
  text-align: right;
  width: 100%;
}

.bz-footer-phone-row {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  width: 100%;
  height: 64px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 71px rgba(0,0,0,0.07);
  padding: 5px 5px 5px 11px;
  gap: 8px;
}

.bz-footer-phone-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #B3B3B3;
  text-align: left;
}

.bz-footer-phone-input::placeholder { color: #B3B3B3; }

.bz-footer-cta-btn {
  flex-shrink: 0;
  height: 48px;
  padding: 0 24px;
  background: linear-gradient(84.72deg, #CCAA63 55.11%, #B99656 93.66%);
  box-shadow: 0px 6px 9px -5px rgba(194,166,107,0.6);
  border-radius: 16px;
  border: none;
  font-family: 'Alexandria', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.bz-footer-cta-btn:hover { opacity: 0.88; }

.bz-footer-cta-sub {
  font-family: 'Alexandria', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  text-align: right;
  margin: 0;
  width: 100%;
}

.bz-footer-nav { display: flex; flex-direction: row; gap: 42px; flex-shrink: 0; }

.bz-footer-nav-col { display: flex; flex-direction: column; gap: 20px; }

.bz-footer-nav-heading {
  font-family: 'Alexandria', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  margin: 0;
  text-align: right;
}

.bz-footer-nav-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }

.bz-footer-nav-list a {
  font-family: 'Alexandria', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  color: #F2F2F2;
  text-decoration: none;
  display: block;
  text-align: right;
  transition: color 0.2s;
}

.bz-footer-nav-list a:hover { color: #C2A66B; }

.bz-footer-divider {
  width: calc(100% - 160px);
  max-width: 1626px;
  height: 1px;
  margin: 40px auto 0;
  background: linear-gradient(90deg, transparent, #EDDB85, transparent);
  box-shadow: 0px 0px 8px rgba(237,219,133,0.7);
}

.bz-footer-contacts {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 56px;
  padding: 28px 80px;
}

.bz-footer-contact-item { display: flex; flex-direction: row; align-items: center; gap: 10px; }

.bz-footer-icon {
  width: 37px;
  height: 37px;
  background: #246B6E;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bz-footer-contact-item span:last-child {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #F9FAFB;
}

.bz-footer-copy {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #fff;
  padding: 0 20px 28px;
  margin: 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 1199.98px) {
  .bz-footer-top { padding: 60px 40px 0; flex-wrap: wrap; }
  .bz-footer-cta { max-width: 100%; order: -1; flex-basis: 100%; }
  .bz-footer-contacts { gap: 32px; padding: 24px 40px; flex-wrap: wrap; }
}

@media (max-width: 767.98px) {
  .bz-footer-top { flex-direction: column; padding: 48px 24px 0; gap: 48px; }
  .bz-footer-brand { max-width: 100%; }
  .bz-footer-nav { width: 100%; justify-content: center; }
  .bz-footer-divider { width: calc(100% - 48px); }
  .bz-footer-contacts { flex-direction: column; align-items: flex-start; padding: 24px; gap: 20px; }
}
