/* ======================================================
   HERO
====================================================== */

.nes-service-hero {
    min-height: 560px;
    background: #f4f3f1;
    display: flex;
    align-items: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.nes-service-hero-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 0px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.nes-service-hero-card {
    background: rgba(255,255,255,0.80);
    border-radius: 20px;
    padding: 35px 32px;
}

.nes-form-wrapper h2 {
    text-align: center;
    font-size: 20px;
    color: #878787;
}
.nes-service-title {
    margin: 0 0 30px;
    font-size: clamp(42px, 5vw, 46px);
    line-height: 1.5;
    font-weight: 700;
    color: #242529;
}
.nes-service-intro {
    max-width: 480px;
    margin-bottom: 35px;
    font-size: 19px;
    line-height: 1.5;
    color: #4f555c;
}
.nes-primary-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    border: 2px solid #22a477;
    border-radius: 12px;
    background: #ffffff;
    color: #15956d;
    font-weight: 700;
    text-decoration: none;
}
.nes-primary-button:hover {
    background: #22a477;
    color: #ffffff;
}

/* ======================================================
   CONTENT
====================================================== */

.nes-service-content-section {
    padding: 90px 30px;
}
.nes-contact-info h3 {
    font-size: 16px;
    font-weight: 700;
}

.nes-service-content-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 55px;
}


.nes-service-blurb {
    color: #313233;
    font-size: 18px;
    line-height: 1.7;
}


.nes-service-blurb h2 {
    margin-top: 32px;
    margin-bottom: 18px;
    color: #071f3b;
    font-size: 30px;
}
.nes-info-icon-sidebar img {
	width: 40px !important;
	height: 40px !important;
	
}

.nes-service-blurb hr {
    border: 0;
    border-top: 1px solid #bdbdbd;
    margin: 25px 0;
}


.nes-service-blurb li {
    margin-bottom: 8px;
}


/* ======================================================
   SIDEBAR
====================================================== */

.nes-service-sidebar {
    position: sticky;
    top: 100px;
}


.nes-sidebar-card {
	padding: 32px;
    background: #e4e4e4;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
    position: sticky;
    top: 100px;
}


.nes-sidebar-card h2 {
    margin: 0 0 10px;
    font-size: 20px;
}

.nes-sidebar-card p {
    color: #62666c;
    line-height: 1.5;
}


.nes-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}


.nes-contact-item a {
    color: #62666c;
    text-decoration: none;
}


.nes-sidebar-button {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border-radius: 10px;
    background: #22a477;
    color: #ffffff;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
}

/* ======================================================
   CONTACT SECTION
====================================================== */

.nes-appointment-section {
    padding: 0 30px 90px;
}

.nes-appointment-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    background: #f1f1f1;
    border-radius: 20px;
    overflow: hidden;
}

.nes-form-wrapper {
    padding: 20px 32px;
	background-color: #e4e4e4;
}


.nes-map-wrapper iframe {
    display: block;
    width: 100%;
    min-height: 400px;
}

.nes-contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
    padding: 28px 20px 10px 0px;
}

.nes-info-box {
    text-align: center;
}


.nes-info-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 12px;
}


.nes-info-box a {
    color: #20a477;
    text-decoration: none;
}


/* ======================================================
   MOBILE
====================================================== */

@media (max-width: 767px) {

    .nes-service-hero-container {
        display: flex;
        flex-direction: column;
        padding: 50px 20px;
    }
    .nes-service-title {
        font-size: 38px;
    }

    .nes-service-image {
        height: 300px;
    }

    .nes-service-content-section {
        padding: 50px 20px;
    }
    .nes-service-content-container {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }


    .nes-service-sidebar {
        position: static;
    }


    .nes-appointment-section {
        padding: 0 20px 50px;
    }


    .nes-appointment-container {
        grid-template-columns: 1fr;
    }


    .nes-contact-info {
        grid-template-columns: 1fr;
    }

}