:root{
    --olive-dark:#2f3326;
    --olive:#3f4633;
    --olive-light:#6b7355;
    --olive-accent:#9aa27b;
    --parchment:#e6e2cf;
    --border:#8b8f6a;
}

*{box-sizing:border-box;}

body{
    margin:0;
    font-family:"Courier New",monospace;
    color:var(--parchment);
    background:black;
}

/* BACKGROUND */

body::before{
    content:"";
    position:fixed;
    inset:0;
    background:
        linear-gradient(rgba(25,28,20,.85),rgba(25,28,20,.95)),
        url("../images/bg.jpg") center/cover no-repeat;
    z-index:-2;
}

.container{
    max-width:900px;
    margin:40px auto;
    padding:30px;
    background:rgba(20,23,17,.95);
    border:2px solid var(--border);
    box-shadow:0 0 40px rgba(0,0,0,.9);
}

/* NAV */

.top-nav{
    position:sticky;
    top:0;
    background:rgba(20,23,17,.95);
    border-bottom:1px solid var(--olive-light);
    z-index:100;
}

.nav-inner{
    max-width:900px;
    margin:auto;
    display:flex;
    gap:20px;
    padding:10px;
}

.top-nav a{
    color:var(--parchment);
    text-decoration:none;
    font-size:13px;
}

.cta-nav{
    margin-left:auto;
    background:var(--olive-accent);
    color:black;
    padding:6px 12px;
}

/* HEADER */

h1{
    margin:0;
    font-size:26px;
    padding-left:15px;
    border-left:6px solid var(--olive-accent);
}

.subtitle{
    margin-top:10px;
    color:var(--olive-accent);
    font-size:13px;
    border-bottom:1px solid var(--olive-light);
    padding-bottom:10px;
}

/* SERVICES */

.service{
    margin-top:20px;
    padding:18px;
    border:1px solid var(--olive-light);
    background:rgba(255,255,255,.02);
    position:relative;
}

.service::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    width:4px;
    background:var(--olive-accent);
}

.service-header{
    display:flex;
    justify-content:space-between;
    cursor:pointer;
}

.service-title{
    font-weight:bold;
}

.service-arrow{
    font-size:20px;
    color:var(--olive-accent);
}

.service-content{
    max-height:0;
    overflow:hidden;
    transition:.3s;
    opacity:0;
}

.service.open .service-content{
    max-height:500px;
    opacity:1;
    margin-top:10px;
}

.service-link{
    display:inline-block;
    margin-top:10px;
    color:var(--olive-accent);
    text-decoration:none;
}

.hint{
    margin-top:10px;
    font-size:12px;
    color:var(--olive-accent);
    font-style:italic;
}

/* FORM */

input,textarea{
    width:100%;
    padding:12px;
    margin-top:10px;
    background:#1b1e15;
    border:1px solid var(--olive-light);
    color:var(--parchment);
}

button{
    margin-top:15px;
    padding:14px;
    background:var(--olive-accent);
    border:none;
    font-weight:bold;
    cursor:pointer;
}

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

/* FLOAT */

.floating-buttons{
    position:fixed;
    right:15px;
    bottom:15px;
    display:flex;
    flex-direction:column;
    gap:10px;
    z-index:999;
}

.float-btn{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:6px;
    text-decoration:none;
    font-weight:bold;
}

.call{background:#9aa27b;color:black}
.tg{background:#2AABEE;color:white}
.vb{background:#665CAC;color:white}

.footer-row{
    margin-top:5px;
    text-align:center;
}
.success{
    display:none;
    margin-top:15px;
    border:1px solid #9aa27b;
    padding:15px;
    text-align:center;
    color:#9aa27b;
}
@media(max-width:600px){
    .container{margin:10px;padding:20px}
    .float-btn{width:60px;height:60px}
}
