/*
 * Theme Name: Clean Theme
 * Description: Clean Theme
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    --navy: #0c1427;
    --navy-light: #1e293b;
    --gold: #d4af37;
    --gold-dark: #b8860b;
    --white: #ffffff;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-700: #334155;
    --slate-900: #0f172a;
    --transition: all 0.3s ease;
}

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

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    color: var(--slate-900);
    background-color: var(--white);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Шапка (Header) --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
}

header.scrolled {
    background-color: #fff;
    padding: 12px 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--white);
}

header .logo-box {

}

header .logo-box img{
	width: 100px;
    position: relative;
    top: 4px;
}

header .logo-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #fff;
}

.nav-container{
	display: flex;
    gap: 20px;
    align-items: center;
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

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

.btn-contact {
    background-color: var(--gold);
    color: #0f172a;
    padding: 7px 19px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 14px;
}

.btn-contact:hover {
    background-color: var(--gold-dark);
    transform: translateY(-2px);
}

header.scrolled .logo-text{
    color: #1a365d;
}

header.scrolled .nav-link{
	color: #1a365d;
}

header.scrolled .gtranslate_wrapper a{
	color: #1a365d;
}

.gtranslate_wrapper{
	display:flex;
	gap:18px;
	margin-left:30px;
}

.gtranslate_wrapper a{
	color:#fff;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
}

header.scrolled .menu-toggle svg{
	stroke:#1a365d;
}

/* --- Hero Секція --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--slate-900);
    overflow: hidden;
    color: var(--white);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1517457373958-b7bdd458ad20?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d1323 0%, #21487c 100%);
	background: linear-gradient(135deg, rgb(15, 23, 42), rgb(26, 54, 93), rgb(30, 58, 95));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
}

.right-circle{
	background-color: rgba(212, 175, 55, 0.1);
    width: 16rem;
    height: 16rem;
    top: 25%;
    right: 2.5rem;
    position: absolute;
    filter: blur(64px);
}

.left-circle{
	background-color: rgba(26, 54, 93, 0.3);
    border-radius: 9999px;
    width: 12rem;
    height: 12rem;
    left: 2.5rem;
    bottom: 25%;
    position: absolute;
    filter: blur(64px);
}

.badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    gap: 5px;
}

.badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
    margin-right: 10px;
}

.hero h1 {
    font-size: 72px;
    line-height: 72px;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-content h1 i {
	color: rgb(212 175 55);
	font-style:normal;
	display:block;
}

.hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 28px;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background-color: var(--gold);
    color: #0f172a;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
	gap:20px;
}

.btn-primary:hover {
    background-color: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3);
}

.btn-primary svg{
	width:16px;
	height:16px;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
}

.list-down{
	position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
}

.list-down h5{
	font-size:14px;
	line-height:20px;
	color: rgba(255, 255, 255, 0.6);
	font-weight:500;
}

.list-down span{
	width: 24px;
    height: 40px;
    display: flex;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    margin: 8px auto 0;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
}

.list-down span i{
	width: 6px;
    height: 12px;
    background: rgb(212 175 55);
    border-radius: 100px;
    animation: 1s ease 0s infinite normal none running bounce;
}

@keyframes bounce{0%,to{transform:translateY(-25%);animation-timing-function:cubic-bezier(.8,0,1,1)}50%{transform:none;animation-timing-function:cubic-bezier(0,0,.2,1)}}.animate-bounce{animation:bounce 1s infinite}

/* --- Послуги (Services) --- */
.services {
    padding: 90px 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.7px;
    margin-bottom: 16px;
    display: block;
    line-height: 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 20px;
    color: #1a365d;
    line-height: 1;
    margin-bottom: 24px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--slate-100);
    transition: var(--transition);
    box-shadow: 0px 5px 10px rgb(0 0 0 / 9%);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgb(0 0 0 / 15%);
}

.service-card:hover .service-icon{
	transform:scale(1.1);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: justify-center;
    margin-bottom: 30px;
    background-color: var(--slate-900);
    color: var(--white);
    padding: 16px;
	transition: var(--transition);
	background: #233f65;
}

.service-icon svg{
	color:#d4af37
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a365d;
    line-height: 28px;
}

.service-card p {
    color: #64748b;
    line-height: 1.625;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.section-header p{
	font-size: 18px;
    line-height: 28px;
    max-width: 672px;
    font-weight: 500;
    margin: 0 auto;
}

/* --- Переваги (Benefits) --- */
.benefits {
    padding: 90px 0;
    background-color: #0f172a;
    /*background-image: radial-gradient(#1e293b 1px, transparent 1px);*/
    background-size: 24px 24px;
    color: var(--white);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefits-descr{
	color: rgb(255 255 255 / 70%);
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.625;
    font-weight: 500;
}

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}

.stat-item {
    background: rgb(255 255 255 / 5%);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgb(255 255 255 / 10%);
    text-align: center;
}

.stat-value {
    margin-bottom: 8px;
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    color: #d4af37;
}

.stat-label {
    font-size: 14px;
    color: #fff9;
    line-height: 20px;
    font-weight: 500;
}

.benefit-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.benefit-card {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgb(255 255 255 / 10%);
    transition: var(--transition);
    background-color: rgb(255 255 255 / 5%);
}

.benefit-card:hover {
    border: 1px solid rgb(212 175 55);
}

.benefit-card .icon {
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.benefit-card .icon svg{
	width:40px;
	height: 40px;
}

.benefit-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 28px;
}

.benefit-card p {
    font-size: 14px;
    color: #fff9;
    line-height: 20px;
    font-weight: 500;
}

/* --- Контакти (Contacts) --- */
.contacts {
    padding: 90px 0;
}

.contacts p{
	color: #64748b;
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.625;
    font-weight: 500;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.info-icon {
    width: 56px;
    height: 56px;
    background: #1a365d;
    color: #d4af37;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text p:first-child {
    color: rgb(100 116 139);
    font-size: 14px;
    margin-bottom: 4px;
    line-height: 1.25rem;
}

.info-text p:last-child {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    color: rgb(26 54 93);
    line-height: 1.75rem;
}

.contact-form {
    background: var(--slate-50);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--slate-100);
    box-shadow: 0px 5px 10px hsl(0deg 0% 0% / 15%);
}

.contact-form h3{
	font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 32px;
    color: rgb(26 54 93);
}

form{
	position:relative;
}

form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: -5px;
    color: rgb(71 85 105);
}

form p{
	margin-bottom:0!important;
}

form label span{
	display:block;
	margin-top:10px;
}

.wpcf7-spinner{
	position: absolute;
    background: #000;
    left: 0;
    bottom: -31px;
    z-index: 999;
}

.wpcf7-not-valid-tip{
	display:none;
}

.wpcf7-not-valid{
	border-color: red;
}

.wpcf7 form.invalid .wpcf7-response-output{
	display:none;
}

.wpcf7 form.sent .wpcf7-response-output{
	text-align: center;
    font-size: 14px;
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 0;
}

form input, form textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgb(226 232 240);
    font-family: inherit;
    transition: var(--transition);
    font-size: 15px;
    font-weight: 500;
    color: #a4aaaf;
}

form textarea{
	height:120px;
}

form input::placeholder,
form textarea::placeholder {
    color: #a4aaaf;
    opacity: 1; /* щоб у Firefox не був блідніший */
}

/* Safari / старі Chromium */
form input::-webkit-input-placeholder,
form textarea::-webkit-input-placeholder {
    color: #a4aaaf;
}

/* Firefox */
form input::-moz-placeholder,
form textarea::-moz-placeholder {
    color: #a4aaaf;
}

/* IE / Edge legacy */
form input:-ms-input-placeholder,
form textarea:-ms-input-placeholder {
    color: #a4aaaf;
}

form input:focus, form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

form input[type="submit"] {
    width: 100%;
    background: var(--gold);
    color: var(--white);
    padding: 16px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
	color:#0f172a;
}

.btn-submit:hover {
    background: var(--gold-dark);
}

/* --- Футер (Footer) --- */
footer {
    background-color: var(--slate-900);
    padding: 40px 0;
    background-color: #0f172a;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
}

footer .logo img{
	width:110px;
}

footer .logo-box {
    
}

footer .logo-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: rgba(255, 255, 255, 0.8);
}

.copyright {
    font-size: 14px;
    color: rgb(255 255 255 / 50%);
    line-height: 20px;
}

.switch{
	display: flex;
    gap: 18px;
    margin-left: 30px;
}

.switch li{
	list-style:none;
}

.switch li a{
	text-decoration:none;
	color:#fff;
}

.switch  li a img{
	
}

.switch .current-lang{
	font-weight:600;
}

.scrolled .switch li a{
	text-decoration:none;
	color:#1a365d;
}

@media(min-width:991px) and (max-height:820px){
	.hero{padding: 156px 0;min-height: 100%;}
}

@media (max-width: 991px) {
    .hero h1 { font-size: 48px; }
    .benefits-content, .contacts-grid { grid-template-columns: 1fr; gap: 40px; }
    nav { display: none; }
    .menu-toggle { display: block; }
	header .logo-text{display:none;}
	.section-title{font-size: 36px;line-height: 40px;}
	.gtranslate_wrapper{margin-left:0;}
	.hero-content{margin-top: -40px;}
}

@media (max-width: 767px) {
    .hero h1 { font-size: 36px;line-height: 55px; }
    .hero-btns { flex-direction: column; }
    .benefit-cards { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 576px) {
	.section-title{font-size: 30px;line-height: 36px;}
	.section-header p{font-size: 16px;line-height: 26px;}
	.benefits-descr{font-size: 16px;line-height: 26px;}
	.contacts p{font-size: 16px;line-height: 26px;}
	.services-grid {grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));}
	.service-card{padding: 20px;}
	.stat-item{padding: 12px;}
	.stat-value{font-size:32px;}
	.stats{gap: 15px;}
	.benefit-card{padding: 20px;}
	.info-text p:last-child{font-size: 14px;line-height: 20px;}
	.contact-form h3{text-align:center;}
	.contact-form{padding: 25px;}
	header .logo-box img{width:75px;}
	.btn-primary{padding: 16px 20px;justify-content: space-between;}
	.btn-outline{padding: 16px 20px;}
}

@media (max-width: 400px) {
	.gtranslate_wrapper{gap: 5px;}
	a.glink img{display: none !important;}
}

@media (max-width: 350px) {
	.hero h1 {font-size: 31px;line-height: 46px;}
}

@media(max-width:991px) and (max-height:760px){
	.hero{padding: 160px 0;min-height: 100%;}
}

@media(max-width:767px) and (max-height:780px){
	.hero{padding: 160px 0;min-height: 100%;}
}

@media(max-width:565px) and (max-height:860px){
	.hero{padding: 175px 0;min-height: 100%;}
}

@media(max-width:460px) and (max-height:820px){
	.hero{padding: 160px 0;min-height: 100%;}
}

@media(max-width:375px) and (max-height:850px){
	.hero{padding: 150px 0;min-height: 100%;}
}

/* Мобільне меню */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--slate-900);
    z-index: 2000;
    display: none;
    flex-direction: column;
    padding: 40px;
    text-align: center;
}

.mobile-menu a {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    margin: 20px 0;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
}