/* =========================
   GLOBAL STYLES
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #222;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section {
    padding: 80px 0;
}

.section.light {
    background-color: #f4f4f4;
}

.section-title {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.section-text {
    text-align: center;
    max-width: 800px;
    margin: auto;
}

/* =========================
   HEADER
========================= */

.header {
    background: #000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.nav a.active,
.nav a:hover {
    color: #d4af37;
}

/* =========================
   HERO SECTION
========================= */

.hero {
    position: relative;
    height: 85vh;
    background: url("../assets/images/City-Wide-1.jpg") no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-primary {
    padding: 12px 28px;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #b9972f;
}

/* =========================
   SERVICES GRID
========================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* =========================
   MOBILE
========================= */

.menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

@media(max-width: 768px) {
    .nav ul {
        display: none;
        flex-direction: column;
        background: #000;
        position: absolute;
        top: 70px;
        right: 20px;
        padding: 20px;
    }

    .nav ul.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 32px;
    }
}
