/* ===================================================
   WINNER CARR
   GLOBAL STYLES
=================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:var(--font);
    background:var(--white);
    color:var(--text);
    line-height:1.7;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    transition:var(--transition);
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:var(--container);
    margin:auto;
}

/* ============================
HEADER
============================ */

.header{
    width:100%;
    background:#08192D;
    position:sticky;
    top:0;
    z-index:9999;
    box-shadow:var(--shadow);
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:100px;
}

.logo img{
    width:230px;
    height:auto;
    display:block;
}

.navbar ul{
    display:flex;
    gap:35px;
}

.navbar a{
    color:#ffffff;
    font-weight:600;
    font-size:15px;
}

.navbar a:hover{
    color:#D4AF37;
}

.header-right{
    display:flex;
    align-items:center;
    gap:18px;
}

.header-right i{
    color:#ffffff;
    font-size:18px;
}

.call-btn{
    background:#D4AF37;
    color:#08192D;
    padding:12px 24px;
    border-radius:40px;
    font-weight:700;
}

.call-btn:hover{
    transform:translateY(-3px);
}

/* ===================================================
HERO SECTION
=================================================== */

.hero{

    position:relative;

    min-height:760px;

    background:url("../images/hero-bg.jpg") center center/cover no-repeat;

    display:flex;

    align-items:center;

    overflow:hidden;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(8,25,45,.80),
        rgba(8,25,45,.75)
    );

}

.hero-wrapper{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1fr 420px;

    align-items:center;

    gap:70px;

    padding:120px 0 90px;

}

.hero-left{

    color:#fff;

}

.hero-tag{

    display:inline-block;

    color:#D4AF37;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:20px;

    text-transform:uppercase;

}

.hero-left h1{

    font-size:64px;

    line-height:1.1;

    font-weight:800;

    margin-bottom:25px;

}

.hero-left h1 span{

    color:#D4AF37;

}

.hero-left p{

    font-size:22px;

    color:#e4e4e4;

    margin-bottom:35px;

}

.hero-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    margin-bottom:40px;

}

.hero-features div{

    background:rgba(255,255,255,.08);

    padding:16px 18px;

    border-radius:12px;

    backdrop-filter:blur(5px);

    font-weight:600;

}

.hero-btn{

    display:inline-block;

    background:#D4AF37;

    color:#08192D;

    padding:18px 42px;

    border-radius:50px;

    font-weight:700;

}

.hero-btn:hover{

    transform:translateY(-4px);

}

.hero-form{

    background:#ffffff;

    padding:35px;

    border-radius:22px;

    box-shadow:0 20px 60px rgba(0,0,0,.30);

}

.hero-form h2{

    color:#08192D;

    margin-bottom:25px;

    font-size:28px;

}

.hero-form input,
.hero-form select,
.hero-form textarea{

    width:100%;

    padding:15px;

    border:1px solid #ddd;

    border-radius:10px;

    margin-bottom:18px;

    font-size:15px;

    font-family:inherit;

}

.hero-form textarea{

    height:120px;

    resize:none;

}

.hero-form button{

    width:100%;

    background:#D4AF37;

    color:#08192D;

    border:none;

    padding:18px;

    border-radius:10px;

    cursor:pointer;

    font-weight:700;

    font-size:17px;

}

.hero-form button:hover{

    background:#c89d1d;

}