:root {
    --primary: #ff6b00;
    --dark: #1a1a1a;
    --light: #f4f4f4;
    --text: #333;
    --white: #ffffff;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary);
}

.hero {
    height: 85vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero-content {
    width: 100%;
}

.hero-content h1 {
    font-size: 5rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    transition: background 0.3s;
}

.btn:hover {
    background: #e65a00;
}

.services-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 100px 20px;
}

.service-card {
    text-align: center;
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 25px;
    border-bottom: 5px solid var(--primary);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.location-banner {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.location-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

footer {
    background: #000;
    color: #888;
    padding: 40px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    nav ul {
        display: none;
    }
}
