@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800;900&family=Jost:wght@300;400;500;600;700&display=swap');
:root {
  --primary: #d0a94e;
  --primary-dark: #a9812e;
  --primary-light: #f0d488;
  --dark-bg: #0a0d12;
  --dark-2: #10141c;
  --dark-3: #161b25;
  --dark-4: #1e2430;
  --light-bg: #f6f1e6;
  --light: #fffefb;
  --text-dark: #1c1c1c;
  --text-light: #ffffff;
  --text-off: #b9c0cc;
  --border-gold: rgba(208, 169, 78, 0.28);
  --shadow-sm: 0 8px 25px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 24px 55px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --radius-sm: 10px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.75;
  letter-spacing: 0.2px;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-light);
}
h1 { font-size: clamp(2.3rem, 5vw, 4.8rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 2rem); }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }
p {
  font-weight: 300;
  color: var(--text-off);
  font-size: 1.02rem;
}
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }
img { max-width: 100%; height: auto; }
section { position: relative; padding: 7rem 0; }
.section-title { font-size: 2.6rem; margin-bottom: 1.1rem; position: relative; z-index: 2; }
.section-subtitle {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  display: inline-block;
}
.separator {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 1.4rem;
}
.separator::before, .separator::after { content: ''; display: block; height: 1px; }
.separator::before { width: 56px; background: var(--primary); }
.separator::after { width: 100px; background: rgba(208, 169, 78, 0.22); }
.bg-deep-dark { background: var(--dark-bg); }
.bg-panel { background: var(--dark-2); }
.bg-card { background: var(--dark-3); }
.bg-gold-soft { background: rgba(208, 169, 78, 0.12); }
.text-gold { color: var(--primary) !important; }
.text-gold-light { color: var(--primary-light) !important; }
.text-light { color: var(--text-light); }
.text-off { color: var(--text-off); }
.py-6 { padding: 7rem 0; }
.py-7 { padding: 8rem 0; }
.py-8 { padding: 9rem 0; }
.badge-age {
  background: linear-gradient(135deg, #c93a42, #a12626);
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  padding: 0.28rem 0.7rem;
  letter-spacing: 1px;
  font-size: 0.85rem;
  box-shadow: 0 6px 15px rgba(185, 40, 40, 0.25);
}
.btn { border-radius: 50px; font-weight: 500; padding: 0.8rem 1.9rem; transition: var(--transition); font-family: var(--font-body); }
.btn-gold { background: linear-gradient(135deg, var(--primary-light), var(--primary) 55%, var(--primary-dark)); color: #0b0b0b; border: none; box-shadow: 0 10px 28px rgba(208, 169, 78, 0.24); }
.btn-gold:hover { transform: translateY(-3px); color: #141414; box-shadow: 0 16px 38px rgba(208, 169, 78, 0.35); }
.btn-outline-gold { border: 1px solid rgba(208, 169, 78, 0.6); color: var(--primary); background: transparent; }
.btn-outline-gold:hover { background: var(--primary); border-color: var(--primary); color: #111; transform: translateY(-3px); }
.btn-white { background: var(--light); color: var(--text-dark); }
.btn-white:hover { background: var(--text-off); color: var(--text-dark); }
.btn-dark-gold { background: rgba(10, 13, 18, 0.35); backdrop-filter: blur(10px); color: #fff; border: 1px solid rgba(255, 255, 255, 0.25); }
.btn-dark-gold:hover { border-color: var(--primary); color: var(--text-light); }
.navbar { background: rgba(10, 13, 18, 0.6); backdrop-filter: blur(14px); padding: 1.1rem 0; transition: var(--transition); }
.navbar.scrolled { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45); padding: 0.75rem 0; background: rgba(8, 10, 15, 0.92); }
.navbar-brand { font-family: var(--font-heading); font-weight: 700; font-size: 1.75rem; color: var(--text-light); }
.navbar-brand:hover { color: var(--primary); }
.navbar-brand img { filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4)); }
.navbar .nav-link { color: rgba(255, 255, 255, 0.85); font-weight: 400; margin: 0 0.6rem; padding: 0.4rem 0 !important; border-bottom: 2px solid transparent; }
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--primary); border-bottom-color: var(--primary); }
.navbar-dark .navbar-toggler { border: 1px solid rgba(255, 255, 255, 0.3); }
.nav-contact-info { display: flex; flex-direction: column; align-items: flex-end; }
.nav-contact-info a, .nav-contact-info span { color: #cfd6df; font-size: 0.92rem; }
.nav-contact-info i { color: var(--primary); margin-right: 0.35rem; }
.hero { min-height: 100vh; display: flex; align-items: center; background-size: cover; background-position: center; }
.hero .badge-age { position: absolute; bottom: 30px; right: 30px; z-index: 3; }
.hero-subtitle { letter-spacing: 4px; text-transform: uppercase; font-size: 0.9rem; color: var(--primary-light); font-weight: 500; }
.hero-title { font-size: clamp(3.3rem, 7vw, 5.8rem); line-height: 0.95; }
.hero-title span:last-child { color: transparent; -webkit-background-clip: text; background-image: linear-gradient(135deg, #f4d37a, var(--primary) 60%, #ba8c2f); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 2.4rem; }
.hero-meta .item { border-left: 2px solid var(--primary); padding-left: 1rem; }
.hero-meta .item strong { font-family: var(--font-heading); color: #fff; font-size: 1.3rem; }
.hero-scroll { display: inline-flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, 0.65); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; }
.card { background: var(--dark-3); border: 1px solid rgba(255, 255, 255, 0.07); border-radius: var(--radius); transition: var(--transition); overflow: hidden; }
.card:hover { transform: translateY(-8px); border-color: var(--border-gold); box-shadow: var(--shadow-lg); }
.card-img-top { object-fit: cover; filter: grayscale(30%) brightness(0.87); transition: var(--transition); }
.card:hover .card-img-top { filter: none; transform: scale(1.03); }
.card-body { color: var(--text-light); }
.card-hover { transition: var(--transition); }
.hero-slider .carousel-inner { min-height: 100vh; }
.hero-slider .carousel-item { min-height: 100vh; background-size: cover; background-position: center; position: relative; }
.hero-slider .carousel-caption { z-index: 2; color: white; position: absolute; right: 0; left: 0; width: 70%; top: 50%; transform: translateY(-50%); text-align: left; padding-left: calc((100vw - 70rem) / 2); }
.hero-slider .carousel-indicators [data-bs-target] { width: 34px; height: 4px; border-radius: 4px; background: rgba(255, 255, 255, 0.35); }
.hero-slider .carousel-indicators .active { background: var(--primary); }
.icon-badge { width: 70px; height: 70px; background: linear-gradient(135deg, rgba(208, 169, 78, 0.2), rgba(208, 169, 78, 0.09)); border: 1px solid var(--border-gold); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--primary); transition: var(--transition); }
.icon-badge i { font-size: 1.8rem; color: var(--primary); }
.icon-badge.small { width: 48px; height: 48px; border-radius: 14px; font-size: 1.3rem; }
.feature-item:hover .icon-badge { background: var(--primary); color: #0b0b0b; }
.feature-item:hover .icon-badge i { color: #0b0b0b; }
.stat-counter .num { font-size: 3rem; font-family: var(--font-heading); font-weight: 800; color: var(--primary); }
.stat-counter .label { text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; color: #c6cdd8; }
.img-frame { border-radius: var(--radius); border: 1px solid rgba(255, 255, 255, 0.08); box-shadow: var(--shadow-lg); }
.form-control { background: var(--dark-4); border: 1px solid rgba(255, 255, 255, 0.09); color: #fff; border-radius: 12px; padding: 0.8rem 1rem; transition: border-color 0.3s ease; }
.form-control:focus { background: #242b38; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(208, 169, 78, 0.12); color: #fff; }
.form-control::placeholder { color: #8b94a3; font-weight: 300; }
textarea.form-control { min-height: 130px; resize: vertical; }
.form-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.4px; color: #cfd6df; font-weight: 500; }
select.form-control option { background:var(--dark-3); color: #fff; }
.contact-block { background: var(--dark-2); border-radius: var(--radius); padding: 2rem; border: 1px solid rgba(255, 255, 255, 0.07); transition: var(--transition); }
.contact-block:hover { border-color: var(--border-gold); }
.contact-block i { color: var(--primary); font-size: 1.5rem; margin-bottom: 1rem; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(208, 169, 78, 0.1); font-size: 1.3rem; }
.pricing-card { background: var(--dark-3); border-radius: var(--radius); }
.pricing-card .price { color: var(--primary); font-family: var(--font-heading); font-size: 3.4rem; font-weight: 900; }
.pricing-card.featured { border: 2px solid var(--primary); position: relative; }
.pricing-card .featured-tag { background: var(--primary); color: #0c0c0c; padding: 0.4rem 1.1rem; border-radius: 30px; font-size: 0.8rem; font-weight: 700; display: inline-block; }
.master-list { list-style: none; padding: 0; margin: 0; }
.master-list li { padding: 0.6rem 0; border-bottom: 1px dashed rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; }
.master-list li i { color: var(--primary); }
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; height: 100%; border-left: 2px dashed var(--primary); }
.timeline .step { position: relative; margin-bottom: 2.6rem; }
.timeline .step::before { content: ''; display: inline-block; position: absolute; left: -2.5rem; top: 5px; width: 18px; height: 18px; border-radius: 50%; background: var(--dark-bg); border: 4px solid var(--primary); }
.timeline .step h5 { font-size: 1.25rem; }
.faq-accordion .accordion-item { background: transparent; border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 14px; }
.faq-accordion .accordion-header .accordion-button { background: transparent; color: var(--text-light); box-shadow: none; font-weight: 500; padding: 1.2rem 1.4rem; }
.faq-accordion .accordion-button:not(.collapsed) { color: var(--primary); background: rgba(208, 169, 78, 0.08); }
.faq-accordion .accordion-button::after { background-image: none; content: '\f067'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--primary); }
.faq-accordion .accordion-button:not(.collapsed)::after { content: '\f068'; transform: none; }
.faq-accordion .accordion-body { color: #b7bec9; padding-top: 0; }
.footer { background: #070a0e; border-top: 1px solid rgba(208, 169, 78, 0.15); }
.footer .widget-title { font-family: var(--font-heading); font-size: 1.2rem; color: #fff; margin-bottom: 1.4rem; position: relative; padding-bottom: 0.7rem; }
.footer .widget-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--primary); }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer ul li { margin-bottom: 0.55rem; }
.footer ul a, .footer ul span { color: #c2c9d4; font-weight: 300; }
.footer ul a:hover { color: var(--primary); padding-left: 6px; }
.footer .social-list { display: flex; gap: 12px; }
.footer .social-list a {width: 42px; height: 42px; background: #10151c; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #b5bdc9; font-size: 1rem; transition: var(--transition);}
.footer .social-list a:hover { background: var(--primary); color: #121212; transform: translateY(-5px); }
.footer .copyright { border-top: 1px solid rgba(255,255,255,0.07); color: #7d8694; font-size: 0.9rem; }
.footer-badge .badge-age { border-radius: 50px; }
.divider-waves { position: absolute; left: 0; width: 100%; overflow: hidden; pointer-events: none; }
.gallery-tile { border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.gallery-tile figcaption { position: absolute; bottom: 0; background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent); color: #fff; font-family: var(--font-body); left: 0; right: 0; padding: 2rem 1.5rem 1rem; }
.testimonial-card { border-radius: var(--radius); background: var(--dark-3); padding: 2.4rem; position: relative; margin-bottom: 2rem; transition: var(--transition); }
.testimonial-card::before { content: '\201C'; position: absolute; top: 10px; left: 26px; font-size: 5rem; color: var(--primary); font-family: Georgia, serif; opacity: 0.45; line-height: 1; }
.testimonial-card .stars { color: var(--primary); }
.testimonial-card .avatar { width: 56px; height: 56px; background: var(--primary); color: #111; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 800; font-size: 1.4rem; }
.team-card { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--dark-3); }
.team-card .socials { background: rgba(0, 0, 0, 0.7); display: flex; justify-content: center; gap: 14px; padding: 0.6rem 0; }
.team-card img { filter: brightness(0.85); }
.map-frame { border-radius: var(--radius); border: 1px solid rgba(255, 255, 255, 0.08); overflow: hidden; box-shadow: var(--shadow-lg); }
.responsible-gaming { background: rgba(208, 169, 78, 0.06); border: 1px solid var(--border-gold); }
.responsible-gaming i { color: var(--primary); font-size: 1.8rem; }
.notification { position: fixed; top: 96px; right: 24px; z-index: 99999; background: var(--dark-3); border-left: 4px solid var(--primary); padding: 1.2rem 1.7rem; border-radius: 12px; box-shadow: var(--shadow-lg); min-width: 300px; transform: translateX(140%); transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.notification.show { transform: translateX(0); }
.notification .close { position: absolute; top: 10px; right: 14px; cursor: pointer; background: transparent; border: none; color: #ff5a5a; font-size: 1.2rem; line-height: 1; }
.notification .title { font-weight: 700; color: #fff; font-size: 1rem; margin-bottom: 0.2rem; }
.notification .message { color: #a6aebb; font-size: 0.9rem; }
.notification p { margin: 0; }
.cookie-popup { position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 120%); max-width: 480px; width: 90%; background: rgba(20, 24, 32, 0.96); border: 1px solid var(--border-gold); border-radius: var(--radius); padding: 1.4rem 1.5rem; z-index: 99998; box-shadow: var(--shadow-lg); backdrop-filter: blur(12px); transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.cookie-popup.show { transform: translate(-50%, 0); bottom: 24px; }
.cookie-popup p { color: #b6becb; margin-bottom: 0.8rem; }
.cookie-popup .btn-sm { font-size: 0.85rem; padding: 0.4rem 1.2rem; }
.cookie-popup a { color: var(--primary); text-decoration: underline; }
.back-to-top { position: fixed; bottom: 22px; left: 22px; width: 48px; height: 48px; z-index: 9990; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.6); border: 1px solid var(--border-gold); color: var(--primary); border-radius: 14px; cursor: pointer; transition: var(--transition); text-decoration: none;}
.back-to-top:hover { background: var(--primary); color: #1b1b1b; }
.page-header { min-height: 45vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; background-size: cover; }
.breadcrumb { background: rgba(0,0,0,0.35); display: inline-flex; padding: 0.55rem 1.3rem; border-radius: 30px; font-size: 0.9rem; border: 1px solid rgba(255,255,255,0.14);}
.breadcrumb a { color: #d3dae3}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-item.active { color: var(--primary); }
.list-check { list-style: none; padding-left: 0; }
.list-check li { padding: 0.3rem 0; position: relative; padding-left: 1.7rem; }
.list-check li::before { content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--primary); position: absolute; left: 0; top: 0.3rem; }
.progress-wrap { background: #232a36; border-radius: 50px; height: 8px; overflow: hidden; }
.progress-bar { background: linear-gradient(135deg, var(--primary-light), var(--primary)); height: 100%; border-radius: 50px; }
.video-bg-wrap { position: relative; }
.hero-divider { position: absolute; bottom: -2px; left: 0; width: 100%; overflow: hidden; color: var(--dark-bg); }
.hero-divider svg { display: block; width: 100%; height: 80px; }
@media (max-width: 991.98px) {
  section { padding: 4rem 0; }
  .hero { min-height: 85vh; }
  .hero-slider .hero-slider, .hero-slider .carousel-item, .hero-slider .carousel-inner { min-height: 85vh; }
  .hero-slider .carousel-caption { width: 90%; padding-left: 0; text-align: center; left: 5%; }
  .nav-contact-info { align-items: flex-start; margin-top: 0.6rem; width: 100%; }
  .navbar-nav { background: rgba(8, 10, 15, 0.97); padding: 1rem; border-radius: 14px; margin-top: 0.4rem; }
  .hero-meta { gap: 1.3rem; }
  .stat-counter .num { font-size: 2.2rem; }
  .notification { left: 16px; right: 16px; min-width: auto; top: 80px; }
  .cookie-popup { bottom: 14px; }
}
@media (max-width: 767.98px) {
  .hero-title { font-size: 2.6rem; }
  .page-header { min-height: 35vh; }
  .section-title { font-size: 2rem; }
  .navbar-brand img[height="40"] { height: 34px !important; }
}
/* ===== Accessibility / legibility overrides for light sections ===== */
/* Darker, accessible gold for small gold eyebrow headings that sit on light backgrounds */
section.bg-white h6[style*="color:#b48a2f"],
section.bg-light h6[style*="color:#b48a2f"],
section[style*="background-color:#f5f2eb"] h6[style*="color:#b48a2f"] { color:#856614 !important; }

/* Light-background sections must carry dark text (the theme's default is light text) */
section.bg-white,
section.bg-light,
section[style*="background-color:#f5f2eb"] { color:#1c1c1c; }

section.bg-white h1,section.bg-white h2,section.bg-white h3,
section.bg-white h4,section.bg-white h5,section.bg-white h6,
section.bg-light h1,section.bg-light h2,section.bg-light h3,
section.bg-light h4,section.bg-light h5,section.bg-light h6,
section[style*="background-color:#f5f2eb"] h1,
section[style*="background-color:#f5f2eb"] h2,
section[style*="background-color:#f5f2eb"] h3,
section[style*="background-color:#f5f2eb"] h4,
section[style*="background-color:#f5f2eb"] h5,
section[style*="background-color:#f5f2eb"] h6 { color:#1b1b1b !important; }

section.bg-white p,section.bg-white .lead,section.bg-white li,
section.bg-white strong,section.bg-white .small,section.bg-white .fw-semibold,
section.bg-white blockquote p,
section.bg-light p,section.bg-light .lead,section.bg-light li,
section.bg-light strong,section.bg-light .small,section.bg-light .fw-semibold,
section.bg-light blockquote p,
section[style*="background-color:#f5f2eb"] p,
section[style*="background-color:#f5f2eb"] .lead,
section[style*="background-color:#f5f2eb"] li,
section[style*="background-color:#f5f2eb"] strong,
section[style*="background-color:#f5f2eb"] .small,
section[style*="background-color:#f5f2eb"] .fw-semibold,
section[style*="background-color:#f5f2eb"] blockquote p { color:#2e3338 !important; }
section.bg-light .blockquote-footer { color:#5a616b !important; }

/* Signature cards on the cream (#f5f2eb) section should be white so dark body text reads */
section[style*="background-color:#f5f2eb"] .card,
section[style*="background-color:#f5f2eb"] .card-body { background:#ffffff; color:#1b1b1b; }
section[style*="background-color:#f5f2eb"] .card-body h5,
section[style*="background-color:#f5f2eb"] .card-body p,
section[style*="background-color:#f5f2eb"] .card-body .small { color:#2e3338 !important; }
section[style*="background-color:#f5f2eb"] .card-body span.small { color:#4a4f56 !important; }

/* White caption bars under gallery images need dark text */
.gallery_item .bg-white,
div.bg-white.small { color:#1b1b1b !important; }

/* Static cookie consent links always legible */
#static-cookie-consent a { color:#e8c877 !important; }

/* White cards used for blog teasers within light sections */
section.bg-white .card,
section.bg-light .card { background:#ffffff !important; color:#1b1b1b; }
section.bg-white .card h5,
section.bg-light .card h5 { color:#1b1b1b !important; }
section.bg-white .card p,
section.bg-light .card p { color:#3c4147 !important; }

/* Nested dark cards inside light sections must keep white text */
section.bg-white .bg-dark,
section.bg-white .bg-dark h5,
section.bg-white .bg-dark h6,
section.bg-white .bg-dark p,
section.bg-white .bg-dark .small,
section.bg-white .bg-dark span,
section.bg-light .bg-dark,
section.bg-light .bg-dark h5,
section.bg-light .bg-dark p,
section.bg-light .bg-dark span { color:#fff !important; }

/* ===== price page legibility & layout fixes ===== */

/* Dark (Executive) cards nested inside light sections must keep all text light */
section.bg-white .bg-dark,
section.bg-white .bg-dark h3,
section.bg-white .bg-dark h4,
section.bg-white .bg-dark li,
section.bg-white .bg-dark p,
section.bg-white .bg-dark small,
section.bg-white .bg-dark span,
section.bg-white .bg-dark .fw-bold,
section.bg-light .bg-dark,
section.bg-light .bg-dark h3,
section.bg-light .bg-dark h4,
section.bg-light .bg-dark li,
section.bg-light .bg-dark p,
section.bg-light .bg-dark small,
section.bg-light .bg-dark span,
section.bg-light .bg-dark .fw-bold { color: #ffffff !important; }

/* Keep the "Popular" badge readable: dark text on a solid gold chip */
section.bg-white .bg-dark .badge.bg-warning,
section.bg-light .bg-dark .badge.bg-warning { color: #212529 !important; background-color: #ffc107 !important; }

/* White testimonial cards that sit on the dark page background get dark text */
#testimonials-value .bg-white { background: #ffffff; color: #1b1b1b; }
#testimonials-value .bg-white p,
#testimonials-value .bg-white .fw-semibold,
#testimonials-value .bg-white .small { color: #2e3338 !important; }

/* Give gold buttons a solid fallback colour so text stays legible if gradients do not paint */
.btn-gold,
#static-cookie-consent .btn-accept { background-color: #c99a3a; }

/* Static, always-visible cookie consent banner */
#static-cookie-consent {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 999999;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #171a20;
  color: #ffffff;
  border: 1px solid rgba(208, 169, 78, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  font-size: .9rem;
}
#static-cookie-consent p { margin: 0; color: #d7dbe1; flex: 1 1 260px; }
#static-cookie-consent a { color: #e8c877; text-decoration: underline; }
#static-cookie-consent .cc-actions { display: flex; gap: 8px; flex-wrap: wrap; flex-shrink: 0; }
#static-cookie-consent .btn { font-size: .85rem; padding: .4rem 1.05rem; border-radius: 50px; }
#static-cookie-consent .btn-accept { background: #c99a3a; color: #101010; border: none; }
#static-cookie-consent .btn-accept:hover { background: #d6a94a; color: #101010; }
#static-cookie-consent .btn-decline { background: transparent; color: #e6e8ec; border: 1px solid rgba(255, 255, 255, .55); }
#static-cookie-consent .btn-decline:hover { background: rgba(255, 255, 255, .12); color: #ffffff; }
@media (max-width: 600px) {
  #static-cookie-consent { flex-direction: column; align-items: stretch; }
  #static-cookie-consent .cc-actions .btn { flex: 1; }
}

/* ===== price page legibility & layout fixes ===== */

/* Dark (Executive) cards nested inside light sections must keep all text light */
section.bg-white .bg-dark,
section.bg-white .bg-dark h3,
section.bg-white .bg-dark h4,
section.bg-white .bg-dark li,
section.bg-white .bg-dark p,
section.bg-white .bg-dark small,
section.bg-white .bg-dark span,
section.bg-white .bg-dark .fw-bold,
section.bg-light .bg-dark,
section.bg-light .bg-dark h3,
section.bg-light .bg-dark h4,
section.bg-light .bg-dark li,
section.bg-light .bg-dark p,
section.bg-light .bg-dark small,
section.bg-light .bg-dark span,
section.bg-light .bg-dark .fw-bold { color: #ffffff !important; }

/* Keep the "Popular" badge readable: dark text on a solid gold chip */
section.bg-white .bg-dark .badge.bg-warning,
section.bg-light .bg-dark .badge.bg-warning { color: #212529 !important; background-color: #ffc107 !important; }

/* White testimonial cards that sit on the dark page background get dark text */
#testimonials-value .bg-white { background: #ffffff; color: #1b1b1b; }
#testimonials-value .bg-white p,
#testimonials-value .bg-white .fw-semibold,
#testimonials-value .bg-white .small { color: #2e3338 !important; }

/* Give gold buttons a solid fallback colour so text stays legible if gradients do not paint */
.btn-gold { background-color: #c99a3a; }

/* Ensure the JS-generated cookie consent popup is visible on load (no slide-in delay) */
.cookie-popup {
  transform: translate(-50%, 0) !important;
  bottom: 24px !important;
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-popup .btn-gold { background-color: #c99a3a; }
