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

:root {
  --brand-dark: #0b1020;
  --brand-ink: #141c33;
  --brand-night: #1a2440;
  --brand-midnight: #232f52;
  --brand-gold: #c8a04e;
  --brand-gold-deep: #a8843b;
  --brand-gold-soft: #e7d19a;
  --brand-gold-bright: #f0dfb4;
  --brand-cream: #f7f3ec;
  --brand-grey: #8b93a7;
  --white: #ffffff;
  --black: #000000;
  --border-light: rgba(200, 160, 78, 0.25);
  --border-dark: rgba(255, 255, 255, 0.12);
  --shadow-sm: 0 8px 25px rgba(11, 16, 32, 0.08);
  --shadow-lg: 0 22px 60px rgba(11, 16, 32, 0.16);
  --gradient-gold: linear-gradient(135deg, #d9b45f 0%, #c8a04e 45%, #a8843b 100%);
  --gradient-dark: linear-gradient(160deg, #0b1020 0%, #141c33 60%, #1a2440 100%);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
  color: #d7dce8;
  background-color: var(--brand-dark);
  overflow-x: hidden;
}

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

section {
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--brand-gold-bright);
  line-height: 1.25;
  letter-spacing: 0.01em;
}

p a {
  color: var(--brand-gold-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
}

a {
  transition: all 0.3s ease;
}

.bg-gold {
  background: var(--gradient-gold) !important;
}

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

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

.section {
  padding: 110px 0;
  position: relative;
}

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

.section-xs {
  padding: 45px 0;
}

.section-dark {
  background-color: var(--brand-dark);
}

.section-ink {
  background-color: var(--brand-ink);
}

.section-night {
  background-color: var(--brand-night);
}

.section-bg-style {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 16, 32, 0.92) 0%, rgba(11, 16, 32, 0.72) 45%, rgba(20, 28, 51, 0.55) 100%);
}

.overlay-light {
  position: absolute;
  inset: 0;
  background: rgba(20, 28, 51, 0.75);
}

.section .container,
.section-sm .container,
.section-xs .container {
  position: relative;
  z-index: 3;
}

.section-head {
  margin-bottom: 58px;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-gold-soft);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.section-eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--brand-gold);
  display: inline-flex;
}

.section-title {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 700;
  color: var(--brand-gold-bright);
  margin-bottom: 18px;
}

.section-title-em {
  color: var(--brand-gold);
  font-style: italic;
}

.section-lead {
  font-size: 1.05rem;
  color: #c3cad9;
  max-width: 760px;
}

.text-block {
  color: #e6e9f1;
}

.text-block-lg {
  font-size: 1.1rem;
  line-height: 1.9;
}

.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  padding: 1rem 2rem;
  border-radius: 2rem;
  transition: all 0.35s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gradient-gold);
  border-color: transparent;
  color: var(--brand-dark);
  box-shadow: 0 12px 32px rgba(200, 160, 78, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #e6c878 0%, #d9b45f 50%, #b3882f 100%);
  color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(200, 160, 78, 0.42);
}

.btn-outline-gold {
  border-color: var(--brand-gold);
  color: var(--brand-gold-soft);
  background: transparent;
}

.btn-outline-gold:hover {
  background: var(--brand-gold);
  color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(200, 160, 78, 0.25);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.btn-lg {
  padding: 1.15rem 2.5rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  padding: 22px 0;
  background: linear-gradient(180deg, rgba(11, 16, 32, 0.75) 0%, rgba(11, 16, 32, 0) 100%);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(11, 16, 32, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 25px rgba(7, 10, 20, 0.4);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--brand-gold-bright) !important;
  letter-spacing: 0.04em;
}

.navbar-brand img {
  max-height: 46px;
  width: auto;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82) !important;
  padding: 0.5rem 0.9rem !important;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--brand-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-gold-soft) !important;
}

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

.navbar-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;

  line-height: 1.2;
}

.navbar-contact span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar-contact strong {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.navbar-cta {
  margin-left: 14px;
}

.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-section .overlay {
  background: linear-gradient(80deg, rgba(7, 10, 20, 0.88) 0%, rgba(11, 16, 32, 0.68) 40%, rgba(26, 36, 64, 0.35) 100%);
}

.hero-content {
  padding: 180px 0 80px;
  position: relative;
  z-index: 3;
}

.hero-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-gold-soft);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-kicker::before {
  content: "";
  width: 45px;
  height: 2px;
  background: var(--brand-gold);
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--brand-gold-bright);
  margin-bottom: 24px;
}

.hero-title span {
  display: block;
  font-style: italic;
  color: var(--brand-gold);
}

.hero-text {
  font-size: 1.15rem;
  color: #cfd5e3;
  max-width: 620px;
  margin-bottom: 36px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  min-width: 40px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
  background-color: rgba(0, 0, 0, 0.3);
}

.badge-ent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  color: #e6e9f1;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.badge-ent i {
  color: var(--brand-gold-soft);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  margin-top: 55px;
  padding: 20px 0;
}

.hero-stat {
  text-align: center;
  padding: 8px 12px;
  border-right: 1px solid var(--border-dark);
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat h3 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--brand-gold-soft);
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.hero-stat p {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: #b3bbcc;
  letter-spacing: 0.03em;
}

.divider-wave {
  position: absolute;
  bottom: -2px;
  width: 100%;
  line-height: 0;
  font-size: 0;
}

.divider-wave::before {
  display: block;
  height: 60px;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-night) 100%);
  content: "";
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 45%);
}

.card {
  background-color: var(--brand-ink);
  border: 1px solid var(--border-dark);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.card-hover:hover {
  transform: translateY(-8px);
  border-color: var(--border-light);
  box-shadow: var(--shadow-lg);
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #18213d;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 24px 14px;
  background: linear-gradient(0deg, rgba(11, 16, 32, 0.82), transparent);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 300;
}

.card-body {
  padding: 32px 28px;
}

.card-title {
  font-size: 1.45rem;
  margin-bottom: 14px;
  font-weight: 600;
  color: var(--brand-gold-bright);
}

.card-text {
  font-size: 0.95rem;
  color: #c3cad9;
  margin-bottom: 20px;
}

.card-link {
  font-weight: 600;
  color: var(--brand-gold-soft);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.card-link:hover {
  color: var(--brand-gold);
}

.card-link i {
  transition: transform 0.3s ease;
}

.card-link:hover i {
  transform: translateX(6px);
}

.card-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 3.2rem;
  color: rgba(255, 255, 255, 0.16);
  z-index: 2;
  font-weight: 700;
  line-height: 1;
}

.float-box {
  position: absolute;
  z-index: 5;
  background: rgba(20, 28, 51, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 18px 24px;
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.absolute-gold {
  background: var(--gradient-gold);
  color: var(--brand-dark);
}

.stat-item {
  padding: 12px;
}

.stat-item h4 {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-gold-soft);
  margin-bottom: 4px;
}

.stat-item p {
  color: #98a2b8;
  font-size: 0.8rem;
  margin-bottom: 0;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.counter-line {
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 22px;
  margin-bottom: 22px;
}

.accordion-item {
  background-color: var(--brand-ink);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-button {
  background-color: transparent;
  color: var(--brand-gold-bright);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  padding: 1.2rem 1.4rem;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--brand-gold-bright);
  background: rgba(200, 160, 78, 0.1);
}

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

.accordion-button:not(.collapsed)::after {
  content: "\f077";
  transform: none;
  color: var(--brand-gold);
}

.accordion-body {
  background-color: var(--brand-ink);
  color: #bcc4d4;
  padding: 0 1.4rem 1.4rem 1.4rem;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.panel-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

.panel-list li {
  padding: 0.35rem 0;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: #bcc4d4;
}

.panel-list li i {
  color: var(--brand-gold);
  margin-top: 5px;
  font-size: 0.8rem;
  flex: 0 0 auto;
}

.feature-box {
  text-align: center;
  padding: 42px 28px 36px;
  background: rgba(20, 28, 51, 0.55);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  transition: all 0.4s ease;
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-10px);
  border-color: var(--border-light);
  background: rgba(26, 36, 64, 0.7);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--brand-dark);
  position: relative;
}

.feature-box h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--brand-gold-bright);
}

.feature-box p {
  color: #b3bbcc;
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.7;
}

.list-check {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.list-check li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 5px 0;
  color: #d7dce8;
  font-size: 0.97rem;
}

.list-check li i {
  color: var(--brand-gold);
  margin-top: 7px;
  font-size: 0.9rem;
  flex: 0 0 auto;
}

.award-container {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px dashed var(--border-dark);
}

.award-container:last-child {
  border-bottom: 0;
}

.award-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 160, 78, 0.14);
  border: 1px solid var(--border-light);
  color: var(--brand-gold-soft);
  font-size: 1.2rem;
}

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

.testimonial-card {
  background: rgba(20, 28, 51, 0.75);
  border: 1px solid var(--border-dark);
  border-radius: 22px;
  padding: 38px 34px;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-light);
}

.testimonial-card::before {
  content: "\f10e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 2rem;
  color: rgba(200, 160, 78, 0.3);
  position: absolute;
  top: 26px;
  right: 30px;
  line-height: 1;
}

.testimonial-card p {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.65;
  color: #e0e4ee;
  font-style: italic;
  margin-bottom: 22px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-guest {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.testimonial-meta {
  color: var(--brand-gold-soft);
  font-size: 0.9rem;
}

.form-control {
  background-color: transparent;
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 0.25rem rgba(200, 160, 78, 0.2);
  color: var(--white);
}

.form-control::placeholder {
  color: rgba(200, 208, 223, 0.55);
  font-weight: 300;
}

.form-label {
  color: var(--brand-gold-soft);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-section-label {
  font-size: 1rem;
  color: var(--brand-gold-bright);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-card {
  background: rgba(20, 28, 51, 0.8);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  display: flex;
  gap: 18px;
  transition: all 0.35s ease;
}

.contact-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.contact-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  color: var(--brand-dark);
  font-size: 1.1rem;
}

.contact-card h5 {
  font-size: 1rem;
  color: var(--brand-gold-bright);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.9rem;
  color: #c3cad9;
  margin-bottom: 0;
  line-height: 1.7;
  word-break: break-word;
}

.map-embed {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: 0;
  filter: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grayscale'%3E%3CfeColorMatrix type='matrix' values='0.33 0.33 0.33 0 0 0.33 0.33 0.33 0 0 0.33 0.33 0.33 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3C/svg%3E#grayscale");
  filter: grayscale(0.7) contrast(1.1) sepia(0.18);
  transition: all 0.6s ease;
}

.map-embed iframe:hover {
  filter: none;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  position: relative;
  z-index: 2;
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 5;
  padding: 40px 22px 18px;
  background: linear-gradient(0deg, rgba(11, 16, 32, 0.9), transparent);
  color: #fff;
  font-size: 0.85rem;
}

.notification {
  display: none;
  margin-top: 10px;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 400;
  border: 1px solid transparent;
  align-items: center;
  gap: 10px;
}

.notification.show {
  display: flex;
}

.notification-success {
  background: rgba(231, 209, 154, 0.15);
  color: var(--brand-gold-bright);
  border-color: var(--brand-gold);
}

.notification-error {
  background: rgba(248, 113, 113, 0.12);
  color: #fca5a5;
  border-color: rgba(248, 113, 113, 0.5);
}

.notification i {
  font-size: 1.2rem;
}

.footer-block {
  position: relative;
  background: #0a0e1c;
  border-top: 1px solid rgba(200, 160, 78, 0.15);
}

.footer-upper {
  padding: 80px 0 50px;
}

.footer-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--brand-gold-bright);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.footer-about p {
  color: #98a4bd;
  font-size: 0.9rem;
}

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

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

.footer-links a {
  color: #98a4bd;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--brand-gold-soft);
}

.footer-links a i {
  font-size: 0.6rem;
  color: var(--brand-gold);
}

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

.footer-contact-list li {
  color: #98a4bd;
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.footer-contact-list li i {
  color: var(--brand-gold);
  font-size: 0.7rem;
  margin-top: 6px;
}

.socials-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d7dce8;
  font-size: 0.8rem;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.03);
}

.social-link:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: var(--brand-dark);
  transform: translateY(-3px);
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0 25px;
}

.legal-links-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 20px;
}

.legal-links-nav a {
  color: #8b93a7;
  font-size: 0.8rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.25s;
}

.legal-links-nav a:hover {
  color: var(--brand-gold-soft);
  border-bottom-color: var(--brand-gold);
}

.footer-legal-bottom p,
.footer-legal-bottom .copyright {
  color: #707991;
  font-size: 0.82rem;
  margin-bottom: 6px;
}

.badge-18-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 2px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  justify-content: center;
}

.grc-line {
  background: rgba(27, 34, 61, 0.9);
  border: 1px dashed rgba(200, 160, 78, 0.25);
  border-radius: 12px;
  padding: 14px 21px;
  color: #8f9bb4;
  font-size: 0.78rem;
  line-height: 1.6;
  max-width: 760px;
}

.grc-line img {
  height: 36px;
  width: 36px;
  margin-right: 10px;
  filter: grayscale(0.5) contrast(1.1);
}

.timeline-wrap {
  position: relative;
  padding-left: 40px;
}

.timeline-wrap::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-gold);
}

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

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

.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-dark);
  border: 3px solid var(--brand-gold);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-gold-soft);
  margin-bottom: 4px;
}

.nav-tabs {
  border-bottom: 1px solid var(--border-dark);
}

.nav-tabs .nav-link {
  border: 0;
  color: #b3bbcc;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.85rem 1.5rem;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: var(--brand-gold-bright);
  background-color: transparent;
  border-bottom: 3px solid var(--brand-gold);
}

.price-table {
  width: 100%;
}

.price-table th {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-gold-soft);
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-light);
}

.price-table td {
  padding: 14px;
  color: #c3cad9;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-value {
  font-family: var(--font-heading);
  color: var(--brand-gold-bright);
  font-weight: 700;
  font-size: 1.15rem;
}

.package-card {
  background: var(--brand-ink);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-light);
}

.package-card-featured {
  border: 1px solid var(--brand-gold);
  box-shadow: 0 0 0 1px rgba(200, 160, 78, 0.15), var(--shadow-lg);
}

.package-ribbon {
  position: absolute;
  top: 28px;
  right: -38px;
  transform: rotate(45deg);
  background: var(--gradient-gold);
  color: var(--brand-dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 45px;
  z-index: 4;
  box-shadow: 0 8px 22px rgba(200, 160, 78, 0.32);
}

.package-body {
  padding: 46px 34px;
  text-align: center;
}

.package-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-gold-bright);
  margin-bottom: 16px;
}

.package-price {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--brand-gold);
  margin-bottom: 8px;
  line-height: 1;
}

.package-price sup {
  font-size: 1.6rem;
  vertical-align: super;
}

.package-price-sub {
  color: #98a2b8;
  font-size: 0.85rem;
  margin-bottom: 22px;
  display: block;
}

.package-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 30px;
  text-align: left;
}

.package-list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  color: #bcc4d4;
  font-size: 0.92rem;
  padding: 7px 0;
}

.package-list li i {
  color: var(--brand-gold);
  font-size: 0.75rem;
  min-width: 18px;
  text-align: center;
}

.package-list li.disabled {
  opacity: 0.55;
  text-decoration: line-through;
}

.carousel-item {
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: 0.9s;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

.carousel-indicators {
  bottom: 30px;
  z-index: 10;
}

.carousel-indicators button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  margin-right: 6px !important;
  margin-left: 6px !important;
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  background-color: var(--brand-gold) !important;
  border-color: var(--brand-gold) !important;
  transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  opacity: 1;
  z-index: 10;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--white);
  font-size: 1.2rem;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  background-color: rgba(11, 16, 32, 0.25);
  backdrop-filter: blur(4px);
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  border-color: var(--brand-gold);
  color: var(--brand-gold-soft);
}

.carousel-control-prev-icon::before {
  content: "\f104";
}

.carousel-control-next-icon::before {
  content: "\f105";
}

.brand-marquee {
  border-top: 1px dashed rgba(200, 160, 78, 0.2);
  border-bottom: 1px dashed rgba(200, 160, 78, 0.2);
  padding: 24px 0;
  white-space: nowrap;
  overflow: hidden;
}

.brand-marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
}

.brand-show {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #7b849a;
  font-size: 1.2rem;
  font-weight: 300;
  margin-right: 55px;
  letter-spacing: 0.03em;
}

.brand-show i {
  color: var(--brand-gold);
  font-size: 0.7rem;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.cookie-block {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3000;
  transform: translateY(110%);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.cookie-block.show {
  transform: translateY(0);
}

.cookie-block__inner {
  background: var(--brand-ink);
  border-top: 1px solid var(--border-light);
  border-radius: 18px 18px 0 0;
  padding: 20px 24px;
  box-shadow: 0 -10px 60px rgba(0, 0, 0, 0.38);
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.cookie-block__text {
  flex: 1 1 300px;
  font-size: 0.9rem;
  color: #c3cad9;
}

.cookie-block__text p {
  margin-bottom: 0;
}

.cookie-block__text a {
  color: var(--brand-gold-soft);
}

.back-to-top {
  position: fixed;
  z-index: 1500;
  right: 24px;
  bottom: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--brand-dark);
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(200, 160, 78, 0.35);
}

.back-to-top.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
}

@media (max-width: 1199.98px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 0;
  }
}

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

  .navbar-contact {
    display: none;
  }

  .navbar-nav {
    background: rgba(11, 16, 32, 0.98);
    margin-top: 10px;
    border-radius: 16px;
    padding: 18px 16px;
  }

  .navbar-collapse {
    background: rgba(11, 16, 32, 0.98);
    backdrop-filter: blur(14px);
  }

  .navbar-cta {
    margin-left: 0;
    margin-top: 10px;
  }

  .nav-link::after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 1.9rem;
  }

  .testimonial-card {
    padding: 30px 22px;
  }

  .cookie-block__inner {
    border-radius: 16px 16px 0 0;
    padding: 18px 16px;
  }
}

@media (max-width: 575.98px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-custom-btn-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .float-box {
    position: static;
    margin: 10px 0;
  }

  .section-eyebrow {
    letter-spacing: 0.12em;
  }

  .arrow-history-symbol {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* ---------- Accessibility / contrast overrides ---------- */
/* Ensure gold buttons have a solid readable background (gradients alone are not
   picked up by automated colour sampling) with high-contrast dark text. */
.btn-gold {
  background-color: #c8a04e;
  color: #0b1020;
}
.btn-gold:hover {
  background-color: #d9b45f;
  color: #0b1020;
}

/* Force accordion toggle buttons onto a solid dark background with bright
   high-contrast gold text (overrides Bootstrap light defaults). */
.accordion-button,
.accordion-button:not(.collapsed),
.accordion-button.collapsed {
  background-color: #1a2440 !important;
  color: #f5e9c9 !important;
}

/* Brighten responsible-gaming line text for WCAG AA on dark background. */
.grc-line {
  color: #d6dde9;
}
.grc-line a {
  color: #e7d19a;
}

/* ===== QA accessibility & contrast overrides ===== */
/* Gold buttons: give them a solid background so automated contrast checks can
   read the actual gold surface instead of a gradient/transparent backdrop. */
.btn-gold,
.btn-gold.btn-lg,
.btn-gold.btn-sm,
a.btn-gold.mt-2,
a.btn-gold.w-100 {
  background-image: none !important;
  background-color: #c8a04e !important;
  border-color: #c8a04e !important;
  color: #0b1020 !important;
}
.btn-gold:hover,
.btn-gold:focus {
  background-image: none !important;
  background-color: #d9b45f !important;
  border-color: #d9b45f !important;
  color: #0b1020 !important;
}

/* Feature cards sit on translucent backgrounds over imagery; make them opaque
   so headings/body text have sufficient contrast against a dark surface. */
.feature-box {
  background-color: #141c33 !important;
  background-image: none !important;
}
.feature-box p { color: #d7dce8 !important; }
.feature-box h4 { color: #f0dfb4 !important; }

/* Timeline cards (text was rendering dark on the ink background). */
.timeline-item .card-body p { color: #d7dce8 !important; }

/* Team / director card bios and role text. */
.card-hover .card-body p { color: #c9d0dd !important; }

/* Plan-a-visit card list items inside the CTA section. */
.card-body .list-unstyled.small li { color: #d7dce8 !important; }

/* Testimonial avatars: use dark text on the gold circle for legibility. */
.testimonial-avatar { color: #0b1020 !important; }

/* Responsible gaming note text and links. */
.grc-line { color: #c3cad9 !important; }
.grc-line a,
.grc-line a:visited { color: #e7d19a !important; }

/* ===== QA contrast fixes: solid gold surfaces for dark text ===== */
.package-ribbon {
  background-image: none !important;
  background-color: #c8a04e !important;
  color: #0b1020 !important;
}
.process-number-wrap .badge,
.timeline-item .badge.rounded-circle {
  background-image: none !important;
  background-color: #c8a04e !important;
  color: #0b1020 !important;
}

/* ===== QA: static visible cookie consent banner ===== */
.cookie-consent-banner{
  position:fixed;
  left:0;right:0;bottom:0;
  z-index:3000;
}
.cookie-consent-banner__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  background:#141c33;
  border-top:1px solid #c8a04e;
  color:#d7dce8;
  padding:16px 22px;
  box-shadow:0 -10px 40px rgba(0,0,0,.35);
}
.cookie-consent-banner__inner p{
  margin:0;
  color:#e6e9f1;
  font-size:.9rem;
  flex:1 1 300px;
}
.cookie-consent-banner__inner a{
  color:#e7d19a;
  text-decoration:underline;
}
@media (max-width: 767.98px){
  .cookie-consent-banner__inner{
    flex-direction:column;
    align-items:stretch;
    text-align:left;
  }
}

/* ===== QA contrast fix: legal/terms content cards ===== */
/* Body text inside legal term cards was rendering dark on the dark ink
   background. Force light, high-contrast text and bright gold headings. */
.card.border-0.shadow-lg .card-body,
.card.border-0.shadow-lg .card-body p,
.card.border-0.shadow-lg .card-body li {
  color: #e6e9f1 !important;
}
.card.border-0.shadow-lg .card-body ul {
  padding-left: 1.4rem;
}
.card.border-0.shadow-lg .card-body h1,
.card.border-0.shadow-lg .card-body h2,
.card.border-0.shadow-lg .card-body h3,
.card.border-0.shadow-lg .card-body h4,
.card.border-0.shadow-lg .card-body h5,
.card.border-0.shadow-lg .card-body h6 {
  color: #f0dfb4 !important;
}

/* ===== QA contrast fixes: solid dark surfaces for quick-stat boxes & price table ===== */
/* The quick-comparison stat boxes use a translucent white background over a dark
   section; give them a solid dark card surface so the gold/label text has
   sufficient contrast against the actual rendered (dark) backdrop. */
.section-ink .p-3.rounded {
  background-color: #1a2440 !important;
  background-image: none !important;
}
.section-ink .p-3.rounded small {
  color: #e6e9f1 !important;
}
.section-ink .p-3.rounded h3.text-gold {
  color: #f0dfb4 !important;
}

/* The price/extra-services table cells inherit a transparent background which
   can be read as white by automated samplers; make each row cell an opaque
   dark surface with bright text for WCAG AA contrast. */
.price-table,
.price-table th,
.price-table td {
  background-color: #141c33 !important;
}
.price-table th {
  color: #f0dfb4 !important;
}
.price-table td {
  color: #d6dde9 !important;
}
.price-table .price-value {
  color: #f7efd6 !important;
}
