@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 {
    --brand-gold: #c9a44c;
    --brand-gold-light: #e5c880;
    --brand-gold-dark: #a98432;
    --brand-night: #090d13;
    --brand-night-2: #0e141c;
    --brand-night-3: #141c26;
    --brand-night-4: #1b2430;
    --text-primary: #f2eee6;
    --text-secondary: #c7ccd3;
    --text-soft: #8a939e;
    --border-dark: rgba(255, 255, 255, 0.06);
    --border-gold: rgba(201, 164, 76, 0.25);
    --bs-primary: #c9a44c;
    --bs-primary-rgb: 201, 164, 76;
    --bs-link-color: #c9a44c;
    --bs-link-hover-color: #e5c880;
    --bs-body-bg: #090d13;
    --bs-body-color: #f2eee6;
    --bs-dark-bg-subtle: #0e141c;
    --bs-border-color: rgba(255, 255, 255, 0.08);
}

html {
    color-scheme: dark;
}

body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    background-color: var(--brand-night);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", Georgia, serif;
    color: inherit;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
}

h3 {
    font-size: clamp(1.4rem, 2.2vw, 2rem);
}

p {
    margin-bottom: 1.2rem;
    color: inherit;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

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

::selection {
    background: rgba(201, 164, 76, 0.3);
    color: #fff;
}

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #0b1017;
}

::-webkit-scrollbar-thumb {
    background: #2b3542;
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-gold);
}

.section {
    padding: 6.5rem 0;
    position: relative;
}

.section-sm {
    padding: 3.2rem 0;
}

.section-kicker {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin-bottom: 0.65rem;
    position: relative;
}

.section-kicker::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--brand-gold);
    margin-right: 0.8rem;
    vertical-align: middle;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    margin-bottom: 1.4rem;
}

.section-lead {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 720px;
}

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

.text-light-body {
    color: var(--text-secondary);
}

.font-serif {
    font-family: "Playfair Display", Georgia, serif;
}

.divider-gold {
    width: 90px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-gold), transparent);
    border-radius: 4px;
    margin: 1.4rem 0;
}

.btn {
    font-weight: 600;
    font-size: 0.87rem;
    letter-spacing: 0.08em;
    padding: 0.85rem 2.2rem;
    border-radius: 50rem;
    text-transform: uppercase;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: linear-gradient(135deg, #e6c983 0%, #b78c3d 100%);
    border: none;
    color: #1d1507;
    box-shadow: 0 10px 30px rgba(201, 164, 76, 0.25);
}

.btn-gold:hover,
.btn-gold:focus {
    color: #1d1507;
    background: linear-gradient(135deg, #f0d59a 0%, #c99e4a 100%);
    box-shadow: 0 14px 40px rgba(201, 164, 76, 0.4);
    transform: translateY(-3px);
}

.btn-outline-gold {
    border: 1px solid rgba(201, 164, 76, 0.6);
    color: var(--brand-gold-light);
    background: transparent;
}

.btn-outline-gold:hover {
    background: rgba(201, 164, 76, 0.12);
    border-color: var(--brand-gold);
    color: #fff;
    transform: translateY(-3px);
}

.btn-white-outline {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    background: rgba(255, 255, 255, 0.02);
}

.btn-white-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: #fff;
}

.btn-lg {
    padding: 1rem 2.8rem;
    font-size: 0.95rem;
}

.navbar {
    padding: 1.6rem 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.navbar-scrolled,
.navbar.scrolled {
    padding: 0.9rem 0;
    background: rgba(9, 13, 19, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(242, 238, 230, 0.86);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 0.6rem 1.1rem;
    margin: 0 0.15rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--brand-gold-light);
    background: rgba(201, 164, 76, 0.08);
}

.navbar-brand {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.navbar-brand img {
    max-height: 44px;
}

.navbar-contact {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.navbar-contact span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.navbar-contact i {
    color: var(--brand-gold);
    font-size: 0.95rem;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.45rem 0.7rem;
    border-radius: 0.6rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(201, 164, 76, 0.2);
}

.hero-carousel,
.hero-slider {
    position: relative;
    min-height: 100vh;
}

.hero-carousel .carousel-inner,
.hero-slider .carousel-inner {
    height: 100vh;
    min-height: 640px;
}

.hero-carousel .carousel-item,
.hero-slider .carousel-item {
    position: relative;
    height: 100vh;
    min-height: 640px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-carousel .carousel-item::before,
.hero-slider .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(84deg, rgba(7, 10, 15, 0.92) 0%, rgba(9, 13, 19, 0.62) 50%, rgba(9, 13, 19, 0.2) 100%);
    z-index: 1;
}

.hero-carousel .carousel-caption,
.hero-slider .hero-caption {
    position: relative;
    z-index: 3;
    text-align: left;
    left: 0;
    right: auto;
    top: auto;
    bottom: auto;
    padding: 6rem 0 4rem;
    color: #fff;
}

.hero-carousel .hero-caption .section-kicker,
.hero-slider .hero-caption .section-kicker {
    color: var(--brand-gold-light);
}

.hero-carousel .hero-caption h1,
.hero-slider .hero-caption h1 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-carousel .hero-caption p,
.hero-slider .hero-caption p {
    font-size: 1.1rem;
    color: rgba(240, 236, 230, 0.9);
    max-width: 560px;
    margin-bottom: 2.2rem;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next,
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next,
.hero-slider .slider-arrow-prev,
.hero-slider .slider-arrow-next {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    opacity: 0.8;
    backdrop-filter: blur(6px);
    transition: all 0.35s ease;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover,
.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    background: rgba(201, 164, 76, 0.25);
    border-color: var(--brand-gold);
    opacity: 1;
}

.hero-carousel .carousel-control-prev {
    left: 2.4rem;
    right: auto;
}

.hero-carousel .carousel-control-next {
    right: 2.4rem;
    left: auto;
}

.hero-carousel .carousel-control-prev i,
.hero-carousel .carousel-control-next i,
.hero-slider .slider-arrow-prev i,
.hero-slider .slider-arrow-next i {
    font-size: 1.1rem;
    color: #fff;
}

.hero-carousel .carousel-indicators,
.hero-slider .carousel-indicators {
    bottom: 2.2rem;
    z-index: 5;
    gap: 0.4rem;
}

.hero-carousel .carousel-indicators [data-bs-target],
.hero-slider .carousel-indicators [data-bs-target] {
    width: 32px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    transition: all 0.4s ease;
}

.hero-carousel .carousel-indicators .active,
.hero-slider .carousel-indicators .active {
    width: 56px;
    background: var(--brand-gold);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-scroll i {
    color: var(--brand-gold);
    font-size: 1rem;
    animation: pulseDown 2s infinite;
}

@keyframes pulseDown {
    0%, 100% { transform: translateY(0); opacity: 0.8; }
    50% { transform: translateY(8px); opacity: 1; }
}

.feature-card,
.service-card {
    background: var(--brand-night-2);
    border: 1px solid var(--border-dark);
    border-radius: 1.5rem;
    padding: 2.6rem 2rem;
    margin-bottom: 1.8rem;
    position: relative;
    transition: all 0.45s ease;
    height: 100%;
    overflow: hidden;
}

.feature-card::after,
.service-card::after {
    content: "";
    position: absolute;
    top: -60%;
    right: -40%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 164, 76, 0.13), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover,
.service-card:hover {
    border-color: rgba(201, 164, 76, 0.35);
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
    background: var(--brand-night-3);
}

.feature-card:hover::after,
.service-card:hover::after {
    opacity: 1;
}

.feature-icon,
.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 1.2rem;
    background: linear-gradient(135deg, rgba(201, 164, 76, 0.2), rgba(201, 164, 76, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--brand-gold-light);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(201, 164, 76, 0.2);
}

.feature-card h3,
.service-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1rem;
}

.feature-card p,
.service-card p {
    font-size: 0.93rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.bg-image-section {
    background-size: cover;
    background-position: center;
    position: relative;
}

.bg-image-section .container {
    position: relative;
    z-index: 2;
}

.card-image {
    position: relative;
    border-radius: 1.2rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card-image:hover img {
    transform: scale(1.06);
}

.overlay-card {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(9, 13, 19, 0.9) 100%);
}

.card-body-custom {
    padding: 1.8rem;
}

.badge-gold {
    background: var(--brand-gold);
    color: #1d1507;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.9rem;
    border-radius: 50rem;
    text-transform: uppercase;
}

.badge-soft-gold {
    background: rgba(201, 164, 76, 0.15);
    color: var(--brand-gold-light);
    border: 1px solid rgba(201, 164, 76, 0.3);
    padding: 0.35rem 0.8rem;
    border-radius: 50rem;
    font-size: 0.78rem;
    font-weight: 600;
}

.stat-card,
.counter-item {
    background: var(--brand-night-2);
    border: 1px solid var(--border-dark);
    border-radius: 1.4rem;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: border-color 0.35s ease, transform 0.35s ease;
}

.stat-card:hover,
.counter-item:hover {
    border-color: rgba(201, 164, 76, 0.3);
    transform: translateY(-4px);
}

.counter-number,
.stat-number {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.9rem;
    font-weight: 700;
    color: var(--brand-gold-light);
    line-height: 1.2;
    display: block;
}

.stat-label,
.counter-label {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.87rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.testimonial-card {
    background: var(--brand-night-2);
    border: 1px solid var(--border-dark);
    border-radius: 1.6rem;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    border-color: rgba(201, 164, 76, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card i.fa-quote-left {
    font-size: 2rem;
    color: rgba(201, 164, 76, 0.5);
    margin-bottom: 1.2rem;
    opacity: 0.6;
}

.testimonial-card .quote {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author .avatar-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(201, 164, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--brand-gold-light);
    border: 1px solid rgba(201, 164, 76, 0.3);
    flex-shrink: 0;
}

.testimonial-author .author-name {
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    margin: 0;
}

.testimonial-author .author-title {
    font-size: 0.84rem;
    color: var(--text-soft);
    margin: 0;
}

.stars {
    color: var(--brand-gold);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.partner-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    align-items: center;
    justify-content: center;
}

.partner-item {
    opacity: 0.45;
    transition: opacity 0.4s ease;
    filter: grayscale(1);
}

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

.partner-item img {
    max-height: 46px;
    max-width: 160px;
    width: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.gallery-item {
    position: relative;
    border-radius: 1.2rem;
    overflow: hidden;
    height: 240px;
    cursor: pointer;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(9, 13, 19, 0.92) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.4rem;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.price-card {
    background: var(--brand-night-2);
    border: 1px solid var(--border-dark);
    border-radius: 1.8rem;
    padding: 2.8rem 2.2rem;
    height: 100%;
    position: relative;
    transition: all 0.45s ease;
    text-align: center;
}

.price-card.featured {
    background: linear-gradient(160deg, var(--brand-night-3), var(--brand-night-4));
    border-color: rgba(201, 164, 76, 0.4);
    box-shadow: 0 25px 60px rgba(201, 164, 76, 0.08);
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 164, 76, 0.3);
}

.price-card .price-tag {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-gold-light);
    margin-bottom: 0.3rem;
}

.price-card .price-sub {
    font-size: 0.92rem;
    color: var(--text-soft);
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

.price-card ul li {
    padding: 0.35rem 0;
    font-size: 0.98rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.price-card ul li:last-child {
    border-bottom: none;
}

.price-card ul li i {
    margin-right: 0.6rem;
    color: var(--brand-gold);
    font-size: 0.9rem;
}

.contact-info-block {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(201, 164, 76, 0.18), rgba(201, 164, 76, 0.05));
    border: 1px solid rgba(201, 164, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--brand-gold);
    flex-shrink: 0;
}

.contact-info-block h5 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.35rem;
}

.contact-info-block p {
    margin-bottom: 0;
    font-size: 0.93rem;
    color: var(--text-secondary);
    word-break: break-word;
}

.contact-info-block a {
    color: var(--text-secondary);
}

.contact-info-block a:hover {
    color: var(--brand-gold-light);
}

.form-control,
.form-select {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-radius: 0.9rem;
    padding: 0.85rem 1.3rem;
    font-size: 0.95rem;
    font-family: "Inter", sans-serif;
    transition: all 0.35s ease;
}

.form-control:focus,
.form-select:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 164, 76, 0.55);
    box-shadow: 0 0 0 0.3rem rgba(201, 164, 76, 0.12);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: rgba(240, 236, 230, 0.32);
}

.form-label {
    font-weight: 600;
    font-size: 0.86rem;
    color: rgba(242, 238, 230, 0.85);
    margin-bottom: 0.5rem;
}

.form-check-label {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.form-notification {
    padding: 1rem 1.5rem;
    border-radius: 0.9rem;
    font-size: 0.93rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    animation: fadeInUp 0.4s ease;
}

.form-notification.success {
    background: rgba(64, 175, 118, 0.12);
    border: 1px solid rgba(64, 175, 118, 0.35);
    color: #74e2a8;
}

.form-notification.error {
    background: rgba(220, 72, 82, 0.12);
    border: 1px solid rgba(220, 72, 82, 0.35);
    color: #ff9a9e;
}

.form-notification i {
    font-size: 1.1rem;
}

.site-footer {
    background: #060910;
    padding: 5rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-heading {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.4rem;
    font-family: "Playfair Display", Georgia, serif;
}

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

.footer-links li {
    margin-bottom: 0.45rem;
}

.footer-links a {
    color: rgba(240, 236, 230, 0.6);
    font-size: 0.92rem;
    transition: all 0.3s ease;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--brand-gold-light);
    padding-left: 6px;
}

.footer-contact {
    font-size: 0.93rem;
    color: rgba(240, 236, 230, 0.6);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.footer-contact i {
    color: var(--brand-gold);
    margin-top: 0.2rem;
    font-size: 0.9rem;
    width: 18px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.5rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.35s ease;
}

.social-links a:hover {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: #1d1507;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 1.6rem 0;
    margin-top: 3.5rem;
    font-size: 0.84rem;
    color: rgba(240, 236, 230, 0.45);
}

.footer-bottom a {
    color: rgba(240, 236, 230, 0.45);
}

.footer-bottom a:hover {
    color: var(--brand-gold-light);
}

.age-badge {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 800;
    font-size: 0.82rem;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: transparent;
}

.age-badge-gold {
    border-color: var(--brand-gold);
    color: var(--brand-gold-light);
}

.responsible-gaming {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.2rem;
    padding: 1.8rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.responsible-gaming strong {
    color: #fff;
}

.cookie-consent {
    position: fixed;
    left: 1.2rem;
    bottom: 1.2rem;
    z-index: 1100;
    max-width: 470px;
    width: calc(100% - 2.4rem);
    background: rgba(14, 20, 28, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
    padding: 1.8rem;
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px);
    transition: all 0.5s ease;
}

.cookie-consent.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-consent p {
    margin-bottom: 1.2rem;
    color: rgba(240, 236, 230, 0.8);
}

.cookie-consent .cookie-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.cookie-consent .cookie-title i {
    color: var(--brand-gold);
}

.cookie-consent .btn {
    font-size: 0.8rem;
    padding: 0.65rem 1.6rem;
}

.to-top-btn {
    position: fixed;
    right: 1.8rem;
    bottom: 1.8rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-dark));
    color: #1d1507;
    border: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1030;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(201, 164, 76, 0.35);
}

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

.to-top-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(201, 164, 76, 0.5);
}

.accordion-item {
    background-color: var(--brand-night-2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: var(--brand-night-2) !important;
    color: #fff !important;
    font-weight: 600;
    font-size: 1.02rem;
    padding: 1.5rem 1.8rem;
    box-shadow: none !important;
    font-family: "Inter", sans-serif;
}

.accordion-button:not(.collapsed) {
    color: var(--brand-gold-light) !important;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.accordion-button:not(.collapsed)::after {
    filter: invert(72%) sepia(40%) saturate(25%);
}

.accordion-body {
    padding: 0 1.8rem 1.7rem;
    color: var(--text-secondary);
    font-size: 0.94rem;
}

.breadcrumb {
    --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.4);
    --bs-breadcrumb-item-active-color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: var(--brand-gold-light);
}

.page-hero {
    position: relative;
    padding: 11rem 0 6rem;
    background-size: cover;
    background-position: center;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(7, 10, 15, 0.94) 0%, rgba(14, 20, 28, 0.8) 70%, rgba(14, 20, 28, 0.5) 100%);
}

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

.page-hero h1 {
    color: #fff;
    font-size: clamp(2.6rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(240, 236, 230, 0.8);
    max-width: 680px;
    font-size: 1.05rem;
}

.page-hero .breadcrumb {
    margin-bottom: 1.5rem;
}

.cta-box {
    background: linear-gradient(145deg, #141c26, #1c2634);
    border: 1px solid rgba(201, 164, 76, 0.15);
    border-radius: 2rem;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-box::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 164, 76, 0.18), transparent 70%);
    pointer-events: none;
}

.cta-box .container-inner {
    position: relative;
    z-index: 2;
}

.rating-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 164, 76, 0.12);
    border: 1px solid rgba(201, 164, 76, 0.25);
    padding: 0.5rem 1.2rem;
    border-radius: 50rem;
    font-size: 0.88rem;
    color: var(--brand-gold-light);
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--brand-gold), rgba(201, 164, 76, 0.1));
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
    padding-left: 1.5rem;
}

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

.timeline-item h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.6rem;
}

.timeline-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.map-wrapper {
    position: relative;
    border-radius: 1.6rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 500px;
    border: 0;
    filter: grayscale(0.2) contrast(1.1);
}

.map-placeholder {
    height: 500px;
    background: var(--brand-night-3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-soft);
    font-size: 1rem;
}

.bg-glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
}

.glass-card {
    background: rgba(14, 20, 28, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 1.6rem;
    padding: 2.5rem;
}

hr.divider-light {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 1;
    margin: 2.5rem 0;
}

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

.list-check li {
    padding: 0.4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.96rem;
    color: var(--text-secondary);
}

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

.narrow-container {
    max-width: 860px;
    margin: 0 auto;
}

.legal-body {
    font-size: 0.96rem;
    color: var(--text-secondary);
    line-height: 1.85;
    background: rgba(14, 20, 28, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.6rem;
    padding: 3rem 3.2rem;
}

.legal-body h2,
.legal-body h3 {
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
}

.legal-body h2:first-child,
.legal-body h3:first-child {
    margin-top: 0;
}

.legal-body p {
    margin-bottom: 1.4rem;
}

.legal-body ul {
    margin-bottom: 1.4rem;
    padding-left: 1.5rem;
}

.legal-body ul li {
    margin-bottom: 0.5rem;
}

.legal-body a {
    color: var(--brand-gold-light);
    text-decoration: underline;
}

.legal-body strong {
    color: rgba(255, 255, 255, 0.92);
}

.legal-toc {
    background: rgba(201, 164, 76, 0.06);
    border: 1px solid rgba(201, 164, 76, 0.18);
    border-radius: 1.2rem;
    padding: 1.8rem;
    margin-bottom: 2.5rem;
}

.legal-toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.legal-toc li {
    margin-bottom: 0.6rem;
}

.legal-toc a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.legal-toc a:hover {
    color: var(--brand-gold-light);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1199.98px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991.98px) {
    .section {
        padding: 4.5rem 0;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .navbar-contact {
        display: none;
    }
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        display: none;
    }
    .hero-carousel .carousel-caption,
    .hero-slider .hero-caption {
        padding-left: 0;
        padding-right: 0;
    }
    .legal-body {
        padding: 2rem 1.5rem;
    }
    .cta-box {
        padding: 2.8rem 1.8rem;
    }
    .page-hero {
        padding: 8.5rem 0 4.5rem;
    }
}

@media (max-width: 767.98px) {
    .section {
        padding: 3.6rem 0;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .partner-row {
        gap: 1rem;
    }
    .partner-item img {
        max-height: 34px;
    }
    .cookie-consent {
        max-width: none;
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        padding: 1.4rem;
    }
    .map-wrapper iframe,
    .map-placeholder {
        height: 350px;
    }
    .to-top-btn {
        bottom: 5.5rem;
    }
}

@media (max-width: 575.98px) {
    h1 {
        font-size: 2.4rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .feature-card,
    .service-card {
        padding: 1.8rem 1.5rem;
    }
    .price-card {
        padding: 2rem 1.5rem;
    }
    .testimonial-card {
        padding: 1.8rem;
    }
    .btn {
        padding: 0.75rem 1.8rem;
    }
}
/* ==== QA fixes ==== */
/* Make fixed navbar opaque so nav links contrast against a dark surface. */
.navbar.fixed-top,
.navbar.navbar-dark.fixed-top {
    background-color: rgba(9, 13, 19, 0.98) !important;
}
.navbar-dark .navbar-nav .nav-link.active {
    background-color: #1c2634 !important;
    color: #e5c880 !important;
}
/* Give gold buttons a solid base colour (gradient remains as background-image). */
.btn-gold,
.btn-gold.btn-sm,
.btn-gold.btn-lg {
    background-color: #c9a44c !important;
    color: #1d1507 !important;
}
/* Prevent fixed header overlapping the hero on small mobile screens. */
@media (max-width: 575.98px) {
    body {
        padding-top: 112px;
    }
}

/* ---------- Page-specific contrast & layout overrides ---------- */
/* Provide a solid computed fallback color for the gold gradient buttons so
   automated contrast checks can resolve a real background. */
.btn-gold {
    background-color: #c9a44c;
    background-image: linear-gradient(135deg, #e6c983 0%, #b78c3d 100%);
}

/* Give the fixed navbar a solid dark backdrop so nav links always sit on a
   dark surface (improves readability and contrast). */
.navbar {
    background: rgba(9, 13, 19, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Opaque dark surface for glass panels so form labels/inputs have a dark
   background that passes contrast checks. */
.bg-glass {
    background: #0e141c;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.form-label {
    color: #f2eee6;
}

.form-check-label {
    color: #d7dbe1;
}

/* Ensure the fixed header no longer overlaps the hero on small screens. */
@media (max-width: 575.98px) {
    body {
        padding-top: 105px;
    }
    .hero-carousel,
    .hero-slider {
        min-height: calc(100vh - 105px);
    }
}

/* ==== Cookie policy / legal content contrast ==== */
/* Use a fully opaque dark surface for legal copy so text/heading
   contrast can be resolved against a real background colour. */
.legal-body {
    background-color: #0e141c !important;
}
.legal-body p,
.legal-body li {
    color: #cfd4da !important;
}
.legal-body h2,
.legal-body h3 {
    color: #ffffff !important;
}
/* Ensure the fixed header never overlaps the page hero on smaller screens. */
@media (max-width: 575.98px) {
    body.cookie-page {
        padding-top: 125px !important;
    }
}

/* ===== Contrast fixes for home page ===== */
/* Solid, opaque badge backgrounds so text contrast resolves correctly. */
.badge-soft-gold {
    background: #a98432 !important;
    color: #1d1507 !important;
    border: 1px solid #a98432 !important;
}

.age-badge.age-badge-gold {
    background: #c9a44c !important;
    color: #1d1507 !important;
    border-color: #c9a44c !important;
}

/* Provide a guaranteed dark backdrop for the responsible gaming panel so
   white/semi-white copy always has a dark surface to sit on. */
.responsible-gaming {
    background: #0d1117 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.responsible-gaming .text-white,
.responsible-gaming span.text-white,
.responsible-gaming span.font-serif {
    color: #ffffff !important;
}
.responsible-gaming p {
    color: #d7dbe1 !important;
}

/* Keep the fixed header clear of the hero on narrow mobile screens. */
@media (max-width: 575.98px) {
    body {
        padding-top: 118px !important;
    }
    .hero-carousel,
    .hero-slider {
        min-height: calc(100vh - 118px) !important;
    }
}
@media (min-width: 576px) and (max-width: 991.98px) {
    body {
        padding-top: 92px;
    }
}

/* ===== Privacy Policy page QA fixes ===== */
/* Ensure the fixed header never overlaps the hero/top of page on small screens. */
@media (max-width: 575.98px) {
    body {
        padding-top: 120px !important;
    }
    .page-hero {
        margin-top: 0;
    }
}

/* Style the Services dropdown toggle when rendered as a <button> so it looks
   like the surrounding navbar links and remains fully clickable. */
.navbar-dark .navbar-nav .nav-link.dropdown-toggle {
    background: transparent;
    border: 0;
    color: rgba(242, 238, 230, 0.86);
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 0.6rem 1.1rem;
    border-radius: 2rem;
}
.navbar-dark .navbar-nav .nav-link.dropdown-toggle:hover,
.navbar-dark .navbar-nav .nav-link.dropdown-toggle:focus,
.navbar-dark .navbar-nav .nav-link.dropdown-toggle[aria-expanded="true"] {
    color: var(--brand-gold-light);
    background: rgba(201, 164, 76, 0.08);
}

/* Refund policy page: guarantee the fixed header never overlaps the hero on small screens. */
@media (max-width: 991.98px) {
    body {
        padding-top: 128px !important;
    }
}

/* Thank-you page: guarantee the fixed header never overlaps the page hero on
   narrow mobile screens (360px). The body offset keeps the whole document below
   the fixed navbar, and the hero is additionally pushed clear of it. */
@media (max-width: 991.98px) {
    body {
        padding-top: 132px !important;
    }
}
@media (max-width: 575.98px) {
    body {
        padding-top: 132px !important;
    }
    .page-hero {
        padding-top: 130px !important;
    }
}
