:root {
    --primary-color: #952E78;
    --secondary-color: #6D2258;
    --textone-color: #3E264E;
    --texttwo-color: #4F4159;
    --pink-color: #E55C7F;
    --orange-color: #F1844D;
    --orange-color-dark: #EF7334;
    --orange-color-bold: #ED611C;
    --primary-gradient: linear-gradient(90deg,
            #68266B 0%,
            #BD2B82 100%);
    --orange-gradient: linear-gradient(90deg,
            #E65883 0%,
            #F6B06B 100%);
    --orange-gradient-dark: linear-gradient(90deg,
            #E00F7E 0%,
            #FECC4A 100%);
    --footer-bg: #3a1c33;
    --footer-input-bg: #e5d1d1;
    --footer-text-muted: rgba(255, 255, 255, 0.72);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Metropolis", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 400;
    color: var(--texttwo-color);
}

@font-face {
    font-family: "Metropolis";
    src: url("../assets/fonts/Metropolis-Light.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Metropolis";
    src: url("../assets/fonts/metropolis-regular-webfont.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Metropolis";
    src: url("../assets/fonts/metropolis-medium-webfont.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Metropolis";
    src: url("../assets/fonts/metropolis-bold-webfont.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

li {
    list-style: none;
    outline: none;
}

a {
    text-decoration: none !important;
    outline: none !important;
}

nav {
    padding: 0;
}

/* site header / navbar */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
}

.nav-gradient-bar {
    height: 4px;
    background: linear-gradient(90deg, #c72c61 0%, #f8a531 100%);
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 44px;
    background-color: #fff;
}

.site-nav .logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.img-logo {
    max-width: 214px;
    max-height: 72px;
    width: auto;
    height: auto;
    display: block;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 1.5px solid var(--textone-color);
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.nav-toggle:hover {
    background-color: rgba(62, 38, 78, 0.05);
}

.nav-toggle-line {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--textone-color);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-nav.is-open .nav-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-nav.is-open .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.site-nav.is-open .nav-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 62px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    color: var(--texttwo-color);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-cta-btn {
    display: inline-block;
    background-color: var(--orange-color);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.nav-cta-btn:hover {
    background-color: var(--orange-color-dark);
    color: #fff !important;
}

@media (max-width: 991px) {
    .site-nav {
        padding: 12px 20px;
    }

    .img-logo {
        max-width: 160px;
        max-height: 56px;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-menu {
        flex: 0 0 100%;
        justify-content: start;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.4s ease, opacity 0.35s ease, visibility 0.35s ease;
    }

    .site-nav.is-open .nav-menu {
        max-height: 520px;
        opacity: 1;
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0 16px;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(62, 38, 78, 0.08);
    }

    .nav-links li:last-child {
        border-bottom: none;
        padding-top: 12px;
    }

    .nav-links a {
        display: block;
        padding: 14px 4px;
    }

    .nav-phone {
        text-align: center;
    }

    .nav-cta-btn {
        display: block;
        text-align: center;
        padding: 10px 20px !important;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .nav-menu {
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        overflow: visible !important;
    }
}



/*hero section start*/
.hero-section {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    background: url("../assets/bg-optimized.jpg") center center / cover no-repeat;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-image-el {
    display: none;
}

.hero-image-el--mobile {
    display: none;
}

@media (min-width: 992px) {
    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg,
                rgba(230, 83, 130, 0.9) 0%,
                rgba(243, 160, 115, 0.74) 21.6%,
                rgba(236, 119, 123, 0.78) 48.24%,
                rgba(245, 172, 112, 0) 72%,
                transparent 72%);
        pointer-events: none;
        z-index: 0;
    }
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    min-height: calc(100vh - 80px);
    padding: 48px 12px 64px;
}

.hero-content {
    max-width: 560px;
    color: #fff;
}

.hero-title {
    margin: 0 0 12px;
    font-weight: bold;
}

.hero-title-line {
    display: block;
    font-size: clamp(2rem, 5.5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-title-line--sm {
    font-size: clamp(1.75rem, 4.5vw, 3.25rem);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.75rem);
    font-style: italic;
    font-weight: 400;
    margin: 0 0 16px;
    color: #fff;
}

.hero-desc {
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    line-height: 1.6;
    margin: 0 0 28px;
    max-width: 420px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-cta {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff !important;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 14px 32px;
    border-radius: 8px;
    margin-bottom: 32px;
    transition: background-color 0.2s ease;
}

.hero-cta:hover {
    background-color: var(--primary-color);
    color: #fff !important;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
}

.hero-features li:not(:last-child)::after {
    content: "•";
    margin: 0 14px;
    opacity: 0.85;
    font-weight: 400;
}

.hero-badge-wrap {
    position: absolute;
    left: 52%;
    bottom: 14%;
    transform: translateX(-50%);
    width: clamp(180px, 22vw, 280px);
    margin: 0;
    pointer-events: auto;
}

.hero-badge {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 12px 32px rgba(255, 160, 40, 0.45));
}

@media (max-width: 991px) {
    .hero-section {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        min-height: 0 !important;
        height: auto !important;
        background: none !important;
        background-image: none !important;
        overflow: visible;
    }

    .hero-section::before,
    .hero-section::after {
        display: none !important;
        content: none !important;
        background: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        height: 0 !important;
        width: 0 !important;
    }

    .hero-section>.hero-media {
        display: block !important;
        position: relative !important;
        inset: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        order: 1;
        flex: 0 0 auto;
        width: 100%;
        height: clamp(280px, 62vw, 400px);
        background: url("../assets/bg-optimized.jpg") center center / cover no-repeat !important;
        pointer-events: auto;
        z-index: 2;
        overflow: visible;
    }

    .hero-image-el--mobile {
        display: none !important;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .hero-media::before,
    .hero-media::after {
        display: none !important;
        content: none !important;
    }

    .hero-media .hero-badge-wrap {
        position: absolute;
        left: 20px;
        bottom: -32px;
        transform: none;
        width: min(190px, 46vw);
        z-index: 3;
    }

    .hero-section>.hero-inner {
        order: 2;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 56px 24px 36px;
        z-index: 1;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
        background: linear-gradient(135deg,
                #e65382 0%,
                #ec777b 38%,
                #f3a073 72%,
                #f5ac70 100%);
    }

    .hero-inner.container {
        width: 100%;
        max-width: 100%;
    }

    .hero-content {
        max-width: none;
        width: 100%;
        text-align: left;
    }

    .hero-title,
    .hero-title-line,
    .hero-subtitle,
    .hero-desc {
        text-align: left;
    }

    .hero-desc {
        max-width: none;
    }

    .hero-cta {
        margin-bottom: 28px;
        align-self: flex-start;
    }

    .hero-features {
        margin-top: 8px;
        justify-content: flex-start;
        width: 100%;
    }
}

.residential-section button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

/*hero section end*/

/* about section start */
.about-section {
    padding: 80px 0 100px;
    background-color: #f7f5f8;
}

.about-header {
    max-width: 66.666%;
    margin-bottom: 48px;
}

.about-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--textone-color);
}

.about-title-line {
    display: block;
}

.about-title-accent {
    display: block;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.about-intro {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--texttwo-color);
    font-weight: 400;
}

.about-intro strong {
    font-weight: 700;
    color: var(--textone-color);
}

.about-visual {
    display: flex;
    align-items: stretch;
    margin-bottom: 72px;
    min-height: 300px;
    overflow: hidden;
}

.about-image-wrap {
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: block;
    object-fit: cover;
}

.about-quote-wrap {
    flex: 0 0 28%;
    max-width: 28%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 32px;
    background: linear-gradient(90deg, #e4e2e8 0%, #f5f4f7 45%, #ffffff 100%);
}

.about-quote {
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--textone-color);
    font-weight: 500;
    margin: 0;
    max-width: 260px;
}

.about-quote em {
    display: block;
    font-style: italic;
    color: var(--pink-color);
    font-weight: 500;
    margin-top: 4px;
}

.dangers-heading {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--textone-color);
    margin-bottom: 40px;
}

.danger-card {
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.danger-icon {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--pink-color);
    width: 48px;
    margin-bottom: 16px;
}

.danger-icon::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    margin-top: 12px;
    background-color: var(--pink-color);
    border-radius: 1px;
}

.danger-icon svg {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.danger-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--textone-color);
    margin-bottom: 12px;
    line-height: 1.35;
}

.danger-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--texttwo-color);
    margin-bottom: 24px;
    flex-grow: 1;
}

.danger-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--pink-color);
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .about-header {
        max-width: 100%;
    }

    .about-visual {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        min-height: 0;
        aspect-ratio: 1;
        max-width: 100%;
    }

    .about-image-wrap {
        min-height: 0;
    }

    .about-image-wrap:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .about-image-wrap:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .about-image-wrap:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
    }

    .about-image {
        min-height: 0;
        height: 100%;
    }

    .about-quote-wrap {
        grid-column: 2;
        grid-row: 2;
        flex: none;
        max-width: none;
        align-items: flex-end;
        justify-content: flex-start;
        padding: 20px 16px 24px;
        background: #fff;
        box-shadow: inset 6px 6px 18px rgba(0, 0, 0, 0.06);
    }

    .about-quote {
        font-size: 0.9375rem;
        max-width: none;
    }
}

/* about section end */


/* banner section start */
.banner {
    background: var(--primary-gradient);
    color: white;
    padding: 40px;
    border-radius: 5px;
}

.banner-mark {
    font-size: 5rem;
    color: white;
}

.text-life {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* banner section end */

/* protection section start */
.protection-section {
    padding: 80px 0 72px;
    background-color: #faf7f2;
}

.protection-header {
    margin-bottom: 48px;
}

.protection-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.protection-title-accent {
    color: var(--primary-color);
}

.protection-title-rest {
    color: var(--textone-color);
}

.protection-subtitle {
    font-size: 1.25rem;
    color: var(--textone-color);
    font-weight: 400;
    margin: 0;
}

.protection-body {
    margin-bottom: 56px;
}

.features-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: var(--orange-color-bold);
    margin-top: 2px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--textone-color);
    margin-bottom: 8px;
    line-height: 1.35;
}

.feature-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--texttwo-color);
    margin: 0;
}

.protection-image-wrap {
    border-radius: 4px;
    overflow: hidden;
}

.protection-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.partners-bar {
    padding-top: 8px;
}

.partners-divider {
    border: none;
    border-top: 2px solid #a8c8e8;
    margin: 0 0 40px;
    opacity: 1;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px 32px;
}

.partners-logos img {
    max-height: 56px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    flex: 0 1 auto;
}

@media (max-width: 991px) {
    .protection-body {
        margin-bottom: 40px;
    }

    .protection-image-wrap {
        max-width: 480px;
        margin: 0 auto;
    }

    .partners-logos {
        justify-content: center;
    }

    .partners-logos img {
        max-height: 48px;
    }
}

/* protection section end */

/* home & business sections start */
.home-section,
.business-section {
    padding: 80px 0;
}

.home-section {
    background-color: #fff;
}

.business-section {
    background-color: #faf7f2;
}

.benefit-image-wrap {
    border-radius: 16px;
    overflow: hidden;
}

.benefit-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.benefit-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pink-color);
    margin-bottom: 16px;
}

.benefit-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--textone-color);
    margin-bottom: 20px;
}

.benefit-intro {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--texttwo-color);
    margin-bottom: 32px;
    max-width: 560px;
}

.benefit-list {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.benefit-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--orange-color-bold);
    margin-top: 2px;
}

.benefit-check svg {
    width: 100%;
    height: 100%;
}

.benefit-item-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--textone-color);
    margin-bottom: 4px;
    line-height: 1.35;
}

.benefit-item-text {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--texttwo-color);
    margin: 0;
}

.benefit-callout {
    margin: 0;
    padding: 20px 24px;
    background-color: #ede8f2;
    border-left: 4px solid var(--textone-color);
    font-size: 1.0625rem;
    line-height: 1.55;
    font-weight: 500;
    color: var(--textone-color);
}

.benefit-callout--business {
    border-left-color: var(--pink-color);
    font-style: italic;
}

@media (max-width: 991px) {
    .benefit-image-wrap {
        max-width: 480px;
        margin: 0 auto 24px;
    }
}

/* home & business sections end */

/* trust section start */
.trust-section {
    padding: 80px 0;
    background-color: #fff;
}

.trust-header {
    max-width: 66.666%;
    margin-bottom: 48px;
}

.trust-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--textone-color);
    margin-bottom: 24px;
}

.trust-title-accent {
    background: linear-gradient(90deg, #f6b06b 0%, #e65883 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.trust-intro p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--texttwo-color);
    margin-bottom: 16px;
}

.trust-intro p:last-child {
    margin-bottom: 0;
}

.trust-card {
    height: 100%;
    padding-top: 150px !important;
    padding: 32px 28px;
    background-color: #fff;
    border: 2px solid #e8e2ea;
    border-radius: 8px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.trust-card:hover {
    background-color: #fff5f8;
    border-color: var(--pink-color);
}

.trust-icon {
    width: 48px;
    height: 48px;
    color: var(--orange-color-dark);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.trust-card:hover .trust-icon {
    color: var(--pink-color);
}

.trust-icon svg {
    width: 100%;
    height: 100%;
}

.trust-card-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--textone-color);
    margin-bottom: 12px;
    line-height: 1.35;
}

.trust-card-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--texttwo-color);
    margin: 0;
}

.trustSwiper {
    padding-bottom: 45px;
}

.trustSwiper .swiper-slide {
    padding: 0 15px;
}

.trustSwiper .trust-card {
    height: 100%;
}

.trustSwiper .swiper-pagination {
    bottom: 0 !important;
}

.trustSwiper .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    opacity: 1;
    background: #f2d5ca;
}

.trustSwiper .swiper-pagination-bullet-active {
    background: #f58a4b;
}

@media (min-width: 768px) {
    .trustSwiper {
        display: none;
    }
}

@media (max-width: 991px) {
    .trust-header {
        max-width: 100%;
    }
}

/* trust section end */

/* review section start */
.review-section {
    position: relative;
    padding: 80px 0 96px;
    background-image: url("../assets/reviews-bg-optimized.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.review-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(58, 28, 51, 0.78);
    pointer-events: none;
}

.review-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.review-card {
    height: 100%;
    padding: 28px 32px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 12px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: #f5c842;
    font-size: 1.125rem;
    line-height: 1;
}

.review-quote {
    margin: 0 0 16px;
    font-size: 1.125rem;
    line-height: 1.55;
    font-style: italic;
    font-weight: 400;
    color: #fff;
}

.review-author {
    display: block;
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.review-heading {
    max-width: 720px;
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
}

.review-highlight {
    background-color: var(--primary-color);
    color: #fff;
    padding: 2px 6px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

@media (max-width: 767px) {
    .review-section {
        padding: 56px 0 72px;
    }

    .review-inner {
        gap: 40px;
    }

    .review-card {
        padding: 24px 20px;
        position: relative;
        bottom: 120px;
        background-color: #654579;
    }


}

/* review section end */

/* residential section start */
.residential-section {
    background-image: url("../assets/residential-bg-optimized.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;

}

/* residential section end */
/* site footer start */
.site-footer {
    background-color: var(--footer-bg);
    color: #fff;
    padding: 72px 0 40px;
}

.contact-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.contact-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
}

.contact-desc,
.form-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--footer-text-muted);
    margin-bottom: 20px;
}

.contact-phone {
    display: block;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--orange-color-bold);
    text-decoration: none;
    margin-bottom: 12px;
    line-height: 1.2;
}

.contact-phone:hover {
    color: var(--orange-color);
}

.contact-email {
    display: block;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
}

.contact-email:hover {
    color: var(--footer-text-muted);
}

.form-title {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
}

.contact-input {
    background-color: var(--footer-input-bg);
    border: none;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 0.9375rem;
    color: var(--textone-color);
    font-family: inherit;
}

.contact-input::placeholder {
    color: rgba(62, 38, 78, 0.55);
}

.contact-input:focus {
    background-color: var(--footer-input-bg);
    border: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
    color: var(--textone-color);
}

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

.contact-submit {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.contact-submit:hover {
    background-color: var(--secondary-color);
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 56px 0 32px;
    opacity: 1;
}

.footer-logo {
    max-width: 180px;
    max-height: 64px;
    object-fit: contain;
}

.footer-nav {
    margin-bottom: 8px;
}

.footer-nav a {
    font-size: 0.8125rem;
    color: #fff;
    text-decoration: none;
}

.footer-nav a:hover {
    color: var(--footer-text-muted);
}

.footer-sep {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 6px;
    font-size: 0.8125rem;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--footer-text-muted);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .site-footer {
        padding: 56px 0 32px;
    }

    .footer-divider {
        margin: 40px 0 24px;
    }

    .footer-meta {
        width: 100%;
    }
}

/* site footer end */
