/* ---------- BASE ---------- */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f5f8ff;
    color: #1a1a1a;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- HEADER ---------- */
header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo img {
    height: 40px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
}

nav a:hover {
    color: #0056d6;
}

/* ---------- HERO ---------- */
.hero {
    background: url('static/images/chp_hero.png') center/cover no-repeat;
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    background-position-x: 88%;
    background-position-y: 25%;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

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

.hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
}

.hero ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.hero ul li {
    margin-bottom: 8px;
}

/* ---------- BUTTON ---------- */
.whatsapp-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 40px;
    font-size: 18px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}

/* ---------- SECTIONS ---------- */
.section {
    padding: 60px 24px;
    text-align: center;
}

.section h2 {
    font-size: 32px;
    color: #003f9e;
    margin-bottom: 20px;
}

/* ---------- CARDS ---------- */
.cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.card {
    background: white;
    width: 300px;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    text-align: left;
}

.card h3 {
    margin-top: 0;
    color: #0056d6;
}

/* ---------- PRICING ---------- */
.pricing {
    background: #e9f1ff;
}

/* ---------- CONTACT ---------- */
.contact-box p {
    margin: 10px 0;
}

.contact-box button {
    padding: 6px 10px;
    border-radius: 6px;
    border: none;
    background: #0056d6;
    color: white;
    cursor: pointer;
}

/* ---------- REVIEWS SECTION ---------- */
.reviews-section {
    padding: 60px 24px;
    background: #f5f8ff;
    text-align: center;
}

.reviews-section h2 {
    font-size: 32px;
    color: #003f9e;
    margin-bottom: 40px;
}

/* Layout */
.reviews-layout {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Review Card */
.review-card {
    background: white;
    width: 300px;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    text-align: left;
}

.review-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #0056d6;
}

/* Images inside card */
.review-images {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.review-images img {
    width: 50%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

/* Review text */
.review-card p {
    font-size: 14px;
    color: #444;
    margin-bottom: 16px;
}

/* Read more button */
.review-more-btn {
    background: transparent;
    border: 1px solid #0056d6;
    color: #0056d6;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.review-more-btn:hover {
    background: #0056d6;
    color: white;
}

/* Side Google review box */
.review-side-box {
    background: white;
    width: 260px;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    text-align: left;
}

.review-side-box h3 {
    margin-top: 0;
    color: #0056d6;
}

.review-side-box p {
    font-size: 14px;
    margin: 12px 0 20px;
    color: #444;
}

.google-review-btn {
    display: inline-block;
    background: #0056d6;
    color: white;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 600;
}


.review-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.review-images img {
    width: 220px;
    margin: 10px;
    border-radius: 10px;
}

.more-reviews {
    margin-top: 30px;
}

.more-reviews a {
    display: inline-block;
    padding: 12px 26px;
    background: #0056d6;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}

.review-note {
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 14px;
    color: #555;
}

/* ---------- FOOTER ---------- */
footer {
    background: #002a6e;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

/* ---------- HAMBURGER MENU ---------- */
.hamburger {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

/*  */
#wa-icon img {
    width: 30px;
    vertical-align: middle;
}

/* ======================================================
   RESPONSIVE BREAKPOINTS
   ====================================================== */

/* ---------- TABLET ---------- */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 16px;
    }

    .card {
        width: 280px;
    }
}

/* ---------- MOBILE ---------- */
@media (max-width: 600px) {
    header {
        flex-direction: row;
        gap: 10px;
        padding: 12px;
    }

    .logo img {
        height: 24px;
    }

    nav {
        display: flex;
        gap: 15px;
    }

    nav a {
        margin-left: 0;
        font-size: 14px;
    }

    .hero {
        align-items: end;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 15px;
    }

    .whatsapp-btn {
        width: 100%;
        font-size: 16px;
        padding: 14px;
    }

    .section {
        padding: 40px 16px;
    }

    .section h2 {
        font-size: 26px;
    }

    .cards {
        gap: 16px;
    }

    .card {
        width: 100%;
        max-width: 360px;
    }

    .reviews-layout {
        flex-direction: column;
        align-items: center;
    }

    .review-card,
    .review-side-box {
        width: 100%;
        max-width: 360px;
    }

    .review-images img {
        height: 120px;
    }

    .review-images img {
        width: 100%;
        max-width: 320px;
    }

    .hamburger {
        display: block;
    }

    nav {
        position: absolute;
        top: 64px;
        right: 16px;
        background: white;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        border-radius: 10px;
        display: none;
        flex-direction: column;
        min-width: 160px;
        padding: 10px 0;
        z-index: 999;
    }

    nav a {
        padding: 12px 20px;
        margin: 0;
        font-size: 16px;
        border-bottom: 1px solid #eee;
    }

    nav a:last-child {
        border-bottom: none;
    }

    nav.show {
        display: flex;
    }
}