﻿:root {
    --navy: #071836;
    --navy-2: #0b1d3f;
    --ink: #091833;
    --muted: #4b5a70;
    --cream: #f6f1e9;
    --cream-2: #eee6d8;
    --card: #ffffff;
    --border: #e6e0d7;
    --pink: #fff1ef;
    --photo: #d5cec5;
    --shadow: 0 14px 35px rgba(7, 24, 54, .10);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    line-height: 1.45;
}

h1 {
    font-size: 38px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 26px;
}

p {
    font-size: 16px;
}

.page-shell {
    overflow: hidden;
    background: #fff;
}


/* =========================
           Header + Navbar
        ========================= */

/* =========================
   Header + Navbar Corrected
========================= */

.site-header {
    background: #fff;
    border-bottom: 1px solid #eee9e0;
    position: relative;
    z-index: 9999;
    box-shadow: 0 6px 18px rgba(7, 24, 54, .04);
}

.site-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-logo {
    max-width: 270px;
    width: 100%;
    height: auto;
    display: block;
}

.header-top {
    padding: 24px 0 18px;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-pill {
    border-radius: 999px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-outline-navy {
    border: 1.5px solid var(--navy);
    color: var(--navy);
    background: #fff;
}

    .btn-outline-navy:hover,
    .btn-outline-navy:focus {
        background: var(--navy);
        color: #fff;
        transition: all 0.3s ease;
    }

.btn-navy {
    border: 1.5px solid var(--navy);
    background: var(--navy);
    color: #fff;
}

    .btn-navy:hover,
    .btn-navy:focus {
        background: #102a57;
        border-color: #102a57;
        color: #fff;
    }

/* Hamburger */
.menu-toggle {
    width: 52px;
    height: 48px;
    border: 1px solid #ded6cb;
    border-radius: 15px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 18px rgba(7, 24, 54, .06);
}

    .menu-toggle span {
        width: 23px;
        height: 2px;
        border-radius: 20px;
        background: var(--navy);
        display: block;
    }

    .menu-toggle:hover {
        background: #faf8f4;
    }

    .menu-toggle:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(7, 24, 54, .12);
    }

/* Desktop / tablet nav */
.main-navbar {
    padding: 0 0 14px;
}

    .main-navbar .navbar-collapse {
        background: #f8f5ef;
        border: 1px solid #ece4d8;
        border-radius: 18px;
        padding: 7px 10px;
        box-shadow: 0 10px 24px rgba(7, 24, 54, .05);
    }

.nav-menu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3px;
}

.main-navbar .nav-item {
    position: relative;
}

.main-navbar .nav-link {
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    padding: 12px 10px;
    line-height: 1.2;
    white-space: nowrap;
    border-radius: 999px;
    transition: all 0.3s ease;
}

    .main-navbar .nav-link:hover,
    .main-navbar .nav-link:focus,
    .main-navbar .nav-item:hover > .nav-link,
    .main-navbar .nav-item:focus-within > .nav-link,
    .main-navbar .nav-item.show > .nav-link {
        background: #fff;
        color: #102a57;
    }

.main-navbar .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    transition: transform .2s ease;
}

.main-navbar .nav-item:hover .dropdown-toggle::after,
.main-navbar .dropdown-toggle.show::after,
.main-navbar .nav-item.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

.main-navbar .dropdown-menu {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 10px;
    min-width: 275px;
    max-height: 420px;
    overflow-y: auto;
    box-shadow: 0 18px 35px rgba(7, 24, 54, .12);
    background: #fff;
    margin-top: 0;
    z-index: 99999;
}

.main-navbar .dropdown-item {
    color: var(--navy);
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 12px;
    white-space: normal;
    line-height: 1.35;
    transition: all 0.3s ease;
}

    .main-navbar .dropdown-item:hover,
    .main-navbar .dropdown-item:focus {
        background: var(--cream);
        color: var(--navy);
        padding-left: 16px;
    }

/* Desktop dropdown hover */
@media (min-width: 768px) {
    .main-navbar .navbar-collapse {
        display: flex !important;
        overflow: visible;
    }

    .main-navbar .dropdown:hover > .dropdown-menu,
    .main-navbar .dropdown:focus-within > .dropdown-menu {
        display: block;
    }

    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
    }

    .main-navbar .nav-item:last-child .dropdown-menu {
        left: auto;
        right: 0;
    }

    .main-navbar .dropdown-menu::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: -8px;
        height: 8px;
    }
}

/* Tablet */
@media (min-width: 1200px) {

    .main-navbar .nav-link {
        font-size: 14px;

    }
    .main-navbar{
        margin-bottom:10px;
    }

}

/* Tablet */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .site-logo {
        max-width: 240px;
    }

    .header-top {
        padding: 22px 0 16px;
    }

    .header-actions {
        gap: 10px;
    }

        .header-actions .btn-pill {
            padding: 11px 18px;
            font-size: 12px;
            min-height: 44px;
        }

    .main-navbar .nav-link {
        font-size: 11px;
        padding: 11px 7px;
    }

    .main-navbar .dropdown-menu {
        min-width: 255px;
    }
}

/* Mobile overlay menu */
@media (max-width: 767.98px) {
    .site-header {
        position: relative;
        z-index: 9999;
    }



    .header-top {
        padding: 21px 0 18px;
    }

    .site-logo {
        max-width: 230px;
    }

    .header-actions {
        margin-top: 18px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 52px;
        gap: 10px;
        align-items: center;
    }

        .header-actions .btn-pill {
            width: 100%;
            min-height: 48px;
            padding: 11px 12px;
            font-size: 16px;
            text-align: center;
        }

    .main-navbar {
        padding: 0;
        position: static;
    }

        .main-navbar .navbar-collapse {
            position: absolute;
            top: 100%;
            left: 18px;
            right: 18px;
            z-index: 99999;
            background: #fff;
            border: 1px solid #ece4d8;
            border-radius: 20px;
            padding: 16px;
            margin-top: 0;
            box-shadow: 0 22px 45px rgba(7, 24, 54, .18);
            max-height: calc(100vh - 185px);
            overflow-y: auto;
        }

    .nav-menu {
        width: 100%;
        align-items: stretch;
        gap: 4px;
    }

    .main-navbar .nav-item {
        width: 100%;
    }

    .main-navbar .nav-link {
        width: 100%;
        color: var(--navy);
        font-size: 15px;
        font-weight: 800;
        padding: 14px 16px;
        border-radius: 14px;
        white-space: normal;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .main-navbar .nav-link:hover,
        .main-navbar .nav-link:focus,
        .main-navbar .nav-item.show > .nav-link {
            background: var(--cream);
            color: var(--navy);
        }

    .main-navbar .dropdown-menu {
        position: static !important;
        transform: none !important;
        float: none;
        width: 100%;
        min-width: 100%;
        max-height: none;
        overflow: visible;
        border: 0;
        box-shadow: none;
        background: #f8f5ef;
        border-radius: 14px;
        padding: 8px;
        margin: 4px 0 8px;
    }

        .main-navbar .dropdown-menu.show {
            display: block;
        }

    .main-navbar .dropdown-item {
        color: var(--navy);
        font-size: 13px;
        font-weight: 600;
        border-radius: 10px;
        padding: 11px 12px;
        white-space: normal;
        line-height: 1.35;
    }

        .main-navbar .dropdown-item:hover,
        .main-navbar .dropdown-item:focus {
            background: #fff;
            color: var(--navy);
            padding-left: 15px;
        }

    .main-navbar .dropdown-toggle::after {
        margin-left: 8px;
        transition: transform .2s ease;
    }

    .main-navbar .dropdown-toggle.show::after,
    .main-navbar .nav-item.show .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

/* Small mobile */
@media (max-width: 430px) {
    .header-actions {
        grid-template-columns: minmax(0, 1fr) 52px;
    }

        .header-actions .btn-outline-navy {
            grid-column: 1 / 3;
        }

        .header-actions .btn-navy {
            grid-column: 1 / 2;
        }

    .menu-toggle {
        grid-column: 2 / 3;
    }

    .site-logo {
        max-width: 330px;
    }
}

/* =========================
           Hero
        ========================= */

.hero {
    background: var(--cream);
    position: relative;
    padding: 66px 0 68px;
}

/*    .hero:before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 12% 22%, rgba(255, 255, 255, .9), transparent 26%), radial-gradient(circle at 72% 10%, rgba(255, 255, 255, .42), transparent 24%);
        pointer-events: none;
    }
*/
    .hero  {
        position: relative;
        z-index: 1;
    }

.badge-soft {
    flex-wrap: wrap;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1px solid #efe9df;
    border-radius: 999px;
    padding: 11px 18px;
    box-shadow: 0 8px 22px rgba(7, 24, 54, .08);
    color: var(--navy);
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 26px;
}

.hero-title {
    color: var(--navy);
    font-size: 52px;
    line-height: 1.02;
/*    letter-spacing: -.055em;*/
    font-weight: 800;
    max-width: 650px;
    margin: 0 0 20px;
}

.hero-lead {
    color: #233249;
    font-size: 18px;
    line-height: 1.45;
    max-width: 620px;
    margin: 0 0 28px;
/*    letter-spacing: -.015em;*/
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.location-line {
    margin: 0;
    color: #45556b;
    font-size: 14px;
    font-weight: 500;
}

.hero-card {
    width: 100%;
    max-width: 448px;
    margin-left: auto;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
}

.photo-placeholder {
/*    height: 255px;*/
    background: var(--photo);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #526070;
    font-size: 14px;
    line-height: 1.28;
/*    padding: 28px;*/
}

.quote-box {
    background: #fff;
    padding: 34px 35px 31px;
    min-height: 172px;
}

.quote-text {
    color: var(--navy);
    font-size: 18px;
    line-height: 1.35;
    font-style: italic;
    margin: 0 0 20px;
/*    letter-spacing: -.02em;*/
}

.quote-author {
    color: var(--navy);
    font-size: 16px;
    font-weight: 800;
    margin: 0;
}

/* =========================
           Feature Cards
        ========================= */

.features-band {
    background: #f7f5f1;
    border-top: 1px solid #eee7dc;
    border-bottom: 1px solid #eee7dc;
    padding: 48px 0 40px;
}

.feature-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 29px 26px 26px;
    box-shadow: 0 12px 24px rgba(7, 24, 54, .07);
}

.feature-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 28px;
    line-height: 1;
}

.feature-title {
    color: var(--navy);
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 10px;
/*    letter-spacing: -.025em;*/
}

.feature-text {
    color: #44536a;
    font-size: 16px;
    line-height: 1.45;
    margin: 0;
}

/* =========================
           Services
        ========================= */

.services {
    background: #fff;
    padding: 66px 0 57px;
}

.section-title {
    color: var(--navy);
    text-align: center;
    font-size: 36px;
    font-weight: 800;
/*    letter-spacing: -.045em;*/
    margin: 0 0 38px;
}

.service-card {
    height: 100%;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    padding: 31px 26px 30px;
    box-shadow: 0 10px 22px rgba(7, 24, 54, .055);
}

.service-title {
    color: var(--navy);
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 18px;
/*    letter-spacing: -.03em;*/
}

.service-text {
    color: #34435a;
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
}

/* =========================
           Offer Area
        ========================= */

.offer-section {
    background: #f7f4ee;
    padding: 59px 0 55px;
    border-top: 1px solid #eee7dc;
    border-bottom: 1px solid #eee7dc;
}

.emergency-card,
.special-card {
    border-radius: 20px;
    min-height: 350px;
    padding: 48px 31px;
    box-shadow: 0 12px 24px rgba(7, 24, 54, .06);
}

.emergency-card {
    background: var(--pink);
    border: 1px solid #f3d8d3;
}

.special-card {
    background: var(--navy);
    border: 1px solid var(--navy);
    color: #fff;
}

.offer-title {
    font-size: 24px;
    font-weight: 800;
/*    letter-spacing: -.035em;*/
    margin: 0 0 20px;
    color: var(--navy);
}

.emergency-card p {
    color: #40506a;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 18px;
    max-width: 475px;
}

.special-card .offer-title {
    color: #fff;
    margin-bottom: 22px;
}

.special-price {
    font-size: 35px !important;
    line-height: 1;
/*    letter-spacing: -.05em;*/
    font-weight: 800;
    margin: 0 0 18px;
    color: #fff;
}

.special-card p {
    font-size: 16px;
    line-height: 1.45;
    margin: 0 0 19px;
    color: #fff;
    max-width: 445px;
}

.btn-small {
    padding: 12px 23px;
    font-size: 16px;
    min-height: 40px;
}

/* =========================
           Footer CTA
        ========================= */

.final-cta {
    background: var(--cream-2);
    padding: 63px 0 68px;
    text-align: center;
}

.final-title{
    color: var(--navy);
    font-size: 36px;
    line-height: 1.15;
/*    letter-spacing: -.045em;*/
    font-weight: 800;
    margin: 0 0 19px;
}

.final-text {
    color: #314058;
    font-size: 16px;
    line-height: 1.55;
    max-width: 690px;
    margin: 0 auto 27px;
}

.final-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

/* =========================
           Responsive Content
        ========================= */

@media (max-width: 991.98px) {
    .hero {
        padding: 48px 0 56px;
    }

    .hero-title {
        font-size: 43px;
    }

    .hero-card {
        margin: 40px auto 0;
        max-width: 540px;
    }

/*    .photo-placeholder {
        height: 235px;
    }*/

    .features-band {
        padding: 38px 0;
    }

    .emergency-card,
    .special-card {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding: 39px 0 48px;
    }

    .badge-soft {
        font-size: 12px;
        padding: 10px 14px;
        margin-bottom: 22px;
    }

    .hero-title {
        font-size: 37px;
        max-width: 100%;
    }

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

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

        .hero-cta .btn-pill,
        .final-actions .btn-pill {
            width: 100%;
        }

    .hero-card {
        border-radius: 20px;
    }

/*    .photo-placeholder {
        height: 210px;
        font-size: 13px;
    }*/

    .quote-box {
        padding: 26px 24px;
    }

    .quote-text {
        font-size: 16px;
    }

    .section-title,
    .final-title {
        font-size: 29px;
    }

    .services {
        padding: 52px 0 45px;
    }

    .service-title {
        font-size: 19px;
    }

    .offer-section {
        padding: 45px 0;
    }

    .emergency-card,
    .special-card {
        padding: 34px 24px;
    }

    .special-price {
        font-size: 36px;
    }
}

@media (max-width: 420px) {
    .brand-title {
        font-size: 19px;
    }

    .brand-subtitle {
        font-size: 10px;
    }

    .hero-title {
        font-size: 30px;
    }

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

    .feature-card,
    .service-card {
        padding: 25px 22px;
    }

    .final-cta {
        padding: 51px 0 58px;
    }
}

/*Footer Section*/
/* =========================
   Footer
========================= */

footer {
    background: var(--cream-2);
    color: var(--navy);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.footer-top {
    background: var(--cream-2);
    padding: 42px 0 34px;
    position: relative;
}

    .footer-top::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        width: 80%;
        height: 2px;
        background: #e6ded2;
        transform: translateX(-50%);
    }

    .footer-top {
/*        max-width: 1150px;*/
        margin-inline: auto;
        padding-inline: 24px;
    }

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 22px;
    text-align: center;
}

    .footer-links a {
        color: var(--navy);
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        transition: 0.2s ease;
    }

        .footer-links a:hover,
        .footer-links a:focus {
            color: #102a57;
            text-decoration: underline;
            text-underline-offset: 4px;
        }

    .footer-links span {
        color: #9b958c;
        font-size: 13px;
        font-weight: 500;
    }

.footer-rating {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 14px 22px;
    color: #314058;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 10px 24px rgba(7, 24, 54, 0.06);
}

    .footer-rating review-count {
        display: inline-block;
        vertical-align: middle;
        color: var(--navy);
        font-weight: 800;
    }

.footer-bottom {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.86);
    padding: 18px 24px;
    text-align: center;
    font-size: 13px;
    line-height: 1.7;
}

    .footer-bottom a {
        color: #fff;
        font-weight: 700;
        text-decoration: none;
        transition: 0.2s ease;
    }

        .footer-bottom a:hover,
        .footer-bottom a:focus {
            color: var(--cream-2);
            text-decoration: underline;
            text-underline-offset: 4px;
        }

/* =========================
   Footer Responsive
========================= */

@media (max-width: 767.98px) {
    .footer-top {
        padding: 34px 0 28px;
    }

        .footer-top {
            padding-inline: 18px;
        }

    .footer-links {
        gap: 15px;
        margin-bottom: 20px;
    }


    .footer-bottom {
        padding: 18px;
        font-size: 14px;
    }
}

@media (max-width: 420px) {
    .footer-links {
/*        flex-direction: column;*/
        gap: 10px;
    }

        .footer-links a {
            display: inline-block;
        }

    .footer-rating {
        font-size: 12px;
    }
}
/*Footer Section*/

.back-to-top i {
    height: 35px;
    width: 35px;
    line-height: 35px;
    font-size: 20px;
    text-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px;
    text-align: center;
    /*        background: none 0px 0px repeat scroll rgba(0, 0, 0, 0.1);*/
    background: #fff;
    padding: 0px;
    border-radius: 20px;
    color: #0c1635;
    transition: all 0.5s;
}

.back-to-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    visibility: hidden;
    opacity: 0;
    z-index: 4;
    overflow: hidden;
}

    .back-to-top:hover i {
        color: #0c1635;
        background: #fff;
    }


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

#share-wrapper {
    margin-top: 80px;
    position: fixed;
    left: 0;
    z-index: 99;
    clear: both;
    display: none;
}

.share-icon2 {
    padding: 5px 10px;
    background: #ede7d9;
}

@media (max-width: 1024px) {
    #share-wrapper {
        bottom: 0;
        position: fixed;
        padding: 5px 5px 0 5px;
        background: none repeat scroll 0 0 #fff;
        width: 100%;
        margin: 0;
        -webkit-box-shadow: 0 -1px 4px rgba(0, 0, 0, .15);
        -moz-box-shadow: 0 -1px 4px rgba(0,0,0,.15);
        -o-box-shadow: 0 -1px 4px rgba(0,0,0,.15);
        box-shadow: 0 -1px 4px rgba(0, 0, 0, .15);
        z-index: 3;
        display: inherit;
    }
}


/***********Share Wrapper***********/