/* =============================================
   تهویه هوشمند — Modern Public Theme Layer
   Loaded after style.css — preserves SEO markup
   ============================================= */

:root {
    --thm-primary: #0b6e99;
    --thm-primary-dark: #084d6b;
    --thm-primary-light: #e8f4fa;
    --thm-accent: #14b8a6;
    --thm-accent-hover: #0d9488;
    --thm-dark: #0f172a;
    --thm-dark-soft: #1e293b;
    --thm-gray-50: #f8fafc;
    --thm-gray-100: #f1f5f9;
    --thm-gray-200: #e2e8f0;
    --thm-gray-500: #64748b;
    --thm-gray-700: #334155;
    --thm-white: #ffffff;
    --thm-radius-sm: 8px;
    --thm-radius-md: 12px;
    --thm-radius-lg: 20px;
    --thm-radius-xl: 28px;
    --thm-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
    --thm-shadow-md: 0 8px 24px rgba(15, 23, 42, 0.1);
    --thm-shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.14);
    --thm-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --thm-font: 'Vazirmatn', 'Outfit', Tahoma, sans-serif;
}

/* ---- Base Typography ---- */
body.thm-site {
    font-family: var(--thm-font) !important;
    color: var(--thm-gray-700);
    -webkit-font-smoothing: antialiased;
}

body.thm-site h1,
body.thm-site h2,
body.thm-site h3,
body.thm-site h4,
body.thm-site h5,
body.thm-site h6 {
    font-family: var(--thm-font) !important;
    font-weight: 700;
    color: var(--thm-dark);
}

body.thm-site p {
    line-height: 1.9;
}

body.thm-site .fa,
body.thm-site .fas,
body.thm-site .far,
body.thm-site .fal,
body.thm-site .fad {
    font-family: "Font Awesome 5 Pro" !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

body.thm-site .fas,
body.thm-site .fa-solid {
    font-weight: 900;
}

body.thm-site .far,
body.thm-site .fal,
body.thm-site .fa-regular,
body.thm-site .fa-light {
    font-weight: 400;
}

body.thm-site .fab,
body.thm-site .fa-brands {
    font-family: "Font Awesome 5 Brands" !important;
    font-weight: 400;
}

/* ---- Top Bar ---- */
.thm-topbar {
    background: var(--thm-dark) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 0 !important;
    font-size: 13px;
}

.thm-topbar .item-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.thm-topbar .item-flex li {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

.thm-topbar .item-flex a {
    color: var(--thm-white);
    text-decoration: none;
    transition: color var(--thm-transition);
}

.thm-topbar .item-flex a:hover {
    color: var(--thm-accent);
}

.thm-topbar .social ul {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: flex-end;
}

.thm-topbar .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--thm-white) !important;
    font-size: 13px;
    transition: all var(--thm-transition);
}

.thm-topbar .social a:hover {
    background: var(--thm-primary);
    transform: translateY(-2px);
}

/* ---- Header / Navigation ---- */
.thm-header nav.validnavs {
    background: #fdfdfd !important;
    box-shadow: var(--thm-shadow-sm);
    border-bottom: 1px solid var(--thm-gray-200);
    padding: 12px 0 !important;
}

.thm-header nav.validnavs.navbar-sticky.sticked,
.thm-header nav.validnavs.navbar-sticky.sticky {
    box-shadow: var(--thm-shadow-md);
}

/* ---- Brand Logo ---- */
.thm-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
    padding: 0;
    background: transparent !important;
    box-shadow: none !important;
    transition: opacity var(--thm-transition);
}

.thm-brand:hover {
    opacity: 1;
    background: transparent !important;
}

.thm-brand-logo {
    flex-shrink: 0;
    display: block;
    height: 72px;
    width: auto;
    max-width: none;
    object-fit: contain;
    background: transparent !important;
    border: none;
    box-shadow: none;
    transition: transform var(--thm-transition);
}

.thm-brand:hover .thm-brand-logo {
    transform: scale(1.03);
}

.thm-brand--compact .thm-brand-logo {
    height: 60px;
}

.thm-header .navbar-brand.thm-brand {
    margin: 0;
    padding: 0;
    background: transparent !important;
}

.thm-header .navbar-header {
    background: transparent !important;
}

.thm-header .navbar-brand > img,
.thm-header .navbar-brand.thm-brand > .thm-brand-logo {
    height: 72px;
    width: auto;
    max-height: none;
    background: transparent !important;
}

/* ---- Nav links with icons ---- */
.thm-header .thm-nav > li > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 15px;
    color: var(--thm-gray-700) !important;
    padding: 10px 16px !important;
    border-radius: var(--thm-radius-sm);
    transition: all var(--thm-transition);
    position: relative;
}

.thm-header .thm-nav .thm-nav-icon {
    width: 18px;
    text-align: center;
    font-size: 14px;
    color: var(--thm-gray-500);
    transition: color var(--thm-transition);
}

.thm-header .thm-nav > li > a:hover,
.thm-header .thm-nav > li > a.active {
    color: var(--thm-primary) !important;
    background: var(--thm-primary-light);
}

.thm-header .thm-nav > li > a:hover .thm-nav-icon,
.thm-header .thm-nav > li > a.active .thm-nav-icon {
    color: var(--thm-primary);
}

.thm-header .navbar-toggle {
    border: none;
    background: var(--thm-primary-light);
    color: var(--thm-primary);
    width: 42px;
    height: 42px;
    padding: 0 !important;
    border-radius: var(--thm-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .thm-header .navbar-collapse > .navbar-toggle {
        display: none !important;
    }

    .thm-header nav.validnavs .container {
        position: relative;
        direction: ltr;
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    .thm-header .navbar-brand-left {
        position: static;
        flex: 0 0 auto;
        margin: 0;
        transform: none;
        z-index: 2;
    }

    .thm-header .navbar-header {
        display: flex;
        align-items: center;
    }

    .thm-header nav.validnavs .navbar-collapse.collapse {
        flex: 0 0 auto;
        margin-inline-start: auto;
        display: flex !important;
        float: none !important;
        align-items: center;
        justify-content: flex-end;
        width: auto !important;
    }

    .thm-header nav.validnavs .thm-nav {
        direction: rtl;
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-end;
        float: none !important;
        width: auto;
        padding: 0 !important;
        margin: 0 !important;
    }

    .thm-header nav.validnavs .thm-nav > li {
        display: block;
        float: none !important;
    }

    .thm-header nav.validnavs.mobile-sidenav .navbar-collapse.collapse.collapse-mobile {
        position: static !important;
        left: auto !important;
        top: auto !important;
        width: auto !important;
        max-width: none !important;
        height: auto !important;
        min-height: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
        animation: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }
}

@media (max-width: 991px) {
    .thm-header a.navbar-brand,
    .thm-header a.thm-brand,
    .thm-header .navbar-brand.thm-brand {
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
    }

    .thm-header nav.validnavs {
        padding: 14px 0 !important;
    }

    .thm-header nav.validnavs .container {
        display: block !important;
        position: relative;
    }

    .thm-header .navbar-collapse:not(.collapse-mobile) {
        position: absolute !important;
        flex: none !important;
        width: 0 !important;
        height: 0 !important;
        min-width: 0 !important;
        min-height: 0 !important;
        overflow: hidden !important;
        visibility: hidden;
        pointer-events: none;
    }

    .thm-header .navbar-collapse.collapse.collapse-mobile {
        position: fixed !important;
        top: 0 !important;
        left: auto !important;
        right: -485px;
        flex: none !important;
        width: 400px !important;
        min-width: 0 !important;
        max-width: 85vw;
        height: 100vh !important;
        min-height: 100vh;
        margin: 0 !important;
        margin-bottom: 0 !important;
        border-top: none !important;
        visibility: visible;
        pointer-events: auto;
        z-index: 9999;
        animation: none !important;
    }

    .thm-header .navbar-collapse.collapse.collapse-mobile.show {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: auto !important;
        right: 0 !important;
        width: 400px !important;
        max-width: 85vw;
        margin: 0 !important;
        margin-bottom: 0 !important;
    }

    .thm-header.adjust-height {
        min-height: 0 !important;
    }

    @media (max-width: 399px) {
        .thm-header .navbar-collapse.collapse.collapse-mobile {
            width: 300px !important;
        }
    }

    .thm-header .navbar-brand-left {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .thm-header .navbar-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        direction: ltr;
        width: 100%;
        min-height: 68px;
        gap: 12px;
    }

    .thm-header .navbar-header .navbar-brand {
        flex: 1 1 auto;
        min-width: 0;
        margin: 0 !important;
    }

    .thm-header .navbar-header .navbar-toggle {
        flex: 0 0 auto;
        margin: 0 !important;
        margin-inline-start: auto !important;
    }

    .thm-header nav.validnavs.mobile-sidenav .navbar-collapse.collapse.collapse-mobile {
        direction: rtl;
        text-align: right;
    }

    .thm-header nav.validnavs .navbar-collapse.collapse.collapse-mobile > .navbar-toggle {
        left: auto !important;
        right: 20px;
        top: 20px;
    }

    .thm-header nav.validnavs .navbar-collapse.collapse.collapse-mobile .thm-nav {
        direction: rtl;
        width: 100%;
        text-align: right;
        padding: 56px 20px 20px !important;
        margin: 0 !important;
    }

    .thm-header nav.validnavs .navbar-collapse.collapse.collapse-mobile .thm-nav > li {
        width: 100%;
        text-align: right;
    }

    .thm-header .thm-nav > li > a {
        direction: rtl;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        text-align: right;
        padding: 14px 16px !important;
        font-size: 16px;
    }

    .thm-header .thm-nav > li > a span {
        order: 1;
        flex: 0 1 auto;
    }

    .thm-header .thm-nav > li > a .thm-nav-icon {
        order: 2;
        flex: 0 0 auto;
    }

    .thm-header .thm-nav .thm-nav-icon {
        width: 22px;
        font-size: 16px;
    }

    .thm-header .navbar-brand > img,
    .thm-header .navbar-brand.thm-brand > .thm-brand-logo,
    .thm-header .thm-brand-logo {
        height: 64px;
        max-height: 64px;
    }
}

@media (max-width: 576px) {
    .thm-header .navbar-brand > img,
    .thm-header .navbar-brand.thm-brand > .thm-brand-logo,
    .thm-header .thm-brand-logo {
        height: 58px;
        max-height: 58px;
    }

    .thm-header .navbar-header {
        min-height: 62px;
    }
}

@media (max-width: 480px) {
    .thm-header nav.validnavs {
        padding: 12px 0 !important;
    }
}

/* ---- Buttons ---- */
body.thm-site .btn-theme,
body.thm-site .btn.btn-theme {
    background: linear-gradient(135deg, var(--thm-primary), var(--thm-primary-dark)) !important;
    border: none !important;
    color: var(--thm-white) !important;
    font-weight: 600;
    padding: 12px 28px !important;
    border-radius: var(--thm-radius-md) !important;
    box-shadow: 0 4px 14px rgba(11, 110, 153, 0.35);
    transition: all var(--thm-transition);
    letter-spacing: 0;
}

body.thm-site .btn-theme:hover,
body.thm-site .btn.btn-theme:hover {
    background: linear-gradient(135deg, var(--thm-primary-dark), var(--thm-primary)) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 110, 153, 0.45);
    color: var(--thm-white) !important;
}

/* ---- Section Headings ---- */
.thm-section-heading {
    text-align: center;
    margin-bottom: 48px;
}

.thm-section-heading .sub-title,
body.thm-site .site-heading .sub-title {
    display: inline-block;
    background: var(--thm-primary-light);
    color: var(--thm-primary);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
    letter-spacing: 0;
}

.thm-section-heading .title,
body.thm-site .site-heading .title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--thm-dark);
    margin-bottom: 0;
}

/* ---- Banner / Hero ---- */
.thm-hero.banner-area {
    position: relative;
}

.thm-hero .banner-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.74) 58%, rgba(15, 23, 42, 0.86)),
        linear-gradient(180deg, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.55));
}

.thm-hero .banner-style-one .content .info {
    max-width: 720px;
    padding: 34px 38px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--thm-radius-xl);
    background: linear-gradient(to left, rgba(15, 23, 42, 0.58), rgba(15, 23, 42, 0.32) 58%, rgba(15, 23, 42, 0.06));
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(3px);
}

.thm-hero .banner-style-one .content .info h2 {
    font-size: clamp(2rem, 4vw, 3.35rem) !important;
    font-weight: 800 !important;
    line-height: 1.32;
    margin-bottom: 18px;
    color: var(--thm-white);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.42);
}

.thm-hero .banner-style-one .content .info h2 strong {
    color: var(--thm-accent);
}

.thm-hero .banner-style-one .content .info p {
    max-width: 620px;
    padding-right: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 1.8vw, 1.17rem);
    line-height: 2;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.thm-hero .banner-style-one .button {
    margin-top: 28px;
}

.thm-hero .banner-style-one .btn.btn-theme {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 178px;
    min-height: 52px;
    padding: 14px 26px !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 999px !important;
    font-size: 16px;
    box-shadow: 0 14px 34px rgba(11, 110, 153, 0.38);
}

.thm-hero .banner-style-one .btn.btn-theme::after {
    display: none;
}

.thm-hero .banner-style-one .btn.btn-theme i {
    font-size: 13px;
    transition: transform var(--thm-transition);
}

.thm-hero .banner-style-one .btn.btn-theme:hover i {
    transform: translateX(-4px);
}

.thm-hero .swiper-button-prev,
.thm-hero .swiper-button-next {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    width: 48px !important;
    height: 48px !important;
    transition: all var(--thm-transition);
}

.thm-hero .swiper-button-prev:hover,
.thm-hero .swiper-button-next:hover {
    background: var(--thm-primary);
}

/* ---- Homepage Redesign Sections ---- */
.thm-about {
    position: relative;
    overflow: visible;
    background:
        radial-gradient(circle at 18% 20%, rgba(20, 184, 166, 0.13), transparent 28%),
        radial-gradient(circle at 86% 68%, rgba(11, 110, 153, 0.1), transparent 30%),
        linear-gradient(180deg, var(--thm-white), var(--thm-gray-50));
}

.thm-about .about-style-one-thumb {
    position: relative;
    isolation: isolate;
    padding: 18px;
}

.thm-about .about-style-one-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: calc(var(--thm-radius-xl) + 10px);
    background: linear-gradient(135deg, rgba(11, 110, 153, 0.18), rgba(20, 184, 166, 0.2));
    transform: rotate(-2deg);
    z-index: -1;
}

.thm-about .about-style-one-thumb img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: var(--thm-radius-xl);
    box-shadow: var(--thm-shadow-lg);
}

.thm-about-stat-card {
    position: absolute;
    right: 0;
    bottom: 44px;
    max-width: 190px;
    padding: 20px 18px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--thm-radius-lg);
    background: rgba(255, 255, 255, 0.93);
    box-shadow: var(--thm-shadow-lg);
    backdrop-filter: blur(12px);
}

.thm-about-stat-card strong {
    display: block;
    color: var(--thm-primary);
    font-size: 2.55rem;
    font-weight: 900;
    line-height: 1;
}

.thm-about-stat-card span {
    display: block;
    margin-top: 10px;
    color: var(--thm-dark);
    font-weight: 800;
    line-height: 1.7;
}

.thm-about .about-style-one-info,
.thm-about .about-style-one-info.thm-about-panel {
    padding: 34px;
    border: 1px solid rgba(226, 232, 240, 0.88);
    border-radius: var(--thm-radius-xl);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--thm-shadow-sm);
    backdrop-filter: blur(14px);
    overflow: visible;
    width: 100%;
}

.thm-about .thm-about-content-col {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 20px;
}

.thm-about .thm-about-intro > p {
    margin-bottom: 0;
    color: var(--thm-gray-700);
    font-size: 16px;
    line-height: 1.85;
}

.thm-about .thm-about-intro .thm-about-highlights {
    margin-bottom: 0;
}

.thm-about-secondary-thumb {
    flex: 1;
    min-height: 200px;
    border-radius: var(--thm-radius-lg);
    overflow: hidden;
    box-shadow: var(--thm-shadow-md);
}

.thm-about-secondary-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    border-radius: var(--thm-radius-lg);
}

.thm-about .about-style-one-thumb {
    height: 100%;
}

.thm-about .about-style-one-thumb img {
    min-height: 100%;
    height: 100%;
}

.thm-about-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 16px;
    border-radius: 999px;
    background: var(--thm-primary-light);
    color: var(--thm-primary);
    font-size: 13px;
    font-weight: 800;
}

.thm-about .about-style-one-info .title {
    font-size: clamp(1.75rem, 3vw, 2.55rem);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 18px;
}

.thm-about .about-style-one-info .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 74px;
    height: 4px;
    background: linear-gradient(90deg, var(--thm-primary), var(--thm-accent));
    border-radius: 2px;
}

.thm-about .about-style-one-info > p {
    margin-bottom: 0;
    color: var(--thm-gray-700);
    font-size: 16px;
}

.thm-about-highlights {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 12px;
    margin: 24px 0 0;
}

.thm-about .fun-fact-style-flex {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding: 14px 18px;
    border: 1px solid rgba(11, 110, 153, 0.16);
    border-radius: var(--thm-radius-lg);
    background: linear-gradient(135deg, rgba(232, 244, 250, 0.9), rgba(255, 255, 255, 0.92));
}

.thm-about .fun-fact-style-flex .counter {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    margin: 0;
    padding: 0;
    border: 0;
    color: var(--thm-primary);
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 1;
}

.thm-about .fun-fact-style-flex .operator {
    color: var(--thm-accent);
    font-size: 1.5rem;
    font-weight: 900;
}

.thm-about .fun-fact-style-flex .medium {
    color: var(--thm-dark);
    font-size: 14px;
    font-weight: 800;
}

.thm-about .fun-fact-style-flex {
    flex: 1 1 220px;
}

.thm-about .top-feature {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 20px;
    margin-top: 32px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0;
    list-style: none;
    position: relative;
    z-index: 2;
}

.thm-about .top-feature li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    height: 100%;
    min-height: 100%;
    background: var(--thm-white);
    border-radius: var(--thm-radius-lg);
    padding: 24px 22px;
    box-shadow: var(--thm-shadow-sm);
    border: 1px solid var(--thm-gray-200);
    transition: all var(--thm-transition);
    margin-bottom: 0;
}

.thm-about .top-feature li:hover {
    border-color: rgba(11, 110, 153, 0.24);
    box-shadow: var(--thm-shadow-md);
    transform: translateY(-3px);
}

.thm-about .top-feature li:first-child .icon {
    background: linear-gradient(135deg, #fef9c3, #fde68a);
}

.thm-about .top-feature li.thm-about-feature--accent {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 24px 22px;
    padding-inline-end: 72px;
    border: none;
    background: linear-gradient(155deg, var(--thm-accent) 0%, var(--thm-accent-hover) 100%);
    box-shadow: 0 14px 36px rgba(20, 184, 166, 0.28);
}

.thm-about .top-feature li.thm-about-feature--accent:hover {
    border-color: transparent;
    box-shadow: 0 18px 42px rgba(20, 184, 166, 0.34);
}

.thm-about .top-feature li.thm-about-feature--accent .icon {
    position: absolute;
    top: 18px;
    inset-inline-end: 18px;
    flex: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}

.thm-about .top-feature li.thm-about-feature--accent .icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.thm-about .top-feature li.thm-about-feature--accent h4,
.thm-about .top-feature li.thm-about-feature--accent p {
    color: var(--thm-white);
}

.thm-about .top-feature li.thm-about-feature--accent p {
    opacity: 0.92;
}

.thm-about .top-feature .icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--thm-primary-light), rgba(20, 184, 166, 0.18));
}

.thm-about .top-feature .icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.thm-about .top-feature h4 {
    margin-bottom: 8px;
    font-size: 1.06rem;
}

.thm-about .top-feature p {
    margin-bottom: 0;
    color: var(--thm-gray-500);
    font-size: 15px;
    line-height: 1.8;
}

.thm-about .top-feature .info {
    flex: 1;
}

.thm-about-actions,
.thm-section-action {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.thm-section-action {
    justify-content: center;
}

.thm-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--thm-primary);
    font-weight: 800;
    text-decoration: none;
    transition: color var(--thm-transition), transform var(--thm-transition);
}

.thm-text-link:hover {
    color: var(--thm-accent-hover);
    transform: translateX(-3px);
}

.thm-about-page {
    position: relative;
    background:
        radial-gradient(circle at 15% 20%, rgba(20, 184, 166, 0.1), transparent 26%),
        linear-gradient(180deg, var(--thm-white), var(--thm-gray-50));
}

.thm-about-hero-thumb {
    position: relative;
    padding: 16px;
}

.thm-about-hero-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: calc(var(--thm-radius-xl) + 12px);
    background: linear-gradient(135deg, var(--thm-primary-light), rgba(20, 184, 166, 0.16));
    transform: rotate(-3deg);
    z-index: -1;
}

.thm-experience-card {
    position: absolute;
    right: 0;
    bottom: 36px;
    max-width: 190px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--thm-radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--thm-shadow-lg);
    backdrop-filter: blur(10px);
}

.thm-experience-card strong {
    display: block;
    color: var(--thm-primary);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
}

.thm-experience-card span {
    display: block;
    margin-top: 8px;
    color: var(--thm-dark);
    font-weight: 700;
    line-height: 1.7;
}

.thm-about-page .sub-title,
.thm-clients-heading .sub-title,
.thm-timeline .sub-title,
.thm-info-badge,
.thm-form-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 16px;
    border-radius: 999px;
    background: var(--thm-primary-light);
    color: var(--thm-primary);
    font-size: 13px;
    font-weight: 800;
}

.thm-about-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.thm-about-page .thm-about-actions {
    margin-top: 40px;
}

.thm-metric-card {
    padding: 18px 14px;
    border: 1px solid var(--thm-gray-200);
    border-radius: var(--thm-radius-md);
    background: var(--thm-white);
    box-shadow: var(--thm-shadow-sm);
}

.thm-metric-card strong {
    display: block;
    color: var(--thm-primary);
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.thm-metric-card span {
    display: block;
    margin-top: 10px;
    color: var(--thm-gray-700);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
}

.thm-capabilities-area {
    background: var(--thm-gray-50);
}

.thm-capability-card {
    height: calc(100% - 24px);
    margin-bottom: 24px;
    padding: 30px;
    border: 1px solid var(--thm-gray-200);
    border-radius: var(--thm-radius-lg);
    background: var(--thm-white);
    box-shadow: var(--thm-shadow-sm);
    transition: all var(--thm-transition);
}

.thm-capability-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--thm-shadow-lg);
}

.thm-capability-card .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--thm-primary-light), rgba(20, 184, 166, 0.18));
}

.thm-capability-card .icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.thm-capability-card h4 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.thm-capability-card p {
    margin-bottom: 0;
}

.thm-clients-area {
    background:
        linear-gradient(135deg, rgba(11, 110, 153, 0.06), rgba(20, 184, 166, 0.08)),
        var(--thm-white);
}

.thm-clients-heading {
    margin-bottom: 24px;
}

.thm-client-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.thm-client-grid span {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 12px 18px;
    border: 1px solid var(--thm-gray-200);
    border-radius: var(--thm-radius-md);
    background: rgba(255, 255, 255, 0.86);
    color: var(--thm-dark);
    font-weight: 700;
    box-shadow: var(--thm-shadow-sm);
}

/* ---- Service Cards ---- */
.thm-services {
    position: relative;
    background:
        linear-gradient(180deg, var(--thm-gray-50), var(--thm-white)) !important;
    overflow: hidden;
}

.thm-services::before,
.thm-blog::before {
    content: '';
    position: absolute;
    top: 44px;
    left: -110px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.1);
    pointer-events: none;
}

.thm-section-heading p,
body.thm-site .site-heading p {
    max-width: 760px;
    margin: 16px auto 0;
    color: var(--thm-gray-500);
    font-size: 16px;
    line-height: 1.9;
}

.thm-services .service-style-one-item {
    position: relative;
    isolation: isolate;
    background: var(--thm-white);
    border-radius: var(--thm-radius-xl);
    overflow: hidden;
    box-shadow: var(--thm-shadow-sm);
    border: 1px solid var(--thm-gray-200);
    transition: all var(--thm-transition);
    height: 100%;
}

.thm-services .service-style-one-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(11, 110, 153, 0.08), transparent 42%);
    opacity: 0;
    transition: opacity var(--thm-transition);
    z-index: -1;
}

.thm-services .service-style-one-item:hover {
    border-color: rgba(11, 110, 153, 0.28);
    box-shadow: var(--thm-shadow-lg);
    transform: translateY(-6px);
}

.thm-services .service-style-one-item:hover::before {
    opacity: 1;
}

.thm-services .service-style-one-item .thumb {
    position: relative;
    overflow: hidden;
    margin: -1px -1px 0;
}

.thm-services .service-style-one-item .thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.4s ease;
}

.thm-services .service-style-one-item:hover .thumb img {
    transform: scale(1.05);
}

.thm-services .service-style-one-item .info {
    padding: 26px 26px 70px;
}

.thm-services .service-style-one-item .info .top {
    margin-bottom: 12px;
}

.thm-services .service-style-one-item .info h4 {
    margin-bottom: 0;
    font-size: 1.18rem;
    line-height: 1.7;
}

.thm-services .service-style-one-item .info h4 a {
    color: var(--thm-dark);
    font-weight: 700;
    transition: color var(--thm-transition);
}

.thm-services .service-style-one-item .info h4 span {
    display: block;
    margin-top: 4px;
    color: var(--thm-primary);
    font-size: 13px;
    font-weight: 800;
}

.thm-services .service-style-one-item p {
    color: var(--thm-gray-500);
    font-size: 14px;
    line-height: 1.9;
}

.thm-services .service-style-one-item:hover .info h4 a {
    color: var(--thm-primary);
}

.thm-services .btn-angle {
    position: absolute;
    right: 26px;
    bottom: 24px;
    background: linear-gradient(135deg, var(--thm-primary-light), rgba(20, 184, 166, 0.16));
    color: var(--thm-primary);
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--thm-transition);
}

.thm-services .service-style-one-item:hover .btn-angle {
    background: var(--thm-primary);
    color: var(--thm-white);
}

/* ---- Product Categories ---- */
body.thm-site .product-cat-area::before {
    display: none;
}

body.thm-site .thm-products.product-cat-area.default-padding {
    padding-top: 24px;
    padding-bottom: 16px;
}

body.thm-site .thm-products .product-cat-lists {
    padding-right: 0;
}

body.thm-site .thm-products .product-list-box {
    grid-row-gap: 24px;
    grid-column-gap: 20px;
}

.thm-products .product-cat-info h2.mask-text {
    border-radius: var(--thm-radius-lg);
    overflow: hidden;
}

.thm-products .product-list-item {
    background: var(--thm-white);
    border: 1px solid var(--thm-gray-200);
    border-radius: var(--thm-radius-md);
    padding: 16px;
    transition: all var(--thm-transition);
    box-shadow: var(--thm-shadow-sm);
}

.thm-products .product-list-item:hover {
    background: var(--thm-white);
    transform: translateY(-4px);
    border-color: rgba(11, 110, 153, 0.28);
    box-shadow: var(--thm-shadow-md);
}

.thm-products .product-list-item img {
    filter: none;
}

.thm-products .product-list-item h5 {
    color: var(--thm-dark);
    font-weight: 600;
    margin-top: 10px;
}

/* ---- Projects Gallery ---- */
body.thm-site .thm-projects {
    position: relative;
    background:
        radial-gradient(circle at 15% 15%, rgba(20, 184, 166, 0.12), transparent 25%),
        linear-gradient(180deg, var(--thm-dark), var(--thm-dark-soft)) !important;
    overflow: hidden;
}

body.thm-site .thm-projects .thm-section-heading .sub-title,
body.thm-site .thm-projects .site-heading .sub-title {
    background: rgba(255, 255, 255, 0.1);
    color: var(--thm-accent);
}

body.thm-site .thm-projects .thm-section-heading .title,
body.thm-site .thm-projects .site-heading .title,
body.thm-site .thm-projects .thm-section-heading h2,
body.thm-site .thm-projects .site-heading h2 {
    color: var(--thm-white);
}

body.thm-site .thm-projects .thm-section-heading p,
body.thm-site .thm-projects .site-heading p {
    color: rgba(255, 255, 255, 0.78);
}

.thm-projects .gallery-style-one-carousel .swiper-slide {
    border-radius: var(--thm-radius-xl);
    overflow: hidden;
}

.thm-projects .gallery-style-one {
    border-radius: var(--thm-radius-xl);
    overflow: hidden;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
}

.thm-projects .gallery-style-one img {
    width: 100%;
    height: 390px;
    object-fit: cover;
}

.thm-projects .gallery-style-one::after {
    background: linear-gradient(180deg, transparent 20%, rgba(15, 23, 42, 0.9));
}

.thm-projects .gallery-style-one .overlay {
    right: 26px;
    left: 26px;
    bottom: 26px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--thm-radius-lg);
    background: rgba(15, 23, 42, 0.58);
    backdrop-filter: blur(10px);
}

.thm-projects .gallery-style-one .overlay::after {
    display: none;
}

.thm-projects .gallery-style-one .overlay p {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(20, 184, 166, 0.15);
    color: var(--thm-accent);
    font-size: 12px;
    font-weight: 800;
}

.thm-projects .gallery-style-one .overlay h4 {
    font-family: var(--thm-font) !important;
    font-size: 1.2rem;
    line-height: 1.6;
}

.thm-projects .gallery-style-one-carousel .swiper-pagination span.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6);
}

.thm-projects .gallery-style-one-carousel .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--thm-accent);
}

/* ---- Blog Cards ---- */
.thm-blog {
    position: relative;
    background:
        linear-gradient(180deg, var(--thm-white), var(--thm-gray-50));
    overflow: hidden;
}

.thm-blog .blog-style-one,
.thm-blog .blog-item,
.thm-blog .blog-style-two {
    border-radius: var(--thm-radius-xl);
    overflow: hidden;
    box-shadow: var(--thm-shadow-sm);
    border: 1px solid var(--thm-gray-200);
    transition: all var(--thm-transition);
    background: var(--thm-white);
    height: 100%;
}

.thm-blog .blog-style-one:hover,
.thm-blog .blog-item:hover,
.thm-blog .blog-style-two:hover {
    border-color: rgba(11, 110, 153, 0.24);
    box-shadow: var(--thm-shadow-lg);
    transform: translateY(-4px);
}

.thm-blog .blog-style-one .thumb,
.thm-blog .blog-style-one .thumb a {
    display: block;
    position: relative;
    overflow: hidden;
}

.thm-blog .blog-style-one .thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(15, 23, 42, 0.78));
    opacity: 0.88;
    pointer-events: none;
    z-index: 1;
}

.thm-blog .blog-style-one .thumb a {
    z-index: 0;
}

.thm-blog .blog-style-one .thumb .date,
.thm-blog .blog-style-one .thumb .overlay {
    z-index: 2;
}

.thm-blog .blog-style-one .thumb .overlay {
    right: 0;
    left: 0;
    bottom: 0;
    padding: 28px 32px;
}

.thm-blog .blog-style-one .thumb .overlay p {
    color: rgba(255, 255, 255, 0.82);
}

.thm-blog .blog-style-one .thumb .date {
    right: 20px;
    top: 20px;
    bottom: auto;
    border-radius: var(--thm-radius-md);
    background: linear-gradient(135deg, var(--thm-primary), var(--thm-accent));
    color: var(--thm-white);
}

.thm-blog .blog-style-one .info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}

.thm-blog .blog-style-one .meta ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
}

.thm-blog .blog-style-one .meta li {
    display: inline-flex;
    margin: 0;
    position: static;
}

.thm-blog .blog-style-one .meta li::after {
    display: none;
}

.thm-blog .blog-style-one .meta li a {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--thm-primary-light);
    color: var(--thm-primary);
    font-size: 12px;
    font-weight: 800;
}

.thm-blog .blog-style-one .post-title {
    line-height: 1.65;
    font-weight: 700;
}

.thm-blog.home-blog .blog-style-one .info .post-title {
    flex: 1;
    font-size: 17px;
    margin-bottom: 0;
}

.thm-blog.home-blog .blog-style-one .info .post-title a {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.thm-blog.home-blog .blog-style-one .thumb .overlay .post-title {
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    font-weight: 800;
    line-height: 1.55;
    margin-bottom: 12px;
}

.thm-blog.home-blog .blog-style-one .thumb .overlay .post-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.thm-blog.home-blog .blog-style-one .thumb .overlay p {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.thm-blog .blog-style-one .post-title a {
    color: var(--thm-dark);
    transition: color var(--thm-transition);
}

.thm-blog .blog-style-one:hover .post-title a {
    color: var(--thm-primary);
}

.thm-blog .blog-style-one .button-regular {
    color: var(--thm-primary);
    font-weight: 800;
    text-transform: none;
}

.thm-blog .blog-style-one .info .button-regular {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--thm-gray-200);
}

.thm-blog .blog-style-one .thumb img,
.thm-blog .blog-item .thumb img,
.thm-blog .blog-style-two .thumb img {
    width: 100%;
    min-height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.thm-blog .blog-style-one:hover .thumb img,
.thm-blog .blog-item:hover .thumb img,
.thm-blog .blog-style-two:hover .thumb img {
    transform: scale(1.04);
}

.thm-blog.home-blog .blog-style-one {
    display: flex;
    flex-direction: column;
}

.thm-blog.home-blog .row {
    align-items: stretch;
}

@media (min-width: 1200px) {
    .thm-blog.home-blog .row {
        align-items: stretch;
    }

    .thm-blog.home-blog .col-xl-6 .blog-style-one {
        display: flex;
        flex-direction: column;
    }

    .thm-blog.home-blog .col-xl-6 .blog-style-one .thumb {
        flex: 1;
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .thm-blog.home-blog .col-xl-6 .blog-style-one .thumb img {
        flex: 1;
        width: 100%;
        min-height: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* ---- Breadcrumbs ---- */
.thm-breadcrumb.breadcrumb-area {
    position: relative;
    padding: 80px 0 70px !important;
    background-size: cover !important;
    background-position: center !important;
}

.thm-breadcrumb.breadcrumb-area.shadow.dark::after {
    background:
        linear-gradient(135deg, rgba(11, 110, 153, 0.78), rgba(20, 184, 166, 0.58)),
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 30%) !important;
    opacity: 1 !important;
}

.thm-breadcrumb.breadcrumb-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 77, 107, 0.14), rgba(20, 184, 166, 0.08)),
        radial-gradient(circle at 82% 24%, rgba(232, 244, 250, 0.22), transparent 30%);
    pointer-events: none;
}

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

.thm-breadcrumb.breadcrumb-area h1 {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.thm-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 8px 20px;
    display: inline-flex;
    margin: 0;
}

.thm-breadcrumb .breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color var(--thm-transition);
}

.thm-breadcrumb .breadcrumb a:hover {
    color: var(--thm-accent);
}

.thm-breadcrumb .breadcrumb .active,
.thm-breadcrumb .breadcrumb li.active span {
    color: var(--thm-white);
}

.thm-product-breadcrumb.breadcrumb-area {
    padding: 42px 0 34px !important;
    background:
        radial-gradient(circle at 18% 10%, rgba(20, 184, 166, 0.16), transparent 32%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 244, 250, 0.82));
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.thm-product-breadcrumb.breadcrumb-area::before {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(20, 184, 166, 0.08));
}

.thm-product-breadcrumb.breadcrumb-area h1 {
    max-width: 900px;
    margin: 0 auto 16px;
    color: var(--thm-dark);
    font-size: clamp(1.35rem, 3vw, 2rem);
    line-height: 1.6;
}

.thm-product-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(226, 232, 240, 0.92);
    box-shadow: var(--thm-shadow-sm);
}

.thm-product-breadcrumb .breadcrumb a,
.thm-product-breadcrumb .breadcrumb li,
.thm-product-breadcrumb .breadcrumb span {
    color: var(--thm-gray-700);
}

.thm-product-breadcrumb .breadcrumb a:hover,
.thm-product-breadcrumb .breadcrumb .active,
.thm-product-breadcrumb .breadcrumb li.active span {
    color: var(--thm-primary);
}

/* ---- Footer ---- */
.thm-footer {
    background: var(--thm-dark) !important;
    position: relative;
    overflow: hidden;
}

.thm-footer .container {
    position: relative;
    z-index: 1;
}

.thm-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--thm-primary), var(--thm-accent), var(--thm-primary));
}

.thm-footer .footer-item {
    margin-top: 0;
    height: 100%;
}

.thm-footer .footer-item.about {
    margin-right: 0;
    padding-left: 0;
    border-left: 0;
}

.thm-footer .footer-item .logo {
    height: auto;
    max-height: 60px;
    max-width: 180px;
    object-fit: contain;
}

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

.thm-footer .footer-item h4.widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
    color: var(--thm-white);
}

.thm-footer .footer-item h4.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--thm-accent);
    border-radius: 2px;
}

.thm-footer .footer-item.about form {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.thm-footer .footer-item.about form input {
    flex: 1;
    border-radius: var(--thm-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: var(--thm-white);
    min-height: 46px;
    padding: 10px 14px;
}

.thm-footer .footer-item.about form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.thm-footer .footer-item.about form button {
    position: static;
    background: var(--thm-primary);
    color: var(--thm-white);
    border: none;
    border-radius: var(--thm-radius-sm);
    width: auto;
    height: auto;
    padding: 10px 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--thm-transition);
    white-space: nowrap;
}

.thm-footer .footer-item.about form button:hover {
    background: var(--thm-accent);
}

.thm-footer .footer-item.contact ul li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.thm-footer .footer-item.recent-post li {
    display: flex;
    gap: 12px;
    margin-top: 0;
    margin-bottom: 18px;
    align-items: flex-start;
}

.thm-footer .footer-item.recent-post li:last-child,
.thm-footer .footer-item.contact ul li:last-child {
    margin-bottom: 0;
}

.thm-footer .footer-item.recent-post li img {
    width: 72px;
    max-width: 72px;
    height: 58px;
    margin-left: 0;
    border-radius: var(--thm-radius-sm);
    object-fit: cover;
}

.thm-footer .footer-item.recent-post li h5 {
    margin: 0 0 8px;
    line-height: 1.6;
}

.thm-footer .footer-item.recent-post li a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
}

.thm-footer .footer-item.recent-post li a:hover {
    color: var(--thm-accent);
}

.thm-footer .footer-item.recent-post li .meta-title span {
    color: var(--thm-accent);
    font-size: 13px;
    margin-bottom: 0;
}

.thm-footer .footer-item.contact .icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--thm-accent);
}

.thm-footer .footer-item.contact .icon i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    margin: 0;
    line-height: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 400;
}

.thm-footer .footer-item.contact li .content {
    color: rgba(255, 255, 255, 0.85);
}

.thm-footer .footer-item.contact li strong {
    color: var(--thm-white);
    text-transform: none;
}

.thm-footer .footer-item.contact a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color var(--thm-transition);
}

.thm-footer .footer-item.contact a:hover {
    color: var(--thm-accent);
}

.thm-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.thm-footer .footer-bottom a {
    color: var(--thm-accent);
    text-decoration: none;
}

.thm-footer .footer-bottom a:hover {
    text-decoration: underline;
}

.thm-footer .footer-map iframe {
    display: block;
    width: 100%;
    min-height: 210px;
    border: 0;
    border-radius: var(--thm-radius-md);
    filter: grayscale(0.2) contrast(0.95);
}

.thm-footer .shape-right-bottom {
    z-index: 0;
    opacity: 0.08;
    pointer-events: none;
}

/* ---- Contact Form ---- */
.thm-contact .contact-form-style-one {
    background: var(--thm-white);
    border-radius: var(--thm-radius-lg);
    padding: 40px;
    box-shadow: var(--thm-shadow-md);
    border: 1px solid var(--thm-gray-200);
}

.thm-contact .form-control {
    border: 1px solid var(--thm-gray-200);
    border-radius: var(--thm-radius-sm);
    padding: 12px 16px;
    font-family: var(--thm-font);
    transition: border-color var(--thm-transition), box-shadow var(--thm-transition);
}

.thm-contact .form-control:focus {
    border-color: var(--thm-primary);
    box-shadow: 0 0 0 3px rgba(11, 110, 153, 0.15);
    outline: none;
}

.thm-contact button[type="submit"] {
    background: linear-gradient(135deg, var(--thm-primary), var(--thm-primary-dark));
    color: var(--thm-white);
    border: none;
    border-radius: var(--thm-radius-md);
    padding: 14px 32px;
    font-weight: 600;
    font-family: var(--thm-font);
    cursor: pointer;
    transition: all var(--thm-transition);
    box-shadow: 0 4px 14px rgba(11, 110, 153, 0.3);
}

.thm-contact button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 110, 153, 0.4);
}

.thm-contact .contact-style-one-info {
    background: var(--thm-primary-light);
    border-radius: var(--thm-radius-lg);
    padding: 40px;
    height: 100%;
}

.thm-contact .contact-style-one-info h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--thm-dark);
}

.thm-contact .contact-style-one-info ul li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(11, 110, 153, 0.12);
}

.thm-contact .contact-style-one-info ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.thm-contact .contact-style-one-info a {
    color: var(--thm-primary);
    text-decoration: none;
    font-weight: 600;
}

.thm-contact .contact-style-one-info a:hover {
    color: var(--thm-primary-dark);
}

.thm-contact-page {
    position: relative;
    background:
        radial-gradient(circle at 82% 12%, rgba(11, 110, 153, 0.12), transparent 28%),
        linear-gradient(180deg, var(--thm-gray-50), var(--thm-white)) !important;
}

.thm-contact-page .site-heading,
.thm-contact-page .thm-contact-intro {
    margin-bottom: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center !important;
}

.thm-contact-page .site-heading .sub-title,
.thm-contact-page .site-heading .title,
.thm-contact-page .site-heading p,
.thm-contact-page .thm-contact-intro .sub-title,
.thm-contact-page .thm-contact-intro .title,
.thm-contact-page .thm-contact-intro p {
    text-align: center !important;
}

.thm-contact-page .site-heading .sub-title,
.thm-contact-page .thm-contact-intro .sub-title {
    display: inline-flex !important;
    margin-inline: auto;
}

.thm-contact-page .site-heading .title,
.thm-contact-page .thm-contact-intro .title {
    width: 100%;
}

.thm-contact-page .contact-form-style-one {
    position: relative;
    overflow: hidden;
}

.thm-contact-page .contact-form-style-one::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--thm-accent), var(--thm-primary));
}

.thm-contact-page .contact-form-style-one p,
.thm-contact-page .contact-style-one-info p {
    margin-bottom: 28px;
}

.thm-contact-page .contact-form-style-one .heading {
    margin-bottom: 12px;
}

.thm-contact-page .contact-style-one-info {
    background:
        linear-gradient(160deg, rgba(11, 110, 153, 0.12), rgba(20, 184, 166, 0.12)),
        var(--thm-white);
    border: 1px solid rgba(11, 110, 153, 0.14);
    box-shadow: var(--thm-shadow-md);
}

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

.thm-contact .contact-style-one-info .thm-contact-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 0;
    margin-bottom: 0;
}

.thm-contact .contact-style-one-info .thm-contact-list li:first-child {
    padding-top: 0;
}

.thm-contact-list .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--thm-primary);
    color: var(--thm-white);
    box-shadow: var(--thm-shadow-sm);
}

.thm-contact .contact-style-one-info .thm-contact-list .icon i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    min-width: 0;
    margin: 0 !important;
    padding: 0;
    line-height: 1;
    background: transparent !important;
    border-radius: 0;
    font-size: 18px;
    font-weight: 400;
    color: inherit;
}

.thm-contact-list li:nth-child(2) .icon {
    background: var(--thm-accent);
}

.thm-contact-list li:nth-child(3) .icon {
    background: #068685;
}

.thm-contact-list li:nth-child(4) .icon {
    background: var(--thm-primary-dark);
}

.thm-contact-page > .container > .row {
    align-items: stretch;
}

.thm-contact-page .col-tact-stye-one {
    display: flex;
    flex-direction: column;
}

.thm-contact-page .contact-form-style-one,
.thm-contact-page .contact-style-one-info {
    flex: 1;
    width: 100%;
}

.thm-contact-page .contact-style-one-info h2 {
    margin-top: 0 !important;
}

.thm-contact-page .contact-style-one-info ul {
    margin-top: 0;
}

.thm-contact-list .title {
    margin-bottom: 6px;
    font-size: 15px;
}

.thm-map-item {
    display: block !important;
}

.thm-map-frame {
    height: 230px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: var(--thm-radius-md);
    border: 1px solid rgba(11, 110, 153, 0.18);
    box-shadow: var(--thm-shadow-sm);
}

.thm-map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.thm-alert-stack .alert {
    margin-bottom: 14px;
}

/* ---- Listing Pages ---- */
.thm-list-heading {
    margin-bottom: 44px;
}

.thm-list-heading .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 7px 18px;
    color: var(--thm-primary);
    background: var(--thm-primary-light);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.thm-list-heading .sub-title::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--thm-accent);
    border-radius: 50%;
}

.thm-list-heading h2 {
    margin-bottom: 14px;
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    font-weight: 800;
}

.thm-list-heading p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--thm-gray-500);
    font-size: 16px;
}

.thm-empty-state {
    width: 100%;
    padding: 44px 28px;
    background:
        radial-gradient(circle at top right, rgba(20, 184, 166, 0.12), transparent 34%),
        var(--thm-white);
    border: 1px dashed rgba(11, 110, 153, 0.26);
    border-radius: var(--thm-radius-lg);
    box-shadow: var(--thm-shadow-sm);
}

.thm-empty-state--wide {
    grid-column: 1 / -1;
    list-style: none;
}

.thm-empty-state i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    color: var(--thm-primary);
    background: var(--thm-primary-light);
    border-radius: 50%;
    font-size: 26px;
}

.thm-empty-state h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 800;
}

.thm-empty-state p {
    margin-bottom: 0;
    color: var(--thm-gray-500);
}

/* ---- Blog Listing ---- */
.thm-blog-list {
    background:
        linear-gradient(180deg, var(--thm-gray-50), rgba(248, 250, 252, 0)),
        var(--thm-white);
}

.thm-blog-list .blog-item-box {
    display: grid;
    gap: 28px;
}

.thm-blog-card {
    display: grid;
    grid-template-columns: minmax(280px, 38%) 1fr;
    overflow: hidden;
    margin: 0;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--thm-radius-xl);
    box-shadow: var(--thm-shadow-sm);
    transition: transform var(--thm-transition), box-shadow var(--thm-transition), border-color var(--thm-transition);
}

.thm-blog-card:hover {
    border-color: rgba(11, 110, 153, 0.24);
    box-shadow: var(--thm-shadow-lg);
    transform: translateY(-6px);
}

.thm-blog-card .thumb {
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

.thm-blog-card .thumb a {
    display: block;
    height: 100%;
}

.thm-blog-card .thumb img {
    width: 100%;
    height: 100%;
    min-height: 292px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.thm-blog-card .date {
    position: absolute;
    right: 18px;
    bottom: 18px;
    min-width: 108px;
    padding: 10px 14px;
    color: var(--thm-white);
    background: linear-gradient(135deg, var(--thm-primary), var(--thm-accent));
    border-radius: var(--thm-radius-md);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
}

.thm-blog-card .date strong {
    display: block;
    font-size: 25px;
    line-height: 1;
}

.thm-blog-card .date span {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.thm-blog-card .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px 36px;
}

.thm-blog-card .meta ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}

.thm-blog-card .meta li,
.thm-blog-card .meta li a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--thm-gray-500);
    font-size: 13px;
    line-height: 1.7;
}

.thm-blog-card .meta li {
    padding: 6px 12px;
    background: var(--thm-gray-50);
    border: 1px solid var(--thm-gray-200);
    border-radius: 999px;
}

.thm-blog-card .meta i {
    color: var(--thm-primary);
    font-size: 12px;
}

.thm-blog-card .title {
    margin-bottom: 14px;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.7;
}

.thm-blog-card .title a {
    color: var(--thm-dark);
    text-decoration: none;
    transition: color var(--thm-transition);
}

.thm-blog-card:hover .title a {
    color: var(--thm-primary);
}

.thm-blog-card p {
    margin-bottom: 24px;
    color: var(--thm-gray-500);
}

.thm-card-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: max-content;
}

.thm-card-link i {
    font-size: 12px;
    transition: transform var(--thm-transition);
}

.thm-card-link:hover i {
    transform: translateX(-4px);
}

/* ---- Blog Post Detail ---- */
.thm-post-page {
    position: relative;
    overflow: hidden;
    padding-top: 64px !important;
    background:
        radial-gradient(circle at 12% 8%, rgba(20, 184, 166, 0.13), transparent 28%),
        linear-gradient(180deg, var(--thm-gray-50), rgba(248, 250, 252, 0.2) 42%, var(--thm-white));
}

.thm-post-page::before {
    content: '';
    position: absolute;
    top: 84px;
    right: -120px;
    width: 280px;
    height: 280px;
    background: rgba(11, 110, 153, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.thm-post-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    gap: 28px;
}

.thm-post-main {
    min-width: 0;
}

.thm-post-card {
    overflow: hidden;
    margin: 0;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: var(--thm-radius-xl);
    box-shadow: var(--thm-shadow-md);
}

.thm-post-featured {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    background:
        linear-gradient(135deg, rgba(11, 110, 153, 0.12), rgba(20, 184, 166, 0.1)),
        var(--thm-gray-100);
}

.thm-post-featured::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 44%;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.45), transparent);
    pointer-events: none;
}

.thm-post-featured img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
}

.thm-post-date-badge {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 1;
    min-width: 124px;
    padding: 14px 16px;
    color: var(--thm-white);
    background: linear-gradient(135deg, var(--thm-primary), var(--thm-accent));
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.28);
    text-align: center;
}

.thm-post-date-badge strong {
    display: block;
    font-size: 30px;
    line-height: 1;
}

.thm-post-date-badge span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
}

.thm-post-info {
    padding: 38px 44px 48px;
}

.thm-post-kicker {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.thm-post-kicker a,
.thm-post-kicker span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    color: var(--thm-primary);
    background: var(--thm-primary-light);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.thm-post-kicker span {
    color: var(--thm-gray-500);
    background: var(--thm-gray-50);
    border: 1px solid var(--thm-gray-200);
}

.thm-post-meta ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.thm-post-meta li {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    padding: 11px 13px;
    color: var(--thm-gray-500);
    background: var(--thm-gray-50);
    border: 1px solid var(--thm-gray-200);
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.8;
}

.thm-post-meta li i {
    flex: 0 0 auto;
    color: var(--thm-primary);
    font-size: 13px;
}

.thm-post-meta a {
    color: var(--thm-primary);
    text-decoration: none;
}

.thm-post-body {
    padding: 24px 28px;
    color: var(--thm-gray-700);
    background: var(--thm-white);
    border: 1px solid var(--thm-gray-200);
    border-radius: 20px;
    font-size: 16px;
    line-height: 2.15;
}

.thm-post-body > *:first-child {
    margin-top: 0;
}

.thm-post-body h2,
.thm-post-body h3,
.thm-post-body h4 {
    position: relative;
    margin-top: 34px;
    margin-bottom: 16px;
    padding-right: 18px;
    line-height: 1.7;
}

.thm-post-body h2::before,
.thm-post-body h3::before,
.thm-post-body h4::before {
    content: '';
    position: absolute;
    top: 0.55em;
    right: 0;
    width: 6px;
    height: 22px;
    background: linear-gradient(180deg, var(--thm-primary), var(--thm-accent));
    border-radius: 999px;
}

.thm-post-body p {
    margin-bottom: 18px;
}

.thm-post-body a {
    color: var(--thm-primary);
    font-weight: 700;
    text-decoration: none;
}

.thm-post-body a:hover {
    color: var(--thm-accent-hover);
}

.thm-post-body img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 28px auto;
    border-radius: 20px;
    box-shadow: var(--thm-shadow-sm);
}

.thm-post-body ul,
.thm-post-body ol {
    margin: 0 0 22px;
    padding-right: 22px;
}

.thm-post-body li {
    margin-bottom: 10px;
}

.thm-post-body blockquote {
    margin: 28px 0;
    padding: 24px 28px;
    color: var(--thm-dark);
    background:
        linear-gradient(135deg, rgba(11, 110, 153, 0.08), rgba(20, 184, 166, 0.08)),
        var(--thm-gray-50);
    border-right: 4px solid var(--thm-primary);
    border-radius: 18px;
}

.thm-post-sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    align-self: start;
    gap: 18px;
}

.thm-post-author-card,
.thm-post-share-card,
.thm-post-comments,
.thm-post-navigation {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: var(--thm-radius-lg);
    box-shadow: var(--thm-shadow-sm);
}

.post-author.thm-post-author-card {
    display: block;
}

.thm-post-author-card {
    margin: 0;
    padding: 24px;
    text-align: center;
}

.thm-post-author-card .thumb {
    width: 92px;
    height: 92px;
    margin: 0 auto 16px;
    padding: 4px;
    background: linear-gradient(135deg, var(--thm-primary), var(--thm-accent));
    border-radius: 50%;
}

.thm-post-author-card .thumb img {
    display: block;
    width: 100%;
    min-width: 0;
    height: 100%;
    margin-left: 0;
    object-fit: cover;
    border: 4px solid var(--thm-white);
    border-radius: 50%;
}

.thm-sidebar-label {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 5px 12px;
    color: var(--thm-primary);
    background: var(--thm-primary-light);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.thm-post-author-card h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.thm-post-author-card a {
    color: var(--thm-dark);
    text-decoration: none;
}

.thm-post-author-card .content div {
    color: var(--thm-gray-500);
    font-size: 14px;
    line-height: 1.9;
}

.post-tags.share.thm-post-share-card {
    display: block;
    float: none;
    width: auto;
}

.thm-post-share-card {
    margin: 0;
    padding: 22px;
}

.thm-post-share-card .social {
    min-width: 0;
}

.thm-post-share-card .social h4 {
    display: block;
    margin-bottom: 16px;
    font-size: 17px;
}

.thm-post-share-card .social ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.thm-post-share-card .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 42px;
    color: var(--thm-primary);
    background: var(--thm-primary-light);
    border: 1px solid rgba(11, 110, 153, 0.12);
    border-radius: 14px;
    text-decoration: none;
    transition: all var(--thm-transition);
}

.thm-post-share-card .social a:hover {
    color: var(--thm-white);
    background: var(--thm-primary);
    transform: translateY(-3px);
}

.thm-post-navigation {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    margin-top: 24px;
}

.thm-post-navigation > div {
    padding: 0;
}

.thm-post-navigation > div + div {
    border-right: 1px solid var(--thm-gray-200);
}

.thm-post-navigation a {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 118px;
    padding: 22px;
    color: var(--thm-gray-500);
    text-decoration: none;
}

.thm-post-navigation h5 {
    margin: 6px 0 0;
    color: var(--thm-dark);
    font-size: 15px;
    line-height: 1.8;
}

.thm-post-navigation .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    color: var(--thm-primary);
    background: var(--thm-primary-light);
    border-radius: 50%;
    transition: all var(--thm-transition);
}

.thm-post-navigation a:hover .icon {
    color: var(--thm-white);
    background: var(--thm-primary);
}

.thm-post-comments {
    margin-top: 24px;
    padding: 28px;
}

.thm-post-comments .comments-title h4 {
    margin-bottom: 4px;
}

.thm-post-comments .comments-title small {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--thm-gray-500);
    font-size: 12px;
}

.thm-post-comments .comments-form {
    margin-top: 20px;
    padding: 22px;
    background: var(--thm-gray-50);
    border: 1px solid var(--thm-gray-200);
    border-radius: 18px;
}

.thm-post-comments .form-control {
    min-height: 50px;
    border-color: var(--thm-gray-200);
    border-radius: 14px;
    box-shadow: none;
}

.thm-post-comments textarea.form-control {
    min-height: 150px;
}

.thm-post-comments .form-control:focus {
    border-color: rgba(11, 110, 153, 0.38);
    box-shadow: 0 0 0 4px rgba(11, 110, 153, 0.08);
}

.thm-post-comments .submit .btn {
    padding: 13px 26px;
    color: var(--thm-white);
    background: linear-gradient(135deg, var(--thm-primary), var(--thm-accent));
    border: 0;
    border-radius: 999px;
}

/* ---- Shop / Product Grid ---- */
.thm-shop {
    background:
        radial-gradient(circle at top left, rgba(20, 184, 166, 0.1), transparent 30%),
        linear-gradient(180deg, var(--thm-gray-50), rgba(248, 250, 252, 0));
}

.thm-shop .vt-products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin: 0;
    padding: 0;
}

.thm-shop .vt-products .product {
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}

.thm-shop .thm-product-card .product-contents {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    padding: 0;
    background: var(--thm-white);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
    transition: transform var(--thm-transition), box-shadow var(--thm-transition), border-color var(--thm-transition);
}

.thm-shop .thm-product-card .product-contents::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(20, 184, 166, 0.16), transparent 34%);
    opacity: 0;
    transition: opacity var(--thm-transition);
}

.thm-shop .thm-product-card:hover .product-contents {
    border-color: rgba(11, 110, 153, 0.22);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
    transform: translateY(-6px);
}

.thm-shop .thm-product-card:hover .product-contents::before {
    opacity: 1;
}

.thm-shop .thm-product-card .product-image {
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 178px;
    margin: 0;
    padding: 0;
    background:
        radial-gradient(circle at 50% 42%, rgba(20, 184, 166, 0.12), transparent 42%),
        linear-gradient(145deg, rgba(11, 110, 153, 0.08), rgba(248, 250, 252, 0.92)),
        var(--thm-gray-50);
    border: 0;
    border-radius: 0;
}

.thm-shop .thm-product-card .product-image a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.thm-shop .thm-product-card .product-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 178px;
    object-fit: contain;
    filter: drop-shadow(0 14px 18px rgba(15, 23, 42, 0.11));
    transition: transform 0.45s ease;
}

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

.thm-product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 10px;
    color: var(--thm-primary);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(11, 110, 153, 0.12);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.thm-shop .thm-product-card .product-caption {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    padding: 12px 16px 16px;
    text-align: right;
}

.thm-shop .thm-product-card .product-tags {
    margin: 0 0 12px;
}

.thm-shop .thm-product-card .product-tags a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0;
    color: var(--thm-primary);
    background: transparent;
    border-radius: 0;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
}

.thm-shop .thm-product-card .product-title {
    margin: 0 0 7px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
}

.thm-shop .thm-product-card .product-title a {
    display: -webkit-box;
    min-height: 46px;
    overflow: hidden;
    color: var(--thm-dark);
    text-decoration: none;
    transition: color var(--thm-transition);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.thm-shop .thm-product-card:hover .product-title a {
    color: var(--thm-primary);
}

.thm-shop .thm-product-card .price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0 0 12px;
    padding: 9px 11px;
    color: var(--thm-gray-500);
    background: var(--thm-gray-50);
    border: 1px solid var(--thm-gray-200);
    border-radius: 12px;
    font-size: 13px;
}

.thm-shop .thm-product-card .price::before {
    content: 'قیمت';
    color: var(--thm-gray-500);
    font-size: 13px;
    font-weight: 400;
}

.thm-shop .thm-product-card .price span {
    display: inline-block;
    color: var(--thm-dark);
    font-weight: 500;
    text-align: left;
}

.thm-shop .thm-product-card .price.price--inquiry {
    justify-content: center;
}

.thm-shop .thm-product-card .price.price--inquiry::before {
    display: none;
}

.thm-shop .thm-product-card .cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 42px;
    padding: 8px 12px 8px 8px;
    color: var(--thm-white) !important;
    background: linear-gradient(135deg, var(--thm-dark), var(--thm-primary-dark));
    border: 0;
    border-radius: 13px;
    font-weight: 500;
    font-size: 13px;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.16);
    transition: transform var(--thm-transition), box-shadow var(--thm-transition), background var(--thm-transition), color var(--thm-transition);
}

.thm-shop .thm-product-card .cart-btn:hover {
    color: var(--thm-white) !important;
    background: linear-gradient(135deg, var(--thm-primary), var(--thm-accent));
    box-shadow: 0 14px 28px rgba(11, 110, 153, 0.28);
    transform: translateY(-2px);
}

.thm-shop .thm-product-card .cart-btn i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--thm-primary-dark);
    background: var(--thm-white);
    border-radius: 50%;
    font-size: 11px;
    transition: transform var(--thm-transition);
}

.thm-shop .thm-product-card .cart-btn:hover i {
    transform: translateX(-4px);
}

/* ---- Product listing cards (match home page style) ---- */
.thm-shop .thm-home-product-card .product-contents {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(11, 110, 153, 0.12);
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
    box-shadow: 0 8px 22px rgba(11, 110, 153, 0.08);
    transition: transform var(--thm-transition), box-shadow var(--thm-transition), border-color var(--thm-transition);
}

.thm-shop .thm-home-product-card .product-contents::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    border-radius: 14px 14px 0 0;
    background: linear-gradient(90deg, var(--thm-primary), var(--thm-accent), #38bdf8);
    opacity: 1;
    pointer-events: none;
}

.thm-shop .thm-home-product-card:hover .product-contents {
    border-color: rgba(20, 184, 166, 0.35);
    box-shadow: 0 14px 30px rgba(11, 110, 153, 0.16);
    transform: translateY(-4px);
}

.thm-shop .thm-home-product-card .product-image {
    height: 228px;
    margin: 0;
    padding: 0;
    background:
        radial-gradient(circle at 50% 38%, rgba(56, 189, 248, 0.18), transparent 48%),
        linear-gradient(145deg, rgba(11, 110, 153, 0.1), rgba(20, 184, 166, 0.08)),
        #eef8fc;
    border: 0;
    border-radius: 0;
}

.thm-shop .thm-home-product-card .product-image img {
    max-height: 200px;
    padding: 8px;
    object-fit: contain;
    filter: drop-shadow(0 14px 18px rgba(15, 23, 42, 0.11));
}

.thm-shop .thm-home-product-card .thm-product-badge {
    top: 8px;
    right: 8px;
    padding: 4px 9px;
    color: #fff;
    background: linear-gradient(135deg, var(--thm-primary), var(--thm-accent));
    border: 0;
    font-size: 10px;
    font-weight: 600;
    box-shadow: 0 6px 14px rgba(11, 110, 153, 0.24);
}

.thm-shop .thm-home-product-card .product-caption {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
    padding: 10px 12px 12px;
    text-align: right;
}

.thm-shop .vt-products .thm-home-product-card .product-contents .product-title {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.55;
}

.thm-shop .vt-products .thm-home-product-card .product-contents .product-title a {
    font-size: inherit;
    min-height: 50px;
    -webkit-line-clamp: 2;
}

.thm-shop .vt-products .thm-home-product-card .product-contents .product-tags {
    margin: 0 0 8px;
}

.thm-shop .vt-products .thm-home-product-card .product-contents .product-tags a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    color: var(--thm-primary-dark);
    background: rgba(11, 110, 153, 0.08);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: none;
    text-decoration: none;
}

.thm-shop .thm-home-product-card .product-actions {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: auto;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 6px 14px rgba(11, 110, 153, 0.14);
}

.thm-shop .thm-home-product-card .product-actions .price {
    flex: 1;
    margin: 0;
    padding: 8px 10px;
    min-height: 38px;
    color: var(--thm-primary-dark);
    background: linear-gradient(135deg, rgba(11, 110, 153, 0.08), rgba(20, 184, 166, 0.12));
    border: 1px solid rgba(11, 110, 153, 0.14);
    border-left: 0;
    border-radius: 0;
    font-size: 12px;
}

.thm-shop .thm-home-product-card .product-actions .price::before {
    color: var(--thm-primary);
    font-size: 12px;
    font-weight: 600;
}

.thm-shop .thm-home-product-card .product-actions .price span {
    color: var(--thm-dark);
    font-size: 12px;
    font-weight: 600;
}

.thm-shop .thm-home-product-card .product-actions .price.price--inquiry {
    justify-content: center;
}

.thm-shop .thm-home-product-card .product-actions .price.price--inquiry::before {
    display: none;
}

.thm-shop .thm-home-product-card .product-actions .cart-btn {
    flex: 1;
    margin: 0;
    min-height: 38px;
    padding: 8px 10px 8px 8px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--thm-primary), #0ea5a4);
    box-shadow: none;
}

.thm-shop .thm-home-product-card .product-actions .cart-btn:hover {
    background: linear-gradient(135deg, var(--thm-primary), var(--thm-accent));
    box-shadow: none;
    transform: none;
}

.thm-shop .thm-home-product-card .product-actions .cart-btn i {
    width: 22px;
    height: 22px;
    font-size: 10px;
}

.thm-home-shop {
    background:
        radial-gradient(circle at 85% 12%, rgba(20, 184, 166, 0.14), transparent 34%),
        radial-gradient(circle at 10% 88%, rgba(11, 110, 153, 0.12), transparent 38%),
        linear-gradient(180deg, #f0f9ff 0%, var(--thm-gray-50) 48%, rgba(248, 250, 252, 0) 100%);
}

body.thm-site .thm-home-shop.default-padding {
    padding-top: 32px;
}

body.thm-site .thm-about.default-padding + .thm-home-shop.default-padding,
body.thm-site .thm-products.product-cat-area + .thm-home-shop.default-padding {
    padding-top: 24px;
}

body.thm-site .thm-about.default-padding:has(+ .thm-home-shop),
body.thm-site .thm-about.default-padding:has(+ .thm-products) {
    padding-bottom: 48px;
}

.thm-home-shop-slider {
    width: 100%;
    overflow: hidden;
}

.thm-home-shop .home-shop-carousel.swiper {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.thm-home-shop .home-shop-carousel .swiper-wrapper {
    display: flex !important;
    align-items: stretch;
}

.thm-home-shop .home-shop-carousel .swiper-slide {
    display: flex;
    flex-shrink: 0;
    height: auto;
    box-sizing: border-box;
}

.thm-home-shop .home-shop-carousel .swiper-slide .product {
    display: flex;
    flex: 1 1 auto;
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.thm-home-shop .thm-home-product-card .product-contents {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(11, 110, 153, 0.12);
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
    box-shadow: 0 8px 22px rgba(11, 110, 153, 0.08);
    transition: transform var(--thm-transition), box-shadow var(--thm-transition), border-color var(--thm-transition);
}

.thm-home-shop .thm-home-product-card .product-contents::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    border-radius: 14px 14px 0 0;
    background: linear-gradient(90deg, var(--thm-primary), var(--thm-accent), #38bdf8);
    opacity: 1;
    pointer-events: none;
}

.thm-home-shop .thm-home-product-card:hover .product-contents::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--thm-primary), var(--thm-accent), #38bdf8);
}

.thm-home-shop .thm-home-product-card:hover .product-contents {
    border-color: rgba(20, 184, 166, 0.35);
    box-shadow: 0 14px 30px rgba(11, 110, 153, 0.16);
    transform: translateY(-4px);
}

.thm-home-shop .thm-home-product-card .product-image {
    height: 210px;
    background:
        radial-gradient(circle at 50% 38%, rgba(56, 189, 248, 0.18), transparent 48%),
        linear-gradient(145deg, rgba(11, 110, 153, 0.1), rgba(20, 184, 166, 0.08)),
        #eef8fc;
}

.thm-home-shop .thm-home-product-card .product-image img {
    max-height: 182px;
    padding: 10px;
    object-fit: contain;
}

.thm-home-shop .thm-home-product-card .thm-product-badge {
    top: 8px;
    right: 8px;
    padding: 4px 9px;
    color: #fff;
    background: linear-gradient(135deg, var(--thm-primary), var(--thm-accent));
    border: 0;
    font-size: 10px;
    font-weight: 600;
    box-shadow: 0 6px 14px rgba(11, 110, 153, 0.24);
}

.thm-home-shop .thm-home-product-card .product-caption {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
    padding: 12px 14px 14px;
}

.thm-home-shop .home-shop-carousel .thm-home-product-card .product-contents .product-title {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.55;
}

.thm-home-shop .home-shop-carousel .thm-home-product-card .product-contents .product-title a {
    font-size: inherit;
    min-height: 50px;
    -webkit-line-clamp: 2;
}

.thm-home-shop .home-shop-carousel .thm-home-product-card .product-contents .product-tags {
    margin: 0 0 8px;
}

.thm-home-shop .home-shop-carousel .thm-home-product-card .product-contents .product-tags a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    color: var(--thm-primary-dark);
    background: rgba(11, 110, 153, 0.08);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: none;
}

.thm-home-shop .thm-home-product-card .product-actions {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: auto;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 6px 14px rgba(11, 110, 153, 0.14);
}

.thm-home-shop .thm-home-product-card .product-actions .price {
    flex: 1;
    margin: 0;
    padding: 6px 8px;
    min-height: 32px;
    color: var(--thm-primary-dark);
    background: linear-gradient(135deg, rgba(11, 110, 153, 0.08), rgba(20, 184, 166, 0.12));
    border: 1px solid rgba(11, 110, 153, 0.14);
    border-left: 0;
    border-radius: 0;
    font-size: 10px;
}

.thm-home-shop .thm-home-product-card .product-actions .price::before {
    color: var(--thm-primary);
    font-size: 10px;
    font-weight: 600;
}

.thm-home-shop .thm-home-product-card .product-actions .price span {
    color: var(--thm-dark);
    font-size: 10px;
    font-weight: 600;
}

.thm-home-shop .thm-home-product-card .product-actions .price.price--inquiry {
    justify-content: center;
}

.thm-home-shop .thm-home-product-card .product-actions .cart-btn {
    flex: 1;
    margin: 0;
    min-height: 32px;
    padding: 6px 8px 6px 6px;
    border-radius: 0;
    font-size: 10px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--thm-primary), #0ea5a4);
    box-shadow: none;
}

.thm-home-shop .thm-home-product-card .product-actions .cart-btn i {
    width: 20px;
    height: 20px;
    font-size: 9px;
}

/* ---- Product Single ---- */
.thm-product-single {
    position: relative;
    overflow: hidden;
}

.thm-product-single::before {
    content: '';
    position: absolute;
    top: 90px;
    right: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.14), transparent 68%);
    pointer-events: none;
}

.thm-product-single .container {
    position: relative;
    z-index: 1;
}

.thm-product-hero {
    padding: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.9)),
        var(--thm-white);
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: var(--thm-radius-xl);
    box-shadow: var(--thm-shadow-lg);
}

.thm-product-hero > .row {
    display: flex !important;
    flex-wrap: wrap;
}

.thm-product-hero > .row > [class*="col-"] {
    float: none;
}

.thm-product-gallery {
    position: relative;
    overflow: hidden;
    padding: 18px;
    background:
        radial-gradient(circle at 50% 40%, rgba(20, 184, 166, 0.14), transparent 38%),
        linear-gradient(145deg, rgba(11, 110, 153, 0.08), rgba(248, 250, 252, 0.96));
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 24px;
}

.thm-product-gallery .carousel-inner.item-box {
    overflow: hidden;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(226, 232, 240, 0.75);
    border-radius: 20px;
}

.thm-product-gallery .carousel-item .item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    padding: 28px;
}

.thm-product-gallery .carousel-item img {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 20px 28px rgba(15, 23, 42, 0.14));
}

.thm-product-gallery .carousel-indicators {
    position: static;
    display: block;
    width: 100%;
    margin: 0;
}

.thm-product-gallery .swiper-wrapper {
    justify-content: center;
}

.thm-product-gallery .swiper-slide {
    width: 86px !important;
}

.thm-product-gallery .thm-product-thumbs .item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    overflow: hidden;
    padding: 8px;
    background: var(--thm-white);
    border: 1px solid var(--thm-gray-200);
    border-radius: 16px;
    cursor: pointer;
    opacity: 1;
    transition: border-color var(--thm-transition), box-shadow var(--thm-transition), transform var(--thm-transition);
}

.thm-product-gallery .thm-product-thumbs .item.active,
.thm-product-gallery .thm-product-thumbs .item:hover {
    border-color: rgba(11, 110, 153, 0.42);
    box-shadow: 0 10px 22px rgba(11, 110, 153, 0.14);
    transform: translateY(-2px);
}

.thm-product-gallery .thm-product-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thm-product-summary {
    padding: 8px 8px 8px 0;
}

.thm-product-summary .summary-top-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.thm-product-category {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
}

.thm-product-category a {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    color: var(--thm-primary);
    background: var(--thm-primary-light);
    border: 1px solid rgba(11, 110, 153, 0.12);
    border-radius: 999px;
    font-size: 13px;
    text-decoration: none;
}

.thm-product-rating .rating {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 8px 11px;
    color: #f59e0b;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 999px;
    font-size: 13px;
}

.thm-product-eyebrow {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--thm-accent-hover);
    font-size: 14px;
    font-weight: 600;
}

.thm-product-summary .product-title {
    margin: 0 0 16px;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.55;
    letter-spacing: -0.02em;
}

.thm-product-stock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 13px;
    color: var(--thm-accent-hover);
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.22);
    border-radius: 999px;
    font-weight: 600;
}

.thm-product-stock::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.thm-product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 22px;
    padding: 16px 18px;
    background: var(--thm-dark);
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
}

.thm-product-price span:first-child {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.thm-product-price span:last-child {
    color: var(--thm-white);
    font-size: 18px;
    font-weight: 800;
}

.thm-product-excerpt {
    margin-bottom: 24px;
    color: var(--thm-gray-700);
    font-size: 15px;
    line-height: 2;
}

.thm-product-excerpt p:last-child {
    margin-bottom: 0;
}

.thm-product-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 22px;
}

.thm-product-actions .btn-theme {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    margin: 0 !important;
}

.product-purchase-list.thm-product-actions > a.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
}

.thm-product-secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 12px 20px;
    color: var(--thm-primary);
    background: var(--thm-white);
    border: 1px solid rgba(11, 110, 153, 0.18);
    border-radius: var(--thm-radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--thm-transition);
}

.thm-product-secondary-action:hover {
    color: var(--thm-white);
    background: var(--thm-primary);
    box-shadow: 0 12px 24px rgba(11, 110, 153, 0.2);
    transform: translateY(-2px);
}

.thm-product-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.thm-product-benefit {
    min-height: 104px;
    padding: 16px 12px;
    background: var(--thm-white);
    border: 1px solid var(--thm-gray-200);
    border-radius: 16px;
    box-shadow: var(--thm-shadow-sm);
}

.thm-product-benefit i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
    color: var(--thm-primary);
    background: var(--thm-primary-light);
    border-radius: 12px;
}

.thm-product-benefit span {
    display: block;
    color: var(--thm-gray-700);
    font-size: 13px;
    line-height: 1.8;
}

.thm-product-delivery {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    padding: 13px 15px;
    color: var(--thm-gray-700);
    background: var(--thm-gray-50);
    border: 1px solid var(--thm-gray-200);
    border-radius: 16px;
}

.thm-product-delivery i {
    margin-top: 6px;
    color: var(--thm-accent-hover);
}

.thm-product-meta {
    display: grid;
    gap: 10px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px dashed rgba(100, 116, 139, 0.28);
    border-radius: 16px;
}

.thm-product-meta span {
    color: var(--thm-gray-700);
    line-height: 1.8;
}

.thm-product-meta a {
    color: var(--thm-primary);
    text-decoration: none;
}

.thm-product-tabs {
    margin-top: 34px;
    padding: 28px;
    background:
        radial-gradient(circle at 12% 0%, rgba(20, 184, 166, 0.12), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92));
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: var(--thm-radius-xl);
    box-shadow: var(--thm-shadow-lg);
}

.thm-product-tabs .nav-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 24px;
    padding: 8px;
    background: rgba(241, 245, 249, 0.82);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.thm-product-tabs .nav-tabs .nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin: 0;
    padding: 12px 20px;
    color: var(--thm-gray-700);
    background: rgba(255, 255, 255, 0.58);
    border: 0;
    border-radius: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: color var(--thm-transition), background var(--thm-transition), box-shadow var(--thm-transition), transform var(--thm-transition);
}

.thm-product-tabs .nav-tabs .nav-link::before,
.thm-product-tabs .nav-tabs .nav-link.active::before,
.thm-product-tabs .nav-tabs .nav-link::after,
.thm-product-tabs .nav-tabs .nav-link.active::after {
    display: none !important;
    content: none !important;
}

.thm-product-tabs .nav-tabs .nav-link:hover {
    color: var(--thm-primary);
    background: var(--thm-white);
    box-shadow: var(--thm-shadow-sm);
    transform: translateY(-1px);
}

.thm-product-tabs .nav-tabs .nav-link.active {
    color: var(--thm-white);
    background: linear-gradient(135deg, var(--thm-primary), var(--thm-accent));
    box-shadow: 0 10px 22px rgba(11, 110, 153, 0.22);
}

.thm-product-tabs .tab-content-info {
    padding: 26px;
    color: var(--thm-gray-700);
    line-height: 2;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(226, 232, 240, 0.86);
    border-radius: 24px;
    box-shadow: var(--thm-shadow-sm);
}

.thm-product-tabs .tab-pane > *:last-child {
    margin-bottom: 0;
}

.thm-product-tabs .product-description {
    font-size: 15px;
}

.thm-product-tabs .product-description h1,
.thm-product-tabs .product-description h2,
.thm-product-tabs .product-description h3,
.thm-product-tabs .product-description h4,
.thm-product-tabs .product-description h5,
.thm-product-tabs .product-description h6,
.thm-product-tabs #review-tab > h4,
.thm-product-tabs #review-tab > h5,
.thm-product-tabs .review-form h4 {
    margin-bottom: 18px;
    color: var(--thm-dark);
    letter-spacing: -0.02em;
}

.thm-product-tabs .product-description p,
.thm-product-tabs .product-description li {
    color: var(--thm-gray-700);
}

.thm-product-tabs .product-description ul,
.thm-product-tabs .product-description ol {
    display: grid;
    gap: 10px;
    padding-right: 0;
    margin: 18px 0;
    list-style: none;
}

.thm-product-tabs .product-description li {
    position: relative;
    padding: 12px 42px 12px 16px !important;
    background: var(--thm-gray-50);
    border: 1px solid rgba(226, 232, 240, 0.75);
    border-radius: 14px;
}

.thm-product-tabs .product-description li::after {
    content: '' !important;
    display: block !important;
    top: 17px !important;
    right: 16px !important;
    width: 10px !important;
    height: 10px !important;
    background: linear-gradient(135deg, var(--thm-primary), var(--thm-accent)) !important;
    border-radius: 50%;
}

.thm-product-tabs .table-responsive {
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
}

.thm-product-tabs table {
    margin: 0;
    overflow: hidden;
    border: 0;
    border-radius: 18px;
}

.thm-product-tabs table td {
    padding: 16px 20px;
    color: var(--thm-gray-700);
    border-color: rgba(226, 232, 240, 0.85);
    vertical-align: middle;
}

.thm-product-tabs table td:first-child {
    width: 34%;
    color: var(--thm-dark);
    background: var(--thm-gray-50);
    font-weight: 800;
}

.thm-product-tabs .review-items {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.thm-product-tabs .review-items .item {
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 18px;
    background: var(--thm-gray-50);
    border: 1px solid rgba(226, 232, 240, 0.86);
    border-radius: 20px;
}

.thm-product-tabs .review-items .item .thumb {
    flex: 0 0 auto;
    float: none;
    margin: 0;
}

.thm-product-tabs .review-items .item .thumb img {
    width: 72px;
    height: 72px;
    border: 3px solid var(--thm-white);
    border-radius: 18px;
    box-shadow: var(--thm-shadow-sm);
}

.thm-product-tabs .review-items .item .info {
    flex: 1;
}

.thm-product-tabs .review-items .item .info .rating {
    margin-bottom: 8px;
}

.thm-product-tabs .review-items .item .info i {
    color: #f59e0b;
}

.thm-product-tabs .review-items .item .info .review-date {
    margin-bottom: 8px;
    color: var(--thm-gray-500);
    font-size: 13px;
}

.thm-product-tabs .review-items .item .info h5 {
    margin-bottom: 8px;
    font-size: 16px;
}

.thm-product-tabs .review-items .item .info p {
    margin: 0;
    color: var(--thm-gray-700);
}

.thm-product-tabs .review-form {
    margin-top: 28px;
    padding: 22px;
    background:
        linear-gradient(135deg, rgba(232, 244, 250, 0.72), rgba(240, 253, 250, 0.52)),
        var(--thm-gray-50);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
}

.thm-product-tabs .review-form form .form-group {
    margin-bottom: 16px;
}

.thm-product-tabs .review-form input,
.thm-product-tabs .review-form textarea {
    min-height: 52px;
    padding: 14px 16px;
    color: var(--thm-dark);
    background: var(--thm-white);
    border: 1px solid rgba(203, 213, 225, 0.9);
    border-radius: 14px;
    box-shadow: none;
    transition: border-color var(--thm-transition), box-shadow var(--thm-transition);
}

.thm-product-tabs .review-form textarea {
    min-height: 190px;
    resize: vertical;
}

.thm-product-tabs .review-form input:focus,
.thm-product-tabs .review-form textarea:focus {
    border-color: rgba(11, 110, 153, 0.45);
    box-shadow: 0 0 0 4px rgba(11, 110, 153, 0.1);
}

.thm-product-tabs .review-form button {
    padding: 13px 28px;
    color: var(--thm-white);
    background: linear-gradient(135deg, var(--thm-primary), var(--thm-accent));
    border: 0;
    border-radius: 14px;
    box-shadow: 0 12px 26px rgba(11, 110, 153, 0.2);
}

.thm-product-tabs .review-form button::after {
    display: none;
    content: none;
}

.thm-product-tabs .review-form button:hover {
    color: var(--thm-white);
    background: linear-gradient(135deg, var(--thm-primary-dark), var(--thm-accent-hover));
}

/* ---- Pagination ---- */
body.thm-site .pagi-area {
    margin-top: 46px;
}

body.thm-site .pagi-area .pagination {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 999px;
    box-shadow: var(--thm-shadow-sm);
}

body.thm-site .pagi-area .pagination .page-item {
    margin: 0;
}

body.thm-site .pagi-area .pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    color: var(--thm-gray-700);
    background: transparent;
    font-family: var(--thm-font);
    font-weight: 700;
    line-height: 1;
    box-shadow: none;
    transition: all var(--thm-transition);
}

body.thm-site .pagi-area .pagination .page-item.active .page-link {
    color: var(--thm-white);
    background: linear-gradient(135deg, var(--thm-primary), var(--thm-accent));
    box-shadow: 0 10px 24px rgba(11, 110, 153, 0.26);
}

body.thm-site .pagi-area .pagination .page-link:hover {
    color: var(--thm-primary);
    background: var(--thm-primary-light);
}

body.thm-site .pagi-area .pagination .page-link:focus {
    box-shadow: 0 0 0 3px rgba(11, 110, 153, 0.16);
}

body.thm-site .pagi-area .pagination .page-item.disabled .page-link {
    color: #94a3b8;
    background: transparent;
    opacity: 0.65;
}

body.thm-site .pagi-area .pagination .page-item:first-child .page-link,
body.thm-site .pagi-area .pagination .page-item:last-child .page-link {
    min-width: 46px;
    color: var(--thm-primary);
    background: var(--thm-gray-50);
}

/* ---- Floating Phone Widget ---- */
.thm-phone-widget {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
}

.thm-phone-widget #pulse-wrapper {
    position: static !important;
}

.thm-phone-widget #pulse {
    position: relative;
}

.thm-phone-widget #pulse::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: var(--thm-accent);
    opacity: 0.3;
    animation: thm-pulse 2s infinite;
}

@keyframes thm-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.15); opacity: 0.1; }
}

.thm-phone-widget .phone2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--thm-accent), var(--thm-accent-hover));
    color: var(--thm-white);
    text-decoration: none;
    padding: 14px;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    box-shadow: var(--thm-shadow-lg);
    transition: all var(--thm-transition);
    position: relative;
    z-index: 1;
}

.thm-phone-widget .phone2:hover {
    transform: scale(1.08);
    color: var(--thm-white);
    box-shadow: 0 8px 30px rgba(20, 184, 166, 0.5);
}

.thm-phone-widget .phone2 img {
    width: 28px;
    height: 28px;
    filter: brightness(10);
}

.thm-phone-widget .phone2 p {
    display: none;
}

/* ---- Timeline (About) ---- */
.thm-timeline .timeline-items .timeline-item {
    border-right: 3px solid var(--thm-primary-light);
    padding-right: 24px;
}

.thm-timeline .timeline-items .timeline-item::before {
    background: var(--thm-primary);
}

/* ---- Choose Us Section ---- */
.thm-choose-us {
    border-radius: var(--thm-radius-xl);
    margin: 0 16px 40px;
    overflow: hidden;
}

/* ---- Default Padding Override ---- */
body.thm-site .default-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

body.thm-site .bg-gray {
    background-color: var(--thm-gray-50) !important;
}

/* ---- Lazy Loading Images ---- */
body.thm-site img[loading="lazy"] {
    background: var(--thm-gray-100);
}

/* ---- Responsive ---- */
@media (max-width: 1399px) {
    .thm-about .fun-fact-style-flex .counter {
        font-size: 2rem;
    }

    .thm-about .about-style-one-thumb img {
        min-height: 460px;
    }
}

@media (max-width: 991px) {
    .thm-topbar .text-end {
        text-align: center !important;
        margin-top: 8px;
    }

    .thm-topbar .social ul {
        justify-content: center;
    }

    .thm-contact .contact-form-style-one,
    .thm-contact .contact-style-one-info {
        padding: 24px;
    }

    .thm-phone-widget {
        bottom: 16px;
        left: 16px;
    }

    body.thm-site .default-padding {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .thm-hero .banner-style-one .content .info {
        max-width: 100%;
        padding: 28px;
    }

    .thm-about .about-style-one-info {
        padding: 28px;
    }

    .thm-about .about-style-one-thumb img {
        min-height: 420px;
        height: auto;
    }

    .thm-about-secondary-thumb {
        min-height: 240px;
    }

    .thm-about .top-feature {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .thm-services .service-style-one-item,
    .thm-blog .blog-style-one {
        margin-bottom: 24px;
    }

    .thm-projects .gallery-style-one img {
        height: 330px;
    }

    .thm-footer .item {
        margin-bottom: 32px;
    }

    .thm-footer .item:last-child {
        margin-bottom: 0;
    }

    .thm-blog-card {
        grid-template-columns: 1fr;
    }

    .thm-blog-card .thumb img {
        min-height: 260px;
    }

    .thm-post-layout {
        grid-template-columns: 1fr;
    }

    .thm-post-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .thm-post-featured,
    .thm-post-featured img {
        min-height: 320px;
    }

    .thm-shop .vt-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .thm-product-summary {
        padding: 0;
    }

    .thm-product-gallery .carousel-item .item {
        min-height: 340px;
    }

    .thm-product-benefits {
        grid-template-columns: 1fr;
    }

    .thm-about-page .about-style-one-info {
        margin-top: 36px;
    }

    .thm-client-grid {
        grid-template-columns: 1fr;
    }

    .thm-contact-page .contact-style-one-info {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    body.thm-site {
        overflow-x: hidden;
    }

    .thm-hero .banner-style-one .content .info {
        padding: 24px 20px;
        border-radius: var(--thm-radius-lg);
    }

    .thm-hero .banner-style-one .content .info h2 {
        margin-bottom: 14px;
    }

    .thm-hero .banner-style-one .button {
        margin-top: 22px;
    }

    .thm-hero .banner-style-one .btn.btn-theme {
        width: 100%;
    }

    .thm-section-heading {
        margin-bottom: 34px;
    }

    .thm-about > .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .thm-about .about-style-one-thumb {
        padding: 0;
    }

    .thm-about .about-style-one-thumb::before {
        transform: rotate(-1deg);
        inset: -4px;
    }

    .thm-about .about-style-one-thumb img {
        min-height: 300px;
    }

    .thm-about-stat-card {
        position: static;
        max-width: none;
        margin: -28px 10px 0;
        transform: none;
    }

    .thm-about .about-style-one-info,
    .thm-about .about-style-one-info.thm-about-panel {
        padding: 15px;
        border-radius: var(--thm-radius-lg);
    }

    .thm-about-actions,
    .thm-section-action {
        align-items: stretch;
        flex-direction: column;
    }

    .thm-about-highlights {
        flex-direction: row;
        flex-wrap: nowrap;
        width: 100%;
        max-width: 100%;
        margin: 20px 0;
        gap: 10px;
    }

    .thm-about .fun-fact-style-flex {
        flex: 1 1 0;
        min-width: 0;
        width: auto;
        padding: 12px 10px;
        gap: 8px;
        justify-content: center;
        text-align: center;
    }

    .thm-about .fun-fact-style-flex .counter {
        font-size: 1.75rem;
    }

    .thm-about .fun-fact-style-flex .operator {
        font-size: 1.15rem;
    }

    .thm-about .fun-fact-style-flex .medium {
        font-size: 13px;
    }

    .thm-about-actions .btn,
    .thm-about-actions .thm-text-link,
    .thm-section-action .thm-text-link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .thm-home-shop-slider {
        width: 100%;
    }

    .thm-about .top-feature {
        grid-template-columns: 1fr;
    }

    .thm-about .top-feature li:not(.thm-about-feature--accent) {
        flex-direction: column;
    }

    .thm-services .service-style-one-item .thumb img,
    .thm-blog .blog-style-one .thumb img {
        min-height: 220px;
        height: 220px;
    }

    .thm-services .service-style-one-item .info,
    .thm-blog .blog-style-one .info,
    .thm-blog .blog-style-one .thumb .overlay {
        padding: 22px;
    }

    .thm-projects .gallery-style-one img {
        height: 280px;
    }

    .thm-projects .gallery-style-one .overlay {
        right: 14px;
        left: 14px;
        bottom: 14px;
        padding: 16px;
    }

    .thm-footer .footer-item.about form {
        flex-direction: column;
    }

    .thm-breadcrumb.breadcrumb-area {
        padding: 60px 0 50px !important;
    }

    .thm-product-breadcrumb.breadcrumb-area {
        padding: 34px 0 28px !important;
    }

    .thm-footer .footer-item {
        text-align: right;
    }

    .thm-footer .certificate-group {
        justify-content: flex-start;
    }

    .thm-list-heading {
        margin-bottom: 30px;
    }

    .thm-blog-card .info,
    .thm-shop .thm-product-card .product-caption {
        padding: 12px 16px 16px;
    }

    .thm-blog-card .meta ul {
        gap: 8px;
    }

    .thm-blog-card .meta li {
        width: 100%;
        justify-content: flex-start;
    }

    .thm-card-link {
        width: 100%;
    }

    .thm-post-page {
        padding-top: 44px !important;
    }

    .thm-post-info,
    .thm-post-comments {
        padding: 22px;
    }

    .thm-post-featured,
    .thm-post-featured img {
        min-height: 240px;
    }

    .thm-post-date-badge {
        right: 16px;
        bottom: 16px;
        min-width: 104px;
        padding: 11px 13px;
    }

    .thm-post-date-badge strong {
        font-size: 24px;
    }

    .thm-post-meta ul,
    .thm-post-sidebar,
    .thm-post-navigation {
        grid-template-columns: 1fr;
    }

    .thm-post-meta li {
        align-items: flex-start;
    }

    .thm-post-body {
        padding: 18px 16px;
        font-size: 15px;
        line-height: 2;
    }

    .thm-post-navigation > div + div {
        border-top: 1px solid var(--thm-gray-200);
        border-right: 0;
    }

    .thm-post-navigation a {
        min-height: auto;
        padding: 18px;
    }

    .thm-post-share-card .social ul {
        grid-template-columns: repeat(5, minmax(42px, 1fr));
    }

    .thm-post-comments .comments-form {
        padding: 16px;
    }

    .thm-shop .vt-products {
        grid-template-columns: 1fr;
    }

    .thm-shop .thm-product-card .product-image {
        height: 190px;
    }

    .thm-shop .thm-product-card .product-image a {
        height: 100%;
    }

    .thm-shop .thm-product-card .product-image img {
        max-height: 190px;
    }

    .thm-product-hero,
    .thm-product-tabs {
        padding: 18px;
        border-radius: 20px;
    }

    .thm-product-tabs .tab-content-info {
        padding: 18px;
        border-radius: 18px;
    }

    .thm-product-gallery {
        padding: 12px;
        border-radius: 18px;
    }

    .thm-product-gallery .carousel-item .item {
        min-height: 260px;
        padding: 18px;
    }

    .thm-product-summary .summary-top-box,
    .thm-product-price,
    .thm-product-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .thm-product-actions .btn-theme,
    .thm-product-secondary-action {
        width: 100%;
    }

    .thm-product-tabs .nav-tabs .nav-link {
        flex: 1 1 100%;
    }

    .thm-product-tabs table td:first-child {
        width: auto;
    }

    .thm-product-tabs .review-items .item {
        flex-direction: column;
    }

    .thm-product-tabs .review-form {
        padding: 18px;
        border-radius: 18px;
    }

    .thm-about-hero-thumb {
        padding: 0;
    }

    .thm-experience-card {
        position: static;
        max-width: none;
        margin: -24px 16px 0;
        transform: none;
    }

    .thm-about-metrics {
        grid-template-columns: 1fr;
    }

    .thm-capability-card {
        padding: 24px;
    }

    .thm-contact .contact-style-one-info .thm-contact-list li {
        gap: 10px;
    }

    .thm-map-frame {
        height: 210px;
    }

    body.thm-site .pagi-area {
        margin-top: 34px;
    }

    body.thm-site .pagi-area .pagination {
        gap: 6px;
        padding: 8px;
        border-radius: 24px;
    }

    body.thm-site .pagi-area .pagination .page-link {
        min-width: 38px;
        height: 38px;
        padding: 0 12px;
        font-size: 14px;
    }
}

/* ---- Accessibility: reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
