/* ===== Global Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #111;
    line-height: 1.7;
    background: #fff;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 100px 30px;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    background: url('https://www.delecondesigns.com/images/slider/Fr1.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
}

.nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 8%;
    z-index: 2;
}

.logo {
    font-family: 'Marcellus', serif;
    font-size: 28px;
    letter-spacing: 3px;
}

.logo span {
    color: #c8a45c;   /* Gold tone like DELECON */
}

.nav-links a {
    margin-left: 30px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #c8a45c;
}

.btn-nav {
    border: 1px solid #c8a45c;
    padding: 8px 18px;
}

/* ===== Hero Content ===== */
.hero-content {
    position: relative;
    margin: auto;
    text-align: center;
    max-width: 900px;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Marcellus', serif;
    font-size: 3.8rem;
    font-weight: 400;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.btn-main {
    background: #c8a45c;
    padding: 16px 45px;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-main:hover {
    background: #fff;
}

/* ===== Authority Section ===== */
.authority {
    background: #f8f8f8;
    text-align: center;
}

.authority h2 {
    font-family: 'Marcellus', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.authority p {
    max-width: 800px;
    margin: auto;
    margin-bottom: 60px;
    color: #555;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stats h3 {
    font-size: 2.2rem;
    color: #c8a45c;
}

/* ===== Services ===== */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}

.service-card {
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.07);
    border-radius: 8px;
    transition: 0.4s;
    background: #fff;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card h3 {
    font-family: 'Marcellus', serif;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

/* ===== Coverage ===== */
.coverage {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 120px 30px;
}

.coverage h2 {
    font-family: 'Marcellus', serif;
    font-size: 2.4rem;
    margin-bottom: 20px;
}

/* ===== Footer CTA ===== */
.footer-cta {
    text-align: center;
    padding: 120px 30px;
}

.btn-light {
    background: #111;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-light:hover {
    background: #c8a45c;
    color: #000;
}

/* ===== Footer ===== */
footer {
    background: #000;
    color: #777;
    text-align: center;
    padding: 40px 20px;
    font-size: 14px;
}/* =========================
   MOBILE RESPONSIVE FIX
========================= */

@media (max-width: 768px) {

    .nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
    }

    .nav-links {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-top: 15px;
    }

    .btn-main {
        padding: 12px 25px;
        font-size: 14px;
    }

    .logo {
        font-size: 20px;
    }

    .stats {
        flex-direction: column;
        gap: 30px;
    }

    .service-card {
        padding: 40px 25px;
    }

}.logo a {
    text-decoration: none;
    color: #fff;
}

.logo a:visited {
    color: #fff;
}
.logo span {
    color: #c8a45c;
}@media (max-width: 768px) {
    .hero {
        height: 90vh;
    }
}