* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Segoe UI', Arial, sans-serif;
color: #1a1a1a;
line-height: 1.6;
}

/* HEADER */
header {
background: #000;
color: #fff;
padding: 18px 40px;
display: flex;
justify-content: space-between;
align-items: center;
position: sticky;
top: 0;
z-index: 1000;
}

.logo {
font-size: 22px;
font-weight: 800;
}

nav a {
color: #fff;
margin-left: 30px;
text-decoration: none;
font-weight: 600;
}

nav a:hover {
color: #d00000;
}

/* HERO */
.hero {
background:
linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
url('https://images.unsplash.com/photo-1503376780353-7e6692767b70');
background-size: cover;
background-position: center;
padding: 120px 20px;
text-align: center;
color: #fff;
}

.hero h1 {
font-size: 42px;
margin-bottom: 15px;
}

.hero p {
font-size: 18px;
margin-bottom: 25px;
}

.hero .btn {
background: #d00000;
color: white;
padding: 15px 35px;
text-decoration: none;
font-weight: 700;
}

/* SECTIONS */
.section {
padding: 80px 20px;
text-align: center;
}

.section.dark {
background: #f5f5f5;
}

/* SERVICES */
.services {
max-width: 1100px;
margin: 40px auto 0;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.services div {
background: #fff;
padding: 30px;
border-top: 5px solid #d00000;
font-weight: 600;
box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* FORMS */
form {
max-width: 450px;
margin: auto;
display: flex;
flex-direction: column;
gap: 15px;
}

input, select, button {
padding: 14px;
font-size: 16px;
}

button {
background: #d00000;
color: white;
border: none;
font-weight: 700;
}

/* REVIEWS */
.review-btn {
display: inline-block;
margin-top: 25px;
background: #000;
color: #fff;
padding: 14px 30px;
text-decoration: none;
font-weight: 700;
}

/* MAP */
iframe {
width: 100%;
border: none;
margin-top: 30px;
}

/* FOOTER */
footer {
background: #000;
color: #fff;
padding: 20px;
}

/* FLOATING CALL */
.floating-call {
position: fixed;
bottom: 25px;
right: 25px;
background: #d00000;
color: #fff;
padding: 16px 24px;
font-size: 18px;
text-decoration: none;
border-radius: 50px;
font-weight: 700;
z-index: 9999;
}