/* ===== FALCON INVESTIGATIONS ===== */

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

body{
font-family:Arial,Helvetica,sans-serif;
background:#0d0d0d;
color:#ffffff;
line-height:1.7;
}

header{
background:#111111;
padding:20px;
border-bottom:3px solid #d4af37;
position:sticky;
top:0;
z-index:999;
}

.logo{
font-size:34px;
font-weight:bold;
color:#d4af37;
}

.tagline{
color:#cccccc;
margin-top:8px;
}

nav{
margin-top:20px;
}

nav ul{
display:flex;
list-style:none;
gap:25px;
flex-wrap:wrap;
}

nav a{
color:#ffffff;
text-decoration:none;
font-weight:bold;
transition:.3s;
}

nav a:hover{
color:#d4af37;
}

section{
padding:70px 10%;
}

h1{
font-size:52px;
color:#d4af37;
margin-bottom:20px;
}

h2{
font-size:36px;
color:#d4af37;
margin-bottom:20px;
}

p{
font-size:18px;
color:#dddddd;
margin-bottom:18px;
}

.gold-btn{
display:inline-block;
background:#d4af37;
color:#111;
padding:14px 30px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
margin-right:15px;
}

.outline-btn{
display:inline-block;
border:2px solid #d4af37;
color:#d4af37;
padding:14px 30px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
}

.gold-btn:hover,
.outline-btn:hover{
opacity:.9;
}
/* ===== HERO ===== */

.hero{
min-height:90vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75));
padding:100px 20px;
}

.hero-content{
max-width:900px;
margin:auto;
}

.hero p{
font-size:22px;
margin:25px 0;
}

.hero-buttons{
margin-top:30px;
}

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

#services ul{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:20px;
list-style:none;
padding:0;
margin-top:30px;
}

#services li{
background:#181818;
padding:22px;
border-left:5px solid #d4af37;
border-radius:10px;
transition:.3s;
}

#services li:hover{
transform:translateY(-6px);
box-shadow:0 0 18px rgba(212,175,55,.35);
}

/* ===== ABOUT ===== */

#about,
#contact,
#enquiry{
background:#111;
border-radius:12px;
margin:40px auto;
}
/* ===== ENQUIRY FORM ===== */

form{
max-width:700px;
margin:auto;
}

input,
select,
textarea{
width:100%;
padding:14px;
margin:10px 0 20px;
background:#1b1b1b;
border:1px solid #444;
border-radius:6px;
color:#fff;
font-size:16px;
}

input:focus,
select:focus,
textarea:focus{
outline:none;
border-color:#d4af37;
box-shadow:0 0 10px rgba(212,175,55,.3);
}

button{
background:#d4af37;
color:#111;
padding:15px 35px;
border:none;
border-radius:6px;
font-size:18px;
font-weight:bold;
cursor:pointer;
transition:.3s;
}

button:hover{
background:#f1c84a;
}

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

footer{
background:#000;
padding:40px 20px;
text-align:center;
border-top:3px solid #d4af37;
margin-top:60px;
}

footer p{
margin:8px 0;
color:#bbb;
}

hr{
border:none;
height:1px;
background:#333;
margin:30px 0;
}
.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:70px;
    height:70px;
    object-fit:contain;
}

.logo h2{
    margin:0;
}

.logo p{
    margin:0;
}
