@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Inter:wght@300;400;500;600&display=swap');
:root{
--bg-dark:#0a0a0f;
--bg-secondary:#101018;
--bg-card:#16161f;
--bg-elevated:#1d1d28;
--gold:#d4a853;
--gold-hover:#e2bc6a;
--gold-dark:#b89035;
--gold-soft:rgba(212,168,83,.12);
--text-light:#f4f4f6;
--text-secondary:#b8b8c2;
--text-tertiary:#8e8e99;
--border-light:rgba(255,255,255,.08);
--border-gold:rgba(212,168,83,.35);
--font-display:'Playfair Display',serif;
--font-body:'Inter',sans-serif;
--header-height:84px;
--radius-lg:24px;
--radius-md:16px;
--radius-sm:10px;
--shadow-card:0 20px 50px rgba(0,0,0,.35);
--shadow-gold:0 8px 30px rgba(212,168,83,.15);
}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
font-family:var(--font-body);
background:var(--bg-dark);
color:var(--text-light);
font-size:1rem;
line-height:1.7;
overflow-x:hidden;
-webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4,h5,h6,.font-display{
font-family:var(--font-display);
color:var(--text-light);
font-weight:600;
letter-spacing:.02em;
}
h1{font-size:clamp(2.4rem,5vw,4.2rem);line-height:1.15}
h2{font-size:clamp(2rem,3.5vw,3rem);line-height:1.2}
h3{font-size:clamp(1.4rem,2vw,1.9rem)}
h4{font-size:1.3rem}
h5{font-size:1.1rem}
h6{font-size:1rem}
p{color:var(--text-secondary);line-height:1.75}
a{color:var(--gold);text-decoration:none;transition:color .25s ease}
a:hover{color:var(--gold-hover)}
img{max-width:100%;height:auto}
section{position:relative}
.bg-dark-section{background:var(--bg-secondary)}
.bg-elevated{background:var(--bg-elevated)}
.text-gold{color:var(--gold)!important}
.text-secondary-custom{color:var(--text-secondary)!important}
.text-tertiary-custom{color:var(--text-tertiary)!important}
.fs-small{font-size:.875rem}
.fs-large{font-size:1.1rem}
.section-padding{padding:110px 0}
.section-padding-sm{padding:70px 0}
.container-wide{max-width:1440px}
.icon-circle{
display:inline-flex;
align-items:center;
justify-content:center;
width:56px;height:56px;
border-radius:50%;
background:var(--gold-soft);
border:1px solid var(--border-gold);
color:var(--gold);
font-size:1.3rem;
flex-shrink:0;
transition:all .3s ease;
}
.icon-circle:hover{background:var(--gold);color:var(--bg-dark)}
.btn-gold{
background:linear-gradient(135deg,var(--gold) 0%,var(--gold-dark) 100%);
color:var(--bg-dark);
border:none;
font-weight:600;
padding:.9rem 2rem;
border-radius:50px;
text-transform:uppercase;
letter-spacing:.08em;
font-size:.85rem;
transition:all .3s ease;
box-shadow:var(--shadow-gold);
display:inline-flex;align-items:center;gap:.6rem;
}
.btn-gold:hover{background:linear-gradient(135deg,var(--gold-hover) 0%,var(--gold) 100%);color:var(--bg-dark);transform:translateY(-3px);box-shadow:0 14px 36px rgba(212,168,83,.25)}
.btn-outline-gold{
background:transparent;
color:var(--gold);
border:1px solid var(--border-gold);
font-weight:600;
padding:.85rem 1.8rem;
border-radius:50px;
text-transform:uppercase;
letter-spacing:.08em;
font-size:.85rem;
transition:all .3s ease;
display:inline-flex;align-items:center;gap:.6rem;
}
.btn-outline-gold:hover{background:var(--gold-soft);color:var(--gold-hover);border-color:var(--gold);transform:translateY(-2px)}
.btn-light-solid{
background:var(--text-light);
color:var(--bg-dark);
font-weight:600;
padding:.9rem 2rem;
border-radius:50px;
text-transform:uppercase;
letter-spacing:.05em;
font-size:.85rem;
border:none;
transition:all .3s ease;
display:inline-flex;align-items:center;gap:.6rem;
}
.btn-light-solid:hover{background:#fff;color:var(--bg-dark);transform:translateY(-3px);box-shadow:0 12px 32px rgba(255,255,255,.15)}
.site-header{
position:fixed;
top:0;left:0;right:0;
z-index:1000;
background:transparent;
padding:20px 0;
transition:all .4s ease;
}
.site-header.header-scrolled{
background:rgba(10,10,15,.92);
backdrop-filter:blur(12px);
padding:12px 0;
box-shadow:0 8px 30px rgba(0,0,0,.35);
border-bottom:1px solid var(--border-light);
}
.site-header .navbar-brand{color:var(--text-light);font-family:var(--font-display);font-size:1.6rem;letter-spacing:.04em}
.site-header .navbar-brand span{color:var(--gold)}
.site-header .nav-link{
color:var(--text-light)!important;
font-size:.9rem;
font-weight:500;
letter-spacing:.04em;
text-transform:uppercase;
padding:.5rem 1.1rem!important;
position:relative;
transition:color .3s ease;
}
.site-header .nav-link::after{
content:'';position:absolute;left:1.1rem;right:1.1rem;bottom:0;
height:2px;background:var(--gold);
transform:scaleX(0);transform-origin:left;
transition:transform .3s ease;
}
.site-header .nav-link:hover::after,.site-header .nav-link.active::after{transform:scaleX(1)}
.site-header .nav-link:hover,.site-header .nav-link.active{color:var(--gold)!important}
.navbar-toggler{border:none;outline:none!important;color:var(--gold);padding:.25rem .5rem}
.navbar-toggler:focus{box-shadow:none}
.navbar-toggler i{font-size:1.6rem}
.header-phone{font-size:.9rem;color:var(--text-light)}
.header-phone i{color:var(--gold);margin-right:.4rem}
.btn-menu-cta{padding:.5rem 1.2rem;font-size:.8rem}
.hero-section{
position:relative;
min-height:100vh;
display:flex;
align-items:center;
background-size:cover;
background-position:center;
padding:calc(var(--header-height) + 40px) 0 80px;
}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(10,10,15,.55) 0%,rgba(10,10,15,.75) 60%,var(--bg-dark) 100%);z-index:1}
.hero-content{position:relative;z-index:2}
.hero-badge{
display:inline-flex;
align-items:center;
gap:.5rem;
background:rgba(212,168,83,.12);
border:1px solid var(--border-gold);
color:var(--gold);
border-radius:50px;
padding:.4rem 1.3rem;
font-size:.8rem;
text-transform:uppercase;
letter-spacing:.18em;
font-weight:500;
margin-bottom:1.8rem;
}
.hero-section h1{color:var(--text-light);margin-bottom:1.5rem;font-weight:700}
.hero-section p.lead{color:var(--text-secondary);font-size:1.1rem;max-width:560px;margin-bottom:2.2rem}
.hero-stats{
display:flex;gap:2.5rem;margin-top:3.5rem;flex-wrap:wrap;
}
.hero-stat{text-align:center}
.hero-stat .number{font-family:var(--font-display);font-size:2rem;color:var(--gold);line-height:1.2}
.hero-stat .label{font-size:.75rem;text-transform:uppercase;letter-spacing:.12em;color:var(--text-tertiary)}
.hero-scroll-down{
position:absolute;bottom:30px;left:50%;transform:translateX(-50%);
z-index:3;color:var(--text-light);font-size:1.4rem;
animation:bounceDown 2s infinite;
opacity:.7;transition:opacity .3s;
}
.hero-scroll-down:hover{color:var(--gold);opacity:1}
@keyframes bounceDown{
0%,20%,50%,80%,100%{transform:translateX(-50%) translateY(0)}
40%{transform:translateX(-50%) translateY(10px)}
60%{transform:translateX(-50%) translateY(5px)}
}
.section-eyebrow{
display:inline-flex;align-items:center;gap:.8rem;
color:var(--gold);
font-size:.78rem;
letter-spacing:.22em;
text-transform:uppercase;
font-weight:600;
margin-bottom:1rem;
}
.section-eyebrow::before{content:'';display:block;width:42px;height:1px;background:var(--gold)}
.section-title{color:var(--text-light);margin-bottom:1rem;font-weight:700}
.section-subtitle{color:var(--text-secondary);font-size:1.05rem;max-width:640px}
.text-center .section-eyebrow::before{display:none}
.text-center .section-eyebrow{justify-content:center}
.text-center{text-align:center}
.divider-gold{width:80px;height:2px;background:linear-gradient(90deg,transparent,var(--gold),transparent);margin:1.5rem auto;border:none}
.divider-gold-start{width:80px;height:2px;background:var(--gold);margin:1.5rem 0;border:none}
.card-premium{
background:var(--bg-card);
border:1px solid var(--border-light);
border-radius:var(--radius-lg);
overflow:hidden;
transition:all .4s cubic-bezier(.22,.61,.36,1);
position:relative;
height:100%;
}
.card-premium:hover{
transform:translateY(-12px);
border-color:var(--border-gold);
box-shadow:var(--shadow-card);
}
.card-img-container{position:relative;overflow:hidden;height:240px}
.card-img-container img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}
.card-premium:hover .card-img-container img{transform:scale(1.08)}
.card-img-container::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,transparent 60%,rgba(10,10,15,.9) 100%)}
.card-body-custom{padding:2rem}
.card-tag{
display:inline-block;
background:var(--gold-soft);
color:var(--gold);
font-size:.72rem;
font-weight:600;
text-transform:uppercase;
letter-spacing:.1em;
padding:.3rem .9rem;
border-radius:30px;
margin-bottom:1rem;
border:1px solid var(--border-gold);
}
.card-title-link{color:var(--text-light);text-decoration:none;font-size:1.25rem;line-height:1.3}
.card-title-link:hover{color:var(--gold)}
.card-text-custom{color:var(--text-secondary);font-size:.95rem;margin-bottom:1.2rem}
.card-link-arrow{
display:inline-flex;align-items:center;gap:.5rem;
font-weight:600;font-size:.85rem;text-transform:uppercase;letter-spacing:.07em;
color:var(--gold);
transition:gap .3s ease;
}
.card-link-arrow:hover{gap:1rem;color:var(--gold-hover)}
.card-link-arrow i{font-size:.75rem}
.badge-18{
display:inline-block;width:42px;height:42px;
border-radius:50%;
background:var(--bg-dark);
border:2px solid var(--gold);
color:var(--gold);
font-weight:700;font-size:.85rem;
display:inline-flex;align-items:center;justify-content:center;line-height:1;
letter-spacing:.03em;
}
.age-badge-rounded{
display:inline-flex;align-items:center;gap:.7rem;
background:rgba(0,0,0,.4);
border:1px solid var(--border-light);
border-radius:50px;
padding:.5rem 1.4rem;
color:var(--text-light);
font-size:.85rem;
font-weight:500;
backdrop-filter:blur(6px);
}
.age-badge-rounded .badge-18{width:34px;height:34px;font-size:.72rem}
.animation-number{font-family:var(--font-display);font-size:2.8rem;color:var(--gold);line-height:1;font-weight:700}
.animation-number-label{color:var(--text-tertiary);font-size:.85rem;letter-spacing:.1em;text-transform:uppercase;margin-top:.5rem}
.bg-gold-gradient{
background:linear-gradient(135deg,rgba(212,168,83,.08) 0%,rgba(212,168,83,.02) 100%);
border:1px solid var(--border-gold);
border-radius:var(--radius-lg);
}
.timeline-process{position:relative;padding-left:0;list-style:none}
.timeline-process .step-item{
position:relative;
padding-left:3.2rem;
padding-bottom:2.5rem;
}
.timeline-process .step-item:last-child{padding-bottom:0}
.timeline-process .step-item::before{
content:'';position:absolute;left:1rem;top:26px;
width:2px;height:calc(100% - 36px);
background:var(--border-gold);
}
.timeline-process .step-item:last-child::before{display:none}
.step-number-circle{
position:absolute;left:0;top:0;
width:32px;height:32px;
border-radius:50%;
background:var(--gold-soft);
border:1px solid var(--gold);
color:var(--gold);
display:flex;align-items:center;justify-content:center;
font-weight:700;font-size:.8rem;
z-index:1;
font-family:var(--font-display);
}
.step-item h4{margin-bottom:.5rem;color:var(--text-light)}
.step-item p{color:var(--text-secondary);font-size:.92rem;margin-bottom:0}
.form-control-custom{
background:var(--bg-card);
border:1px solid var(--border-light);
border-radius:var(--radius-sm);
color:var(--text-light);
padding:.9rem 1.2rem;
font-size:.95rem;
transition:all .3s ease;
}
.form-control-custom::placeholder{color:var(--text-tertiary)}
.form-control-custom:focus{
background:var(--bg-elevated);
border-color:var(--border-gold);
color:var(--text-light);
box-shadow:0 0 0 .2rem var(--gold-soft);
outline:none;
}
.form-select-custom{
background-color:var(--bg-card);
border:1px solid var(--border-light);
border-radius:var(--radius-sm);
color:var(--text-light);
padding:.9rem 1.2rem;
font-size:.95rem;
}
.form-select-custom:focus{border-color:var(--border-gold);box-shadow:0 0 0 .2rem var(--gold-soft)}
.form-label-custom{font-size:.8rem;font-weight:600;text-transform:uppercase;letter-spacing:.1em;color:var(--text-secondary);margin-bottom:.5rem}
.form-check-custom .form-check-input{
background-color:var(--bg-card);
border-color:var(--border-light);
}
.form-check-custom .form-check-input:checked{background-color:var(--gold);border-color:var(--gold)}
.form-check-custom .form-check-label{color:var(--text-secondary);font-size:.88rem}
.pricing-card{
background:var(--bg-card);
border:1px solid var(--border-light);
border-radius:var(--radius-lg);
padding:2.8rem 2.2rem;
position:relative;
height:100%;
transition:all .4s ease;
}
.pricing-card.featured{
background:linear-gradient(165deg,rgba(212,168,83,.08) 0%,rgba(22,22,31,.98) 60%);
border-color:var(--border-gold);
box-shadow:var(--shadow-card);
}
.pricing-card:hover{
transform:translateY(-8px);
border-color:var(--border-gold);
}
.pricing-card .price-value{
font-family:var(--font-display);font-size:3.4rem;
color:var(--gold);
line-height:1.2;
}
.pricing-card .price-period{color:var(--text-tertiary);font-size:.9rem}
.pricing-list{list-style:none;padding:0;margin:1.8rem 0 0}
.pricing-list li{
padding:.5rem 0;
color:var(--text-secondary);
font-size:.95rem;
display:flex;align-items:center;gap:.7rem;
}
.pricing-list li i{color:var(--gold);font-size:.75rem;flex-shrink:0}
.pricing-list li.disabled{color:var(--text-tertiary);opacity:.5}
.pricing-list li.disabled i{color:var(--text-tertiary)}
.featured-tag{
position:absolute;top:20px;right:20px;
background:var(--gold);
color:var(--bg-dark);
font-size:.7rem;
font-weight:700;
text-transform:uppercase;
letter-spacing:.1em;
padding:.3rem .9rem;
border-radius:30px;
}
.accordion-custom .accordion-item{
background:var(--bg-card);
border:1px solid var(--border-light);
border-radius:var(--radius-md)!important;
margin-bottom:1rem;
overflow:hidden;
}
.accordion-custom .accordion-item:first-of-type{border-radius:var(--radius-md)!important}
.accordion-custom .accordion-item:last-of-type{border-radius:var(--radius-md)!important}
.accordion-custom .accordion-button{
background:var(--bg-card);
color:var(--text-light);
font-size:1rem;
font-weight:500;
padding:1.4rem 1.8rem;
box-shadow:none;
border:none;
}
.accordion-custom .accordion-button:not(.collapsed){
background:var(--bg-elevated);
color:var(--gold);
}
.accordion-custom .accordion-button:focus{box-shadow:none;border-color:transparent}
.accordion-custom .accordion-button::after{
filter:invert(80%) sepia(30%) saturate(400%) hue-rotate(5deg);
}
.accordion-custom .accordion-button:not(.collapsed)::after{
filter:invert(80%) sepia(30%) saturate(400%) hue-rotate(5deg);
}
.accordion-custom .accordion-body{
background:var(--bg-card);
color:var(--text-secondary);
padding:0 1.8rem 1.6rem;
font-size:.95rem;
}
.testimonial-item{position:relative;padding:2rem}
.testimonial-card{
background:var(--bg-card);
border:1px solid var(--border-light);
border-radius:var(--radius-lg);
padding:2.5rem;
height:100%;
position:relative;
transition:all .3s ease;
}
.testimonial-card:hover{border-color:var(--border-gold);transform:translateY(-5px)}
.testimonial-card::before{
content:'\f10d';
font-family:'Font Awesome 6 Free';
font-weight:900;
position:absolute;
top:1.8rem;right:2rem;
font-size:2.4rem;
color:var(--gold-soft);
line-height:1;
}
.testimonial-author{
display:flex;align-items:center;gap:1rem;
margin-top:1.5rem;
}
.testimonial-avatar{
width:50px;height:50px;
border-radius:50%;
background:var(--gold-soft);
border:1px solid var(--border-gold);
display:flex;align-items:center;justify-content:center;
color:var(--gold);font-size:1.1rem;
flex-shrink:0;
}
.testimonial-name{color:var(--text-light);font-weight:600;font-size:.95rem;margin:0}
.testimonial-role{color:var(--text-tertiary);font-size:.8rem}
.stars-rating{color:var(--gold);font-size:.85rem;letter-spacing:.15em}
.stars-rating i{margin-right:.1rem}
.feature-box{
background:var(--bg-card);
border:1px solid var(--border-light);
border-radius:var(--radius-md);
padding:2rem 1.8rem;
height:100%;
text-align:center;
transition:all .4s ease;
}
.feature-box:hover{
border-color:var(--border-gold);
transform:translateY(-8px);
box-shadow:var(--shadow-card);
}
.feature-box .icon-circle{margin-bottom:1.4rem}
.feature-box h4{font-size:1.05rem;margin-bottom:.7rem}
.feature-box p{font-size:.9rem;color:var(--text-tertiary);margin-bottom:0}
.testimonial-slider-container{position:relative}
.testimonial-slide{display:none;animation:fadeSlide .5s ease}
.testimonial-slide.active{display:block}
@keyframes fadeSlide{
from{opacity:0;transform:translateY(20px)}
to{opacity:1;transform:translateY(0)}
}
.slider-dots{display:flex;justify-content:center;gap:.6rem;margin-top:2rem}
.slider-dot{
width:10px;height:10px;border-radius:50%;
background:var(--border-light);
border:none;padding:0;cursor:pointer;
transition:all .3s ease;
}
.slider-dot.active,.slider-dot:hover{background:var(--gold);transform:scale(1.2)}
.slider-btn-prev,.slider-btn-next{
width:46px;height:46px;
border-radius:50%;
background:var(--bg-card);
border:1px solid var(--border-gold);
color:var(--gold);
display:flex;align-items:center;justify-content:center;
transition:all .3s ease;
cursor:pointer;
}
.slider-btn-prev:hover,.slider-btn-next:hover{background:var(--gold);color:var(--bg-dark);border-color:var(--gold)}
.contact-info-item{
display:flex;align-items:flex-start;gap:1.2rem;
margin-bottom:1.8rem;
}
.contact-info-item .icon-circle{width:48px;height:48px;font-size:1rem}
.contact-info-item h6{margin-bottom:.3rem;color:var(--text-light);font-size:.9rem;text-transform:uppercase;letter-spacing:.08em}
.contact-info-item p{color:var(--text-secondary);font-size:.95rem;margin-bottom:0}
.map-iframe{
border:none;
width:100%;
height:350px;
border-radius:var(--radius-lg);
filter:grayscale(40%) contrast(110%) invert(90%) hue-rotate(180deg) saturate(0.3);
}
.map-iframe-light{
border:none;width:100%;height:350px;
border-radius:var(--radius-lg);
}
.site-footer{
background:var(--footer-bg-dark);
position:relative;
padding-top:80px;
padding-bottom:0;
margin-top:80px;
}
.site-footer::before{
content:'';position:absolute;top:0;left:0;right:0;
height:1px;
background:linear-gradient(90deg,transparent,var(--border-gold),transparent);
}
.footer-title{
font-family:var(--font-display);
color:var(--text-light);
font-size:1.15rem;
margin-bottom:1.5rem;
letter-spacing:.05em;
position:relative;
padding-bottom:.8rem;
}
.footer-title::after{
content:'';position:absolute;left:0;bottom:0;
width:36px;height:2px;
background:var(--gold);
}
.footer-links{list-style:none;padding:0;margin:0}
.footer-links li{margin-bottom:.7rem}
.footer-links a{
color:var(--text-secondary);
font-size:.92rem;
transition:all .3s ease;
display:inline-flex;align-items:center;gap:.5rem;
}
.footer-links a i{font-size:.65rem;color:var(--gold);opacity:0;transition:all .3s ease;margin-left:0}
.footer-links a:hover{color:var(--gold);padding-left:.3rem}
.footer-links a:hover i{opacity:1;margin-left:.3rem}
.footer-contact-item{
display:flex;align-items:flex-start;gap:.9rem;
margin-bottom:.9rem;
color:var(--text-secondary);font-size:.92rem;
}
.footer-contact-item i{color:var(--gold);margin-top:.3rem;flex-shrink:0;width:18px;text-align:center}
.footer-contact-item span{line-height:1.6}
.footer-social{list-style:none;padding:0;margin:0}
.footer-social li{display:inline-block;margin-right:.5rem}
.footer-social li a{
display:inline-flex;align-items:center;justify-content:center;
width:42px;height:42px;
border-radius:50%;
background:var(--bg-dark);
border:1px solid var(--border-light);
color:var(--text-secondary);
font-size:1rem;
transition:all .3s ease;
}
.footer-social li a:hover{
background:var(--gold);
color:var(--bg-dark);
border-color:var(--gold);
transform:translateY(-3px);
}
.footer-bottom{
border-top:1px solid var(--border-light);
padding:1.6rem 0;
margin-top:50px;
background:rgba(0,0,0,.3);
}
.footer-bottom p{color:var(--text-tertiary);font-size:.82rem;margin-bottom:0}
.brand-text-footer{
font-family:var(--font-display);
font-size:1.4rem;
color:var(--gold);
letter-spacing:.04em;
}
.brand-text-footer small{display:block;font-size:.75rem;letter-spacing:.2em;text-transform:uppercase;color:var(--text-tertiary);margin-top:.3rem}
.cookie-banner-custom{
position:fixed;
bottom:0;left:0;right:0;
background:rgba(10,10,15,.95);
backdrop-filter:blur(16px);
border-top:1px solid var(--border-gold);
padding:2rem 0;
z-index:2000;
transform:translateY(0);
transition:transform .5s ease;
}
.cookie-banner-custom.hidden-cookies{transform:translateY(100%)}
.cookie-title{font-family:var(--font-display);color:var(--text-light);font-size:1.2rem;margin-bottom:.6rem}
.cookie-text{color:var(--text-secondary);font-size:.9rem;margin-bottom:0}
.cookie-banner-custom .btn-gold{padding:.55rem 1.4rem;font-size:.8rem}
.cookie-banner-custom .btn-secondary-ghost{
background:transparent;color:var(--text-secondary);
border:1px solid var(--border-light);
padding:.55rem 1.4rem;font-size:.8rem;
border-radius:50px;
transition:all .3s ease;
font-weight:500;
}
.cookie-banner-custom .btn-secondary-ghost:hover{color:var(--text-light);border-color:var(--text-secondary)}
.toast-notification-custom{
position:fixed;
top:20px;right:20px;
z-index:3000;
min-width:320px;
max-width:420px;
background:var(--bg-elevated);
border:1px solid var(--border-gold);
border-radius:var(--radius-md);
padding:1.4rem 1.6rem;
display:none;
align-items:flex-start;
gap:1rem;
box-shadow:var(--shadow-card);
animation:notifIn .4s ease;
}
.toast-notification-custom.show{display:flex}
@keyframes notifIn{
from{opacity:0;transform:translateX(60px)}
to{opacity:1;transform:translateX(0)}
}
.toast-icon-gold{
width:40px;height:40px;border-radius:50%;
background:var(--gold-soft);
border:1px solid var(--gold);
color:var(--gold);
display:flex;align-items:center;justify-content:center;
flex-shrink:0;
}
.toast-message-custom{color:var(--text-light);font-size:.9rem;line-height:1.4;flex:1}
.toast-close-btn{
background:none;border:none;color:var(--text-tertiary);
font-size:.9rem;cursor:pointer;padding:.2rem;
transition:color .3s;
}
.toast-close-btn:hover{color:var(--text-light)}
.back-to-top{
position:fixed;
bottom:30px;right:30px;
width:48px;height:48px;
border-radius:50%;
background:var(--gold);
border:none;
color:var(--bg-dark);
font-size:1.1rem;
display:flex;align-items:center;justify-content:center;
cursor:pointer;
opacity:0;
visibility:hidden;
transition:all .4s ease;
box-shadow:var(--shadow-gold);
z-index:900;
}
.back-to-top.show-top{opacity:1;visibility:visible}
.back-to-top:hover{transform:translateY(-5px);background:var(--gold-hover)}
.gallery-slider-wrapper{position:relative}
.gallery-slider-main{border-radius:var(--radius-lg);overflow:hidden;position:relative;min-height:420px}
.gallery-slider-main img{width:100%;height:480px;object-fit:cover}
.gallery-controls{display:flex;gap:.8rem;position:absolute;bottom:24px;left:24px;z-index:5}
.gallery-controls .slider-btn-prev,.gallery-controls .slider-btn-next{
width:42px;height:42px;
background:rgba(10,10,15,.7);
border-color:rgba(255,255,255,.2);
color:var(--text-light);
}
.gallery-controls .slider-btn-prev:hover,.gallery-controls .slider-btn-next:hover{
background:var(--gold);color:var(--bg-dark);border-color:var(--gold);
}
.responsible-gaming-card{
background:linear-gradient(135deg,rgba(212,168,83,.06) 0%,rgba(10,10,15,.95) 70%);
border:1px solid var(--border-light);
border-radius:var(--radius-lg);
padding:2.8rem;
}
.responsible-gaming-card h3{color:var(--text-light)}
.responsible-gaming-card p{color:var(--text-secondary)}
.dga-logo-badge{
display:inline-flex;align-items:center;justify-content:center;
width:56px;height:56px;
border-radius:50%;
background:var(--bg-dark);
border:2px solid var(--gold);
color:var(--gold);
font-size:1.6rem;
flex-shrink:0;
}
.stat-card{
text-align:center;
background:var(--bg-card);
border:1px solid var(--border-light);
border-radius:var(--radius-lg);
padding:2.5rem 1.5rem;
transition:all .3s ease;
}
.stat-card:hover{border-color:var(--border-gold);transform:translateY(-5px)}
.stat-card .animation-number{font-size:3.2rem}
.legal-content-box{
background:var(--bg-card);
border:1px solid var(--border-light);
border-radius:var(--radius-lg);
padding:2.5rem;
}
.legal-content-box h4{margin-top:1.5rem;color:var(--text-light)}
.legal-content-box p{color:var(--text-secondary);font-size:.95rem}
.legal-content-box ul{color:var(--text-secondary)}
.legal-content-box ul li{padding:.3rem 0}
.content-page-hero{
background-size:cover;
background-position:center;
padding:calc(var(--header-height) + 50px) 0 70px;
position:relative;
}
.content-page-hero::after{
content:'';position:absolute;inset:0;
background:linear-gradient(180deg,rgba(10,10,15,.8) 0%,var(--bg-dark) 100%);
}
.content-page-hero .hero-content-custom{position:relative;z-index:2}
.breadcrumb-custom{
display:flex;align-items:center;gap:.6rem;
list-style:none;padding:0;margin:0 0 1.5rem;
flex-wrap:wrap;
}
.breadcrumb-custom li{font-size:.85rem;color:var(--text-tertiary)}
.breadcrumb-custom li a{color:var(--text-tertiary);transition:color .3s}
.breadcrumb-custom li a:hover{color:var(--gold)}
.breadcrumb-custom li+li::before{
content:'\f054';font-family:'Font Awesome 6 Free';font-weight:900;
font-size:.6rem;color:var(--gold);margin-right:.6rem;
}
.cta-block{
position:relative;
padding:4rem 3rem;
border-radius:var(--radius-lg);
overflow:hidden;
border:1px solid var(--border-light);
}
.cta-block .cta-inner{position:relative;z-index:2}
.cta-block::after{
content:'';position:absolute;inset:0;
background:linear-gradient(90deg,rgba(10,10,15,.85) 0%,rgba(10,10,15,.4) 100%);
z-index:1;
}
.page-header-18{
display:flex;align-items:center;gap:1rem;
background:rgba(255,255,255,.04);
border:1px solid var(--border-light);
border-radius:100px;
padding:.7rem 1.5rem;
margin-top:1rem;
}
.page-header-18 span{color:var(--text-secondary);font-size:.88rem;text-transform:uppercase;letter-spacing:.08em}
.clients-logo-grid{display:flex;align-items:center;flex-wrap:wrap}
.logo-inline{
opacity:.4;
transition:opacity .3s;
}
.logo-inline:hover{opacity:.8}
.nav-links-resource{
list-style:none;padding:0;margin:0;
}
.nav-links-resource li{margin-bottom:.5rem}
.nav-links-resource a{
font-size:.9rem;color:var(--text-tertiary);
transition:all .3s ease;
display:inline-flex;align-items:center;gap:.7rem;
}
.nav-links-resource a::before{
content:'';display:block;width:20px;height:1px;background:var(--gold);
transition:width .3s ease;
}
.nav-links-resource a:hover{
color:var(--gold);
padding-left:.4rem;
}
.nav-links-resource a:hover::before{width:36px}
.avatar-group-item{
width:60px;height:60px;
border-radius:50%;
display:flex;align-items:center;justify-content:center;
font-size:1.2rem;
background:var(--gold-soft);
border:1px solid var(--gold);
color:var(--gold);
margin-right:-8px;
border:3px solid var(--bg-card);
flex-shrink:0;
}
.avatar-grouping{display:flex;align-items:center}
iframe{border:0}
@media(max-width:1199.98px){
.section-padding{padding:90px 0}
}
@media(max-width:991.98px){
.site-header{background:rgba(10,10,15,.92);backdrop-filter:blur(12px);padding:14px 0}
.site-header .navbar-collapse{
background:rgba(10,10,15,.98);
border:1px solid var(--border-light);
border-radius:var(--radius-md);
padding:1.5rem;
margin-top:1rem;
box-shadow:var(--shadow-card);
}
.site-header .nav-link{padding:.7rem 0!important}
.site-header .nav-link::after{display:none}
.hero-section{min-height:auto;padding-top:130px}
.hero-section p.lead{font-size:1rem}
.hero-stats{gap:1.5rem}
.section-padding{padding:70px 0}
.hero-section h1{font-size:2.6rem}
.toast-notification-custom{left:20px;right:20px}
}
@media(max-width:767.98px){
.section-padding{padding:55px 0}
.hero-section h1{font-size:2.2rem}
.hero-stats{display:flex}
.pricing-card{padding:2rem 1.5rem}
.cta-block{padding:2rem 1.5rem}
.responsible-gaming-card{padding:1.8rem}
.toast-notification-custom{min-width:auto;max-width:none;left:16px;right:16px}
}
img{filter:none}
[data-aos][data-aos-easing=ease][data-aos-duration="200"]{transition-duration:inherit}
/* ===== Accessibility & contrast overrides ===== */
/* Gold buttons need a solid gold background-color for reliable contrast */
.btn-gold{
  background-color:#d4a853!important;
  background-image:none!important;
  color:#0a0a0f!important;
}
.btn-gold:hover,.btn-gold:focus{
  background-color:#e2bc6a!important;
  background-image:none!important;
  color:#0a0a0f!important;
}
/* Gold badges: solid gold background with dark text for contrast */
.bg-gold{
  background-color:#d4a853!important;
  color:#0a0a0f!important;
}
/* Eyebrow gold text placed on white/light sections needs a darker gold */
.featured-articles-section .text-gold,
.intro-section .text-gold,
.services-section .text-gold,
.philosophy-section .text-gold,
.gallery-section .text-gold,
.blog-preview-section .text-gold{
  color:#7a5a12!important;
}
/* Darken secondary text links on the light quick-links section */
.quick-links-section a.text-secondary,
.quick-links-section .text-secondary{
  color:#3a4048!important;
}
/* Ensure the footer uses a dark, high-contrast palette */
.site-footer{background:#0c0c12!important}
.footer-bottom{background:#07070b!important}
.footer-bottom p,
.footer-bottom a,
.footer-bottom span{
  color:#e8e8ee!important;
}
.footer-bottom a{text-decoration:underline!important}
/* Clear the fixed site header from the blog hero on all viewports */
.blog-hero-section{padding-top:120px}
@media(max-width:575.98px){
  .blog-hero-section{padding-top:160px}
}

/* === QA accessibility overrides === */
.about-hero-section{padding-top:10px;}
@media (max-width: 991.98px){
  .about-hero-section{padding-top:165px!important;}
}
/* Darken gold text used on light surfaces for WCAG contrast */
.bg-white .text-gold,
.bg-light .text-gold,
.bg-white a.text-gold,
.bg-light a.text-gold,
.bg-white .btn-link.text-gold,
.bg-light .btn-link.text-gold,
.bg-white .text-gold a,
.bg-light .text-gold a{
  color:#7a5610!important;
}
.bg-white .text-secondary,
.bg-light .text-secondary{
  color:#495057!important;
}
/* Make footer background explicit and text high-contrast */
.site-footer{background:#0b0b11;}
.footer-bottom{background:#060609;}
.site-footer p,
.site-footer span,
.site-footer .footer-links a,
.site-footer .footer-contact-item,
.footer-bottom p,
.footer-bottom a,
.footer-bottom span{
  color:#e9e9f0!important;
}
.site-footer .footer-contact-item i,
.site-footer .footer-title{color:#d4a853!important;}
/* QA visible cookie banner (always shown) */
.qa-cookie-banner{
  position:fixed;left:0;right:0;bottom:0;z-index:2147483000;
  background:#111116;color:#fff;border-top:2px solid #c9a24b;
  padding:16px 20px;font:15px/1.5 Inter,Arial,sans-serif;
  box-shadow:0 -6px 22px rgba(0,0,0,.45);
}
.qa-cookie-inner{display:flex;align-items:center;justify-content:space-between;gap:16px;max-width:1200px;margin:0 auto;flex-wrap:wrap;}
.qa-cookie-inner p{margin:0;color:#f2f2f5;max-width:780px;}
.qa-cookie-inner a{color:#e8bd5f;text-decoration:underline;}
.qa-cookie-actions{display:flex;gap:10px;flex-shrink:0;}
.qa-cookie-actions button{border:none;border-radius:6px;padding:10px 18px;font:inherit;font-weight:700;cursor:pointer;background:#ffffff;color:#131313;}
.qa-cookie-actions #qa-cookie-decline{background:transparent;color:#ffffff;border:1px solid #8a8a8a;}
@media (max-width:640px){
  .qa-cookie-inner{flex-direction:column;align-items:stretch;}
  .qa-cookie-actions{width:100%;}
  .qa-cookie-actions button{flex:1;}
}

/* ===== Homepage QA fixes ===== */
/* Clear the fixed header from the homepage hero-slider content on mobile */
@media (max-width: 991.98px){
  #page-root .hero-slider.slider-section{padding-top:175px!important;}
}
@media (max-width: 575.98px){
  #page-root .hero-slider.slider-section{padding-top:200px!important;}
}
/* Contrast: lighten large "18+" badge text placed on dark surfaces */
.responsible-section .badge-18,
.site-footer .badge-18,
.badge-18{color:#f2da96!important;border-color:#d4a853!important;}
.responsible-section .badge-18 .text-gold,
.badge-18 .text-gold{color:#f7e5b1!important;}

/* === QA fix: clear fixed header from legal hero on mobile === */
.legal-hero{padding-top:calc(var(--header-height) + 60px)!important;}
@media (max-width: 991.98px){
  .legal-hero{padding-top:170px!important;}
}
@media (max-width: 575.98px){
  .legal-hero{padding-top:190px!important;}
}

/* Clear fixed site header from legal/cookie policy hero sections on mobile */
@media (max-width: 575.98px){
  section.legal-hero{padding-top:340px!important;}
}
@media (min-width: 576px) and (max-width: 991.98px){
  section.legal-hero{padding-top:210px!important;}
}

/* ===== Legal page QA: clear fixed header from legal-hero on mobile ===== */
@media (max-width: 991.98px){
  .legal-hero{padding-top:200px!important;}
}
@media (max-width: 575.98px){
  .legal-hero{padding-top:210px!important;}
}

/* === QA fix: clear fixed header from price hero on mobile === */
.price-hero-section{padding-top:calc(var(--header-height) + 30px)!important;}
@media (max-width: 991.98px){
  .price-hero-section{padding-top:175px!important;}
}
@media (max-width: 575.98px){
  .price-hero-section{padding-top:360px!important;}
}

/* === QA fix: clear fixed header from thank-you hero on mobile === */
.thankyou-hero-section{padding-top:calc(var(--header-height) + 40px)!important;}
@media (max-width: 991.98px){
  .thankyou-hero-section{padding-top:200px!important;}
}
@media (max-width: 575.98px){
  .thankyou-hero-section{padding-top:360px!important;}
}
