@font-face {
    font-family: bootstrap-icons;
    src: url(bootstrap-icons.woff2) format("woff2"), url(bootstrap-icons.woff) format("woff")
}

:root {
    --navy: #0b6ea3;
    --navy-2: #1480b8;
    --blue: #1d96d8;
    --sky: #dff3fc;
    --aqua: #22b99a;
    --aqua-dark: #12846e;
    --ink: #09364f;
    --muted: #4a6f8a;
    --line: #bdddf2;
    --pale: #eef7fd;
    --white: #fff;
    --radius: 6px;
    --shadow: 0 18px 50px rgba(11, 110, 163, .1);
    --header-h: 82px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.7;
    background: #fff;
    overflow-x: hidden;
    padding-bottom: 0
}

img {
    display: block;
    max-width: 100%
}

a {
    text-decoration: none
}

h1,
h2,
h3,
.navbar-brand strong {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0
}

h2 {
    font-size: clamp(2rem, 4vw, 3.55rem);
    margin-bottom: 1.1rem
}

h3 {
    font-size: 1.35rem
}

.container {
    max-width: 1240px
}

.section {
    padding: 110px 0
}

.skip-link {
    position: fixed;
    left: 1rem;
    top: -100px;
    z-index: 9999;
    background: var(--white);
    color: var(--navy);
    padding: .75rem 1rem
}

.skip-link:focus {
    top: 1rem
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: var(--aqua-dark);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 1rem
}

.eyebrow:before {
    content: "";
    width: 30px;
    height: 2px;
    background: currentColor
}

.eyebrow.text-white {
    color: #fff
}

.btn {
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: .01em;
    padding: .78rem 1.15rem;
    display: inline-flex;
    gap: .55rem;
    align-items: center;
    justify-content: center
}

.btn-lg {
    padding: 1rem 1.4rem;
    font-size: 1rem
}

.btn-brand,
.btn-darkblue {
    background: var(--navy);
    border: 1px solid var(--navy);
    color: #fff
}

.btn-brand:hover,
.btn-darkblue:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    transform: translateY(-2px)
}

.btn-accent {
    background: var(--aqua);
    border-color: var(--aqua);
    color: #052e2a
}

.btn-accent:hover {
    background: #fff;
    border-color: #fff;
    color: var(--navy);
    transform: translateY(-2px)
}

.btn,
.service-card,
.why-card {
    transition: .25s ease
}

.site-header {
    background: rgba(255, 255, 255, .97);
    transition: .25s;
    z-index: 1040
}

.site-header.scrolled {
    box-shadow: 0 8px 30px rgba(11, 110, 163, .1)
}

.navbar {
    min-height: var(--header-h);
    padding: .7rem 0
}

.navbar-brand {
    color: var(--navy);
    min-width: 0
}

.navbar-brand img {
    width: auto;
    height: clamp(44px, 7.5vw, 64px);
    max-height: 64px;
    object-fit: contain;
    object-position: left center;
    margin-right: .75rem;
    flex-shrink: 0
}

.navbar-brand span,
.footer-brand span {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.navbar-brand strong,
.footer-brand strong {
    font-size: 1.38rem
}

.navbar-brand small,
.footer-brand small {
    font-size: .67rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
    margin-top: .35rem;
    white-space: nowrap
}

.nav-link {
    font-size: .88rem;
    color: var(--ink);
    font-weight: 650;
    padding: .7rem .65rem !important;
    position: relative
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue)
}

.nav-link:after {
    content: "";
    position: absolute;
    bottom: .25rem;
    left: .65rem;
    right: .65rem;
    height: 2px;
    background: var(--aqua);
    transform: scaleX(0);
    transition: .2s
}

.nav-link.active:after {
    transform: scaleX(1)
}

.navbar-toggler {
    border: 0;
    padding: .5rem
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(34, 185, 154, .25)
}

.hero {
    position: relative;
    min-height: 790px;
    padding-top: var(--header-h);
    color: #fff;
    background: linear-gradient(90deg, rgba(5, 40, 75, .94) 0%, rgba(5, 40, 75, .72) 48%, rgba(5, 40, 75, .12) 79%), url(../assets/images/hero.jpg) center/cover no-repeat
}

.hero:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 30%;
    background: linear-gradient(transparent, rgba(5, 40, 70, .3));
    pointer-events: none
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: clamp(6rem, 11vh, 9rem);
    padding-bottom: 180px
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5.25rem);
    max-width: 880px;
    margin-bottom: 1.5rem;
    color: #fff
}

.hero-lead {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    max-width: 720px;
    color: rgba(255, 255, 255, .82);
    line-height: 1.65
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem
}

.hero .btn-outline-light {
    border-color: rgba(255, 255, 255, .65);
    color: #fff
}

.hero .btn-outline-light:hover {
    background: #fff;
    color: var(--navy)
}

.trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    color: #dceaf1;
    font-size: .9rem
}

.trust-line i {
    color: var(--aqua);
    margin-right: .25rem
}

.hero-strip {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(8, 60, 100, .95);
    border-top: 1px solid rgba(255, 255, 255, .14)
}

.hero-strip .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

.hero-strip .container>div {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, .12)
}

.hero-strip i {
    font-size: 1.8rem;
    color: var(--aqua)
}

.hero-strip span {
    display: flex;
    flex-direction: column
}

.hero-strip small {
    color: #b8ccd7
}

.about {
    background: #fff
}

.about-image {
    position: relative;
    padding: 0 1.5rem 1.5rem 0
}

.about-image:after {
    content: "";
    position: absolute;
    inset: 2rem 0 0 2rem;
    background: var(--sky);
    z-index: 0
}

.about-image img {
    position: relative;
    z-index: 1;
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: var(--shadow)
}

.image-note {
    position: absolute;
    z-index: 2;
    right: -.5rem;
    bottom: -.5rem;
    background: var(--navy);
    color: #fff;
    padding: 1rem 1.3rem;
    display: flex;
    align-items: center;
    gap: .65rem;
    font-weight: 700;
    box-shadow: var(--shadow)
}

.image-note i {
    color: var(--aqua)
}

.about .lead {
    font-size: 1.25rem;
    color: var(--navy);
    font-weight: 600
}

.about p:not(.eyebrow) {
    color: var(--muted)
}

.check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .7rem 1rem;
    padding: 0;
    margin: 1.8rem 0;
    list-style: none;
    font-weight: 650
}

.check-grid i {
    background: var(--sky);
    color: var(--aqua-dark);
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: .35rem
}

.mission-row {
    margin-top: 80px
}

.purpose-card {
    height: 100%;
    padding: 2rem;
    background: var(--pale);
    border-left: 3px solid var(--aqua);
    display: flex;
    gap: 1.2rem
}

.purpose-card p {
    margin: 0
}

.purpose-icon {
    flex: 0 0 52px;
    height: 52px;
    background: var(--navy);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.4rem
}

.card-kicker {
    font-size: .72rem;
    color: var(--aqua-dark);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em
}

.purpose-card h3 {
    margin: .35rem 0 .7rem
}

.services {
    background: var(--pale)
}

.section-heading {
    max-width: 730px;
    margin: 0 auto 3rem;
    text-align: center
}

.section-heading .eyebrow {
    justify-content: center
}

.section-heading p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.08rem
}

.service-grid>div:last-child {
    margin-left: auto;
    margin-right: auto
}

.service-card {
    position: relative;
    height: 100%;
    background: #fff;
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: transparent
}

.service-no {
    position: absolute;
    right: 1.25rem;
    top: .8rem;
    font: 700 3.5rem Georgia, serif;
    color: #edf3f5
}

.service-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    background: var(--sky);
    color: var(--blue);
    font-size: 1.55rem;
    border-radius: 4px;
    margin-bottom: 1.5rem
}

.service-card h3 {
    font-size: 1.4rem;
    position: relative
}

.service-card p {
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.65
}

.service-card a,
.text-link {
    color: var(--navy);
    font-weight: 800;
    font-size: .88rem
}

.service-card a i,
.text-link i {
    margin-left: .35rem;
    transition: .2s
}

.service-card a:hover i,
.text-link:hover i {
    margin-left: .7rem
}

.callout {
    background: var(--pale)
}

.callout-inner {
    background: var(--navy);
    color: #fff;
    padding: 3.2rem 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden
}

.callout-inner:after {
    content: "";
    position: absolute;
    right: 28%;
    top: -80px;
    width: 180px;
    height: 260px;
    border: 1px solid rgba(255, 255, 255, .1);
    transform: rotate(25deg)
}

.callout h2 {
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    margin: .3rem 0
}

.callout p {
    color: #bfd0da;
    margin: 0
}

.callout .btn {
    position: relative;
    z-index: 2;
    flex: none
}

.results {
    background: #fff
}

.disclaimer {
    display: inline-block;
    color: var(--muted);
    font-size: .78rem;
    margin-top: .8rem
}

.comparison-feature,
.comparison {
    position: relative;
    overflow: hidden;
    background: #cdd7dc;
    user-select: none;
    touch-action: pan-y
}

.comparison-feature {
    aspect-ratio: 16/7
}

.comparison {
    aspect-ratio: 3/2
}

.comparison-feature>img,
.comparison>img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none
}

.after-image {
    position: absolute;
    inset: 0;
    clip-path: inset(0 0 0 50%)
}

.compare-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 5
}

.compare-handle {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #fff;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 4
}

.compare-handle i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--navy);
    font-size: 1.15rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .22)
}

.compare-label {
    position: absolute;
    top: 1rem;
    z-index: 4;
    background: rgba(5, 45, 80, .85);
    color: #fff;
    padding: .35rem .75rem;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    pointer-events: none
}

.compare-label.before {
    left: 1rem
}

.compare-label.after {
    right: 1rem;
    background: var(--aqua-dark)
}

.compare-title {
    position: absolute;
    z-index: 4;
    bottom: 1.5rem;
    left: 1.5rem;
    background: #fff;
    padding: 1rem 1.3rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    pointer-events: none
}

.compare-title span {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--aqua-dark);
    font-weight: 800
}

.compare-title strong {
    font: 700 1.35rem Georgia, serif
}

.comparison-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: .75rem;
    box-shadow: 0 8px 28px rgba(11, 110, 163, .06)
}

.comparison-card h3 {
    margin: 1.1rem .6rem .6rem
}

.why {
    background: var(--sky)
}

.sticky-heading {
    position: sticky;
    top: 120px
}

.sticky-heading p:not(.eyebrow) {
    color: var(--muted)
}

.why-card {
    background: #fff;
    border-bottom: 2px solid transparent;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    gap: 1rem
}

.why-card:hover {
    border-color: var(--aqua);
    box-shadow: 0 10px 28px rgba(11, 110, 163, .08)
}

.why-card>i {
    flex: 0 0 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: #fff;
    font-size: 1.2rem
}

.why-card h3 {
    font-size: 1.15rem;
    margin: 0 0 .5rem
}

.why-card p {
    font-size: .9rem;
    color: var(--muted);
    margin: 0
}

.contact {
    background: linear-gradient(90deg, rgba(5, 45, 82, .97), rgba(11, 85, 130, .92)), url(../assets/images/hero.jpg) center/cover;
    padding: 100px 0;
    color: #fff;
    text-align: center
}

.contact-panel {
    max-width: 800px;
    margin: auto
}

.contact-panel p:not(.eyebrow) {
    color: #cbdae2;
    font-size: 1.1rem
}

.contact .eyebrow {
    justify-content: center
}

.phone-display {
    display: flex;
    flex-direction: column;
    margin: 2.2rem auto;
    color: #fff;
    width: max-content
}

.phone-display span {
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: .16em;
    color: var(--aqua);
    font-weight: 800
}

.phone-display strong {
    font: 700 clamp(2.4rem, 7vw, 5rem) Georgia, serif;
    line-height: 1.2
}

.footer {
    background: #052843;
    color: #b9cbd5;
    padding: 70px 0 90px
}

.footer-brand {
    display: flex;
    align-items: center;
    color: #fff;
    margin-bottom: 1.3rem
}

.footer-brand img {
    width: auto;
    height: clamp(56px, 8vw, 80px);
    max-height: 80px;
    object-fit: contain;
    object-position: left center;
    margin-right: .85rem;
    flex-shrink: 0;
    display: block
}

.footer h2 {
    color: #fff;
    font: 700 1rem "Segoe UI", sans-serif;
    text-transform: uppercase;
    letter-spacing: .1em
}

.footer ul {
    list-style: none;
    padding: 0
}

.footer li {
    margin: .4rem 0
}

.footer a:not(.btn) {
    color: #c9d7de
}

.footer a:hover {
    color: var(--aqua)
}

.footer-social {
    display: flex;
    gap: .65rem;
    margin-top: 1.4rem;
    flex-wrap: wrap
}

.footer-social a {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #c9d7de;
    font-size: 1rem;
    transition: .25s ease
}

.footer-social a:hover {
    background: var(--aqua);
    border-color: var(--aqua);
    color: #052e2a;
    transform: translateY(-3px)
}

.footer-phone {
    display: block;
    font: 700 1.8rem Georgia, serif;
    margin: .8rem 0
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .8rem
}

.mobile-call {
    display: none
}

.back-top {
    position: fixed;
    right: 1.3rem;
    bottom: 1.3rem;
    width: 44px;
    height: 44px;
    border: 0;
    background: var(--navy);
    color: #fff;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: .2s
}

.back-top.show {
    opacity: 1;
    visibility: visible
}

.back-top:focus,
.btn:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 3px solid var(--aqua);
    outline-offset: 3px
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s, transform .65s
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.areas {
    background: var(--sky)
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem
}

.area-pill {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 50px;
    padding: .75rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    box-shadow: 0 4px 14px rgba(8, 43, 70, .07);
    transition: .25s ease
}

.area-pill i {
    color: var(--aqua);
    font-size: 1.05rem;
    flex-shrink: 0
}

.area-pill:hover {
    border-color: var(--aqua);
    box-shadow: 0 8px 24px rgba(8, 43, 70, .12);
    transform: translateY(-3px);
    color: var(--blue)
}

@media(max-width:767.98px) {
    .areas-grid {
        gap: .75rem
    }

    .area-pill {
        padding: .65rem 1.15rem;
        font-size: .93rem
    }
}

@media(max-width:991.98px) {
    .section.areas {
        padding: 80px 0
    }
}

@media(max-width:1199.98px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1rem 1.5rem 1.5rem;
        box-shadow: 0 15px 25px rgba(11, 110, 163, .1)
    }

    .nav-link {
        padding: .75rem 0 !important
    }

    .nav-link:after {
        left: 0;
        right: auto;
        width: 25px
    }

    .hero {
        min-height: 760px
    }
}

@media(max-width:991.98px) {
    .section {
        padding: 80px 0
    }

    .hero-strip .container>div {
        padding: 1.2rem .75rem
    }

    .hero-strip small {
        font-size: .75rem
    }

    .callout-inner {
        align-items: flex-start;
        flex-direction: column
    }

    .sticky-heading {
        position: static;
        margin-bottom: 1rem
    }
}

@media(max-width:767.98px) {
    :root {
        --header-h: 72px
    }

    body {
        padding-bottom: 64px
    }

    .section {
        padding: 68px 0
    }

    .navbar-brand img {
        width: auto;
        height: 44px;
        max-height: 44px
    }

    .footer-brand img {
        height: 60px;
        max-height: 60px
    }

    .navbar-brand strong {
        font-size: 1.1rem
    }

    .navbar-brand small {
        font-size: .56rem
    }

    .hero {
        min-height: 690px;
        background-position: 62% center
    }

    .hero:before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(5, 40, 75, .22)
    }

    .hero-content {
        padding-top: 5rem;
        padding-bottom: 170px
    }

    .hero h1 {
        font-size: clamp(2.35rem, 11vw, 3.5rem)
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column
    }

    .hero-actions .btn {
        width: 100%
    }

    .trust-line {
        gap: .55rem 1rem
    }

    .hero-strip .container {
        grid-template-columns: 1fr
    }

    .hero-strip .container>div {
        display: none
    }

    .hero-strip .container>div:first-child {
        display: flex;
        border-right: 0
    }

    .check-grid {
        grid-template-columns: 1fr
    }

    .mission-row {
        margin-top: 55px
    }

    .purpose-card {
        padding: 1.4rem;
        flex-direction: column
    }

    .callout-inner {
        padding: 2rem 1.5rem
    }

    .comparison-feature {
        aspect-ratio: 4/3
    }

    .compare-title {
        bottom: .75rem;
        left: .75rem;
        padding: .7rem 1rem
    }

    .comparison-card h3 {
        font-size: 1.15rem
    }

    .contact {
        padding: 75px 0
    }

    .phone-display strong {
        font-size: clamp(2.4rem, 12vw, 3.7rem)
    }

    .footer-bottom {
        flex-direction: column
    }

    .mobile-call {
        display: flex;
        position: fixed;
        z-index: 1035;
        left: 0;
        right: 0;
        bottom: 0;
        height: 64px;
        background: var(--aqua);
        color: #052e2a;
        align-items: center;
        justify-content: center;
        gap: .65rem;
        font-weight: 800;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, .15)
    }

    .mobile-call i {
        font-size: 1.25rem
    }

    .back-top {
        bottom: 76px
    }
}

@media(max-width:374px) {
    .navbar-brand small {
        display: none
    }

    .navbar-brand img {
        margin-right: .4rem
    }

    .footer-brand img {
        height: 52px;
        max-height: 52px
    }

    .navbar-toggler {
        padding: .35rem
    }

    .hero-content {
        padding-top: 4.2rem
    }

    .hero h1 {
        font-size: 2.25rem
    }

    .trust-line {
        font-size: .78rem
    }

    .phone-display strong {
        font-size: 2.25rem
    }

    .purpose-icon {
        flex-basis: 46px;
        height: 46px
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *,
    *:before,
    *:after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}

/* Keep Bootstrap gutter rows contained at every viewport width. */
@media(max-width:991.98px) {

    .section>.container>.row,
    .footer>.container>.row {
        margin-left: 0;
        margin-right: 0
    }

    .section>.container>.row>[class*=col-],
    .footer>.container>.row>[class*=col-] {
        padding-left: 0;
        padding-right: 0
    }

    .footer>.container>.row>[class*=col-] {
        padding-right: 1rem
    }
}

/* ─── Inquiry / Quote Form Section ─────────────────────────────────────── */
.inquiry-form {
    background: var(--pale);
}

.inquiry-form-wrap {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 2.8rem 3rem;
    box-shadow: 0 12px 40px rgba(11, 110, 163, .08);
    max-width: 900px;
    margin: 0 auto;
}

.inquiry-form-inner .form-label {
    font-weight: 700;
    font-size: .88rem;
    color: var(--ink);
    margin-bottom: .45rem;
    letter-spacing: .01em;
}

.req-star {
    color: var(--aqua-dark);
    font-weight: 800;
}

.input-icon-wrap {
    position: relative;
}

.input-icon-wrap > i {
    position: absolute;
    left: .9rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--blue);
    font-size: .95rem;
    pointer-events: none;
    z-index: 2;
}

.input-icon-wrap.textarea-wrap > i {
    top: .9rem;
    transform: none;
}

.input-icon-wrap .form-control {
    padding-left: 2.5rem;
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    font-size: .94rem;
    color: var(--ink);
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    height: 48px;
}

.input-icon-wrap textarea.form-control {
    height: auto;
    resize: vertical;
    padding-top: .75rem;
}

.input-icon-wrap select.form-control {
    appearance: auto;
    cursor: pointer;
}

.input-icon-wrap .form-control:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(29, 150, 216, .18);
    outline: none;
}

.input-icon-wrap .form-control::placeholder {
    color: #aabcca;
    font-size: .9rem;
}

.inquiry-submit {
    min-width: 200px;
    font-size: 1rem;
    letter-spacing: .02em;
    transition: .25s ease;
}

.inquiry-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(34, 185, 154, .3);
}

.inquiry-note {
    font-size: .8rem;
    color: var(--muted);
    margin-top: 1rem;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .inquiry-form-wrap {
        padding: 1.8rem 1.25rem;
    }

    .inquiry-submit {
        width: 100%;
    }
}