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

body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.top-bar {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

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

.logo-wrap img {
    height: 75px; /* Increased size */
}

.phone {
    font-size: 1.1rem;
    font-weight: 600;
}

.phone a {
    text-decoration: none;
    color: #f47c20;
}

/* HERO */
.hero {
    position: relative;
    height: 85vh;
    background: url('splash.png') right center / cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    max-width: 650px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background: #f47c20;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #d76510;
}

/* SECTIONS */
section {
    padding: 80px 0;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.about p {
    max-width: 800px;
    margin: 15px auto;
    text-align: center;
}

/* SERVICES */
.services {
    background: #f9f9f9;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.service-item {
    background: #f47c20;
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s ease;
}

.service-item:hover {
    background: #d76510;
}

/* CONTACT */
.contact {
    background: #ffffff;
    text-align: center;
}

.contact-details p {
    margin: 8px 0;
    font-size: 1.1rem;
}

/* FOOTER */
footer {
    background: #222;
    color: #aaa;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* MOBILE */
@media (max-width: 768px) {

    .nav {
        flex-direction: column;
        gap: 10px;
    }

    .logo-wrap img {
        height: 60px;
    }

    .hero {
        height: auto;
        padding: 100px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

}
