html, body {
    height: 100%;
    margin: 0;
    scroll-behavior: smooth;
}

body {
    font-family: "hoss-round", sans-serif;
    font-weight: 400;
    font-style: normal;

    color: #333;
    line-height: 1.6;

    scroll-snap-type: y mandatory;
    overflow-y: scroll;
}

/* FULL PAGE SECTIONS */
header,
section {
    min-height: 100vh;

    scroll-snap-align: start;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 0 20px;
    box-sizing: border-box;
}

/* HERO */
header {
    background: #fbed52;
}

/* LOGO */
.logo {
    display: block;
    width: 100%;
    max-width: 1200px;
    height: auto;
}

.hero-text {
    font-size: 1.3rem;
    font-weight: 600;
    max-width: 800px;
    margin: 20px auto;
}

/* MOBILE */
@media (max-width: 768px) {
    header {
        padding: 60px 20px;
    }

    .logo {
        max-width: 400px;
    }

    .image1 {
        width: 90%;
        max-width: 350px;
        height: auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        grid-row: 1;
        align-items: center;
        text-align: center;
    }

    .contact-form {
        grid-row: 2;
    }

    .contact-icons {
        justify-content: center;
    }

    .name-row {
        flex-direction: column;
    }

    /* REVIEWS MOBILE FIX */
    .reviews-grid {
        flex-direction: column;
        max-width: 100%;
        padding: 0 10px;
        gap: 15px;
    }

    .review {
        padding: 20px 15px;
    }

    .reviews-section {
        padding-bottom: 100px;
    }

}

/* BUTTON */
.button {
    display: inline-block;
    background: transparent;
    border: 3px solid #000;
    border-radius: 5px;
    color: #000;
    text-decoration: none;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.button:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

.pricing-table {
    width: 100%;
    max-width: 700px;
    border-collapse: collapse;
    margin-top: 20px;
}

.pricing-table th,
.pricing-table td {
    border: 5px solid #000;
    padding: 15px;
    text-align: left;
}

.table-header th {
    background: #000;
    color: #fbed52;
    font-weight: 800;
    font-size: 1.1rem;
}

.pricing-table tr:nth-child(even):not(.table-header) {
    background: #f9f9f9;
}

.pricing-note {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
    max-width: 600px;
}

.section-aboutp {
    max-width: 700px;
    margin: 20px auto;
    text-align: center;
}

/* REVIEWS — FIXED CLEAN VERSION */
.reviews-section {
    background: #fbed52;
}

.image1 {
    width: 100%;
    max-width: 700px;
    height: auto;
}

/* DESKTOP: 3 CARDS */
.reviews-grid {
    width: 100%;
    max-width: 1200px;

    display: flex;
    flex-direction: row;
    gap: 20px;

    margin-top: 40px;
}

/* REVIEW CARD */
.review {
    flex: 1;

    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.08);

    text-align: left;
}

.review h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.stars {
    margin-bottom: 15px;
}

.stars img {
    width: 120px;
    height: auto;
    display: block;
}

.review p {
    margin: 0;
}

/* CONTACT */
.contact-section {
    background: #fff;
}

.contact-grid {
    width: 100%;
    max-width: 1000px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 60px;
    margin-top: 40px;
}

/* LEFT SIDE */
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: center;
}

.contact-email,
.contact-phone {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 3px 0;
}

.contact-icons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-top: 70px;
}

.contact-icons img {
    width: 60px;
    height: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

/* RIGHT SIDE FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    border: 5px solid #000;
    padding: 12px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

.name-row {
    display: flex;
    gap: 15px;
}

.name-row input {
    flex: 1;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    background: transparent;
    border: 5px solid #000;
    padding: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #000;
    color: #fff;
}

/* FOOTER */
footer {
    background: #f4f4f4;
    text-align: center;
    padding: 20px;
}
