/* RESET */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f5f7fa;
}

/* CONTAINER */
.container {
    width: 95%;
    max-width: 1300px;
    margin: auto;
}

/* HEADER */
header {
    background: #0a2a43;
    color: #fff;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

/* HERO */
.hero {
    background: url('../images/packers.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 180px 20px;
}

.hero h1 {
    font-size: 42px;
}

.hero p {
    font-size: 18px;
}

.hero-phone {
    margin: 10px 0;
}

/* BUTTON */
.btn {
    background: #ff6600;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
}

/* SECTIONS */
section {
    padding: 80px 0;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

/* TRUST */
.trust-line {
    text-align: center;
    font-weight: bold;
    background: white;
    padding: 20px;
}

/* SERVICES */
.service-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.service-box div {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.service-box h3 {
    margin-bottom: 10px;
}

/* WHY */
.why {
    background: #eef2f5;
}

.why-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.why-box div {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
}

/* REVIEWS */
.review-box {
    background: white;
    padding: 20px;
    margin: 15px auto;
    max-width: 500px;
    text-align: center;
    border-radius: 8px;
}

/* CTA */
.cta {
    background: #0a2a43;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

/* CONTACT */
.contact input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

.contact button {
    width: 100%;
    padding: 12px;
    background: green;
    color: white;
    border: none;
}

/* ABOUT */
.about {
    text-align: center;
}

/* FOOTER */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    header .container {
        flex-direction: column;
        text-align: center;
    }

    nav {
        margin-top: 10px;
    }

    nav a {
        display: inline-block;
        margin: 5px;
        font-size: 13px;
    }

    .hero {
        padding: 120px 15px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 14px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .service-box {
        grid-template-columns: 1fr;
    }

    .why-box {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 22px;
    }

    p {
        font-size: 14px;
    }

    .contact form {
        padding: 0 10px;
    }

    .cta h2 {
        font-size: 22px;
    }
}
.page {
    padding: 80px 0;
    text-align: center;
}

.page p {
    max-width: 700px;
    margin: 10px auto;
}
/* SERVICES PAGE */
.page-intro {
    max-width: 800px;
    margin: 10px auto 20px;
    color: #555;
    text-align: center;
}

.service-content {
    margin-top: 50px;
    text-align: center;
}

.service-content p {
    max-width: 800px;
    margin: 10px auto;
    color: #555;
}

/* MOBILE FIX FOR SERVICES PAGE */
@media (max-width: 768px) {
    .page-intro {
        font-size: 14px;
        padding: 0 10px;
    }

    .service-content p {
        font-size: 14px;
        padding: 0 10px;
    }
}
/* ABOUT PAGE */
.about-content {
    margin-top: 40px;
    text-align: center;
}

.about-content p {
    max-width: 800px;
    margin: 10px auto;
    color: #555;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 20px auto;
}

.about-list li {
    margin: 8px 0;
    font-weight: 500;
}
/* CONTACT PAGE */
.contact-info {
    text-align: center;
    margin: 20px 0;
}

.contact-buttons {
    text-align: center;
    margin: 20px 0;
}

.contact-buttons .btn {
    margin: 5px;
}

.whatsapp-btn {
    background: #25D366;
}

.contact-form {
    max-width: 500px;
    margin: 30px auto;
}

.contact-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background: green;
    color: white;
    border: none;
}
.logo {
    height: 50px;
}
/* HERO FIX (TEXT VISIBILITY) */

.hero {
    position: relative;
    background: url('../images/packers.jpg') center/cover no-repeat;
    padding: 200px 20px;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5); /* dark layer */
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    margin-top: 10px;
}

.hero-phone {
    color: #ffcc00;
    font-weight: bold;
}