/* ===========================================
   JUSTFIX Servisas
   Style.css
=========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Montserrat',sans-serif;
    background:#111;
    color:#fff;
    line-height:1.6;
}

.container{

    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ================= HEADER ================= */

header{

    position:relative;
    width:100%;
    top:0;
    left:0;

    background:rgba(15,15,15,.96);

    backdrop-filter:blur(8px);

    z-index:999;

    border-bottom:1px solid #222;

}

header .container{

    display:flex;
    justify-content:space-between;
    align-items:center;

    height:85px;
}

.logo h1{

    font-size:34px;
    font-weight:800;
}

.logo span{

    color:#ff8a00;
}

.logo p{

    color:#aaa;
    font-size:13px;
}

nav{

    display:flex;
    align-items:center;
    gap:25px;
}

nav a{

    text-decoration:none;
    color:white;
    transition:.3s;
    font-weight:600;
}

nav a:hover{

    color:#ff8a00;
}

.button{

    background:#ff8a00;

    padding:14px 28px;

    border-radius:8px;

    color:white;

    transition:.3s;
}

.button:hover{

    background:#ff9f2f;
}

/* ================= HERO ================= */

.hero {
    height: 100vh;

    background:
        linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)),
        url("../img/hero.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.70);
}

.hero-content{

    position:relative;

    z-index:2;

    max-width:700px;
}

.hero h2{

    font-size:60px;

    margin-bottom:25px;

    line-height:1.1;

    font-weight:800;
}

.hero p{

    color:#ddd;

    font-size:20px;

    margin-bottom:40px;
}

.hero-btn{

    display:inline-block;

    text-decoration:none;

    background:#ff8a00;

    color:white;

    padding:18px 40px;

    border-radius:8px;

    font-weight:700;

    transition:.3s;
}

.hero-btn:hover{

    background:#ff9f2f;

    transform:translateY(-3px);
}

/* ================= TITLES ================= */

section{

    padding:110px 0;
}

section h2{

    text-align:center;

    font-size:42px;

    margin-bottom:60px;
}

/* ================= SERVICES ================= */

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

.card{

    background:#1a1a1a;

    padding:40px;

    border-radius:14px;

    text-align:center;

    border:1px solid #2b2b2b;

    transition:.35s;
}

.card:hover{

    transform:translateY(-8px);

    border-color:#ff8a00;

    box-shadow:0 0 35px rgba(255,138,0,.15);
}

.card i{

    font-size:46px;

    color:#ff8a00;

    margin-bottom:25px;
}

.card h3{

    margin-bottom:15px;

    font-size:24px;
}

.card p{

    color:#ffb54d;

    font-size:22px;

    font-weight:700;
}

/* ================= ABOUT ================= */

.about{

    background:#171717;
}

.features{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;
}

.features div{

    text-align:center;

    background:#1f1f1f;

    padding:40px;

    border-radius:12px;

    transition:.3s;
}

.features div:hover{

    transform:scale(1.04);
}

.features i{

    color:#ff8a00;

    font-size:48px;

    margin-bottom:20px;
}

.features h3{

    font-size:22px;
}

/* ================= CONTACT ================= */

.contact{

    text-align:center;
}

.contact p{

    font-size:22px;

    margin-bottom:18px;

    color:#ddd;
}

.contact .hero-btn{

    margin-top:35px;
}

/* ================= FOOTER ================= */

footer{

    background:#0a0a0a;

    border-top:1px solid #222;

    padding:30px 0;

    text-align:center;

    color:#999;
}

/* ================= SCROLLBAR ================= */

::-webkit-scrollbar{

    width:10px;
}

::-webkit-scrollbar-track{

    background:#111;
}

::-webkit-scrollbar-thumb{

    background:#ff8a00;

    border-radius:30px;
}

::-webkit-scrollbar-thumb:hover{

    background:#ff9f2f;
}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){

header .container{

flex-direction:column;

height:auto;

padding:20px 0;
}

nav{

margin-top:20px;

flex-wrap:wrap;

justify-content:center;
}

.hero{

text-align:center;
}

.hero h2{

font-size:42px;
}

.hero p{

font-size:18px;
}

section h2{

font-size:34px;
}

.hero-btn{

padding:16px 28px;
}

}

@media(max-width:600px){

.hero{

height:90vh;
}

.hero h2{

font-size:34px;
}

.hero p{

font-size:17px;
}

.cards{

grid-template-columns:1fr;
}

.features{

grid-template-columns:1fr;
}

.contact p{

font-size:18px;
}

}
/* ================= BOOKING ================= */

.booking{

padding-top:150px;

min-height:100vh;

background:#111;
}

.booking h2{

margin-bottom:15px;
}

.booking-text{

text-align:center;

color:#bbb;

margin-bottom:50px;
}

form{

max-width:850px;

margin:auto;

background:#1a1a1a;

padding:45px;

border-radius:15px;

border:1px solid #2b2b2b;
}

.form-group{

display:flex;

flex-direction:column;

margin-bottom:25px;
}

.form-row{

display:grid;

grid-template-columns:1fr 1fr;

gap:20px;
}

label{

margin-bottom:10px;

font-weight:600;
}

input,
select,
textarea{

background:#252525;

border:1px solid #444;

color:white;

padding:15px;

border-radius:8px;

font-size:16px;

outline:none;
}

input:focus,
select:focus,
textarea:focus{

border-color:#ff8a00;
}

textarea{

resize:vertical;
}

.submit-btn{

width:100%;

padding:18px;

font-size:18px;

font-weight:700;

background:#ff8a00;

border:none;

border-radius:8px;

cursor:pointer;

color:white;

transition:.3s;
}

.submit-btn:hover{

background:#ff9f2f;
}

@media(max-width:768px){

.form-row{

grid-template-columns:1fr;
}

form{

padding:30px 20px;
}

}

/* ================= CONTACT ================= */

.contact {
    background: #171717;
    padding: 100px 0;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info p {
    font-size: 20px;
    color: #ddd;
    margin-bottom: 25px;
    line-height: 1.8;
}

.map {
    flex: 1;
}

.map iframe {
    width: 100%;
    height: 420px;
    border-radius: 15px;
    border: 3px solid #ff8a00;
    box-shadow: 0 15px 40px rgba(0,0,0,.4);
}

@media (max-width: 900px) {

    .contact-wrapper {
        flex-direction: column;
    }

    .map iframe {
        height: 320px;
    }

}