:root {
    /* Tokens sourced from live sanchismartcare.com theme */
    --theme-color: #EF7F2A;
    --theme-color-2: #F4932F;
    --title-color: #1A5B8E;
    --title-color-2: #1F6BA4;
    --black-color: #0E3B5F;
    --body-color: #666666;
    --body-bg: #FFFFFF;
    --smoke-color: #F8F8F8;
    --smoke-color-2: #EEF2FB;
    --border-color: #E8EBF1;
    --white-color: #FFFFFF;
    --success-color: #27AE60;

    --title-font: 'Exo', sans-serif;
    --body-font: 'Roboto', sans-serif;

    --main-container: 1320px;
    --section-space: 120px;
    --section-space-mobile: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 26px;
    color: var(--body-color);
    background: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-font);
    color: var(--title-color);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 12px;
}

h1 {
    font-size: 60px;
    line-height: 73px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin: 0 0 16px;
    color: var(--body-color);
}

a {
    color: var(--theme-color);
    text-decoration: none;
    transition: .3s;
}

a:hover {
    color: var(--title-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--main-container);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

section {
    padding: 80px 0;
}

/* Global responsive safety nets */
img,
svg,
video,
iframe {
    max-width: 100%;
    height: auto;
}

table {
    max-width: 100%;
    overflow-x: auto;
    display: block;
}

pre,
code {
    white-space: pre-wrap;
    word-wrap: break-word;
}

@media (max-width: 1199px) {
    h1 {
        font-size: 44px;
        line-height: 1.15;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 24px;
    }

    section {
        padding: 60px 0;
    }

    .container {
        padding: 0 18px;
    }
}

@media (max-width: 575px) {
    body {
        font-size: 15px;
        line-height: 24px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    .container {
        padding: 0 16px;
    }

    section {
        padding: 48px 0;
    }
}

/* ===== Section title ===== */
.sec-title-wrap {
    margin-bottom: 60px;
}

.sec-title-wrap.text-center {
    text-align: center;
}

.sec-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--theme-color);
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 16px;
    line-height: 1;
}

/* Legacy decorative lines from old markup — hidden to match the new style */
.sec-subtitle .line {
    display: none;
}

.sec-subtitle img {
    height: 24px;
    width: auto;
}

.text-center .sec-subtitle {
    justify-content: center;
}

.sec-subtitle.white {
    color: #fff;
}

.sec-title {
    font-family: var(--title-font);
    font-size: 42px;
    line-height: 1.2;
    color: var(--title-color);
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -.3px;
}

.sec-title .text-theme {
    color: var(--theme-color);
}

.sec-title.white {
    color: #fff;
}

.sec-title-wrap {
    margin-bottom: 44px;
}

.sec-title-wrap p {
    max-width: 720px;
    margin: 14px auto 0;
    color: var(--body-color);
    font-size: 15.5px;
    line-height: 1.75;
}

@media (max-width: 991px) {
    .sec-title {
        font-size: 28px;
    }

    .sec-title-wrap {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .sec-title {
        font-size: 24px;
    }
}

/* ===== Buttons (live-site style: pill-shaped, orange, Inter) ===== */
.th-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--theme-color);
    color: #fff !important;
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 600;
    padding: 16px 30px;
    border: 1px solid var(--theme-color);
    border-radius: 99px;
    text-decoration: none;
    transition: all .3s;
    line-height: 1;
    white-space: nowrap;
}

.th-btn:hover {
    background: var(--title-color);
    border-color: var(--title-color);
    color: #fff !important;
}

.th-btn.dark-btn {
    background: var(--title-color);
    border-color: var(--title-color);
}

.th-btn.dark-btn:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
}

.th-btn.white-btn {
    background: #fff;
    color: var(--title-color) !important;
    border-color: #fff;
}

.th-btn.white-btn:hover {
    background: var(--theme-color);
    color: #fff !important;
    border-color: var(--theme-color);
}

.th-btn.outline-btn {
    background: transparent;
    color: var(--theme-color) !important;
}

.th-btn.outline-btn:hover {
    background: var(--theme-color);
    color: #fff !important;
}

.th-btn i,
.th-btn svg {
    font-size: 14px;
}

.th-btn .btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #fff;
    color: var(--theme-color);
    border-radius: 50%;
    font-size: 11px;
    transition: all .3s;
}

.th-btn.dark-btn .btn-arrow {
    color: var(--title-color);
}

.th-btn:hover .btn-arrow {
    background: #fff;
    color: var(--title-color);
}

.th-btn.dark-btn:hover .btn-arrow {
    color: var(--theme-color);
}

/* ===== Top Bar (light, transparent-over-marble) ===== */
.th-topbar {
    background: transparent;
    color: var(--title-color);
    padding: 14px 0 10px;
    font-size: 14px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 98;
    transition: transform .35s ease, opacity .35s ease;
}

body.has-scrolled-header .th-topbar {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.th-topbar a {
    color: var(--title-color);
    text-decoration: none;
}

.th-topbar a:hover {
    color: var(--theme-color);
}

.th-topbar .tb-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.th-topbar .tb-left {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--title-color);
}

.th-topbar .tb-left img {
    height: 18px;
}

.th-topbar .tb-right {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}

.th-topbar .tb-right a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.th-topbar .tb-right a i {
    color: var(--theme-color);
    background: rgba(253, 137, 0, .12);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ===== Header (pill-shaped containers over hero marble) ===== */
.th-header {
    background: transparent;
    position: fixed;
    left: 0;
    right: 0;
    top: 54px;
    z-index: 99;
    transition: top .35s ease, background .35s ease, box-shadow .35s ease, padding .35s ease;
    padding: 0;
}

.th-header.scrolled {
    top: 0;
    background: #ffffff;
    box-shadow: 0 2px 18px rgba(16, 24, 64, .08);
    padding: 8px 0;
}

.th-header.scrolled .logo-pill,
.th-header.scrolled .nav-pill {
    box-shadow: none;
    padding-top: 8px;
    padding-bottom: 8px;
    background: transparent;
}

.th-header.scrolled .logo-pill img {
    max-height: 40px;
}

.th-header .header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.th-header .logo-pill {
    background: #fff;
    padding: 16px 30px;
    border-radius: 99px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
    display: inline-flex;
    align-items: center;
}

.th-header .logo-pill img {
    max-height: 42px;
}

.th-header .nav-pill {
    background: #fff;
    padding: 6px 32px;
    border-radius: 99px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
    flex: 1;
    margin: 0 16px;
    display: flex;
    justify-content: center;
}

.th-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 21px;
    margin: 0;
    padding: 0;
}

.th-menu>li {
    position: relative;
}

.th-menu>li>a {
    color: var(--title-color);
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    padding: 15px 0;
    display: inline-block;
    transition: color .3s;
}

.th-menu>li>a:hover,
.th-menu>li.active>a {
    color: var(--theme-color);
}

.th-menu>li>a .bi-chevron-down {
    font-size: 11px;
    margin-left: 3px;
}

.th-menu .submenu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 240px;
    padding: 12px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s;
    border-top: 3px solid var(--theme-color);
    z-index: 100;
}

.th-menu>li:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.th-menu .submenu li a {
    display: block;
    padding: 8px 20px;
    color: var(--title-color);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all .25s;
}

.th-menu .submenu li a:hover {
    background: var(--smoke-color-2);
    color: var(--theme-color);
}

.mobile-toggler {
    display: none;
    background: var(--theme-color);
    color: #fff;
    border: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 22px;
}

@media (max-width: 1199px) {
    .th-header {
        position: relative;
        top: 0;
        background: #fff;
        padding: 12px 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
    }

    .th-header .logo-pill,
    .th-header .nav-pill {
        box-shadow: none;
        padding: 0;
        background: transparent;
    }

    .th-menu {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-toggler {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* ===== Hero (marble bg + technician image on right) ===== */
.th-hero {
    background: #fff url('../images/hero-marble-bg.jpg') center/cover no-repeat;
    padding: 190px 0 110px;
    position: relative;
    overflow: hidden;
}

.th-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .72) 0%, rgba(255, 255, 255, .45) 55%, rgba(255, 255, 255, .2) 100%);
    z-index: 0;
}

.th-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 660px;
    padding-right: 20px;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--theme-color);
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-subtitle .hs-icon {
    height: 32px;
    width: auto;
    flex-shrink: 0;
}

.hero-subtitle .hs-text {
    position: relative;
    padding: 12px 0;
    display: inline-block;
    line-height: 1;
}

.hero-subtitle .hs-text::before,
.hero-subtitle .hs-text::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--theme-color);
}

.hero-subtitle .hs-text::before {
    top: 0;
}

.hero-subtitle .hs-text::after {
    bottom: 0;
}

.hero-title {
    font-size: 64px;
    line-height: 1.08;
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: 26px;
    font-family: var(--title-font);
    letter-spacing: -.5px;
}

.hero-title .title-row {
    display: block;
}

.hero-title .title-row.orange {
    color: var(--theme-color);
}

.hero-desc {
    color: var(--body-color);
    max-width: 560px;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 34px;
}

.hero-btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.hero-btn-group .th-btn i {
    font-size: 12px;
    margin-left: 4px;
    transition: transform .25s;
}

.hero-btn-group .th-btn:hover i {
    transform: translateX(4px);
}

.hero-arrow-svg {
    position: absolute;
    left: calc(100% + 30px);
    top: -8px;
    width: 110px;
    height: auto;
    pointer-events: none;
    opacity: .9;
}

.hero-image-wrap {
    position: relative;
    padding-left: 10px;
}

.hero-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 300px 300px 30px 300px;
}

@media (max-width: 1199px) {
    .th-hero {
        padding: 150px 0 60px;
    }

    .hero-arrow-svg {
        display: none;
    }

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

    .hero-subtitle .hs-icon {
        height: 26px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 32px;
    }
}

/* ===== Quick-Connect floating widget ===== */
.quick-connect {
    position: fixed;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-connect .qc-single {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--title-color);
    color: #fff !important;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(26, 91, 142, .3);
    transition: background .25s, transform .25s;
    position: relative;
}

.quick-connect .qc-single:hover {
    background: var(--theme-color);
    transform: scale(1.06);
    color: #fff !important;
}

.quick-connect .qc-single::after {
    content: attr(data-text);
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--title-color);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all .25s;
    pointer-events: none;
}

.quick-connect .qc-single:hover::after {
    opacity: 1;
    visibility: visible;
    left: calc(100% + 14px);
}

@media (max-width: 767px) {
    .quick-connect {
        left: auto;
        right: 14px;
        top: auto;
        bottom: 20px;
        transform: none;
        flex-direction: row-reverse;
    }

    .quick-connect .qc-single::after {
        display: none;
    }
}

/* Scroll-to-top button — white circle with orange ring + orange arrow */
.scroll-top {
    position: fixed;
    right: 22px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    color: var(--theme-color);
    border: 2px solid var(--theme-color);
    font-size: 16px;
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .3s;
    box-shadow: 0 10px 24px rgba(239, 127, 42, .2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--theme-color);
    color: #fff;
}

@media (max-width: 767px) {
    .scroll-top {
        right: 14px;
        bottom: 84px;
    }
}

/* ===== About + Process (combined 3-column) ===== */
.about-area {
    background: #fff;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.about-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 10% 20%, rgba(239, 127, 42, .04) 0%, transparent 45%),
        radial-gradient(ellipse at 92% 85%, rgba(26, 91, 142, .05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.about-area .container {
    position: relative;
    z-index: 1;
}

.about-subtitle {
    margin-bottom: 18px;
}

.about-subtitle .hs-icon {
    height: 26px;
}

.about-subtitle .hs-plain {
    font-family: var(--body-font);
    font-size: 17px;
    font-weight: 600;
    color: var(--theme-color);
    letter-spacing: 0;
    text-transform: none;
    line-height: 1;
}

.about-title {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: -.3px;
}

.about-copy {
    color: var(--body-color);
    font-size: 14.5px;
    line-height: 1.85;
    margin-bottom: 26px;
}

.about-ticks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-ticks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--body-font);
    color: var(--title-color);
    font-weight: 600;
    font-size: 15px;
}

.about-ticks .tick {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    background: var(--theme-color);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    box-shadow: 0 4px 10px rgba(239, 127, 42, .3);
}

/* Center circular image */
.about-circle {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 440px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(26, 91, 142, .15);
}

.about-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right-column process steps */
.about-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
}

.about-step {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    position: relative;
}

.about-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 29px;
    top: 62px;
    bottom: -24px;
    width: 2px;
    background-image: linear-gradient(to bottom, var(--theme-color) 50%, transparent 50%);
    background-size: 2px 8px;
    background-repeat: repeat-y;
    opacity: .55;
}

.about-step .step-num {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--theme-color);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--title-font);
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(239, 127, 42, .3);
    border: 6px solid #fff;
    outline: 1px solid rgba(239, 127, 42, .25);
    outline-offset: -3px;
}

.about-step .step-body h4 {
    color: var(--title-color);
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.2;
}

.about-step .step-body p {
    color: var(--body-color);
    font-size: 14.5px;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 991px) {
    .about-area {
        padding: 70px 0;
    }

    .about-title {
        font-size: 28px;
    }

    .about-circle {
        max-width: 340px;
    }
}



/* ===== Services (blue band, image-tile cards) ===== */
.services-area {
    background: var(--title-color);
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
}

.services-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 92% 18%, rgba(239, 127, 42, .12) 0%, transparent 45%),
        radial-gradient(circle at 8% 85%, rgba(255, 255, 255, .05) 0%, transparent 50%);
    pointer-events: none;
}

.services-area>.container {
    position: relative;
    z-index: 1;
}

.services-head {
    margin-bottom: 44px;
}

.services-subtitle {
    margin-bottom: 14px;
}

.services-subtitle .hs-icon {
    height: 26px;
    filter: brightness(0) saturate(100%) invert(58%) sepia(71%) saturate(1654%) hue-rotate(347deg) brightness(97%) contrast(92%);
}

.services-subtitle .hs-plain {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-color);
    letter-spacing: 0;
    text-transform: none;
    line-height: 1;
}

.services-title {
    font-family: var(--title-font);
    font-size: 42px;
    line-height: 1.15;
    color: #fff;
    font-weight: 700;
    letter-spacing: -.3px;
    margin: 0;
    max-width: 620px;
}

/* Image tile card */
.svc-tile {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 14px;
    padding: 10px 10px 16px;
    height: 100%;
    text-decoration: none;
    transition: transform .35s, box-shadow .35s;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(14, 59, 95, .18);
}

.svc-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(14, 59, 95, .3);
}

.svc-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1 / 1;
    margin-bottom: 14px;
    background: var(--smoke-color-2);
}

.svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s;
}

.svc-tile:hover .svc-img img {
    transform: scale(1.08);
}

.svc-name {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    margin: 4px 0 0;
    line-height: 1.3;
    padding: 0 8px;
}

.svc-tile:hover .svc-name {
    color: var(--theme-color);
}

@media (max-width: 991px) {
    .services-area {
        padding: 70px 0;
    }

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

/* ===== Experience band + overlapping Counter pill ===== */
.exp-area {
    position: relative;
    padding: 0px;
}

.exp-hero {
    position: relative;
    min-height: 620px;
    padding: 140px 0 200px;
    background: url('../images/team-photo.webp') center/cover no-repeat;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.exp-hero .exp-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 59, 95, .50);
    z-index: 1;
}

.exp-hero>.container {
    position: relative;
    z-index: 2;
}

.exp-content {
    max-width: 760px;
    margin: 0 auto;
}

.exp-title {
    font-family: var(--title-font);
    font-size: 48px;
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: -.3px;
}

.exp-title .text-theme {
    color: var(--theme-color);
}

.exp-copy {
    color: rgba(255, 255, 255, .85);
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.exp-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-family: var(--title-font);
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    transition: color .25s;
}

.exp-cta .cta-icon {
    width: 46px;
    height: 46px;
    background: var(--theme-color);
    color: #fff;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform .25s, background .25s;
}

.exp-cta:hover {
    color: var(--theme-color);
}

.exp-cta:hover .cta-icon {
    transform: translateY(-3px);
}

/* Overlapping counter band */
.exp-counter-band {
    position: relative;
    margin-top: -120px;
    background: var(--title-color);
    border-radius: 18px;
    padding: 40px 30px;
    z-index: 3;
    box-shadow: 0 30px 60px rgba(14, 59, 95, .3);
    background-image: radial-gradient(circle at 90% 20%, rgba(239, 127, 42, .1) 0%, transparent 50%);
}

.counter-grid {
    margin: 0;
}

.counter-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 20px;
    position: relative;
}

@media (min-width: 992px) {
    .counter-grid>[class*="col-"]:not(:last-child) .counter-item::after {
        content: '';
        position: absolute;
        top: 20%;
        bottom: 20%;
        right: 0;
        width: 1px;
        background: rgba(255, 255, 255, .12);
    }
}

.counter-item .c-icon {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.counter-item .c-body {
    flex: 1;
}

.counter-item h3 {
    font-size: 34px;
    color: #fff;
    margin: 0 0 2px;
    font-weight: 700;
    font-family: var(--title-font);
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
}

.counter-item h3 .plus {
    color: var(--theme-color);
    font-size: 30px;
    margin-left: 1px;
}

.counter-item p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
}

@media (max-width: 991px) {
    .exp-hero {
        min-height: 500px;
        padding: 110px 0 180px;
    }

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

    .exp-counter-band {
        padding: 24px 18px;
        margin-top: -100px;
    }

    .counter-item {
        padding: 14px 10px;
    }

    .counter-item .c-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .counter-item h3 {
        font-size: 26px;
    }

    .counter-grid>[class*="col-"]:not(:last-child) .counter-item::after {
        display: none;
    }
}


/* ===== Split content sections (VRF / Haier / intro on service pages) ===== */
.split-area {
    padding: 90px 0;
    background: #fff;
}

.split-area.alt {
    background: var(--smoke-color);
}

.split-title {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -.4px;
    margin-bottom: 26px;
}

.split-copy {
    color: var(--body-color);
    font-size: 14.5px;
    line-height: 1.9;
    margin-bottom: 28px;
}

.split-copy strong {
    color: var(--title-color);
    font-weight: 700;
}

.split-btn {
    gap: 12px;
}

.split-btn i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s, background .25s;
}

.split-btn:hover i {
    background: #fff;
    color: var(--theme-color);
    transform: translateX(3px);
}

.split-image {
    position: relative;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
    box-shadow: 0 20px 50px rgba(26, 91, 142, .15);
}

/* Tick-list kept for inner pages (used on service-template) */
.tick-list {
    padding: 0;
    list-style: none;
    margin: 20px 0 0;
}

.tick-list li {
    padding: 8px 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--title-color);
    font-weight: 500;
    font-size: 15px;
}

.tick-list li i {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--theme-color);
    color: #fff;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}

@media (max-width: 991px) {
    .split-area {
        padding: 60px 0;
    }

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

/* ===== Pricing cards (AC Services page) ===== */
.pricing-area {
    background: #EEF0F2;
    padding: 100px 0;
}

.price-card {
    background: #fff;
    border-radius: 14px;
    padding: 36px 32px 34px;
    height: 100%;
    box-shadow: 0 6px 20px rgba(26, 91, 142, .06);
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--theme-color);
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(26, 91, 142, .15);
}

.price-card .price-title {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 14px;
    min-height: 50px;
}

.price-card .price-amount {
    font-family: var(--title-font);
    color: var(--theme-color);
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.5px;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px dashed var(--border-color);
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px;
}

.price-card .price-feats {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    flex: 1;
}

.price-card .price-feats li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    color: var(--title-color);
    font-weight: 500;
    font-size: 14.5px;
    line-height: 1.6;
}

.price-card .price-feats li i {
    color: #fff;
    background: var(--theme-color);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    flex-shrink: 0;
    margin-top: 4px;
}

.price-card .price-cta {
    width: 100%;
    justify-content: center;
    gap: 8px;
}

.price-card .price-cta i {
    font-size: 12px;
    transition: transform .2s;
}

.price-card .price-cta:hover i {
    transform: translateX(4px);
}

/* AMC-specific variants */
.amc-card {
    position: relative;
    text-align: center;
}

.amc-card .price-title {
    min-height: auto;
    text-align: center;
}

.amc-card .price-amount {
    justify-content: center;
}

.amc-card .amc-gst {
    font-size: 14px;
    font-weight: 600;
    color: var(--body-color);
    margin-left: 4px;
}

.amc-card .price-feats li {
    justify-content: center;
    font-size: 14px;
    letter-spacing: .3px;
}

.amc-card.featured {
    background: var(--title-color);
    border-top-color: var(--theme-color);
    transform: translateY(-10px);
}

.amc-card.featured:hover {
    transform: translateY(-16px);
}

.amc-card.featured .price-title {
    color: #fff;
}

.amc-card.featured .price-amount {
    color: var(--theme-color);
    border-bottom-color: rgba(255, 255, 255, .15);
}

.amc-card.featured .amc-gst {
    color: rgba(255, 255, 255, .7);
}

.amc-card.featured .price-feats li {
    color: rgba(255, 255, 255, .88);
}

.amc-card .amc-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--theme-color);
    color: #fff;
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 6px 16px;
    border-radius: 99px;
    white-space: nowrap;
    box-shadow: 0 6px 14px rgba(239, 127, 42, .35);
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .amc-card.featured {
        transform: none;
    }

    .amc-card.featured:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 991px) {
    .pricing-area {
        padding: 60px 0;
    }

    .price-card .price-amount {
        font-size: 32px;
    }

    .price-card .price-title {
        min-height: auto;
    }
}

/* ===== Work image grid (VRF Projects) ===== */
.work-image {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 16 / 10;
    box-shadow: 0 18px 40px rgba(26, 91, 142, .12);
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.work-image:hover img {
    transform: scale(1.04);
}

.project-figure {
    margin: 0;
}

.project-figure figcaption {
    text-align: center;
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 18px;
    font-weight: 700;
    margin-top: 14px;
}

/* ===== Service variant cards (service pages — installation types, repair types, etc.) ===== */
.variants-area {
    background: #EEF0F2;
    padding: 90px 0;
}

.variant-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 14px rgba(26, 91, 142, .06);
    transition: transform .3s ease, box-shadow .3s ease;
    border: 1px solid var(--border-color);
}

.variant-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(26, 91, 142, .14);
    border-color: var(--theme-color);
}

.variant-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--smoke-color-2);
}

.variant-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.variant-card:hover .variant-img img {
    transform: scale(1.04);
}

.variant-body {
    padding: 24px 26px 28px;
}

.variant-body h4 {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.3;
}

.variant-body p {
    color: var(--body-color);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
}

/* Intro button group (service pages) */
.split-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.wa-btn {
    background: #25d366;
    border-color: #25d366;
}

.wa-btn:hover {
    background: #1ebe5c;
    border-color: #1ebe5c;
}

@media (max-width: 575px) {
    .variant-body {
        padding: 20px 20px 22px;
    }

    .variant-body h4 {
        font-size: 18px;
    }

    .split-btn-group .th-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== Best Haier AC grid (Haier dealers page) ===== */
.haier-shop-area {
    background: #EEF0F2;
    padding: 100px 0;
}

.haier-shop-head {
    margin-bottom: 40px;
}

.haier-shop-title {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -.3px;
    margin: 10px 0 0;
}

.haier-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 14px rgba(26, 91, 142, .06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.haier-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(26, 91, 142, .15);
}

.haier-card-img {
    background: #fff;
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow: hidden;
}

.haier-card-img img {
    max-width: 80%;
    max-height: 100%;
    object-fit: contain;
    transition: transform .5s ease;
}

.haier-card:hover .haier-card-img img {
    transform: scale(1.04);
}

.haier-card-name {
    background: var(--title-color);
    padding: 22px 20px;
    text-align: center;
    border-top: 3px solid var(--theme-color);
    transition: background .25s;
}

.haier-card:hover .haier-card-name {
    background: #164E7A;
}

.haier-card-name h4 {
    color: #fff;
    font-family: var(--title-font);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -.1px;
    margin: 0;
}

@media (max-width: 991px) {
    .haier-shop-area {
        padding: 60px 0;
    }

    .haier-shop-title {
        font-size: 28px;
    }
}

/* ===== Included / Excluded cards (Haier page + service pages) ===== */
.inc-area {
    background: #fff;
    padding: 90px 0;
}

.inc-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 32px 30px 28px;
    height: 100%;
    box-shadow: 0 4px 14px rgba(26, 91, 142, .05);
    transition: all .3s;
}

.inc-card:hover {
    box-shadow: 0 18px 34px rgba(26, 91, 142, .12);
    transform: translateY(-3px);
}

.inc-card.included {
    border-top: 4px solid var(--success-color, #27AE60);
}

.inc-card.excluded {
    border-top: 4px solid #D94545;
}

.inc-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px dashed var(--border-color);
}

.inc-head .inc-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    color: #fff;
}

.inc-card.included .inc-icon {
    background: #27AE60;
}

.inc-card.excluded .inc-icon {
    background: #D94545;
}

.inc-head h3 {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 19px;
    font-weight: 700;
    margin: 6px 0 0;
    line-height: 1.3;
}

.inc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inc-list li {
    display: flex;
    gap: 12px;
    padding: 9px 0;
    color: var(--body-color);
    font-size: 14.5px;
    line-height: 1.6;
}

.inc-list li i {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #fff;
    margin-top: 3px;
}

.inc-card.included .inc-list li i {
    background: #27AE60;
}

.inc-card.excluded .inc-list li i {
    background: #D94545;
}

.inc-list strong {
    color: var(--title-color);
    font-weight: 700;
}

/* ===== Installation process cards (Haier page) ===== */
.proc-area {
    background: #EEF0F2;
    padding: 90px 0;
}

.proc-card {
    background: #fff;
    border-radius: 14px;
    padding: 36px 26px 30px;
    text-align: center;
    height: 100%;
    position: relative;
    border: 1px solid transparent;
    box-shadow: 0 4px 14px rgba(26, 91, 142, .05);
    transition: all .3s;
}

.proc-card:hover {
    transform: translateY(-6px);
    border-color: var(--theme-color);
    box-shadow: 0 18px 34px rgba(26, 91, 142, .12);
}

.proc-card .proc-num {
    position: absolute;
    top: 14px;
    right: 20px;
    font-family: var(--title-font);
    font-size: 52px;
    font-weight: 800;
    color: rgba(239, 127, 42, .18);
    line-height: 1;
    letter-spacing: -2px;
    transition: color .3s;
}

.proc-card:hover .proc-num {
    color: rgba(239, 127, 42, .32);
}

.proc-card .proc-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(239, 127, 42, .12);
    color: var(--theme-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: all .3s;
}

.proc-card:hover .proc-icon {
    background: var(--theme-color);
    color: #fff;
    transform: rotate(-8deg);
}

.proc-card h4 {
    color: var(--title-color);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.proc-card p {
    color: var(--body-color);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 991px) {
    .proc-area {
        padding: 60px 0;
    }

    .inc-area {
        padding: 60px 0;
    }

    .variants-area {
        padding: 60px 0;
    }

    .inc-card {
        padding: 26px 22px;
    }
}

/* ===== Founder profile (About page) ===== */
.founder-photo {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: 0 20px 50px rgba(26, 91, 142, .15);
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-meta {
    margin: -8px 0 22px;
    padding: 14px 0;
    border-top: 2px solid var(--theme-color);
    border-bottom: 1px solid var(--border-color);
}

.founder-meta h5 {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 4px;
    letter-spacing: -.2px;
}

.founder-meta h6 {
    color: var(--theme-color);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    letter-spacing: .3px;
}

@media (max-width: 991px) {
    .founder-photo {
        aspect-ratio: 16 / 12;
    }
}

/* ===== Brand strip (We Deal In) ===== */
.brands-area {
    background: #fff;
    padding: 80px 0 100px;
}

.brand-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.brand-row.brand-row-2 {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    max-width: 640px;
}

.brand-row.brand-row-4 {
    grid-template-columns: repeat(4, 1fr);
    max-width: 880px;
}

.brand-tile {
    background: var(--smoke-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 34px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    min-height: 110px;
}

.brand-tile span {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: .5px;
    transition: color .25s;
}

.brand-tile:hover {
    background: #fff;
    border-color: var(--theme-color);
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(26, 91, 142, .1);
}

.brand-tile:hover span {
    color: var(--theme-color);
}

@media (max-width: 991px) {

    .brand-row,
    .brand-row.brand-row-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .brand-row.brand-row-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-area {
        padding: 60px 0;
    }
}

@media (max-width: 575px) {

    .brand-row,
    .brand-row.brand-row-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-row.brand-row-2 {
        grid-template-columns: 1fr;
    }

    .brand-tile {
        padding: 24px 12px;
        min-height: 90px;
    }

    .brand-tile span {
        font-size: 18px;
    }
}

/* ===== Why Choose Us (Our Projects page) ===== */
.why-area {
    background: #EEF0F2;
    padding: 100px 0;
}

.why-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px 26px;
    height: 100%;
    transition: all .3s;
    border: 1px solid transparent;
    box-shadow: 0 4px 14px rgba(26, 91, 142, .06);
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: var(--theme-color);
    box-shadow: 0 16px 34px rgba(26, 91, 142, .12);
}

.why-card .icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(239, 127, 42, .12);
    color: var(--theme-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    transition: all .3s;
}

.why-card:hover .icon {
    background: var(--theme-color);
    color: #fff;
    transform: rotate(-8deg);
}

.why-card h4 {
    color: var(--title-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-card p {
    color: var(--body-color);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .why-area {
        padding: 60px 0;
    }
}

/* ===== Exclusive Video (Our Projects page) ===== */
.video-area {
    background: #fff;
    padding: 90px 0 100px;
}

.video-wrap {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    background: var(--title-color);
    box-shadow: 0 24px 50px rgba(26, 91, 142, .22);
}

.video-wrap .project-video {
    width: 100%;
    display: block;
    max-height: 560px;
    object-fit: cover;
    background: #000;
}

.video-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 30px;
    background: var(--title-color);
    color: #fff;
    flex-wrap: wrap;
}

.video-caption h4 {
    color: #fff;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--title-font);
}

.video-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, .18);
}

.video-stat .stat-num {
    font-family: var(--title-font);
    font-size: 32px;
    font-weight: 800;
    color: var(--theme-color);
    line-height: 1;
}

.video-stat .stat-num .plus {
    color: var(--theme-color);
    font-size: 22px;
    margin-left: 1px;
}

.video-stat .stat-label {
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .video-area {
        padding: 60px 0;
    }

    .video-caption {
        padding: 18px 20px;
    }

    .video-stat {
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .18);
        padding-top: 12px;
    }
}

/* ===== Service Areas — pill list (VRF dealers page) ===== */
.areas-pill-area {
    background: #fff;
    padding: 100px 0;
}

.areas-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
    max-width: 980px;
    margin: 0 auto;
}

.area-pill {
    display: inline-flex;
    align-items: center;
    background: var(--smoke-color);
    border: 1px solid var(--border-color);
    border-radius: 99px;
    padding: 10px 22px;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 14.5px;
    color: var(--title-color);
    transition: all .25s;
    cursor: default;
}

.area-pill:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .areas-pill-area {
        padding: 60px 0;
    }
}

/* ===== Service Areas (image-left + checklist-right) ===== */
.areas-area {
    background: #fff;
    padding: 110px 0;
}

.areas-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    box-shadow: 0 20px 50px rgba(26, 91, 142, .14);
}

.areas-title {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -.3px;
    margin-bottom: 18px;
}

.areas-copy {
    color: var(--body-color);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 26px;
}

.areas-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(5, auto);
    grid-auto-flow: column;
    gap: 14px 18px;
}

.areas-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--body-font);
    color: var(--title-color);
    font-weight: 600;
    font-size: 15px;
}

.areas-list li i {
    color: var(--theme-color);
    font-size: 17px;
    flex-shrink: 0;
}

.areas-list li a {
    color: var(--title-color);
    text-decoration: none;
    transition: color .2s;
}

.areas-list li a:hover {
    color: var(--theme-color);
}

.areas-cta {
    gap: 10px;
}

.areas-cta i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .areas-area {
        padding: 70px 0;
    }

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

    .areas-list {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        grid-auto-flow: row;
    }
}

@media (max-width: 575px) {
    .areas-list {
        grid-template-columns: 1fr;
    }
}

/* ===== Products ===== */
.products-area {
    background: var(--smoke-color);
    padding: 120px 0;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all .35s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(16, 24, 64, .14);
    border-color: var(--theme-color);
}

.product-card .product-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-body h4 {
    min-height: 48px;
    display: flex;
    align-items: center;
}

.product-img {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .6s;
}

.product-card:hover .product-img img {
    transform: scale(1.06);
}

.product-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--theme-color);
    color: #fff;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 99px;
    text-transform: uppercase;
}

.product-body {
    padding: 22px 24px 26px;
}

.product-body h4 {
    color: var(--title-color);
    font-size: 18px;
    margin-bottom: 14px;
    line-height: 1.4;
}

.product-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--theme-color);
    font-weight: 600;
    font-family: var(--body-font);
    font-size: 14px;
    text-decoration: none;
    transition: gap .25s;
}

.product-more:hover {
    gap: 12px;
    color: var(--title-color);
}

/* ===== Testimonials (split-screen: dark-blue content + right photo) ===== */
.testi-area {
    padding: 0;
    background: var(--title-color);
    overflow: hidden;
}

.testi-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 640px;
}

.testi-left {
    position: relative;
    background: var(--title-color);
    padding: 100px 60px 100px max(60px, calc((100vw - 1320px) / 2 + 12px));
    overflow: hidden;
}

.testi-deco {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .18) 1.4px, transparent 1.8px);
    background-size: 16px 16px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 25% 0%, #000 0%, transparent 70%);
    mask-image: radial-gradient(ellipse 70% 60% at 25% 0%, #000 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.testi-inner {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.testi-left .about-subtitle {
    margin-bottom: 16px;
}

.testi-title {
    font-family: var(--title-font);
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.3px;
    margin-bottom: 40px;
}

.testi-carousel .t-stars {
    color: var(--theme-color);
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.testi-carousel .t-quote {
    color: rgba(255, 255, 255, .92);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 26px;
}

.testi-carousel .t-author {
    color: #fff;
    font-family: var(--title-font);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.testi-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 54px;
}

.testi-nav .t-nav {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .3);
    color: #fff;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s;
}

.testi-nav .t-nav:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
}

.testi-nav .t-counter {
    color: #fff;
    font-family: var(--title-font);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.testi-nav .t-counter em {
    color: var(--theme-color);
    font-style: normal;
    font-size: 16px;
    font-weight: 600;
}

.testi-right {
    position: relative;
    overflow: hidden;
    background: var(--title-color);
}

.testi-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .testi-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .testi-left {
        padding: 60px 24px;
    }

    .testi-right {
        min-height: 360px;
    }

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

    .testi-nav .t-nav {
        width: 46px;
        height: 46px;
    }
}

/* ===== Video testimonial grid (testimonials page) ===== */
.testi-grid-area {
    background: #fff;
    padding: 100px 0;
}

.vtesti-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 8px 24px rgba(26, 91, 142, .08);
    transition: transform .35s ease, box-shadow .35s ease;
    border: 1px solid var(--border-color);
}

.vtesti-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(26, 91, 142, .15);
    border-color: var(--theme-color);
}

.vtesti-video {
    position: relative;
    aspect-ratio: 9 / 16;
    background: #000;
    overflow: hidden;
}

.vtesti-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vtesti-body {
    padding: 24px 24px 28px;
    text-align: center;
}

.vtesti-stars {
    color: var(--theme-color);
    font-size: 14px;
    margin-bottom: 10px;
    display: inline-flex;
    gap: 3px;
}

.vtesti-name {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 4px;
}

.vtesti-role {
    font-family: var(--body-font);
    color: var(--theme-color);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    letter-spacing: .2px;
}

@media (max-width: 991px) {
    .testi-grid-area {
        padding: 60px 0;
    }

    .vtesti-video {
        aspect-ratio: 16 / 10;
    }
}

/* ===== Instagram feed (static) ===== */
.insta-area {
    background: var(--smoke-color);
    padding: 120px 0;
}

.insta-tile {
    display: block;
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
}

.insta-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(244, 118, 41, .85), rgba(196, 49, 134, .85));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    opacity: 0;
    transition: opacity .35s;
}

.insta-tile:hover .insta-overlay {
    opacity: 1;
}

.insta-tile:hover img {
    transform: scale(1.08);
}

.insta-overlay i {
    transform: scale(.6);
    transition: transform .35s cubic-bezier(.4, 1.5, .5, 1) .1s;
}

.insta-tile:hover .insta-overlay i {
    transform: scale(1);
}

/* ===== Blog preview ===== */
.blog-area {
    background: #EEF0F2;
    padding: 110px 0;
}

.blog-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 50px;
}

.blog-head-text {
    max-width: 780px;
}

.blog-title {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -.3px;
    margin: 10px 0 0;
}

.blog-head-cta {
    flex-shrink: 0;
    gap: 10px;
}

.blog-head-cta i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--theme-color);
    color: #fff;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s;
}

.blog-head-cta:hover i {
    transform: translateX(3px);
}

.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: visible;
    height: 100%;
    padding: 10px 10px 24px;
    transition: all .35s;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(26, 91, 142, .14);
}

.blog-thumb {
    display: block;
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    border-radius: 10px;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
    border-radius: 10px;
    display: block;
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.03);
}

.blog-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--theme-color);
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border-radius: 99px;
    border: 1px solid rgba(239, 127, 42, 0.18);
    box-shadow: 0 6px 18px rgba(26, 91, 142, 0.18);
    transition: all .3s ease;
    max-width: calc(100% - 28px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-cat::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--theme-color);
    flex-shrink: 0;
}

.blog-card:hover .blog-cat {
    background: var(--theme-color);
    color: #fff;
    border-color: var(--theme-color);
    box-shadow: 0 10px 22px rgba(239, 127, 42, 0.45);
}

.blog-card:hover .blog-cat::before {
    background: #fff;
}

/* Blog pagination */
.blog-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
    font-family: var(--body-font);
}

.blog-pagination .bp-num,
.blog-pagination .bp-arrow,
.blog-pagination .bp-dots {
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    font-weight: 600;
    font-size: 15px;
    color: var(--title-color);
    background: #fff;
    border: 1px solid #e3e7ef;
    border-radius: 10px;
    text-decoration: none;
    transition: all .25s ease;
}

.blog-pagination .bp-num:hover,
.blog-pagination .bp-arrow:hover {
    background: var(--theme-color);
    color: #fff;
    border-color: var(--theme-color);
    box-shadow: 0 8px 18px rgba(239, 127, 42, 0.28);
    transform: translateY(-2px);
}

.blog-pagination .bp-num.active {
    background: var(--theme-color);
    color: #fff;
    border-color: var(--theme-color);
    box-shadow: 0 8px 18px rgba(239, 127, 42, 0.28);
    cursor: default;
}

.blog-pagination .bp-dots {
    border: none;
    background: transparent;
    color: var(--body-color);
    min-width: auto;
    padding: 0 4px;
}

.blog-pagination .bp-arrow.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.blog-pagination .bp-arrow i {
    font-size: 14px;
}

.blog-date {
    position: absolute;
    right: 14px;
    bottom: 14px;
    background: var(--theme-color);
    color: #fff;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 13.5px;
    padding: 8px 18px;
    border-radius: 99px;
    box-shadow: 0 10px 22px rgba(239, 127, 42, .35);
    white-space: nowrap;
    z-index: 2;
}

.blog-body {
    padding: 14px 10px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--body-font);
    font-size: 14px;
    color: var(--title-color);
    font-weight: 600;
    margin-bottom: 14px;
}

.blog-meta i {
    color: var(--theme-color);
    font-size: 12px;
    margin-right: 4px;
}

.blog-meta .sep {
    color: rgba(26, 91, 142, .25);
    font-weight: 400;
}

.blog-body h4 {
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    font-family: var(--title-font);
}

.blog-body h4 a {
    color: var(--title-color);
    text-decoration: none;
    transition: color .25s;
}

.blog-body h4 a:hover {
    color: var(--theme-color);
}

@media (max-width: 991px) {

    .products-area,
    .testi-area,
    .insta-area,
    .blog-area {
        padding: 70px 0;
    }

    .blog-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-title {
        font-size: 28px;
    }
}

/* ===== FAQ (single-column, numbered, clean) ===== */
.faq-area {
    background: #fff;
    padding: 90px 0;
}

.faq-head {
    margin-bottom: 40px;
}

.faq-title {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -.3px;
    margin: 10px 0 0;
}

.faq-area .accordion {
    --bs-accordion-border-color: transparent;
    --bs-accordion-border-width: 0;
}

.faq-area .accordion-item {
    background: #fff;
    border: 0;
    margin-bottom: 14px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(26, 91, 142, .05);
}

.faq-area .accordion-header {
    margin: 0;
}

.faq-area .accordion-button {
    background: #fff;
    color: var(--title-color);
    font-family: var(--title-font);
    font-weight: 700;
    font-size: 16px;
    padding: 22px 28px;
    border: 0;
    border-radius: 10px !important;
    box-shadow: none;
    line-height: 1.4;
}

.faq-area .accordion-button::after {
    width: 14px;
    height: 14px;
    background-size: 14px;
    margin-left: 14px;
    flex-shrink: 0;
    filter: grayscale(1) brightness(.45);
    transition: transform .25s;
}

.faq-area .accordion-button:not(.collapsed) {
    background: #fff;
    color: var(--title-color);
    box-shadow: none;
}

.faq-area .accordion-button:not(.collapsed)::after {
    filter: grayscale(1) brightness(.45);
}

.faq-area .accordion-button:focus {
    box-shadow: none;
    border: 0;
}

.faq-area .accordion-button:hover {
    color: var(--theme-color);
}

.faq-area .accordion-body {
    background: #fff;
    color: var(--body-color);
    padding: 0 28px 22px;
    font-size: 13.5px;
    line-height: 1.75;
    margin-top: -4px;
}

@media (max-width: 991px) {
    .faq-area {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-area .accordion-button {
        padding: 18px 20px;
        font-size: 15px;
    }

    .faq-area .accordion-body {
        padding: 0 20px 18px;
    }
}

/* ===== Breadcrumb (light dotted hero with blue title) ===== */
.th-breadcrumb {
    position: relative;
    padding: 170px 0 70px;
    text-align: center;
    overflow: hidden;
    background: #EEF1F4;
}

.th-breadcrumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(26, 91, 142, .18) 1.1px, transparent 1.6px);
    background-size: 14px 14px;
    opacity: .55;
    z-index: 0;
}

.th-breadcrumb .container {
    position: relative;
    z-index: 1;
}

.th-breadcrumb .bc-title {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.3px;
    margin: 0 0 16px;
}

.th-breadcrumb .bc-trail {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}

.th-breadcrumb .bc-trail a {
    color: var(--title-color);
    text-decoration: none;
    transition: color .2s;
}

.th-breadcrumb .bc-trail a:hover {
    color: var(--theme-color);
}

.th-breadcrumb .bc-trail .bc-sep {
    color: var(--theme-color);
    font-size: 12px;
}

.th-breadcrumb .bc-trail .current {
    color: var(--title-color);
}

@media (max-width: 991px) {
    .th-breadcrumb {
        padding: 130px 0 54px;
    }

    .th-breadcrumb .bc-title {
        font-size: 30px;
    }

    .th-breadcrumb .bc-trail {
        font-size: 14px;
    }
}

/* ===== Book-an-Expert page (same info-card + form layout as contact-area) ===== */
.book-expert-area {
    padding: 90px 0 70px;
    background: #fff;
}

/* ===== Contact — Info card (left) + Request form (right) ===== */
.contact-area {
    padding: 0 0 80px;
    background: #fff;
}

/* LEFT: Blue info card */
.contact-info-card {
    background: var(--title-color);
    color: #fff;
    padding: 44px 40px;
    border-radius: 16px;
    height: 100%;
    background-image: radial-gradient(circle at 90% 8%, rgba(239, 127, 42, .12) 0%, transparent 55%);
}

.ci-label {
    color: var(--theme-color);
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ci-label-sub {
    margin-top: 32px;
}

.ci-address {
    display: flex;
    gap: 14px;
    color: rgba(255, 255, 255, .92);
    font-size: 14.5px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.ci-address .ci-pin {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--theme-color);
    color: #fff;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-top: 2px;
}

.ci-row {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.ci-row .ci-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: var(--theme-color);
    color: #fff;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-top: 2px;
}

.ci-row strong {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
}

.ci-row p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .92);
}

.ci-row p a {
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
    transition: color .25s;
}

.ci-row p a:hover {
    color: var(--theme-color);
}

.ci-note {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.7;
    margin: 28px 0 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.ci-note strong {
    color: var(--theme-color);
}

/* RIGHT: Form */
.contact-form-wrap {
    padding: 10px 0 0 10px;
}

.request-title {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.3px;
    margin: 10px 0 36px;
}

.contact-form .input-with-icon {
    position: relative;
    margin-bottom: 0;
}

.contact-form .input-with-icon input,
.contact-form .input-with-icon textarea,
.contact-form .input-with-icon select {
    width: 100%;
    padding: 16px 48px 16px 20px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin: 0;
    font-family: var(--body-font);
    font-size: 14.5px;
    color: var(--title-color);
    transition: border-color .25s, box-shadow .25s;
    appearance: none;
    -webkit-appearance: none;
}

.contact-form .input-with-icon textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form .input-with-icon input:focus,
.contact-form .input-with-icon textarea:focus,
.contact-form .input-with-icon select:focus {
    outline: 0;
    border-color: var(--theme-color);
    box-shadow: 0 0 0 4px rgba(239, 127, 42, .08);
}

.contact-form .input-with-icon>i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa3ae;
    font-size: 14px;
    pointer-events: none;
}

.contact-form .input-with-icon>i.top {
    top: 18px;
    transform: none;
}

.contact-form .input-with-icon.select-wrap>i {
    font-size: 12px;
    color: var(--title-color);
}

.contact-form .send-btn {
    width: 100%;
    padding: 17px 20px;
    background: var(--theme-color);
    color: #fff;
    border: 0;
    border-radius: 8px;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 15.5px;
    letter-spacing: .3px;
    cursor: pointer;
    transition: background .25s, transform .2s;
}

.contact-form .send-btn:hover {
    background: var(--title-color);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .contact-area {
        padding: 70px 0;
    }

    .contact-info-card {
        padding: 34px 26px;
    }

    .request-title {
        font-size: 32px;
    }

    .contact-form-wrap {
        padding: 20px 0 0;
    }
}

/* ===== Footer ===== */
.th-footer {
    background: #121A25;
    color: rgba(255, 255, 255, .72);
    position: relative;
    overflow: hidden;
    font-family: var(--body-font);
}

.th-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .035) 1.4px, transparent 1.8px);
    background-size: 20px 20px;
    -webkit-mask-image: linear-gradient(135deg, transparent 40%, #000 75%);
    mask-image: linear-gradient(135deg, transparent 40%, #000 75%);
    pointer-events: none;
    opacity: .5;
    z-index: 0;
}

.th-footer>* {
    position: relative;
    z-index: 1;
}

/* Top contact strip */
.footer-top {
    padding: 40px 0 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

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

.ft-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(239, 127, 42, .12);
    color: var(--theme-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-top: 2px;
}

.ft-item strong {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
}

.ft-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .82);
}

.ft-item p a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    transition: color .2s;
}

.ft-item p a:hover {
    color: var(--theme-color);
}

.ft-address {
    color: rgba(255, 255, 255, .82) !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
}

/* Main footer columns */
.footer-main {
    padding: 60px 0 50px;
}

.th-footer h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 24px;
    font-family: var(--title-font);
    font-weight: 700;
    position: relative;
}

.th-footer p {
    color: rgba(255, 255, 255, .72);
    font-size: 14.5px;
    line-height: 1.75;
    margin-bottom: 14px;
}

.th-footer a {
    color: rgba(255, 255, 255, .78);
    transition: color .2s, padding .2s;
    text-decoration: none;
}

.th-footer a:hover {
    color: var(--theme-color);
}

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

.th-footer ul li {
    padding: 7px 0;
    font-size: 14.5px;
}

.th-footer ul li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.th-footer ul li a::before {
    /* fallback — removed in favor of <i> */
    content: none;
}

.th-footer ul li i {
    color: var(--theme-color);
    font-size: 12px;
    flex-shrink: 0;
}

.th-footer ul li a:hover {
    padding-left: 4px;
}

.th-footer .footer-logo img {
    max-height: 56px;
    filter: brightness(0) invert(1);
}

.th-footer .footer-tag {
    display: block;
    color: #fff;
    font-family: var(--title-font);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin: 18px 0 22px;
}

.th-footer .social-icons {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.th-footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: all .25s;
    color: #fff;
    padding: 0;
}

.th-footer .social-icons a:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: #fff;
    padding-left: 0;
}

/* Bottom bar */
.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: 13.5px;
}

.footer-bottom .fb-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-size: 13.5px;
    line-height: 1.6;
}

.footer-bottom a {
    color: var(--theme-color);
    font-weight: 500;
}

.footer-bottom a:hover {
    color: #fff;
    padding-left: 0;
}

.footer-bottom .fb-legal a {
    color: rgba(255, 255, 255, .85);
}

.footer-bottom .fb-legal .dash {
    color: var(--theme-color);
    margin: 0 8px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .footer-top {
        padding: 30px 0 10px;
    }

    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-bottom .fb-wrap {
        justify-content: center;
        text-align: center;
    }
}

/* ===== Inner page (templates + standalone) ===== */
.inner-page {
    padding: 100px 0;
    background: #fff;
}

.inner-content {
    background: #fff;
}

.inner-title {
    font-size: 34px;
    color: var(--title-color);
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.25;
}

.inner-subtitle {
    font-size: 24px;
    color: var(--title-color);
    font-weight: 700;
    margin: 36px 0 14px;
}

.inner-lead {
    font-size: 17px;
    font-weight: 500;
    color: var(--title-color);
    line-height: 1.7;
    margin-bottom: 18px;
}

.inner-prose {
    color: var(--body-color);
    font-size: 15.5px;
    line-height: 1.85;
}

.inner-prose p {
    margin-bottom: 16px;
}

.inner-prose h2 {
    font-size: 28px;
    color: var(--title-color);
    margin: 34px 0 16px;
    font-weight: 700;
}

.inner-prose h3 {
    font-size: 22px;
    color: var(--title-color);
    margin: 28px 0 14px;
    font-weight: 700;
}

.inner-prose h4 {
    font-size: 19px;
    color: var(--title-color);
    margin: 22px 0 10px;
    font-weight: 700;
}

/* Key Takeaways callout box at top of blog */
.inner-prose .key-takeaways {
    background: linear-gradient(135deg, #f4f8ff 0%, #eaf2ff 100%);
    border-left: 4px solid var(--theme-color);
    padding: 22px 26px;
    border-radius: 10px;
    margin: 0 0 28px;
}

.inner-prose .key-takeaways h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
    color: var(--title-color);
}

.inner-prose .key-takeaways ul {
    margin-bottom: 0;
    padding-left: 18px;
}

.inner-prose .key-takeaways ul li {
    margin-bottom: 6px;
    font-size: 15px;
}

/* FAQ accordion */
.inner-prose .blog-faq {
    margin: 20px 0 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.inner-prose .blog-faq-item {
    border: 1px solid #e3e7ef;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.inner-prose .blog-faq-item[open] {
    border-color: var(--theme-color);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.inner-prose .blog-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 46px 14px 18px;
    font-weight: 600;
    color: var(--title-color);
    position: relative;
    font-size: 15.5px;
}

.inner-prose .blog-faq-item summary::-webkit-details-marker {
    display: none;
}

.inner-prose .blog-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    line-height: 1;
    color: var(--theme-color);
    font-weight: 400;
    transition: transform 0.2s ease;
}

.inner-prose .blog-faq-item[open] summary::after {
    content: '–';
}

.inner-prose .blog-faq-answer {
    padding: 0 18px 14px;
    border-top: 1px solid #eef1f6;
    padding-top: 12px;
    color: var(--body-color);
}

.inner-prose .blog-faq-answer p {
    margin-bottom: 0;
}

.inner-prose ul,
.inner-prose ol {
    padding-left: 20px;
    margin-bottom: 18px;
}

.inner-prose ul li,
.inner-prose ol li {
    margin-bottom: 8px;
}

.inner-prose a {
    color: var(--theme-color);
    font-weight: 500;
}

.inner-prose a:hover {
    color: var(--title-color);
    text-decoration: underline;
}

/* Legacy alias — .page-section used by policy / terms / legacy pages */
.page-section {
    padding: 100px 0;
    background: #fff;
}

.page-section .content {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--body-color);
}

.page-section h2 {
    color: var(--title-color);
    margin-bottom: 20px;
    font-size: 34px;
    font-weight: 700;
}

.page-section h2 span {
    color: var(--theme-color);
}

.page-section h3 {
    color: var(--title-color);
    margin: 30px 0 14px;
    font-size: 22px;
    font-weight: 700;
}

.page-section h4 {
    color: var(--title-color);
    margin: 22px 0 10px;
    font-size: 18px;
    font-weight: 700;
}

.page-section p {
    color: var(--body-color);
    line-height: 1.8;
    margin-bottom: 14px;
}

.page-section .content ul,
.page-section .content ol {
    padding-left: 4px;
    list-style: none;
    margin-bottom: 18px;
}

.page-section .content ul li,
.page-section .content ol li {
    padding: 6px 0 6px 28px;
    position: relative;
    color: var(--body-color);
    line-height: 1.7;
}

.page-section .content ul li>i.bi,
.page-section .content ul li>i.fas,
.page-section .content ul li>i.fa {
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--theme-color);
    font-size: 16px;
}

.page-section .content a {
    color: var(--theme-color);
    font-weight: 500;
}

.page-section .content a:hover {
    color: var(--title-color);
    text-decoration: underline;
}

.page-section .lead {
    font-size: 17px;
    color: var(--title-color);
    font-weight: 500;
}

/* Feature card (non-link variant of .service-card) */
.feature-card {
    background: #fff;
    padding: 30px 26px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    height: 100%;
    transition: all .3s;
}

.feature-card:hover {
    border-color: var(--theme-color);
    box-shadow: 0 14px 30px rgba(16, 24, 64, .08);
    transform: translateY(-4px);
}

.feature-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--smoke-color-2);
    color: var(--theme-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    transition: all .3s;
}

.feature-card:hover .icon {
    background: var(--theme-color);
    color: #fff;
}

.feature-card h4 {
    color: var(--title-color);
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--body-color);
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0;
}

/* CTA callout (inner pages) */
.cta-callout {
    margin: 40px 0 0;
    padding: 30px 32px;
    background: var(--smoke-color);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--theme-color);
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
}

.cta-callout h4 {
    color: var(--title-color);
    font-size: 20px;
    margin-bottom: 6px;
    font-weight: 700;
}

.cta-callout p {
    margin: 0;
    font-size: 14.5px;
    color: var(--body-color);
}

.cta-callout-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 575px) {
    .cta-callout {
        padding: 24px;
    }

    .cta-callout-actions .th-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Location page — small service tile */
.loc-service {
    display: flex;
    gap: 14px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--title-color);
    text-decoration: none;
    transition: all .3s;
    height: 100%;
}

.loc-service:hover {
    border-color: var(--theme-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(16, 24, 64, .08);
    color: var(--title-color);
}

.loc-service i {
    font-size: 22px;
    color: var(--theme-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.loc-service strong {
    display: block;
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 16px;
    margin-bottom: 2px;
}

.loc-service small {
    color: var(--body-color);
    font-size: 12.5px;
}

/* Inner sidebar */
.inner-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px 26px;
}

.sidebar-card h4 {
    color: var(--title-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--theme-color);
    display: inline-block;
}

.sidebar-card.sidebar-dark {
    background: var(--title-color);
    border-color: var(--title-color);
    background-image: radial-gradient(circle at 80% 10%, rgba(244, 118, 41, .14) 0%, transparent 60%);
}

.sidebar-card.sidebar-dark h4 {
    color: #fff;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    padding: 0;
    margin: 0;
}

.sidebar-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    font-size: 14.5px;
    transition: all .25s;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.sidebar-links li:last-child a {
    border-bottom: 0;
}

.sidebar-links li a:hover {
    color: var(--theme-color);
    padding-left: 6px;
}

.sidebar-links li a i {
    color: var(--theme-color);
    font-size: 12px;
}

.sidebar-links.light li a {
    color: var(--title-color);
    border-bottom-color: var(--border-color);
}

.sidebar-links.light li a:hover {
    color: var(--theme-color);
}

/* Blog single */
.blog-single-thumb {
    margin-bottom: 26px;
    border-radius: 12px;
    overflow: hidden;
}

.blog-single-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.inner-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--body-color);
    font-size: 13.5px;
    margin-bottom: 14px;
    font-family: var(--body-font);
}

.inner-meta i {
    color: var(--theme-color);
    margin-right: 5px;
}

@media (max-width: 991px) {
    .inner-page {
        padding: 60px 0;
    }

    .inner-title {
        font-size: 26px;
    }

    .inner-subtitle {
        font-size: 20px;
    }

    .inner-sidebar {
        position: static;
    }
}

/* Contact Information tiles (contact page) */
.contact-info-area {
    background: #fff;
    padding: 90px 0 70px;
}

.ci-tile {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 36px 26px 30px;
    text-align: center;
    height: 100%;
    transition: all .3s;
    position: relative;
    box-shadow: 0 4px 14px rgba(26, 91, 142, .05);
}

.ci-tile:hover {
    transform: translateY(-5px);
    border-color: var(--theme-color);
    box-shadow: 0 20px 36px rgba(26, 91, 142, .12);
}

.ci-tile-icon {
    width: 64px;
    height: 64px;
    background: rgba(239, 127, 42, .12);
    color: var(--theme-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    transition: all .3s;
}

.ci-tile:hover .ci-tile-icon {
    background: var(--theme-color);
    color: #fff;
    transform: rotate(-6deg);
}

.ci-tile h4 {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.ci-tile p {
    margin: 4px 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--body-color);
}

.ci-tile p a {
    color: var(--title-color);
    font-weight: 600;
    text-decoration: none;
    transition: color .2s;
}

.ci-tile p a:hover {
    color: var(--theme-color);
}

/* Map section (two iframes side by side) */
.map-section {
    padding: 90px 0 100px;
    background: #EEF0F2;
}

.map-wrap {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(26, 91, 142, .1);
    height: 100%;
}

.map-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    background: var(--title-color);
    color: #fff;
    border-bottom: 3px solid var(--theme-color);
}

.map-head i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--theme-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.map-head h5 {
    color: #fff;
    margin: 0 0 2px;
    font-size: 17px;
    font-weight: 700;
    font-family: var(--title-font);
}

.map-head small {
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    line-height: 1.35;
}

.map-wrap iframe {
    display: block;
    width: 100%;
    height: 560px;
    border: 0;
}

@media (max-width: 1199px) {
    .map-wrap iframe {
        height: 500px;
    }
}

@media (max-width: 991px) {
    .contact-info-area {
        padding: 60px 0 40px;
    }

    .map-section {
        padding: 60px 0;
    }

    .map-wrap iframe {
        height: 420px;
    }
}

@media (max-width: 575px) {
    .map-wrap iframe {
        height: 360px;
    }
}

/* ===== Product detail page ===== */
.product-detail-area {
    background: #fff;
    padding: 90px 0 70px;
}

.product-detail-image {
    background: #EEF0F2;
    border-radius: 16px;
    padding: 48px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(26, 91, 142, .06);
}

.product-detail-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pd-category {
    display: inline-block;
    font-family: var(--body-font);
    font-weight: 700;
    color: var(--theme-color);
    background: rgba(239, 127, 42, .12);
    font-size: 13px;
    letter-spacing: .5px;
    padding: 6px 14px;
    border-radius: 99px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.pd-title {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -.3px;
    margin: 0 0 14px;
}

.pd-price {
    font-family: var(--title-font);
    color: var(--theme-color);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -.3px;
}

.pd-price.pd-price-muted {
    color: var(--title-color);
    font-size: 20px;
    font-weight: 700;
}

.pd-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 28px;
    padding: 16px 0;
    margin-bottom: 18px;
    border-top: 1px dashed var(--border-color);
    border-bottom: 1px dashed var(--border-color);
}

.pd-meta span {
    font-family: var(--body-font);
    font-size: 14px;
    color: var(--body-color);
}

.pd-meta strong {
    color: var(--title-color);
    font-weight: 700;
    margin-right: 6px;
}

.pd-desc {
    color: var(--body-color);
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 26px;
}

.pd-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Specifications grid */
.pd-specs-area {
    background: #EEF0F2;
    padding: 80px 0;
}

.spec-card {
    background: #fff;
    border-radius: 14px;
    padding: 26px 28px;
    box-shadow: 0 4px 14px rgba(26, 91, 142, .05);
    height: 100%;
}

.spec-group {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--theme-color);
    display: inline-block;
}

.spec-rows {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-rows li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
    font-size: 14.5px;
    line-height: 1.5;
}

.spec-rows li:last-child {
    border-bottom: 0;
}

.spec-label {
    color: var(--body-color);
    font-family: var(--body-font);
}

.spec-value {
    color: var(--title-color);
    font-weight: 600;
    font-family: var(--body-font);
    text-align: right;
}

/* Related products area */
.related-area {
    background: #fff;
    padding: 80px 0 90px;
}

.product-tile-link {
    display: block;
    text-decoration: none;
    height: 100%;
}

.product-tile-link .product-tile {
    height: 100%;
}

@media (max-width: 991px) {
    .product-detail-area {
        padding: 60px 0 40px;
    }

    .pd-title {
        font-size: 24px;
    }

    .pd-price {
        font-size: 26px;
    }

    .product-detail-image {
        padding: 32px;
    }

    .pd-specs-area,
    .related-area {
        padding: 60px 0;
    }
}

@media (max-width: 575px) {
    .pd-actions .th-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== Shop grid (static — actions are enquiry links only) ===== */
.shop-area {
    background: #EEF0F2;
    padding: 100px 0;
}

.product-tile {
    text-align: left;
    height: 100%;
}

.product-tile .product-image {
    position: relative;
    background: #fff;
    border-radius: 14px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    overflow: hidden;
    transition: background .35s ease, box-shadow .35s ease;
    box-shadow: 0 2px 10px rgba(26, 91, 142, .05);
}

.product-tile .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .4s ease;
}

.product-tile:hover .product-image {
    background: #C6D8E8;
    box-shadow: 0 14px 30px rgba(26, 91, 142, .14);
}

.product-tile:hover .product-image img {
    transform: scale(1.03);
}

/* Action icons — fade in centered on image on hover */
.product-actions {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -40%);
    display: flex;
    flex-direction: row;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, transform .3s ease, visibility .3s;
}

.product-tile:hover .product-actions {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.product-actions a,
.product-actions span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--title-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 6px 14px rgba(26, 91, 142, .18);
    transition: background .25s ease, color .25s ease, transform .25s ease;
    text-decoration: none;
    cursor: pointer;
}

.product-tile-link:hover .product-actions a,
.product-tile-link:hover .product-actions span,
.product-actions a:hover,
.product-actions span:hover {
    background: var(--theme-color);
    color: #fff;
    transform: scale(1.08);
}

.product-tile-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.product-tile .product-name {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -.2px;
    margin: 22px 4px 0;
    transition: color .25s;
}

.product-tile:hover .product-name {
    color: var(--theme-color);
}

@media (max-width: 991px) {
    .shop-area {
        padding: 60px 0;
    }

    .product-tile .product-name {
        font-size: 15px;
    }
}

@media (max-width: 767px) {

    /* Touch devices: icons stay visible so they're reachable */
    .product-actions {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%);
        gap: 6px;
    }

    .product-actions a {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
}

/* Project card variant */
.project-card .project-loc {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--theme-color);
    background: rgba(244, 118, 41, .1);
    padding: 4px 12px;
    border-radius: 99px;
    margin-bottom: 12px;
}

.project-card .project-loc i {
    font-size: 11px;
}

/* Error / Thank-you pages */
.error-page {
    padding: 100px 0 120px;
    background: #fff;
}

.error-page .error-code {
    font-family: var(--title-font);
    font-size: 160px;
    font-weight: 800;
    line-height: 1;
    color: var(--theme-color);
    letter-spacing: -4px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--theme-color), var(--title-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.error-page .error-title {
    color: var(--title-color);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.error-page .error-desc {
    color: var(--body-color);
    font-size: 16px;
    max-width: 540px;
    margin: 0 auto 32px;
    line-height: 1.75;
}

.error-page .error-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.thankyou-page .thankyou-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    background: rgba(39, 174, 96, .12);
    color: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 54px;
}

@media (max-width: 575px) {
    .error-page .error-code {
        font-size: 100px;
    }

    .error-page .error-title {
        font-size: 26px;
    }
}

/* Mobile offcanvas */
.offcanvas-body ul {
    list-style: none;
    padding: 0;
}

.offcanvas-body ul li a {
    display: block;
    padding: 12px 0;
    color: var(--title-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
}

.offcanvas-body ul li a:hover {
    color: var(--theme-color);
}

/* ===== Responsive ===== */
@media (min-width: 992px) {
    section {
        padding: var(--section-space) 0;
    }
}

@media (max-width: 991.98px) {
    h1 {
        font-size: 40px;
        line-height: 1.15;
    }

    h2 {
        font-size: 30px;
    }

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

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

    .th-hero {
        padding: 60px 0 40px;
        min-height: auto;
        background-size: cover;
        background-position: right top;
    }

    .th-hero::before {
        background: linear-gradient(180deg, rgba(255, 255, 255, .9) 0%, rgba(255, 255, 255, .75) 100%);
    }

}

@media (max-width: 575.98px) {
    .th-topbar .tb-right {
        gap: 10px;
        font-size: 12px;
    }

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

    .hero-btn-group {
        flex-direction: column;
    }

    .hero-btn-group .th-btn {
        width: 100%;
        justify-content: center;
    }
}

/* =====================================================================
   RESPONSIVE PATCH — PC / Tablet / Mobile coverage
   Covers gaps: 992–1199 (large tablet), 768–991 (tablet),
   320–479 (small mobile), plus topbar/header/footer/quickconnect polish.
   ===================================================================== */

/* Global safety: prevent horizontal scroll + fluid images */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
}

table {
    max-width: 100%;
}

/* Fluid hero/section headings across all viewports */
h1 {
    font-size: clamp(28px, 4.2vw, 60px);
    line-height: 1.15;
}

.hero-title {
    font-size: clamp(30px, 4.6vw, 64px);
    line-height: 1.1;
}

.sec-title {
    font-size: clamp(22px, 2.6vw, 42px);
}

/* Fluid decorative icon next to section subtitle */
.sec-subtitle img {
    height: clamp(18px, 2.2vw, 24px);
}

/* ---------- Large tablet / small laptop: 992–1199px ---------- */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .th-header .header-wrap {
        gap: 10px;
    }

    .th-header .nav-pill {
        margin: 0 8px;
        padding: 6px 18px;
    }

    .th-menu {
        gap: 14px;
    }

    .th-menu>li>a {
        font-size: 14px;
    }

    .th-topbar .tb-right {
        gap: 14px;
        font-size: 13px;
    }

    .th-topbar .tb-right a:last-child {
        display: none;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ---------- Tablet: 768–991px ---------- */
@media (min-width: 768px) and (max-width: 991.98px) {
    .th-topbar {
        padding: 6px 0;
    }

    .th-topbar .tb-right {
        gap: 12px;
        font-size: 12px;
    }

    .th-topbar .tb-right a:nth-child(n+2) {
        display: none;
    }

    .th-topbar .tb-right a:first-child {
        display: inline-flex;
    }

    .th-header {
        padding: 10px 0;
    }

    .th-header .logo-pill img {
        max-height: 38px;
    }

    .mobile-toggler {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    /* Hide the empty nav-pill wrapper below desktop menu breakpoint */
    .th-header .nav-pill {
        display: none;
    }

    /* Quick-connect: move to bottom-right on tablet to avoid overlap */
    .quick-connect {
        left: auto;
        right: 14px;
        top: auto;
        bottom: 80px;
        transform: none;
        flex-direction: column;
    }

    .quick-connect .qc-single::after {
        display: none;
    }

    /* Footer stack breathing room */
    .footer-main .row {
        --bs-gutter-y: 2rem;
    }

    .footer-brand-col {
        text-align: left;
    }

    /* Section padding trims */
    section {
        padding: 70px 0;
    }

    .th-hero {
        padding: 40px 0 40px;
    }

    .hero-content {
        max-width: 100%;
        padding-right: 0;
    }

    .hero-image-wrap {
        margin-top: 30px;
    }
}

/* ---------- Remove empty nav-pill at all below-desktop widths ---------- */
@media (max-width: 1199.98px) {
    .th-header .nav-pill {
        display: none;
    }

    .th-header .header-wrap {
        justify-content: space-between;
    }
}

/* ---------- Mobile: 576–767px ---------- */
@media (min-width: 576px) and (max-width: 767.98px) {
    .th-topbar .tb-left span {
        font-size: 12px;
    }

    .th-topbar .tb-right {
        gap: 10px;
        font-size: 12px;
    }

    .th-topbar .tb-right a:nth-child(n+2) {
        display: none;
    }

    .th-header .logo-pill img {
        max-height: 36px;
    }

    .mobile-toggler {
        width: 42px;
        height: 42px;
        font-size: 19px;
    }

    .footer-main .row {
        --bs-gutter-y: 1.75rem;
    }

    .footer-top .row {
        --bs-gutter-y: 1rem;
    }

    .fb-wrap {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ---------- Small mobile: ≤575px ---------- */
@media (max-width: 575.98px) {

    /* Hide topbar; collapse header to top */
    .th-topbar {
        display: none;
    }

    .th-header {
        top: 0 !important;
    }

    .th-header .logo-pill {
        padding: 8px 14px;
    }

    .th-header .logo-pill img {
        max-height: 34px;
    }

    .mobile-toggler {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* Container + sections */
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    section {
        padding: 40px 0;
    }

    .th-hero {
        padding: 30px 0 30px;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 1.5px;
        gap: 10px;
        margin-bottom: 16px;
    }

    .hero-subtitle .hs-icon {
        height: 22px;
    }

    .hero-desc {
        font-size: 14.5px;
        line-height: 1.7;
        margin-bottom: 22px;
    }

    .hero-image-wrap img {
        border-radius: 160px 160px 20px 160px;
    }

    /* Footer polish */
    .footer-main .row {
        --bs-gutter-y: 1.5rem;
    }

    .footer-top .ft-item {
        gap: 10px;
    }

    .fb-wrap {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .fb-legal {
        justify-content: center;
    }

    /* Form inputs tighter */
    .contact-form .input-with-icon input,
    .contact-form .input-with-icon textarea,
    .contact-form .input-with-icon select {
        padding: 12px 40px 12px 14px;
        font-size: 14px;
    }

    .contact-form .input-with-icon>i {
        right: 14px;
    }

    /* Buttons full width */
    .th-btn {
        padding: 13px 22px;
        font-size: 14px;
    }

    /* Scroll-top + quick-connect spacing */
    .scroll-top {
        right: 10px;
        bottom: 76px;
        width: 42px;
        height: 42px;
    }

    .quick-connect {
        right: 10px;
        bottom: 14px;
        gap: 10px;
    }

    .quick-connect .qc-single {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

/* ---------- Ultra-small: ≤360px (old Android, iPhone SE 1st gen) ---------- */
@media (max-width: 360px) {
    body {
        font-size: 14.5px;
        line-height: 23px;
    }

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }

    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .th-btn {
        padding: 12px 18px;
        font-size: 13.5px;
    }

    .mobile-toggler {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }
}

/* ---------- Horizontal-scroll guards for common offenders ---------- */
.row {
    margin-left: 0;
    margin-right: 0;
}

.row>[class*="col-"] {
    min-width: 0;
}

pre,
code {
    white-space: pre-wrap;
    word-break: break-word;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ---------- Tap-target safety (min 40px) for nav/form controls ---------- */
@media (max-width: 767.98px) {
    .offcanvas .offcanvas-body ul li a {
        padding: 10px 0;
        display: block;
        min-height: 40px;
    }

    .th-btn {
        min-height: 42px;
    }

    .contact-form .input-with-icon input,
    .contact-form .input-with-icon select {
        min-height: 44px;
    }
}

/* ============================================================================
   Footer — mobile polish
   ============================================================================ */
@media (max-width: 991px) {
    .footer-main {
        padding: 50px 0 32px;
    }

    .footer-main .row {
        --bs-gutter-y: 2.25rem;
    }
}

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

    /* Contact strip — card-style items with subtle bg */
    .footer-top .ft-item {
        padding: 14px 16px;
        background: rgba(255, 255, 255, .04);
        border-radius: 12px;
        align-items: flex-start;
        gap: 12px;
    }

    .ft-icon {
        width: 38px;
        height: 38px;
        font-size: 14px;
        flex-shrink: 0;
    }

    .ft-item strong {
        font-size: 13.5px;
    }

    .ft-item p,
    .ft-address {
        font-size: 13.5px;
        line-height: 1.55;
    }

    /* Brand column centered for visual balance */
    .footer-brand-col {
        text-align: center;
    }

    .footer-brand-col .footer-logo,
    .footer-brand-col .footer-tag {
        display: inline-block;
    }

    .footer-brand-col p {
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
        font-size: 14.5px;
    }

    .th-footer .social-icons {
        justify-content: center;
    }

    /* Section headings get an orange underline accent */
    .th-footer h4 {
        font-size: 17px;
        margin-bottom: 14px;
        padding-bottom: 10px;
        position: relative;
    }

    .th-footer h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 32px;
        height: 2px;
        background: var(--theme-color);
        border-radius: 2px;
    }

    .footer-brand-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Tighten link list spacing + larger tap targets */
    .th-footer ul li {
        margin-bottom: 6px;
    }

    .th-footer ul li a {
        font-size: 14px;
        padding: 4px 0;
    }
}

@media (max-width: 575px) {

    /* Stack the two side-by-side link columns to single column */
    .footer-main .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer-bottom {
        padding: 16px 0;
    }

    .footer-bottom p {
        font-size: 12.5px;
        line-height: 1.6;
    }

    .footer-bottom .fb-legal a {
        font-size: 12.5px;
    }
}

/* ============================================================================
   Quick Connect — mobile polish (call/whatsapp floating buttons)
   ============================================================================ */
@media (max-width: 767px) {
    .quick-connect .qc-call {
        background: var(--theme-color);
    }

    .quick-connect .qc-whatsapp {
        background: #25D366;
        box-shadow: 0 8px 22px rgba(37, 211, 102, .35);
    }

    /* Subtle pulse halo to draw attention on mobile */
    .quick-connect .qc-single::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: inherit;
        opacity: .55;
        animation: qc-pulse 2s ease-out infinite;
        z-index: -1;
        pointer-events: none;
    }

    .quick-connect .qc-single {
        z-index: 1;
    }
}

@keyframes qc-pulse {
    0% {
        transform: scale(1);
        opacity: .55;
    }

    70% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ============================================================================
   Blog grid — mobile polish
   ============================================================================ */
@media (max-width: 767px) {
    .blog-area {
        padding: 50px 0 !important;
    }

    .blog-card {
        padding: 8px 8px 18px;
        border-radius: 12px;
    }

    .blog-thumb {
        aspect-ratio: 16 / 10;
    }

    .blog-cat {
        font-size: 10.5px;
        padding: 5px 11px;
        top: 10px;
        left: 10px;
        letter-spacing: .4px;
    }

    .blog-date {
        right: 10px;
        bottom: 10px;
        font-size: 12.5px;
        padding: 6px 14px;
    }

    .blog-body {
        padding: 14px 8px 0;
    }

    .blog-body h4 {
        font-size: 16.5px;
        line-height: 1.35;
    }

    .blog-body p {
        font-size: 14px;
        line-height: 1.6;
    }

    .blog-meta {
        font-size: 12.5px;
        gap: 12px;
        margin-bottom: 10px;
    }

    .blog-more {
        font-size: 13px;
    }

    /* Pagination — smaller chips, tighter gap */
    .blog-pagination {
        gap: 6px;
        margin-top: 36px;
    }

    .blog-pagination .bp-num,
    .blog-pagination .bp-arrow,
    .blog-pagination .bp-dots {
        min-width: 36px;
        height: 36px;
        font-size: 13.5px;
        padding: 0 10px;
        border-radius: 8px;
    }

    .blog-pagination .bp-arrow i {
        font-size: 12px;
    }
}

@media (max-width: 380px) {

    .blog-pagination .bp-num,
    .blog-pagination .bp-arrow {
        min-width: 32px;
        height: 32px;
        font-size: 12.5px;
        padding: 0 8px;
    }

    .blog-pagination {
        gap: 4px;
    }
}

.iti {
    width: 100% !important;
}