:root {
  --bg-obsidian: #050507;
  --bg-elevated: rgba(15, 15, 20, 0.9);
  --bg-glass: rgba(18, 18, 24, 0.85);
  --border-metal: rgba(212, 175, 55, 0.45);
  --accent-gold: #f5c84c; /* electric gold */
  --accent-gold-soft: #d4af37;
  --text-main: #f5f5f7;
  --text-muted: #a0a0aa;
  --danger: #ff6b6b;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.75);
  --radius-soft: 16px;
  --transition-fast: 0.18s ease-out;
  --grid-gap: 1.5rem;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  color: var(--text-main);
  background: radial-gradient(circle at top, #15151c 0, #050507 55%, #000000 100%);
  min-height: 100%;
}

.bg-obsidian {
  background: radial-gradient(circle at top, #15151c 0, #050507 55%, #000000 100%);
}

/* Layout */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 6vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: linear-gradient(to bottom, rgba(5, 5, 7, 0.95), rgba(5, 5, 7, 0.7));
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.hero-logo {
  width: 100%;
  text-align: center;
  margin-bottom: 2.5rem;
}

.hero-logo-img {
  width: 280px;
  max-width: 85%;
  height: auto;
  filter:
    drop-shadow(0 0 18px rgba(245, 200, 76, 0.28))
    drop-shadow(0 0 6px rgba(245, 200, 76, 0.18));
  animation: heroFade 0.8s ease-out;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .hero-logo-img {
    width: 180px;
    filter:
      drop-shadow(0 0 12px rgba(245, 200, 76, 0.22))
      drop-shadow(0 0 4px rgba(245, 200, 76, 0.12));
  }
}


.logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(245, 200, 76, 0.18));
}

@media (max-width: 600px) {
  .logo-img {
    height: 28px;
  }
}


.logo-lockup {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--accent-gold-soft);
  background: radial-gradient(circle at 30% 0, var(--accent-gold) 0, #1a1a1f 55%, #050507 100%);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.logo-text {
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 0.9rem;
  position: relative;
  padding-bottom: 0.2rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  transition: width var(--transition-fast);
}

.main-nav a:hover {
  color: var(--text-main);
}

.main-nav a:hover::after {
  width: 100%;
}

.page-wrapper,
.home-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 6vw 3.5rem;
}

.page-title {
  font-size: 1.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: var(--accent-gold);
}

/* Cards / Hybrid style */

.card {
  background: var(--bg-glass);
  border-radius: var(--radius-soft);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(245, 200, 76, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.card:hover::before {
  opacity: 1;
}

.glass {
  backdrop-filter: blur(18px);
}

.hard-border {
  border: 1px solid var(--border-metal);
}

/* Accent glow */

.accent-glow {
  box-shadow:
    0 0 0 1px rgba(245, 200, 76, 0.35),
    0 0 22px rgba(245, 200, 76, 0.35),
    var(--shadow-soft);
}

/* Home grid */

.home-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
  margin-top: 2rem;
}

.home-box {
  text-decoration: none;
  color: var(--text-main);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--radius-soft);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.home-box h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.home-box p {
  color: var(--text-muted);
}

.home-box:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  box-shadow:
    0 0 0 1px rgba(245, 200, 76, 0.4),
    0 0 26px rgba(245, 200, 76, 0.4),
    var(--shadow-soft);
}

/* Tag */

.tag {
  color: var(--accent-gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Entertainment grid */

.ent-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.ent-grid .box {
  min-height: 160px;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-soft) - 4px);
  filter: saturate(0.9) contrast(1.1);
}

/* CTA */

.cta-center {
  margin-top: -3rem;
  margin-bottom: 4rem;
  text-align: center;
}

/* Buttons */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: 1px solid var(--accent-gold-soft);
  background: radial-gradient(circle at top, rgba(245, 200, 76, 0.18), rgba(10, 10, 14, 0.95));
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: radial-gradient(circle at top, rgba(245, 200, 76, 0.28), rgba(10, 10, 14, 0.98));
}

/* Form */

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  justify-content: center;
  width: 100%;
}

.form-actions button {
  min-width: 220px;
  text-align: center;
}

.form-actions.full-width {
  grid-column: 1 / -1;     /* span the full width of the grid */
  display: flex;
  justify-content: center; /* center the button inside */
  width: 100%;
}


label {
  color: var(--text-main);
}

input[type="text"],
input[type="date"],
input[type="number"],
select,
textarea {
  background: rgba(10, 10, 14, 0.9);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.55rem 0.7rem;
  color: var(--text-main);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 1px rgba(245, 200, 76, 0.4);
  background: rgba(10, 10, 14, 0.98);
}

textarea {
  resize: vertical;
}

/* Toggle */

.toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.toggle input {
  appearance: none;
  width: 40px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(90deg, #22222a, #111117);
  position: relative;
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.toggle input::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #f5f5f7;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.toggle input:checked {
  border-color: var(--accent-gold);
  background: linear-gradient(90deg, var(--accent-gold), #7a5a10);
}

.toggle input:checked::before {
  transform: translateX(16px);
  background: #111111;
}

.toggle-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Estimate panel */

.estimate-panel {
  margin-top: 0.5rem;
}

.warning {
  color: var(--danger);
  min-height: 1.2rem;
}

.hint {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Footer */

.site-footer {
  padding: 1.25rem 6vw 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* Responsive */

@media (max-width: 800px) {
  .home-grid,
  .ent-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  /* Collapse the grid into a single column */
  .service-block {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    grid-template-areas: none !important;
  }

  /* Force header first */
  .service-header {
    order: 1 !important;
  }

  /* Force text second */
  .service-block p {
    order: 2 !important;
  }

  .site-header {
    padding-inline: 5vw;
  }

  .page-wrapper,
  .home-wrapper {
    padding-inline: 5vw;
  }

  .main-nav a {
    margin-left: 1rem;
  }
}

@media (max-width: 520px) {
  .main-nav {
    display: none;
  }

  .page-title {
    font-size: 1.5rem;
  }
}

/* Restore native date picker UI */
input[type="date"] {
  appearance: auto;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  background-color: #111; /* match your theme */
  color: #f5c84c; /* gold text */
  border: 1px solid rgba(245, 200, 76, 0.4);
  padding: 0.5rem;
  border-radius: 6px;
}

/* Make sure the calendar icon is visible */
input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 1;
  cursor: pointer;
  filter: invert(1) sepia(1) saturate(5) hue-rotate(10deg);
}

.gold-divider {
  border: 0;
  height: 1px;
  width: 60%;
  margin: 0.75rem 0 1rem 0;
  background: linear-gradient(
    to right,
    rgba(245, 200, 76, 0.0),
    rgba(245, 200, 76, 0.45),
    rgba(245, 200, 76, 0.0)
  );
}

#calculateBtn {
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

#calculateBtn.awake {
  box-shadow: 0 0 12px rgba(245, 200, 76, 0.55),
              0 0 20px rgba(245, 200, 76, 0.35);
  transform: scale(1.03);
}

/* ================================
   ENTERTAINMENT PAGE — PREMIUM CSS
   ================================ */

.bbz-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

/* ============================
   GRID + LAYOUT
   ============================ */

.bbz-block {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;

  /* Fade + Rise (Option B) */
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.bbz-block.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Desktop alternating layout */
@media (min-width: 900px) {
  .bbz-block {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .bbz-block:nth-child(even) .bbz-image-wrap {
    order: 2;
  }
  .bbz-block:nth-child(even) .bbz-text-wrap {
    order: 1;
  }
}

/* ============================
   HERO IMAGE + PARALLAX
   ============================ */

.bbz-image-wrap {
  position: relative;
  height: 350px;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.bbz-image {
  width: 100%;
  height: 120%;
  object-fit: cover;
  transform: translateY(0);
  transition: transform 0.1s linear, filter 0.3s ease;
  will-change: transform;
}

/* Hover brighten */
.bbz-block:hover .bbz-image {
  filter: brightness(1.08);
}

/* ============================
   TEXT BLOCK (RAISED + CLEAN)
   ============================ */

.bbz-text-wrap {
  align-self: start;
  margin-top: -15px;
}

.bbz-header {
  display: block;
  margin-top: 0.5rem;
}

/* Remove icon rules completely */
.bbz-icon,
.bbz-icon svg {
  display: none !important;
}

.bbz-title {
  font-size: 1.7rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.03em;
  margin: 0 0 0.75rem 0;
}
.bbz-block:hover {
  box-shadow:
    -12px -12px 22px rgba(245, 200, 76, 0.25), /* upper-left glow */
    0 0 22px rgba(245, 200, 76, 0.35);        /* existing glow */
}


/* ============================
   GOLD GRADIENT DIVIDER
   ============================ */

.bbz-divider {
  height: 2px;
  width: 90px;
  background: linear-gradient(
    to right,
    rgba(245, 200, 76, 0),
    rgba(245, 200, 76, 0.8),
    rgba(245, 200, 76, 0)
  );
  margin: 1rem 0 1.25rem;
  transition: background 0.3s ease;
}

.bbz-block:hover .bbz-divider {
  background: linear-gradient(
    to right,
    rgba(245, 200, 76, 0),
    rgba(245, 200, 76, 1),
    rgba(245, 200, 76, 0)
  );
}

/* ============================
   GOLD GRADIENT FRAME (LUXURY)
   ============================ */

.bbz-block {
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 1.5rem;

  background:
    linear-gradient(#0d0d0d, #0d0d0d) padding-box,
    linear-gradient(135deg,
      rgba(245, 200, 76, 0.15),
      rgba(212, 167, 59, 0.15)
    ) border-box;
}

/* Hover: stronger gradient + glow + lift */
.bbz-block:hover {
  background:
    linear-gradient(#0d0d0d, #0d0d0d) padding-box,
    linear-gradient(135deg,
      rgba(245, 200, 76, 0.40),
      rgba(212, 167, 59, 0.40)
    ) border-box;

  box-shadow: 0 0 22px rgba(245, 200, 76, 0.25);
  transform: translateY(-4px) scale(1.01);
}

/* ============================
   MAGNETIC HOVER EFFECT
   ============================ */

.bbz-block {
  position: relative;
  perspective: 800px;
}

.bbz-block:hover .bbz-image-wrap {
  transform: translateZ(6px);
}

/* ============================
   TEXT
   ============================ */

.bbz-text-wrap p {
  line-height: 1.65;
  font-size: 1rem;
  max-width: 60ch;
}

.card,
.glass,
.hard-border {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* ============================================
   UNIVERSAL BBZ CARD — PREMIUM LUXURY SYSTEM
   ============================================ */

.bbz-card {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;

  /* Fade + Rise */
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;

  /* 2px gold gradient border */
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 1.5rem;

  background:
    linear-gradient(#0d0d0d, #0d0d0d) padding-box,
    linear-gradient(135deg,
      rgba(245, 200, 76, 0.20),
      rgba(212, 167, 59, 0.20)
    ) border-box;

  isolation: isolate;
}

.bbz-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover: stronger gradient + outer glow + lift */
.bbz-card:hover {
  background:
    linear-gradient(#0d0d0d, #0d0d0d) padding-box,
    linear-gradient(135deg,
      rgba(245, 200, 76, 0.45),
      rgba(212, 167, 59, 0.45)
    ) border-box;

  box-shadow:
    0 0 26px rgba(245, 200, 76, 0.28);

  transform: translateY(-4px) scale(1.01);
}

/* ============================
   CARD BODY
   ============================ */

.bbz-card-body {
  align-self: start;
  margin-top: -10px;
}

/* ============================
   TITLE
   ============================ */

.bbz-card-title {
  font-size: 1.7rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.03em;
  margin: 0 0 0.75rem 0;
}

/* ============================
   DIVIDER
   ============================ */

.bbz-divider {
  height: 2px;
  width: 90px;
  background: linear-gradient(
    to right,
    rgba(245, 200, 76, 0),
    rgba(245, 200, 76, 0.8),
    rgba(245, 200, 76, 0)
  );
  margin: 1rem 0 1.25rem;
  transition: background 0.3s ease;
}

.bbz-card:hover .bbz-divider {
  background: linear-gradient(
    to right,
    rgba(245, 200, 76, 0),
    rgba(245, 200, 76, 1),
    rgba(245, 200, 76, 0)
  );
}

/* ============================================
   BBZ CARD — FORCE PRIORITY FIX
   ============================================ */

.bbz-card {
  display: grid !important;
  gap: 2rem !important;
  margin-bottom: 4rem !important;

  opacity: 1 !important;
  transform: translateY(0) !important;

  border: 2px solid transparent !important;
  border-radius: 12px !important;
  padding: 1.5rem !important;

  background:
    linear-gradient(#0d0d0d, #0d0d0d) padding-box,
    linear-gradient(135deg,
      rgba(245, 200, 76, 0.20),
      rgba(212, 167, 59, 0.20)
    ) border-box !important;

  box-shadow: none !important;
  isolation: isolate !important;
}

.bbz-card:hover {
  background:
    linear-gradient(#0d0d0d, #0d0d0d) padding-box,
    linear-gradient(135deg,
      rgba(245, 200, 76, 0.45),
      rgba(212, 167, 59, 0.45)
    ) border-box !important;

  box-shadow: 0 0 26px rgba(245, 200, 76, 0.28) !important;
  transform: translateY(-4px) scale(1.01) !important;
}

.bbz-card-body {
  margin-top: -10px !important;
}

.bbz-card-title {
  font-size: 1.7rem !important;
  font-weight: 600 !important;
  color: white !important;
  margin: 0 0 0.75rem 0 !important;
}

.bbz-divider {
  height: 2px !important;
  width: 90px !important;
  background: linear-gradient(
    to right,
    rgba(245, 200, 76, 0),
    rgba(245, 200, 76, 0.8),
    rgba(245, 200, 76, 0)
  ) !important;
  margin: 1rem 0 1.25rem !important;
}

.bbz-card:hover .bbz-divider {
  background: linear-gradient(
    to right,
    rgba(245, 200, 76, 0),
    rgba(245, 200, 76, 1),
    rgba(245, 200, 76, 0)
  ) !important;
}

/* ============================
   TOP ROW — TRUE 3-COLUMN GRID
   ============================ */
.form-grid.top-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

/* ============================
   SECOND ROW — TRUE 2-COLUMN GRID
   ============================ */
.form-grid.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* ============================
   COLUMN PLACEMENT
   ============================ */
.col-left {
  grid-column: 1;
}

.col-middle {
  grid-column: 2;
}

.col-third {
  grid-column: 3;
}

.col-right {
  grid-column: 2;
  padding-right: 1rem; /* prevents hugging the edge */
}

/* ============================
   FULL WIDTH ITEMS
   ============================ */
.full-width {
  grid-column: 1 / -1;
}

/* ============================
   MOBILE — STACK EVERYTHING
   ============================ */
@media (max-width: 768px) {
  .form-grid.top-row,
  .form-grid.two-col {
    grid-template-columns: 1fr;
  }

  .col-left,
  .col-middle,
  .col-third,
  .col-right,
  .full-width {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-lockup:hover {
  filter: drop-shadow(0 0 8px rgba(245, 200, 76, 0.6));
  transform: translateY(-2px);
}

.logo-text {

  transition: color 0.3s ease;
}

.logo-lockup:hover .logo-text {
  color: rgba(245, 200, 76, 1);
}

.site-footer {
  background: #0b0b0b;
  /*border-top: 2px solid rgba(245, 200, 76, 0.25);*/
  padding: 2rem 1.5rem;
  margin-top: auto; /* critical for sticky footer */
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.8);

}

.footer-logo {
  height: 28px;
  width: auto;
  opacity: 0.85;
}

.footer-links a {
  margin-left: 1rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: rgba(245, 200, 76, 1);
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.form-actions {
  margin-top: 1.75rem;
}

/* CONTACT INFO INPUT — BOLD BBZ STYLE */
#contactName,
#contactEmail,
#contactPhone,
#contactMethod {
  background: #111; /* deep obsidian */
  color: #fff;
  border: 1px solid rgba(245, 200, 76, 0.8); /* strong gold */
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  transition: all 0.25s ease;
}

#contactName:focus,
#contactEmail:focus,
#contactPhone:focus,
#contactMethod:focus {
  background: #000;
  border-color: #f5c84c;
  box-shadow: 0 0 8px rgba(245, 200, 76, 0.6);
  outline: none;
}


#submitInquiryBtn {
  display: none !important;
}
/* REMOVE RISE ANIMATION ONLY ON INQUIRY PAGE */
.inquiry-page .bbz-card,
.inquiry-page .bbz-card-body {
  animation: none !important;
  transform: none !important;
}

#submitInquiryBtn {
  opacity: 0;
  display: none !important;
  transition: opacity 0.3s ease;
}

#submitInquiryBtn.show {
  display: inline-block !important;
  opacity: 1;
}
/* CENTER TEXT ONLY ON THANK-YOU PAGE */
.thank-you-page .bbz-card {
  animation: none !important;
  transform: none !important;
}

.thank-you-page .bbz-card-body {
  text-align: center;
  animation: none !important;
  transform: none !important;
}

.thank-you-page .bbz-card-title {
  text-align: center;
}

.thank-you-page .bbz-divider {
  margin-left: auto;
  margin-right: auto;
  margin: 1rem auto !important;
  display: block;

}

.thank-you-page .btn-primary {
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}