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

:root {
    --primary: #c9a54a;
    --primary-rgb: 201, 165, 74;
    --primary-dark: #a8852e;
    --bg-dark: #0a0a0f;
    --bg-darker: #060609;
    --bg-card: #14141a;
    --bg-input: #1a1a22;
    --text-light: #ffffff;
    --text-secondary: #c9c5b8;
    --border-gold: rgba(201, 165, 74, 0.2);
    --border-light: rgba(255, 255, 255, 0.08);
    --transition: all 0.35s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --section-padding: 96px 0;
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 0 30px rgba(201, 165, 74, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #d4b95f;
}

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

::selection {
    background: var(--primary);
    color: var(--bg-darker);
}

.navbar {
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.96) 0%, rgba(10, 10, 15, 0.92) 60%, rgba(10, 10, 15, 0.7) 100%);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
    z-index: 1050;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.98);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar-brand:hover {
    color: var(--primary);
}

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

.navbar-nav {
    gap: 4px;
}

.navbar-nav .nav-link {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 16px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 1px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary);
}

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

.navbar-nav .nav-link.active {
    color: var(--primary);
}

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

.navbar-toggler {
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    padding: 8px 14px;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(201, 165, 74, 0.2);
    border-color: var(--primary);
}

.navbar-toggler i {
    font-size: 20px;
    color: var(--text-light);
}

.navbar-info {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: 32px;
    padding-left: 32px;
    border-left: 1px solid var(--border-light);
}

.navbar-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}

.navbar-info-item i {
    color: var(--primary);
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.navbar-info-item span {
    white-space: nowrap;
}

.btn {
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn:focus {
    box-shadow: 0 0 0 4px rgba(201, 165, 74, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    color: var(--bg-darker);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 165, 74, 0.3);
    color: var(--bg-darker);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--text-light);
}

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

.btn-outline-gold:hover {
    background: rgba(201, 165, 74, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 15px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 12px;
}

.hero-slider {
    position: relative;
    min-height: 100vh;
    background: var(--bg-darker);
}

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

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

.hero-slider .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(10, 10, 15, 0.7) 0%, rgba(10, 10, 15, 0.3) 50%, rgba(10, 10, 15, 0.5) 100%);
}

.hero-slider .container {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 120px;
}

.hero-slider .carousel-item.active {
    display: flex;
}

.hero-slider .carousel-item:not(.active) {
    display: none;
}

.hero-content {
    max-width: 720px;
}

.hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 165, 74, 0.15);
    border: 1px solid var(--border-gold);
    border-radius: 30px;
    padding: 6px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-content .btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.carousel-control-prev,
.carousel-control-next {
    width: 56px;
    height: 56px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: var(--transition);
    z-index: 10;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    opacity: 1;
}

.carousel-control-prev i,
.carousel-control-next i {
    font-size: 18px;
    color: var(--text-light);
}

.carousel-indicators {
    bottom: 40px;
}

.carousel-indicators [data-bs-target] {
    width: 30px;
    height: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    transition: var(--transition);
}

.carousel-indicators .active {
    background: var(--primary);
    width: 50px;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4.5vw, 46px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.8;
}

.section-header {
    margin-bottom: 56px;
    position: relative;
}

.section-header .section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin-top: 16px;
    border-radius: 3px;
}

.bg-alt {
    background-color: var(--bg-darker);
    position: relative;
}

.card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-gold);
}

.card-body {
    padding: 32px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 32px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-gold);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card .service-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 165, 74, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--bg-darker);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-card .service-link {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-card .service-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-gold);
}

.blog-card .blog-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    position: relative;
}

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

.blog-card .blog-card-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.blog-card .blog-card-meta i {
    color: var(--primary);
    margin-right: 4px;
}

.blog-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--text-light);
}

.blog-card h3 a:hover {
    color: var(--primary);
}

.blog-card .blog-card-excerpt {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 28px;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 24px;
    right: 24px;
}

.testimonial-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-md);
}

.testimonial-card .testimonial-rating {
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 16px;
}

.testimonial-card .testimonial-text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-card .testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card .testimonial-author .author-name {
    font-weight: 600;
    color: var(--text-light);
    font-size: 15px;
}

.testimonial-card .testimonial-author .author-role {
    font-size: 12px;
    color: var(--text-secondary);
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(201, 165, 74, 0.1);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.pricing-card .pricing-badge {
    position: absolute;
    top: -14px;
    left: 40px;
    background: var(--primary);
    color: var(--bg-darker);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 16px;
    border-radius: 20px;
}

.pricing-card .pricing-plan {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}

.pricing-card .pricing-price {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 4px;
}

.pricing-card .pricing-price span {
    font-size: 18px;
    color: var(--text-secondary);
}

.pricing-card .pricing-period {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-card ul li i {
    color: var(--primary);
    font-size: 12px;
}

.pricing-card ul li.li-disabled {
    opacity: 0.4;
}

.pricing-card ul li.li-disabled i {
    color: #ff6b6b;
}

.form-control {
    background-color: var(--bg-input);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 14px;
    padding: 14px 18px;
    transition: var(--transition);
}

.form-control:focus {
    background-color: var(--bg-input);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(201, 165, 74, 0.1);
    color: var(--text-light);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
    Height: 100%;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--border-gold);
}

.contact-card .contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 165, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 16px;
}

.contact-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-light);
}

.contact-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-light);
    padding: 64px 0 0;
    position: relative;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 16px;
}

.footer-brand img {
    height: 40px;
}

.footer h5 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 20px;
}

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

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

.footer ul li a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-contact-item i {
    color: var(--primary);
    margin-top: 3px;
    font-size: 14px;
    width: 18px;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--bg-darker);
    border-color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding: 24px 0;
    margin-top: 48px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--bg-darker);
    font-weight: 700;
    font-size: 13px;
    border-radius: 4px;
    padding: 2px 8px;
    letter-spacing: 1px;
    line-height: 1.4;
}

.responsible-gaming {
    background: rgba(201, 165, 74, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 16px 24px;
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
}

.form-notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #1a2e1a;
    border: 1px solid #2d8b4e;
    border-radius: 10px;
    padding: 16px 24px;
    color: #9be6a8;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    z-index: 2000;
    animation: notificationIn 0.4s ease;
}

.form-notification i {
    color: #2d8b4e;
    font-size: 20px;
}

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

.tcc-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    border-top: 1px solid var(--border-gold);
    padding: 20px 0;
    z-index: 3000;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.tcc-cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.tcc-cookie-content p {
    flex: 1;
    min-width: 280px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

.tcc-cookie-content p i {
    color: var(--primary);
    margin-right: 8px;
    font-size: 18px;
}

.tcc-cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.overflow-hidden {
    overflow: hidden;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

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

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

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

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-gold);
}

.team-card .team-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center top;
}

.team-card .team-body {
    padding: 24px;
}

.team-card .team-body h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-card .team-body .team-role {
    font-size: 13px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.team-card .team-body p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

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

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

.gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(10, 10, 15, 0.8) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

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

.gallery-item .gallery-overlay h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.gallery-item .gallery-overlay p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-gold);
}

.faq-item .faq-question {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-item .faq-question i {
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-item .faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    padding: 0 24px 20px;
    max-height: 500px;
}

.faq-item .faq-answer p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

.stats-section {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.stats-section .stat-item {
    text-align: center;
    padding: 40px 16px;
}

.stats-section .stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stats-section .stat-item .stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.partners-section {
    background: var(--bg-dark);
}

.partners-section .partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0.5;
    transition: var(--transition);
    filter: grayscale(100%);
}

.partners-section .partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.partners-section .partner-logo img {
    max-height: 48px;
}

.cta-section {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.6);
}

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

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 550px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.price-features {
    margin-top: 24px;
}

.price-features .feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
    color: var(--text-secondary);
}

.price-features .feature-item i {
    color: var(--primary);
    font-size: 14px;
}

.price-features .feature-item:last-child {
    border-bottom: none;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 16px;
    color: var(--text-light);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin: 32px 0 12px;
    color: var(--text-light);
}

.legal-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 8px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.breadcrumb-item a {
    color: var(--primary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb-item.active {
    color: var(--text-secondary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-secondary);
    content: "/";
}

.page-header {
    padding: 160px 0 80px;
    background: var(--bg-darker);
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.page-header .page-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 600px;
    margin-top: 12px;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    border: none;
}

.btn-whatsapp:hover {
    background: #1fb958;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 1199.98px) {
    .navbar-info {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .navbar-nav {
        padding-top: 16px;
    }
    .navbar-nav .nav-link {
        padding: 12px 0 !important;
    }
    .navbar-nav .nav-link::after {
        display: none;
    }
    .hero-slider .carousel-item {
        min-height: 70vh;
    }
    .hero-content {
        max-width: 100%;
    }
    .section {
        padding: 72px 0;
    }
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content p {
        font-size: 15px;
    }
    .section {
        padding: 56px 0;
    }
    .tcc-cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .tcc-cookie-actions {
        width: 100%;
        flex-wrap: wrap;
    }
    .tcc-cookie-actions .btn {
        flex: 1;
    }
    .form-notification {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
    .carousel-indicators {
        bottom: 20px;
    }
    .stats-section .stat-item {
        padding: 24px 8px;
    }
    .stats-section .stat-item .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand {
        font-size: 20px;
    }
    .btn-lg {
        padding: 12px 24px;
        font-size: 13px;
    }
    .hero-content .btn-group {
        flex-direction: column;
        gap: 12px;
    }
}
/* Contrast fixes for primary buttons */
.btn-primary {
    background-color: #c9a54a !important;
    background-image: none !important;
    border-color: #c9a54a !important;
    color: #060609 !important;
}
.btn-primary:hover,
.btn-primary:focus {
    background-color: #b8953a !important;
    background-image: none !important;
    border-color: #b8953a !important;
    color: #060609 !important;
}

/* ===== Contrast & readability fixes (blog + dark theme) ===== */
.card {
    color: #ffffff;
}
.card .card-title,
.card .card-title a,
.card h3,
.card h5 {
    color: #ffffff;
}
.card .card-text {
    color: rgba(255, 255, 255, 0.85);
}
/* Give btn-primary a solid base color so dark text on gold passes contrast */
.btn-primary {
    background-color: #c9a54a;
}
/* Lighter blue outline variant for good contrast on the dark background */
.btn-outline-primary {
    color: #7fb0fe;
    border-color: #7fb0fe;
}
.btn-outline-primary:hover {
    color: #ffffff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}
/* Static cookie banner default visible state */
.tcc-cookie {
    display: block;
}

/* Fix btn-primary solid background color so contrast can be computed reliably */
.btn-primary {
    background-color: #c9a54a;
    background-image: none;
    color: #060609;
}

/* About page: ensure text is readable in light sections/cards */
.page-about .bg-light,
.page-about .bg-white {
    color: #212529;
}
.page-about .bg-light h2,
.page-about .bg-light h3,
.page-about .bg-light h4,
.page-about .bg-light h5,
.page-about .bg-white h2,
.page-about .bg-white h3,
.page-about .bg-white h4,
.page-about .bg-white h5 {
    color: #212529 !important;
}
.page-about .bg-light p,
.page-about .bg-white p {
    color: #495057 !important;
}
.page-about .card {
    background-color: #ffffff !important;
    border-color: #e5e5e5 !important;
}
.page-about .card .card-title,
.page-about .card h5 {
    color: #212529 !important;
}
.page-about .card .card-text,
.page-about .card p {
    color: #495057 !important;
}
.page-about .bg-light .btn-outline-primary {
    color: #0d6efd;
}

/* ===== Contacts page: dark text on light sections for contrast ===== */
section#contact-form,
section#contact-form.bg-light {
    color: #212529;
}
section#contact-form h2,
section#contact-form p,
section#contact-form .form-label {
    color: #212529 !important;
}
section#contact-form .form-control {
    background-color: #ffffff;
    color: #212529;
    border-color: #ced4da;
}
section#contact-form .form-control:focus {
    background-color: #ffffff;
    color: #212529;
}
section#contact-form .form-control::placeholder {
    color: #6c757d;
}
/* Business hours info box on light background */
.bg-light.rounded h5,
.bg-light.rounded p {
    color: #212529 !important;
}

/* ===== Homepage contrast fixes: light (bg-light) sections on dark theme ===== */
.page-home .bg-light {
    color: #212529;
}
.page-home .bg-light h2,
.page-home .bg-light h3,
.page-home .bg-light h4,
.page-home .bg-light h5 {
    color: #212529 !important;
}
.page-home .bg-light p {
    color: #495057 !important;
}
.page-home .bg-light .blockquote {
    color: #212529 !important;
}
.page-home .bg-light .blockquote-footer,
.page-home .bg-light .blockquote-footer cite {
    color: #495057 !important;
}
.page-home .bg-light .card {
    background-color: #ffffff !important;
    border-color: #e5e5e5 !important;
    color: #212529 !important;
}
.page-home .bg-light .card .card-title,
.page-home .bg-light .card h5 {
    color: #212529 !important;
}
.page-home .bg-light .card .card-text,
.page-home .bg-light .card p {
    color: #495057 !important;
}
.page-home .bg-light .card .btn-outline-primary {
    color: #0d6efd !important;
    border-color: #0d6efd !important;
}
.page-home .bg-light .card .btn-outline-primary:hover {
    color: #ffffff !important;
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
}

/* Screen-reader carousel labels: ensure adequate contrast */
.carousel .visually-hidden {
    color: #000000 !important;
    background: #ffffff !important;
}

/* Services dropdown toggle rendered as a button */
.navbar-nav .dropdown-toggle.nav-link {
    background: transparent;
    border: none;
    color: var(--text-secondary);
}
.navbar-nav .dropdown-toggle.nav-link:hover,
.navbar-nav .dropdown-toggle.nav-link:focus {
    color: var(--primary);
}

/* ===== Price page contrast fixes: dark text on light sections ===== */
.page-price .bg-light {
    color: #212529;
}
.page-price .bg-light h2,
.page-price .bg-light h3,
.page-price .bg-light h4,
.page-price .bg-light h5 {
    color: #212529 !important;
}
.page-price .bg-light p {
    color: #495057 !important;
}
.page-price .bg-light .card {
    background-color: #ffffff !important;
    border-color: #e5e5e5 !important;
    color: #212529 !important;
}
.page-price .bg-light .card .card-title,
.page-price .bg-light .card h5 {
    color: #212529 !important;
}
.page-price .bg-light .card .card-text,
.page-price .bg-light .card p {
    color: #495057 !important;
}
.page-price .bg-light .card .btn-outline-primary {
    color: #0d6efd !important;
    border-color: #0d6efd !important;
}
.page-price .bg-light .card .btn-outline-primary:hover {
    color: #ffffff !important;
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
}

/* ===== Service page: contact-form section sits on dark bg-alt, use light text ===== */
section#contact-form h2,
section#contact-form p,
section#contact-form .form-label {
    color: #ffffff !important;
}
section#contact-form .card {
    background-color: #14141a !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}
section#contact-form .form-control {
    background-color: #1a1a22 !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}
section#contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* ===== Force cookie banner to remain visible on every page ===== */
.tcc-cookie,
#generator-cookie-consent,
div[class*="cookie"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ===== Thank-you page: contrast fixes for light (bg-light) sections ===== */
section.bg-light h2.text-center.fw-bold.mb-5 {
    color: #212529 !important;
}
section.bg-light {
    color: #212529;
}
section.bg-light p,
section.bg-light .card-text {
    color: #495057 !important;
}
section.bg-light .card {
    background-color: #ffffff !important;
    border-color: #e5e5e5 !important;
    color: #212529 !important;
}
section.bg-light .card .card-title,
section.bg-light .card h5 {
    color: #212529 !important;
}
section.bg-light .card .card-text,
section.bg-light .card p {
    color: #495057 !important;
}
section.bg-light .card .btn-outline-primary {
    color: #0d6efd !important;
    border-color: #0d6efd !important;
}
section.bg-light .card .btn-outline-primary:hover {
    color: #ffffff !important;
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
}

/* Allow the cookie banner to be dismissed while remaining visible by default */
.tcc-cookie.cookie-dismissed {
    display: none !important;
}
