/*==============================
    RESET
==============================*/

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Montserrat',sans-serif;

    background:#0b0b0b;

    color:#fff;

    line-height:1.6;

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    color:inherit;

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:min(1320px,92%);

    margin:auto;

}

/*==============================
    COLORS
==============================*/

:root{

    --bg:#0b0b0b;

    --card:#141414;

    --card2:#1a1a1a;

    --gold:#c89a63;

    --goldHover:#ddb27c;

    --text:#ffffff;

    --gray:#b8b8b8;

    --border:#292929;

}

/*==============================
    BUTTONS
==============================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    height:56px;

    padding:0 34px;

    border-radius:12px;

    background:var(--gold);

    color:#111;

    font-weight:700;

    transition:.3s;

    cursor:pointer;

}

.btn:hover{

    background:var(--goldHover);

    transform:translateY(-3px);

}

.btn-outline{

    background:transparent;

    border:1px solid var(--gold);

    color:white;

}

.btn-outline:hover{

    background:var(--gold);

    color:#111;

}

/*==============================
    HEADER
==============================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    background:rgba(8,8,8,.95);

    backdrop-filter:blur(15px);

    border-bottom:1px solid #202020;

}

.header .container{

    height:92px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    display:flex;

    align-items:center;

    gap:18px;

}

.logo img{

    width:62px;

}

.logo h2{

    font-size:30px;
	line-height:1.2;
    font-weight:800;

}

.logo span{

    color:var(--gold);

}

.logo p{

    color:var(--gold);

    letter-spacing:5px;

    font-size:13px;

}

.nav{

    display:flex;

    gap:40px;

}

.nav a{

    position:relative;

    transition:.3s;

}

.nav a:hover{

    color:var(--gold);

}

.nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.3s;

}

.nav a:hover::after{

    width:100%;

}

/*==============================
    HERO
==============================*/

.hero{

    padding-top:170px;

    padding-bottom:120px;

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

}

.subtitle{

    color:var(--gold);

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

}

.hero h1{

    font-size:72px;

    line-height:1.05;

    margin:25px 0;

}

.hero p{

    color:var(--gray);

    max-width:620px;

    font-size:19px;

}

.hero-buttons{

    margin-top:45px;

    display:flex;

    gap:18px;

}

.hero-features{

    display:flex;

    gap:40px;

    margin-top:45px;

    color:var(--gold);

    flex-wrap:wrap;

}

.hero-image{

    display:flex;

    justify-content:flex-end;

}

.hero-image img{

    width:100%;

    max-width:650px;

    filter:drop-shadow(0 40px 70px rgba(0,0,0,.7));

}

/*==============================
    TITLES
==============================*/

.section-title{

    text-align:center;

    font-size:48px;

    margin-bottom:70px;

}

/*==============================
    SERVICES
==============================*/

.services{

    padding:110px 0;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}

.card{

    background:linear-gradient(180deg,#181818,#111);

    border:1px solid var(--border);

    border-radius:22px;

    padding:45px 35px;

    transition:.35s;

    cursor:pointer;

}

.card:hover{

    transform:translateY(-12px);

    border-color:var(--gold);

    box-shadow:0 25px 60px rgba(0,0,0,.45);

}

.card h3{

    font-size:30px;

    margin-bottom:18px;

}

.card p{

    color:var(--gray);

}

/*==============================
    STATS
==============================*/

.stats{

    padding:120px 0;

}

.stats .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}

.stat{

    background:var(--card);

    border-radius:20px;

    padding:55px;

    text-align:center;

    border:1px solid var(--border);

}

.stat h3{

    font-size:62px;

    color:var(--gold);

    margin-bottom:10px;

}

.stat p{

    color:var(--gray);

}

/*==============================
    WORKFLOW
==============================*/

.workflow{

    padding:120px 0;

}

.workflow-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:22px;

}

.step{

    background:var(--card);

    border-radius:20px;

    border:1px solid var(--border);

    padding:40px 25px;

    text-align:center;

    transition:.3s;

}

.step:hover{

    border-color:var(--gold);

    transform:translateY(-8px);

}

.step span{

    width:58px;

    height:58px;

    border-radius:50%;

    background:var(--gold);

    color:#111;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    font-size:24px;

    font-weight:700;

}

.step h4{

    margin:25px 0 15px;

    font-size:24px;

}

.step p{

    color:var(--gray);

}

/*==============================
    CONTACTS
==============================*/

.contacts{

    padding:120px 0;

}

.contacts-grid{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:50px;

    align-items:stretch;

}

.contact-info{

    background:#151515;

    border:1px solid #292929;

    border-radius:20px;

    padding:40px;

}

.contact-item{

    display:flex;

    gap:15px;

    margin-bottom:25px;

    align-items:flex-start;
	align-items: center;

}

.contact-item span{

    color:var(--gold);

    font-size:22px;

}

.contact-item a{

    color:white;
	align-items: center;

}

.contact-item a:hover{

    color:var(--gold);

}

.qr{

    margin-top:40px;

    text-align:center;

}

.qr img{

    width:180px;

    margin:auto;

}

.qr p{

    margin-top:15px;

    color:var(--gray);

}

.map iframe{

    width:100%;

    height:100%;

    min-height:520px;

    border:none;

    border-radius:20px;

}

form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

input,
textarea{

    background:#141414;

    border:1px solid #292929;

    color:white;

    border-radius:12px;

    padding:18px;

    font-size:16px;

    font-family:inherit;

    outline:none;

    transition:.3s;

}

input:focus,
textarea:focus{

    border-color:var(--gold);

}

textarea{

    resize:none;

    height:170px;

}

/*==============================
    FOOTER
==============================*/

.footer{

    border-top:1px solid #202020;

    padding:35px 0;

    text-align:center;

    color:#8b8b8b;

}

/*==============================
    ANIMATIONS
==============================*/

.card,
.stat,
.step,
.btn,
.hero-image img{

    transition:.35s ease;

}

.hero-image img:hover{

    transform:scale(1.03);

}

/*=============================
    SCROLL HEADER
=============================*/

.header.scrolled{

    background:#090909;

    box-shadow:0 15px 40px rgba(0,0,0,.45);

}

/*=============================
    ACTIVE MENU
=============================*/

.nav a.active{

    color:var(--gold);

}

/*=============================
    SCROLL ANIMATION
=============================*/

.reveal{

    opacity:0;

    transform:translateY(40px);

    transition:.8s;

}

.show{

    opacity:1;

    transform:translateY(0);

}