*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
} :root { --bg: #242323;
--white: #FFFFFF;
--navy: #1a1919;
--navy-mid: #2e2d2d;
--navy-light: #353434;
--accent: #f7ee83;
--accent-dark: #e0d870;
--accent-dim: rgba(247, 238, 131, 0.1);
--accent-border: rgba(247, 238, 131, 0.2);
--heading: #FFFFFF;
--text: #B0B0B0;
--text-dim: #696969;
--border: rgba(255, 255, 255, 0.07); --r: 16px;
--gap: 14px; --display: 'Raleway', sans-serif;
--body: 'Plus Jakarta Sans', sans-serif; --menu-width: 70%;
--header-height: 80px;
--footer-height: 80px;
}
html {
scroll-behavior: smooth;
font-size: 16px;
}
body {
font-family: var(--body);
color: var(--text);
background: var(--bg);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
a {
color: inherit;
text-decoration: none;
}
button {
font-family: var(--body);
cursor: pointer;
border: none;
background: none;
}
img {
max-width: 100%;
display: block;
}
.w {
max-width: 1280px;
margin: 0 auto;
padding: 0 20px;
} .b {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 14px 28px;
font-size: 0.85rem;
font-weight: 700;
border-radius: 12px;
transition: all 0.3s;
letter-spacing: 0.2px;
}
.b--g {
background: var(--accent);
color: var(--navy);
}
.b--g:hover {
background: var(--accent-dark);
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(247, 238, 131, 0.2);
}
.b--n {
background: var(--navy);
color: var(--accent);
}
.b--n:hover {
background: #111;
transform: translateY(-2px);
}
.b--o {
border: 1.5px solid var(--border);
color: var(--heading);
background: var(--navy-mid);
}
.b--o:hover {
border-color: var(--accent);
color: var(--accent);
}
.b--w {
background: var(--accent);
color: var(--navy);
font-weight: 700;
}
.b--w:hover {
background: var(--accent-dark);
transform: translateY(-2px);
} .fi {
opacity: 0;
transform: translateY(24px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.fi.v {
opacity: 1;
transform: translateY(0);
} .hdr {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
padding: 14px 0;
transition: all 0.4s;
background: rgba(36,35,35,0.8); backdrop-filter: blur(5px); }
.hdr-in {
display: flex;
align-items: center;
justify-content: space-between;
}
.logo {
display: flex;
align-items: center;
gap: 10px;
}
.logo-mark {
width: 38px;
height: 38px;
border-radius: 10px;
background: var(--accent);
display: flex;
align-items: center;
justify-content: center;
font-family: var(--display);
font-size: 18px;
font-weight: 800;
color: var(--navy);
}
.logo-txt {
font-family: var(--display);
font-weight: 800;
font-size: 0.95rem;
color: var(--heading);
letter-spacing: 1.5px;
}
.hdr-nav {
display: flex;
gap: 24px;
}
.hdr-nav a {
font-size: 0.8rem;
font-weight: 600;
color: var(--text);
transition: color 0.3s;
}
.hdr-nav a:hover {
color: var(--accent);
}
.hdr-r {
display: flex;
align-items: center;
gap: 12px;
} .hdr-ph,
.mobile-menu .phone-link {
background: #E67E22;
color: #FFFFFF !important;
font-weight: 600;
padding: 8px 20px;
border-radius: 30px;
border: none;
transition: all 0.2s ease;
display: inline-block;
text-decoration: none;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.hdr-ph:hover,
.mobile-menu .phone-link:hover {
background: #d35400;
color: #FFFFFF !important;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
} .hamburger {
display: none;
flex-direction: column;
justify-content: center;
gap: 5px;
width: 44px;
height: 44px;
cursor: pointer;
z-index: 1001;
background: transparent;
border: none;
padding: 0;
}
.hamburger span {
display: block;
width: 100%;
height: 2px;
background: var(--heading);
transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
transform-origin: center;
border-radius: 2px;
}
.hamburger.active span {
background: var(--accent);
}
.hamburger.active span:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
opacity: 0;
}
.hamburger.active span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
} .mobile-menu {
display: none;
position: fixed;
top: 0;
left: 0;
width: var(--menu-width);
height: 100dvh;
background: var(--navy);
z-index: 1000;
padding: calc(var(--header-height) + 20px) 20px 20px 20px;
box-shadow: 5px 0 20px rgba(0, 0, 0, 0.3);
overflow-y: auto;
-webkit-overflow-scrolling: touch;
transform: translateX(-100%);
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
border-right: 1px solid var(--accent-border);
border-left: none;
}
.mobile-menu.active {
transform: translateX(0);
}
.mobile-menu a {
display: block;
font-family: var(--display);
font-size: 1.2rem;
font-weight: 500;
color: var(--heading);
padding: 15px 0;
border-bottom: 1px solid var(--border);
transition: color 0.3s ease, padding-left 0.3s ease;
}
.mobile-menu a:hover {
color: var(--accent);
padding-left: 10px;
}
.mobile-menu-contacts {
margin-top: 30px;
padding-top: 20px;
border-top: 2px solid var(--accent);
}
.mobile-menu .phone-link {
width: 100%;
text-align: center;
padding: 12px 0;
} body.menu-open {
overflow: hidden;
}
body.menu-open::after {
content: '';
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
z-index: 999;
backdrop-filter: blur(2px);
pointer-events: none;
animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
} @media (max-width: 768px) { .hdr-r {
display: flex !important;
} .hdr-r .js-modal-open {
display: none !important;
} .hdr-ph {
padding: 8px 16px;
font-size: 0.85rem;
} .logo-txt {
display: none; 
}
}
@media (max-width: 480px) { .hdr-ph {
font-size: 0.8rem; 
padding: 6px 12px;
}
} .hero {
padding: 100px 0 40px;
}
.hero-g {
display: grid;
grid-template-columns: 1.3fr 0.7fr;
gap: var(--gap);
}
.hero-main {
background: var(--navy);
border-radius: var(--r);
padding: 48px;
position: relative;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: center;
min-height: 480px;
border: 1px solid var(--border);
}
.hero-main::before {
content: '';
position: absolute;
top: -40%;
right: -20%;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(247, 238, 131, 0.06), transparent 70%);
border-radius: 50%;
}
.hero-main > * {
position: relative;
z-index: 2;
}
.hero-main .trust-row {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 24px;
}
.trust-pill {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 6px 14px;
background: var(--accent-dim);
border: 1px solid var(--accent-border);
border-radius: 50px;
font-size: 0.7rem;
font-weight: 600;
color: var(--accent);
letter-spacing: 0.5px;
}
.trust-pill .stars {
color: var(--accent);
letter-spacing: 1px;
}
.hero-main h1 {
font-family: var(--display);
font-size: clamp(2rem, 3.5vw, 2.8rem);
font-weight: 800;
color: #fff;
line-height: 1.15;
margin-bottom: 16px;
}
.hero-main h1 .hl {
color: var(--accent);
}
.hero-main > p {
font-size: 1rem;
color: rgba(255, 255, 255, 0.5);
max-width: 460px;
margin-bottom: 28px;
line-height: 1.7;
}
.hero-btns {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.hero-btns .b--g {
font-size: 0.9rem;
padding: 16px 32px;
}
.hero-note {
margin-top: 16px;
font-size: 0.72rem;
color: rgba(255, 255, 255, 0.3);
} .hero-form {
background: var(--navy-mid);
border-radius: var(--r);
padding: 36px;
border: 1px solid var(--border);
display: flex;
flex-direction: column;
}
.hero-form h3 {
font-family: var(--display);
font-size: 1.2rem;
font-weight: 800;
color: var(--heading);
margin-bottom: 4px;
}
.hero-form .sub {
font-size: 0.8rem;
color: var(--text-dim);
margin-bottom: 20px;
}
.hero-form .fg {
margin-bottom: 12px;
}
.hero-form .fg input {
width: 100%;
padding: 14px 16px;
background: rgba(255, 255, 255, 0.04);
border: 1px solid var(--border);
border-radius: 10px;
font-family: var(--body);
font-size: 0.85rem;
color: var(--heading);
outline: none;
transition: border-color 0.3s;
}
.hero-form .fg input::placeholder {
color: var(--text-dim);
}
.hero-form .fg input:focus {
border-color: var(--accent);
}
.hero-form .fbtn {
width: 100%;
padding: 16px;
background: var(--accent);
color: var(--navy);
font-weight: 800;
font-size: 0.88rem;
border: none;
border-radius: 10px;
cursor: pointer;
transition: all 0.3s;
font-family: var(--body);
margin-top: 4px;
}
.hero-form .fbtn:hover {
background: var(--accent-dark);
transform: translateY(-2px);
}
.hero-form .fn {
font-size: 0.65rem;
color: var(--text-dim);
margin-top: 10px;
text-align: center;
}
.hero-form .perks {
display: flex;
flex-direction: column;
gap: 8px;
margin-top: auto;
padding-top: 16px;
border-top: 1px solid var(--border);
}
.hero-form .perk {
display: flex;
align-items: center;
gap: 8px;
font-size: 0.75rem;
color: var(--text);
}
.hero-form .perk .ck {
width: 18px;
height: 18px;
border-radius: 50%;
background: var(--accent-dim);
display: flex;
align-items: center;
justify-content: center;
font-size: 10px;
color: var(--accent);
flex-shrink: 0;
} .stats-row {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: var(--gap);
margin-top: var(--gap);
}
.stat-box {
background: var(--navy-mid);
border-radius: var(--r);
padding: 24px;
border: 1px solid var(--border);
text-align: center;
transition: all 0.3s;
}
.stat-box:hover {
border-color: var(--accent);
transform: translateY(-2px);
}
.stat-box .n {
font-family: var(--display);
font-size: 1.8rem;
font-weight: 800;
color: var(--heading);
}
.stat-box .n span {
color: rgba(247,238,131,0.9);
}
.stat-box .t {
font-size: 0.72rem;
color: var(--text-dim);
margin-top: 4px;
} .sec {
padding: 72px 0;
}
.sec--alt {
background: var(--navy);
}
.sec-h {
margin-bottom: 40px;
}
.sec-h.center {
text-align: center;
}
.lbl {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 0.65rem;
font-weight: 700;
letter-spacing: 2.5px;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 10px;
}
.lbl .dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--accent);
}
.sec-h h2 {
font-family: var(--display);
font-size: clamp(1.5rem, 2.8vw, 2.2rem);
font-weight: 800;
color: var(--heading);
line-height: 1.2;
}
.sec-h p {
font-size: 0.9rem;
color: var(--text);
max-width: 480px;
margin-top: 10px;
line-height: 1.7;
}
.sec-h.center p {
margin-left: auto;
margin-right: auto;
} .cat-g {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: var(--gap);
grid-auto-rows: 200px;
}
.cc {
position: relative;
border-radius: var(--r);
overflow: hidden;
cursor: pointer;
border: 2px solid transparent;
transition: all 0.4s;
}
.cc:hover {
border-color: var(--accent);
transform: translateY(-3px);
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.cc--l {
grid-column: span 2;
}
.cc img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s;
filter: brightness(0.7);
}
.cc:hover img {
transform: scale(1.05);
filter: brightness(0.85);
}
.cc-ov {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 20px;
background: linear-gradient(to top, rgba(26, 25, 25, 0.9), transparent);
}
.cc-ov h3 {
font-family: var(--display);
font-size: 0.95rem;
font-weight: 700;
color: #fff;
}
.cc-ov .pr {
font-size: 0.75rem;
color: var(--accent);
font-weight: 700;
margin-top: 2px;
} .cta-band {
background: var(--navy);
border-radius: var(--r);
padding: 40px;
text-align: center;
position: relative;
overflow: hidden;
border: 1px solid var(--border);
}
.cta-band::before {
content: '';
position: absolute;
top: -50%;
left: -30%;
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(247, 238, 131, 0.05), transparent 70%);
border-radius: 50%;
}
.cta-band > * {
position: relative;
z-index: 2;
}
.cta-band h3 {
font-family: var(--display);
font-size: clamp(1.2rem, 2.5vw, 1.6rem);
font-weight: 800;
color: #fff;
margin-bottom: 8px;
}
.cta-band p {
font-size: 0.88rem;
color: rgba(255, 255, 255, 0.4);
margin-bottom: 24px;
}
.cta-band .row {
display: flex;
justify-content: center;
gap: 12px;
flex-wrap: wrap;
}
.cta-band .micro {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 16px;
font-size: 0.7rem;
color: rgba(255, 255, 255, 0.25);
} .pg {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-auto-rows: 220px;
gap: var(--gap);
}
.pi {
position: relative;
border-radius: var(--r);
overflow: hidden;
cursor: pointer;
}
.pi--w {
grid-column: span 2;
}
.pi--h {
grid-row: span 2;
}
.pi img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s;
cursor: pointer;
}
.pi:hover img {
transform: scale(1.05);
}
.pi-ov {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(26, 25, 25, 0.85), transparent 55%);
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 24px;
opacity: 0;
transition: opacity 0.35s;
}
.pi:hover .pi-ov {
opacity: 1;
}
.pi-ov span {
font-size: 0.6rem;
font-weight: 700;
color: var(--accent);
letter-spacing: 1px;
text-transform: uppercase;
margin-bottom: 4px;
}
.pi-ov h3 {
font-family: var(--display);
font-size: 1rem;
font-weight: 700;
color: #fff;
}
.pi-ov small {
font-size: 0.7rem;
color: rgba(255, 255, 255, 0.4);
} .prem-g {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--gap);
}
.prem {
position: relative;
border-radius: var(--r);
overflow: hidden;
min-height: 360px;
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 36px;
cursor: pointer;
transition: transform 0.4s;
}
.prem:hover {
transform: translateY(-4px);
}
.prem img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s;
}
.prem:hover img {
transform: scale(1.04);
}
.prem::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(26, 25, 25, 0.92), transparent 55%);
}
.prem > * {
position: relative;
z-index: 2;
}
.prem .tag {
display: inline-flex;
width: fit-content;
padding: 5px 12px;
background: var(--accent-dim);
border: 1px solid var(--accent-border);
border-radius: 50px;
font-size: 0.62rem;
font-weight: 700;
color: var(--accent);
letter-spacing: 1px;
text-transform: uppercase;
margin-bottom: 10px;
}
.prem h3 {
font-family: var(--display);
font-size: 1.5rem;
font-weight: 800;
color: #fff;
margin-bottom: 8px;
}
.prem p {
font-size: 0.82rem;
color: rgba(255, 255, 255, 0.5);
line-height: 1.6;
margin-bottom: 14px;
max-width: 320px;
} .svc-g {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--gap);
}
.sv {
border: 1px solid rgba(247,238,131,0.3);   
border: 1px solid var(--border);
border-radius: var(--r);
padding: 28px;
transition: none;
position: relative;
overflow: hidden;
}
.sv .n {
font-family: var(--display);
font-size: 2rem;
font-weight: 800;
color: rgba(247,238,131,0.9);
opacity: 1;
margin-bottom: 12px;
}
.sv h3 {
font-size: 0.95rem;
font-weight: 700;
color: var(--heading);
margin-bottom: 6px;
}
.sv p {
font-size: 0.8rem;
color: var(--text);
line-height: 1.6;
} .adv-g {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: var(--gap);
}
.ad {
background: var(--navy-mid);
border: 1px solid rgba(247,238,131,0.3);
border-radius: var(--r);
padding: 24px;
text-align: center;
transition: all 0.3s;
}
.ad .n {
font-family: var(--display);
font-size: 1.8rem;
font-weight: 800;
color: var(--accent);
text-shadow: 0 0 5px var(--accent);
}
.ad .n {
background: linear-gradient(45deg, var(--accent), #ffd700);
color: rgba(247,238,131,0.9);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.ad .ic {
width: 44px;
height: 44px;
border-radius: 12px;
margin: 0 auto 14px;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
background: var(--accent-dim);
}
.ad h3 {
font-size: 0.82rem;
font-weight: 700;
color: var(--heading);
margin-bottom: 4px;
}
.ad p {
font-size: 0.7rem;
color: var(--text-dim);
line-height: 1.5;
} .tl-g {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: var(--gap);
}
.ts {
border: 1px solid rgba(247,238,131,0.3);
transition: none;
background: var(--navy-mid);
border-radius: var(--r);
padding: 28px;
text-align: center;
}
.ts .d {
width: 36px;
height: 36px;
border-radius: 10px;
border: 2px solid var(--accent);
display: flex;
align-items: center;
justify-content: center;
font-family: var(--display);
font-size: 0.9rem;
font-weight: 800;
border-color: rgba(247,238,131,0.3);
color: rgba(247,238,131,0.9);
margin: 0 auto 14px;
}
.ts h3 {
font-size: 0.85rem;
font-weight: 700;
color: var(--heading);
margin-bottom: 4px;
}
.ts p {
font-size: 0.72rem;
color: var(--text-dim);
} .cit {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 28px;
justify-content: center;
}
.cit span {
padding: 10px 20px;
background: var(--navy-mid);
border: 1px solid var(--border);
border-radius: 10px;
font-size: 0.82rem;
font-weight: 600;
color: var(--heading);
transition: all 0.3s;
}
.cit span:hover {
border-color: var(--accent);
color: var(--accent);
transform: translateY(-2px);
}
.par {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
}
.par span {
padding: 10px 16px;
background: var(--navy-mid);
border: 1px solid var(--border);
border-radius: 10px;
font-size: 0.75rem;
color: var(--text);
font-weight: 500;
transition: border-color 0.3s;
}
.par span:hover {
border-color: var(--accent);
} .rv-g {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--gap);
}
.rv {
background: var(--navy-mid);
border: 1px solid rgba(247,238,131,0.3);
border-radius: var(--r);
padding: 28px;
transition: none;	      
}
.rv .st {
color: var(--accent);
font-size: 0.82rem;
letter-spacing: 2px;
margin-bottom: 14px;
}
.rv .qt {
font-size: 0.82rem;
color: var(--text);
line-height: 1.7;
margin-bottom: 18px;
font-style: italic;
}
.rv .au {
display: flex;
align-items: center;
gap: 10px;
padding-top: 14px;
border-top: 1px solid var(--border);
}
.rv .av {
width: 34px;
height: 34px;
border-radius: 10px;
background: var(--accent);
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
font-size: 0.78rem;
color: var(--navy);
}
.rv .nm {
font-size: 0.8rem;
font-weight: 700;
color: var(--heading);
}
.rv .sr {
font-size: 0.65rem;
color: var(--text-dim);
} .fq-g {
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 40px;
}
.fq-l {
display: flex;
flex-direction: column;
gap: 10px;
}
.fqi {
background: var(--navy-mid);
border: 1px solid var(--border);
border-radius: 12px;
overflow: hidden;
transition: border-color 0.3s;
}
.fqi:hover,
.fqi.on {
border-color: var(--accent);
}
.fqq {
padding: 16px 20px;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
font-size: 0.88rem;
font-weight: 700;
color: var(--heading);
gap: 16px;
}
.fqq .tg {
width: 26px;
height: 26px;
min-width: 26px;
border-radius: 8px;
border: 1.5px solid var(--accent-border);
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
color: var(--accent);
transition: all 0.3s;
}
.fqi.on .tg {
background: var(--accent);
color: var(--navy);
border-color: var(--accent);
transform: rotate(45deg);
}
.fqa {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s;
}
.fqa-in {
padding: 0 20px 16px;
font-size: 0.82rem;
color: var(--text);
line-height: 1.7;
} .form-sec {
padding: 72px 0;
background: var(--navy);
}
.form-b {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--gap);
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.06);
border-radius: var(--r);
overflow: hidden;
}
.fl {
padding: 48px;
display: flex;
flex-direction: column;
justify-content: center;
}
.fl .lbl {
color: var(--accent);
}
.fl h2 {
font-family: var(--display);
font-size: clamp(1.5rem, 2.5vw, 2rem);
font-weight: 800;
color: #fff;
margin-bottom: 12px;
}
.fl > p {
font-size: 0.88rem;
color: rgba(255, 255, 255, 0.45);
margin-bottom: 28px;
line-height: 1.7;
}
.pm {
display: flex;
gap: 10px;
align-items: flex-start;
margin-bottom: 14px;
}
.pm .ck {
width: 20px;
height: 20px;
min-width: 20px;
border-radius: 6px;
background: var(--accent-dim);
display: flex;
align-items: center;
justify-content: center;
color: var(--accent);
font-size: 10px;
margin-top: 2px;
}
.pm span {
font-size: 0.82rem;
color: rgba(255, 255, 255, 0.45);
line-height: 1.5;
}
.pm strong {
color: #fff;
}
.fr {
padding: 48px;
border-left: 1px solid rgba(255, 255, 255, 0.06);
background: rgba(255, 255, 255, 0.02);
}
.fr h3 {
font-family: var(--display);
font-size: 1.2rem;
font-weight: 800;
color: #fff;
margin-bottom: 4px;
}
.fr .fs {
font-size: 0.8rem;
color: rgba(255, 255, 255, 0.35);
margin-bottom: 20px;
}
.fr .fg {
margin-bottom: 12px;
}
.fr .fg input,
.fr .fg textarea {
width: 100%;
padding: 14px 16px;
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 10px;
color: #fff;
font-family: var(--body);
font-size: 0.85rem;
outline: none;
transition: border-color 0.3s;
}
.fr .fg input::placeholder,
.fr .fg textarea::placeholder {
color: rgba(255, 255, 255, 0.25);
}
.fr .fg input:focus,
.fr .fg textarea:focus {
border-color: var(--accent);
}
.fr .fg textarea {
resize: vertical;
min-height: 80px;
}
.fr .fbtn {
width: 100%;
padding: 16px;
background: var(--accent);
color: var(--navy);
font-weight: 800;
font-size: 0.88rem;
border: none;
border-radius: 10px;
cursor: pointer;
transition: all 0.3s;
font-family: var(--body);
margin-top: 4px;
}
.fr .fbtn:hover {
background: var(--accent-dark);
transform: translateY(-2px);
}
.fr .fn {
font-size: 0.65rem;
color: rgba(255, 255, 255, 0.2);
margin-top: 10px;
text-align: center;
} .ft {
padding: 48px 0 24px;
background: var(--navy);
}
.ft .logo-txt {
color: #fff;
}
.ft-top {
display: grid;
grid-template-columns: 1.5fr 1fr 1fr 1fr;
gap: 40px;
padding-bottom: 32px;
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ft-d {
font-size: 0.8rem;
color: rgba(255, 255, 255, 0.35);
line-height: 1.7;
max-width: 240px;
margin-top: 12px;
}
.ft-h {
font-size: 0.62rem;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.3);
margin-bottom: 16px;
}
.ft-l {
display: flex;
flex-direction: column;
gap: 8px;
}
.ft-l a,
.ft-l span {
font-size: 0.8rem;
color: rgba(255, 255, 255, 0.35);
transition: color 0.3s;
}
.ft-l a:hover {
color: var(--accent);
}
.ft-b {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 20px;
font-size: 0.65rem;
color: rgba(255, 255, 255, 0.2);
} .sticky {
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 900;
background: rgba(26, 25, 25, 0.97);
backdrop-filter: blur(16px);
border-top: 1px solid var(--accent-border);
padding: 12px 16px;
display: none; transform: translateY(0); transition: transform 0.4s;
}
.sticky.v {
transform: translateY(0);
}
.sticky-in {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
max-width: 400px;
margin: 0 auto;
}
.sticky-t {
font-size: 0.78rem;
color: #fff;
font-weight: 600;
line-height: 1.3;
}
.sticky-t small {
display: block;
font-size: 0.65rem;
color: rgba(255, 255, 255, 0.35);
font-weight: 400;
}
.sticky .b--g {
flex: 1;
text-align: center;
}
.sticky-call {
width: 42px;
height: 42px;
border-radius: 10px;
background: var(--accent);
color: var(--navy);
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
} body .additional-content-sec {
padding: 60px 0;
background: var(--navy);
color: var(--text);
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
}
body .additional-content-sec .w {
max-width: 900px;
margin: 0 auto;
padding: 0 20px;
}
body .additional-content-sec h1,
body .additional-content-sec h2,
body .additional-content-sec h3,
body .additional-content-sec h4 {
font-family: var(--display);
color: var(--heading);
margin-top: 1.5em;
margin-bottom: 0.5em;
line-height: 1.3;
}
body .additional-content-sec h1 { font-size: 2.2rem; }
body .additional-content-sec h2 { font-size: 1.8rem; }
body .additional-content-sec h3 { font-size: 1.4rem; }
body .additional-content-sec h4 { font-size: 1.2rem; }
body .additional-content-sec p {
margin-bottom: 1.5em;
line-height: 1.8;
font-size: 1rem;
color: var(--text);
}
body .additional-content-sec ul,
body .additional-content-sec ol {
margin: 1em 0 1.5em 1.5em;
color: var(--text);
}
body .additional-content-sec li {
margin-bottom: 0.5em;
line-height: 1.6;
}
body .additional-content-sec a {
color: var(--accent);
text-decoration: underline;
transition: color 0.2s;
}
body .additional-content-sec a:hover {
color: var(--accent-dark);
}
body .additional-content-sec img {
max-width: 100%;
height: auto;
margin: 20px 0;
border-radius: var(--r);
display: block;
}
body .additional-content-sec .wp-caption {
max-width: 100%;
margin: 20px 0;
}
body .additional-content-sec .wp-caption-text {
font-size: 0.85rem;
color: var(--text-dim);
text-align: center;
margin-top: 5px;
}
body .additional-content-sec blockquote {
border-left: 3px solid var(--accent);
padding: 10px 20px;
margin: 20px 0;
font-style: italic;
color: rgba(255,255,255,0.8);
background: rgba(247,238,131,0.02);
}
body .additional-content-sec table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
}
body .additional-content-sec th,
body .additional-content-sec td {
border: 1px solid var(--border);
padding: 8px 12px;
text-align: left;
}
body .additional-content-sec th {
background: var(--navy-light);
color: var(--heading);
font-weight: 600;
}
@media (max-width: 768px) {
body .additional-content-sec {
padding: 40px 0;
}
body .additional-content-sec h1 { font-size: 1.8rem; }
body .additional-content-sec h2 { font-size: 1.5rem; }
body .additional-content-sec h3 { font-size: 1.2rem; }
} .hdr-nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
gap: 24px;
}
.hdr-nav li {
position: relative;
} .hdr-nav ul ul {
display: none;
position: absolute;
top: 100%;
left: 0;
background: var(--navy);
min-width: 200px;
z-index: 1000;
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
border-radius: 8px;
padding: 10px 0;
border: 1px solid var(--accent-border);
} .hdr-nav li:hover > ul {
display: block;
} .hdr-nav ul ul li {
width: 100%;
}
.hdr-nav ul ul a {
display: block;
padding: 8px 20px;
font-size: 0.9rem;
color: var(--text);
white-space: nowrap;
transition: all 0.3s;
}
.hdr-nav ul ul a:hover {
background: var(--accent-dim);
color: var(--accent);
padding-left: 25px;
} .hdr-nav li.current-menu-item > a,
.hdr-nav li.current-menu-parent > a,
.hdr-nav li.current-menu-ancestor > a {
color: var(--accent);
} .mobile-menu ul {
list-style: none;
margin: 0;
padding: 0;
}
.mobile-menu ul ul {
padding-left: 20px;
} .hdr-nav a,
.mobile-menu a {
transition: color 0.3s ease, background 0.3s ease, padding 0.3s ease;
} @media (max-width: 1024px) {
.hero-g {
grid-template-columns: 1fr;
}
.hero-form {
margin-top: 0;
}
.stats-row {
grid-template-columns: repeat(2, 1fr);
}
.cat-g, .pg {
grid-template-columns: repeat(2, 1fr);
}
.svc-g, .rv-g {
grid-template-columns: 1fr;
}
.adv-g {
grid-template-columns: repeat(2, 1fr);
}
.tl-g {
grid-template-columns: repeat(3, 1fr);
}
.prem-g {
grid-template-columns: 1fr;
}
.form-b {
display: flex;
flex-direction: column;
}
.fl, .fr {
width: 100%;
padding: 32px 20px;
}
.fr {
border-left: none;
border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.fq-g {
grid-template-columns: 1fr;
}
.ft-top {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 768px) {
.hdr-nav,
.hdr-r {
display: none;
}
.hamburger {
display: flex;
}
.mobile-menu {
display: block;
}
.sticky {
display: flex;
}
body {
padding-bottom: 68px;
}
.stats-row {
grid-template-columns: 1fr 1fr;
}
.cat-g,
.pg {
grid-template-columns: 1fr;
grid-auto-rows: 180px;
}
.cc--l,
.pi--w {
grid-column: span 1;
}
.pi--h {
grid-row: span 1;
}
.adv-g {
grid-template-columns: 1fr;
}
.tl-g {
grid-template-columns: 1fr;
}
.ft-top {
grid-template-columns: 1fr;
gap: 24px;
}
.ft-b {
flex-direction: column;
gap: 12px;
text-align: center;
}
.sec-h {
text-align: center;
}
.sec-h .lbl {
justify-content: center;
}
}
@media (max-width: 480px) {
html {
font-size: 15px;
}
.w {
padding: 0 14px;
}
.hero-main {
padding: 32px;
min-height: auto;
}
.hero-form {
padding: 28px;
}
.fl,
.fr {
padding: 28px;
}
:root {
--menu-width: 85%;
}
} body.modal-open {
overflow: hidden;
}
.smile-modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 9999; }
.smile-modal[style*="display: block"],
.smile-modal[style*="display:block"] {
display: block !important;
}
.smile-modal-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.65);
cursor: pointer;
}
.smile-modal-box {
position: absolute; top: 50%;
left: 50%;
transform: translate(-50%, -50%); z-index: 1;
background: var(--navy-mid, #1a2233);
border-radius: 12px;
padding: 40px 36px;
width: 90%; max-width: 480px;
max-height: 90vh;
overflow-y: auto;
box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}
.smile-modal-close {
position: absolute;
top: 14px;
right: 16px;
background: transparent;
border: none;
color: rgba(255, 255, 255, 0.5);
font-size: 1.2rem;
cursor: pointer;
line-height: 1;
padding: 6px;
transition: color 0.2s;
}
.smile-modal-close:hover {
color: #fff;
}
@media (max-width: 480px) {
.smile-modal-box {
padding: 28px 20px;
width: 92%; }
}
.hero-form .fg textarea {
width: 100%;
height: 100px;
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 8px;
padding: 14px 16px;
color: #fff;
font-size: 0.95rem;
font-family: inherit;
transition: border-color 0.2s, background 0.2s;
resize: vertical;
}
.hero-form .fg textarea:focus {
outline: none;
border-color: var(--yellow, #ffdc5e);
background: rgba(255, 255, 255, 0.08);
} .ft-l.cities-list {
display: block; }
.cities-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 8px 16px;
margin-top: 12px; }
.cities-grid a {
font-size: 0.8rem;
color: rgba(255, 255, 255, 0.35);
transition: color 0.3s;
text-decoration: none;
line-height: 1.4;
}
.cities-grid a:hover {
color: var(--accent);
} @media (max-width: 768px) {
.cities-grid {
grid-template-columns: 1fr;
gap: 8px;
}
}