@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --c-bg-dark: #0b0e14;
  --c-bg-panel: #121722;
  --c-bg-card: #1a202e;
  --c-bg-card-hover: #20293a;
  --c-gold: #c6a45c;
  --c-gold-bright: #ecd397;
  --c-gold-deep: #9d7b33;
  --c-white: #ffffff;
  --c-cream: #f4efe6;
  --c-body: #cfd6e2;
  --c-heading: #ffffff;
  --c-line: rgba(198, 164, 92, 0.2);
  --c-line-soft: rgba(255, 255, 255, 0.09);
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 14px 34px rgba(198, 164, 92, 0.22);
  --radius: 18px;
  --radius-sm: 12px;
  --font-head: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--c-bg-dark);
  color: var(--c-body);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--c-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1.12;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.35;
}

p {
  color: var(--c-body);
}

a {
  color: var(--c-gold);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--c-gold-bright);
}

img {
  max-width: 100%;
}

section {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.bg-panel {
  background-color: var(--c-bg-panel);
}

.bg-card {
  background-color: var(--c-bg-card);
}

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

.text-gold-bright {
  color: var(--c-gold-bright) !important;
}

.section-pad {
  padding: 110px 0;
}

.section-pad-sm {
  padding: 70px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-gold);
}

.section-label::before {
  content: '';
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold));
}

.section-label-centered::after {
  content: '';
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, var(--c-gold), transparent);
}

.section-title {
  margin-top: 14px;
}

.section-subtitle {
  max-width: 680px;
  font-size: 1.08rem;
  color: var(--c-body);
}

.lead-text {
  font-size: 1.14rem;
  color: var(--c-cream);
}

.gold-divider {
  display: inline-block;
  width: 76px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold-deep), var(--c-gold-bright));
  border-radius: 4px;
}

.gold-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.btn {
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: 50px;
  padding: 0.72rem 1.8rem;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.btn-gold {
  background: linear-gradient(115deg, var(--c-gold-deep), var(--c-gold-bright) 60%, var(--c-gold));
  background-size: 160% auto;
  color: #191208;
  border: none;
  font-weight: 600;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background-position: right center;
  color: #191208;
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  border: 1px solid var(--c-gold);
  color: var(--c-gold-bright);
}

.btn-outline-gold:hover {
  background: var(--c-gold);
  color: #191208;
  transform: translateY(-2px);
}

.btn-light {
  background: var(--c-white);
  color: #13161d;
  border: none;
}

.btn-light:hover {
  background: var(--c-cream);
  color: #13161d;
  transform: translateY(-2px);
}

.btn-dark-elite {
  background: transparent;
  border: 1px solid var(--c-line-soft);
  color: var(--c-white);
}

.btn-dark-elite:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--c-gold);
  color: var(--c-gold-bright);
}

#inject-header {
  position: relative;
  z-index: 1000;
}

.navbar-brand {
  font-family: var(--font-head);
}

.navbar-custom {
  background: rgba(11, 14, 20, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 0;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  z-index: 1030;
}

.navbar-custom.scrolled {
  background: rgba(7, 9, 14, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 8px 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

.navbar-custom .nav-link {
  color: var(--c-cream);
  font-weight: 500;
  font-size: 0.94rem;
  padding: 0.55rem 1.1rem;
  letter-spacing: 0.015em;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--c-gold-bright);
}

.navbar-custom .dropdown-menu {
  background: var(--c-bg-panel);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.navbar-custom .dropdown-item {
  color: var(--c-body);
  font-size: 0.92rem;
}

.navbar-custom .dropdown-item:hover {
  background: rgba(198, 164, 92, 0.15);
  color: var(--c-gold-bright);
}

.navbar-custom .navbar-toggler {
  border: none;
  color: var(--c-gold-bright);
  font-size: 1.5rem;
  line-height: 1;
}

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

.navbar-phone {
  color: var(--c-gold-bright);
  font-weight: 600;
}

.hero-home {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 10, 16, 0.95) 18%, rgba(8, 10, 16, 0.62) 54%, rgba(8, 10, 16, 0.28));
}

.hero-home::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 14, 20, 0.96) 100%);
  z-index: 1;
  pointer-events: none;
}

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

.hero-eyebrow {
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-gold);
}

.hero-title {
  color: var(--c-white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero-highlight {
  color: var(--c-gold-bright);
  font-style: italic;
}

.hero-lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 48px;
  margin-top: 48px;
}

.hero-stat h4 {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-gold-bright);
  margin-bottom: 0;
}

.hero-stat span {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border: 2px solid var(--c-gold-bright);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--c-gold-bright);
  background: rgba(10, 12, 18, 0.7);
}

.glass-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.feature-icon {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.7rem;
  color: var(--c-gold-bright);
  background: linear-gradient(150deg, rgba(198, 164, 92, 0.16), rgba(198, 164, 92, 0.03));
  border: 1px solid rgba(198, 164, 92, 0.3);
}

.feature-card {
  padding: 38px 30px;
  border-radius: var(--radius);
  background: var(--c-bg-panel);
  border: 1px solid var(--c-line-soft);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--c-line);
  box-shadow: var(--shadow-soft);
}

.feature-card h4 {
  font-size: 1.3rem;
  margin: 20px 0 10px;
}

.portfolio-card,
.package-card,
.offer-card,
.price-card,
.complex-card {
  background: var(--c-bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--c-line-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
  height: 100%;
}

.portfolio-card:hover,
.package-card:hover,
.offer-card:hover,
.price-card:hover,
.complex-card:hover {
  transform: translateY(-8px);
  border-color: var(--c-line);
  box-shadow: var(--shadow-soft);
}

.d-media {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.portfolio-card .front-wrap {
  overflow: hidden;
}

.price-tag {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--c-gold-bright);
  line-height: 1.05;
}

.price-tag small {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--c-body);
}

.step-list {
  counter-reset: stepcounter;
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-list li {
  counter-increment: stepcounter;
  position: relative;
  padding: 22px 0 22px 74px;
  border-bottom: 1px solid var(--c-line-soft);
}

.step-list li::before {
  content: counter(stepcounter, decimal-leading-zero);
  position: absolute;
  top: 18px;
  left: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-gold);
  border: 1px solid var(--c-line);
  border-radius: 50%;
  background: var(--c-bg-panel);
}

.step-list li:last-child {
  border-bottom: none;
}

.accordion-custom .accordion-item {
  background: transparent;
  border: none;
  margin-bottom: 14px;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
}

.accordion-custom .accordion-button {
  background: var(--c-bg-card);
  color: var(--c-white);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 22px 26px;
  box-shadow: none;
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius-sm) !important;
}

.accordion-custom .accordion-button::after {
  font-family: 'Font Awesome 6 Free';
  content: '\f078';
  font-weight: 900;
  background-image: none;
  width: auto;
  height: auto;
  color: var(--c-gold-bright);
}

.accordion-custom .accordion-button:not(.collapsed) {
  color: var(--c-gold-bright);
  background: var(--c-bg-card);
  border-color: var(--c-line);
  box-shadow: none;
}

.accordion-custom .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.accordion-custom .accordion-body {
  background: var(--c-bg-panel);
  border: 1px solid var(--c-line-soft);
  border-top: none;
  color: var(--c-body);
  border-bottom-left-radius: var(--radius-sm);
  border-bottom-right-radius: var(--radius-sm);
  padding: 26px;
}

.testimonial-card {
  position: relative;
  background: var(--c-bg-panel);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius);
  padding: 42px 36px;
}

.testimonial-card::before {
  content: '\f10e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2.4rem;
  color: rgba(198, 164, 92, 0.22);
}

.mini-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--c-bg-card);
  border: 1px solid var(--c-line);
}

.star-rating i {
  color: var(--c-gold);
  font-size: 0.85rem;
}

.form-wrap {
  background: var(--c-bg-panel);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius);
  padding: 42px;
}

.form-control {
  background: var(--c-bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--c-white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.98rem;
}

.form-control:focus {
  background: var(--c-bg-dark);
  border-color: var(--c-gold);
  color: var(--c-white);
  box-shadow: 0 0 0 3px rgba(198, 164, 92, 0.14);
}

.form-control::placeholder {
  color: rgba(207, 214, 226, 0.5);
}

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

.form-label {
  color: var(--c-cream);
  font-weight: 500;
  font-size: 0.95rem;
}

.map-frame {
  width: 100%;
  height: 470px;
  border: none;
  border-radius: var(--radius);
  filter: grayscale(0.25) contrast(1.02);
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-item .con-icon {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, rgba(198, 164, 92, 0.2), rgba(198, 164, 92, 0.04));
  color: var(--c-gold-bright);
  font-size: 1.2rem;
  border: 1px solid var(--c-line);
}

.contact-item h6 {
  margin-bottom: 4px;
  color: var(--c-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
}

.contact-item a,
.contact-item span {
  color: var(--c-body);
}

footer {
  background-color: #080b11;
  border-top: 1px solid var(--c-line-soft);
}

.footer-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 18px;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-list a {
  color: var(--c-body);
  font-size: 0.94rem;
}

.footer-list a:hover {
  color: var(--c-gold-bright);
  padding-left: 4px;
}

.footer-social {
  width: 42px;
  height: 42px;
  border: 1px solid var(--c-line-soft);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-social:hover {
  border-color: var(--c-gold);
  color: var(--c-gold-bright);
  background: rgba(198, 164, 92, 0.1);
}

.copyright-line {
  border-top: 1px solid var(--c-line-soft);
  padding-top: 24px;
}

.copyright-line span {
  color: var(--c-body);
  font-size: 0.88rem;
}

.footer-brand {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: -0.02em;
}

.gold-text-brand {
  background: linear-gradient(115deg, var(--c-gold-deep), var(--c-gold-bright) 50%, var(--c-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.carousel-custom .carousel-indicators button {
  width: 34px;
  height: 4px;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: all 0.3s ease;
}

.carousel-custom .carousel-indicators button.active {
  background: var(--c-gold-bright);
  width: 48px;
}

.carousel-custom .carousel-control-prev,
.carousel-custom .carousel-control-next {
  width: 64px;
  height: 64px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 3%;
  font-size: 1.3rem;
  color: var(--c-white);
}

.carousel-custom .carousel-control-prev i,
.carousel-custom .carousel-control-next i {
  text-shadow: none;
}

.partner-logos .partner-item {
  filter: grayscale(1);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.partner-logos .partner-item:hover {
  filter: grayscale(0);
  opacity: 1;
}

.page-hero {
  position: relative;
  padding: 180px 0 110px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(7, 9, 15, 0.96) 20%, rgba(7, 9, 15, 0.68) 70%);
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, var(--c-bg-dark) 100%);
}

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

.breadcrumb-custom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.breadcrumb-custom li + li::before {
  content: '/';
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-custom a {
  color: var(--c-body);
}

.breadcrumb-custom a:hover {
  color: var(--c-gold-bright);
}

.breadcrumb-custom .active-item {
  color: var(--c-gold);
}

.badge-soft-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(198, 164, 92, 0.14);
  border: 1px solid var(--c-line);
  color: var(--c-gold-bright);
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-panel {
  position: relative;
  padding-left: 60px;
}

.timeline-panel::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: linear-gradient(180deg, var(--c-gold), rgba(198, 164, 92, 0.08));
}

.timeline-item {
  position: relative;
  padding-bottom: 38px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -49px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--c-bg-dark);
  border: 3px solid var(--c-gold);
  box-shadow: 0 0 0 4px rgba(198, 164, 92, 0.18);
}

.stat-box {
  background: var(--c-bg-panel);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--c-gold-bright);
  margin-bottom: 4px;
}

.stat-box p {
  margin: 0;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.78;
}

.icon-soft {
  font-size: 1.2rem;
  color: var(--c-gold-bright);
  width: 30px;
  text-align: center;
}

.check-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
}

.check-item i {
  color: var(--c-gold);
  margin-top: 5px;
}

.gallery-thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  height: 100%;
  min-height: 220px;
}

.gallery-thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 20px 14px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  color: var(--c-white);
  font-size: 0.9rem;
  z-index: 2;
}

/* privacy consent toast */
.onboard {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1090;
  max-width: 480px;
  background: rgba(18, 23, 34, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s;
}

.onboard.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.onboard p {
  font-size: 0.94rem;
  color: var(--c-body);
}

.onboard p a {
  color: var(--c-gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.onboard-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-white);
  margin-bottom: 10px;
}

.onboard-title i {
  color: var(--c-gold);
}

.toast-alert {
  position: fixed;
  top: 90px;
  right: 24px;
  z-index: 1200;
  min-width: 300px;
  max-width: 420px;
  background: #fff;
  color: #13201c;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(120%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.toast-alert.show {
  transform: translateX(0);
}

.toast-alert.toast-error {
  background: #fff1f0;
  color: #7a2a1d;
}

.toast-alert i {
  font-size: 1.7rem;
  color: #1e8e58;
}

.toast-alert.toast-error i {
  color: #d6453d;
}

.toast-alert .toast-title {
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 2px;
}

.toast-alert .toast-msg {
  font-size: 0.86rem;
  opacity: 0.82;
  line-height: 1.45;
}

.complex-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.complex-card .list-unstyled li {
  padding: 6px 0;
}

.page-back-cta {
  background:
    linear-gradient(rgba(9, 12, 18, 0.55), rgba(9, 12, 18, 0.55)),
    url() center center / cover no-repeat;
}

.golden-quote {
  border-left: 3px solid var(--c-gold);
  padding-left: 22px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  line-height: 1.55;
  color: var(--c-cream);
  font-style: italic;
}

.logo-brand-img {
  height: 40px;
  width: auto;
}

@media (max-width: 991.98px) {
  .section-pad {
    padding: 70px 0;
  }

  .hero-home {
    min-height: 76vh;
    padding: 130px 0 80px;
  }

  .navbar-custom .navbar-collapse {
    background: var(--c-bg-panel);
    margin-top: 12px;
    border-radius: var(--radius-sm);
    padding: 20px;
    border: 1px solid var(--c-line-soft);
  }

  .carousel-custom .carousel-control-prev,
  .carousel-custom .carousel-control-next {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .section-pad {
    padding: 56px 0;
  }

  .form-wrap {
    padding: 28px 20px;
  }

  .testimonial-card {
    padding: 29px 24px;
  }

  .onboard {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }

  .toast-alert {
    right: 12px;
    left: 12px;
    min-width: auto;
  }

  .footer-social {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
/* Accessibility / contrast overrides */
.btn-gold {
  background-color: #c6a45c;
}

.badge-soft-gold {
  background-color: #2a3447;
  color: #ecd397;
}

/* Accessibility overrides: ensure solid background color is available behind gradients
   so text contrast can be measured reliably and remains accessible. */
.btn-gold {
  background-color: var(--c-gold);
}

.badge-soft-gold {
  background-color: #d9b878;
  background-image: none;
  border-color: #b9944e;
  color: #191208 !important;
}

/* QA accessibility: give solid, parseable backgrounds to gradient/translucent
   UI elements so text contrast can be computed correctly (visuals unchanged). */
.btn-gold {
  background-color: #c6a45c;
}
.badge-soft-gold {
  background-color: #c6a45c;
  color: #191208;
  border-color: #9d7b33;
}

/* Contrast override: give carousel prev/next controls a solid dark background so
   the white arrow/sr-only label text meets a 4.5:1 contrast ratio on any hero. */
.carousel-custom .carousel-control-prev,
.carousel-custom .carousel-control-next {
  background-color: #10141c !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}
