:root {
    --sm-navy-950: #040d24;
    --sm-navy-900: #071b44;
    --sm-navy-800: #0d2b67;
    --sm-blue-500: #d9153b;
    --sm-blue-400: #f04d69;
    --sm-red-500: #b90d2f;
    --sm-surface: #f8f9fc;
    --sm-text: #13284a;
    --sm-heading: #041432;
    --sm-white: #ffffff;
    --sm-shadow: 0 20px 46px rgba(4, 20, 50, 0.12);
    --sm-shadow-soft: 0 10px 26px rgba(4, 20, 50, 0.08);
    --sm-radius-lg: 26px;
    --sm-radius-md: 18px;
    --primary-color: #d9153b;
    --primary-color-rgb: 217, 21, 59;
    --primary-hover-color: #b90d2f;
    --secondary-color: #071b44;
    --secondary-color-rgb: 7, 27, 68;
    --sm-header-offset: 130px;
}

body {
    color: var(--sm-text);
    background-color: #ffffff;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.sm-main {
    min-height: 35vh;
}

.sm-home-main {
    overflow: clip;
}

.sm-section {
    padding: 92px 0;
    position: relative;
}

.sm-section:nth-child(even) {
    background: linear-gradient(180deg, rgba(217, 21, 59, 0.035), rgba(217, 21, 59, 0));
}

.sm-section-head {
    max-width: 720px;
    margin: 0 auto 36px;
    text-align: center;
}

.sm-section-head--left {
    margin-inline: 0;
    text-align: left;
}

.sm-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--sm-blue-500);
    background: rgba(217, 21, 59, 0.12);
    margin-bottom: 14px;
}

.sm-eyebrow--light {
    color: #c8ddff;
    background: rgba(255, 255, 255, 0.12);
}

.sm-title {
    font-size: clamp(30px, 4vw, 50px);
    color: var(--sm-heading);
    line-height: 1.1;
    margin-bottom: 14px;
}

.sm-text {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 0;
    color: rgba(14, 43, 84, 0.88);
}

.sm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid transparent;
    transition: all 0.28s ease;
}

.sm-btn:hover {
    transform: translateY(-2px);
}

.sm-btn--primary {
    background: linear-gradient(120deg, #c8102e, #e33642);
    color: var(--sm-white);
    box-shadow: 0 16px 30px rgba(200, 16, 46, 0.28);
}

.sm-btn--primary:hover {
    color: var(--sm-white);
    box-shadow: 0 22px 36px rgba(200, 16, 46, 0.34);
}

.sm-btn--ghost {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--sm-white);
    background: rgba(255, 255, 255, 0.06);
}

.sm-btn--ghost:hover {
    color: var(--sm-white);
    border-color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.15);
}

.sm-link {
    color: var(--sm-blue-500);
    font-weight: 700;
    font-size: 14px;
}

.sm-link:hover {
    color: var(--sm-navy-800);
}

.sm-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    transition: box-shadow 0.22s ease, background-color 0.22s ease;
}

.sm-site-header.sticky-menu {
    box-shadow: 0 15px 32px rgba(4, 18, 43, 0.15);
}

.sm-header-top {
    background: linear-gradient(90deg, #061633, #0b2a63 78%, #1e3f80);
    color: #d9e8ff;
    font-size: 13px;
}

.sm-header-top__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-height: 44px;
}

.sm-header-top__left span,
.sm-header-top__right a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #d9e8ff;
}

.sm-header-top__right {
    display: flex;
    gap: 16px;
}

.sm-header-main {
    background: rgba(5, 22, 54, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sm-header-row {
    display: flex;
    align-items: center;
    gap: 26px;
    min-height: 86px;
}

.sm-mobile-left {
    display: none;
}

.sm-site-logo img {
    max-height: 46px;
    width: auto;
}

.sm-header-main .navbar-wrap {
    flex: 1;
    min-width: 0;
}

.sm-header-main .navbar-wrap .navigation {
    margin: 0;
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
}

.sm-header-main .navbar-wrap .navigation > li {
    margin: 0;
}

.sm-header-main .navbar-wrap .navigation > li > a {
    color: #eaf1ff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    padding: 16px 18px;
    border-radius: 12px;
}

.sm-header-main .navbar-wrap .navigation > li.active > a,
.sm-header-main .navbar-wrap .navigation > li:hover > a {
    color: #fff;
    background: rgba(217, 21, 59, 0.88);
}

.sm-header-main .navigation li .sub-menu {
    background: #fff;
    border-radius: 14px;
    padding: 10px;
    border: 1px solid #e4ecff;
    box-shadow: var(--sm-shadow-soft);
}

.sm-header-main .navigation li .sub-menu li a {
    color: var(--sm-heading);
}

.sm-header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sm-header-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.sm-header-icon:hover {
    background: rgba(255, 255, 255, 0.18);
}

.menu-area .mobile-nav-toggler.sm-mobile-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    float: none;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 18px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff;
}

.sm-btn--call {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.sm-btn--call:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

.sm-btn--whatsapp {
    color: #fff;
    background: linear-gradient(120deg, #c8102e, #e33642);
}

.sm-btn--whatsapp:hover {
    color: #fff;
}

.sm-header-search {
    padding: 14px 0 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sm-header-search form {
    display: flex;
    gap: 10px;
}

.sm-header-search input {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 0 16px;
}

.sm-header-search input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.sm-header-search button {
    min-width: 130px;
    border: 0;
    border-radius: 12px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(120deg, #c8102e, #e33642);
}

.sm-header-search[hidden] {
    display: none !important;
}

/* Mobile menu polish */
.mobile-menu .menu-box {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.mobile-menu .nav-logo {
    position: sticky;
    top: 0;
    z-index: 12;
    background: #ffffff;
    border-bottom: 1px solid #dde5f4;
    padding: 22px 20px 16px;
}

.mobile-menu .nav-logo img {
    max-height: 40px;
    width: auto;
}

.mobile-menu .close-btn {
    top: 18px;
    inset-inline-end: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eef2fc;
    color: #2b3147;
    line-height: 36px;
}

.mobile-menu .navigation li {
    border-top: 1px solid #dde4f3;
}

.mobile-menu .navigation li > a {
    color: #1a2055;
    font-size: 16px;
    font-weight: 700;
    padding: 13px 60px 13px 20px;
}

.mobile-menu .navigation li > a:before {
    width: 3px;
    height: 0;
    background: #d9153b;
}

.mobile-menu .navigation li > a:hover,
.mobile-menu .navigation li.current > a {
    color: #d9153b;
    background: rgba(217, 21, 59, 0.05);
}

.mobile-menu .navigation li > a:hover:before,
.mobile-menu .navigation li.current > a:before {
    height: 100%;
}

.mobile-menu .navigation li.menu-item-has-children .dropdown-btn {
    border-radius: 10px;
    background: #eef2fc;
    color: #2f3652;
}

.sm-mobile-panel {
    margin-top: 16px;
    padding: 16px 18px 0;
    border-top: 1px solid #d5deef;
    display: grid;
    gap: 11px;
}

.sm-mobile-panel .sm-mobile-cta-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sm-mobile-panel .sm-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    font-size: 15px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    box-shadow: 0 10px 20px rgba(5, 22, 54, 0.13);
}

.sm-mobile-panel .sm-mobile-cta-row .sm-mobile-cta {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
}

.sm-mobile-panel .sm-mobile-cta--call {
    color: #fff;
    background: linear-gradient(120deg, #2f335f, #3f4373);
}

.sm-mobile-panel .sm-mobile-cta--whatsapp {
    color: #fff;
    background: linear-gradient(120deg, #c8102e, #e33642);
}

.sm-mobile-panel a,
.sm-mobile-hours {
    color: #16224e;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.45;
}

.sm-mobile-panel > a:not(.sm-mobile-cta),
.sm-mobile-hours {
    padding-inline-start: 6px;
}

.sm-mobile-hours {
    align-items: flex-start;
}

.sm-mobile-hours i {
    margin-top: 5px;
}

.mobile-menu .social-links ul {
    padding: 20px 20px 24px;
    gap: 10px;
}

.mobile-menu .social-links li {
    margin: 0;
}

.mobile-menu .social-links li a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border-color: #d3ddf5;
    background: #fff;
    color: #1a2055;
}

.mobile-menu .social-links li a:hover {
    background: #fff;
    border-color: #d9153b;
    color: #d9153b;
    transform: translateY(-1px);
}

.sm-hero {
    position: relative;
    box-sizing: border-box;
    min-height: calc(100vh - var(--sm-header-offset));
    min-height: calc(100svh - var(--sm-header-offset));
    padding: clamp(72px, 10vh, 120px) 0 clamp(64px, 9vh, 105px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #061633, #0b2a63 70%, #12387f);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}

.sm-hero__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.sm-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    filter: saturate(1.08) contrast(1.06);
}

.sm-hero__video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(4, 14, 37, 0.88) 0%, rgba(5, 22, 53, 0.74) 50%, rgba(6, 28, 67, 0.8) 100%);
}

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

.sm-hero:before,
.sm-hero:after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.sm-hero:before {
    width: 390px;
    height: 390px;
    top: -90px;
    right: -120px;
    background: rgba(255, 255, 255, 0.08);
    animation: sm-hero-orb-one 18s ease-in-out infinite alternate;
}

.sm-hero:after {
    width: 300px;
    height: 300px;
    bottom: -130px;
    left: -80px;
    background: rgba(217, 21, 59, 0.2);
    animation: sm-hero-orb-two 24s ease-in-out infinite alternate;
}

@keyframes sm-hero-orb-one {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    100% {
        transform: translate3d(-30px, 24px, 0) scale(1.08);
    }
}

@keyframes sm-hero-orb-two {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    100% {
        transform: translate3d(26px, -20px, 0) scale(0.94);
    }
}

@media (prefers-reduced-motion: reduce) {
    .sm-hero:before,
    .sm-hero:after {
        animation: none;
    }
}

.sm-hero__title {
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.04;
    color: #fff;
    margin-bottom: 16px;
}

.sm-hero__desc {
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.75;
    max-width: 620px;
}

.sm-hero__actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sm-hero__media-wrap {
    position: relative;
}

.sm-hero__media {
    border-radius: var(--sm-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.32);
    box-shadow: 0 24px 48px rgba(2, 11, 29, 0.36);
    background: rgba(255, 255, 255, 0.07);
}

.sm-hero__media img {
    width: 100%;
    min-height: 360px;
    object-fit: cover;
}

.sm-floating-card {
    position: absolute;
    padding: 14px 16px;
    border-radius: 14px;
    min-width: 150px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(7px);
}

.sm-floating-card span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.82);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.sm-floating-card strong {
    color: #fff;
    font-size: 18px;
}

.sm-floating-card--first {
    top: 18px;
    left: -26px;
}

.sm-floating-card--second {
    bottom: 18px;
    right: -26px;
}

.sm-category-card,
.sm-product-card,
.sm-service-card,
.sm-process-card,
.sm-meta-card,
.sm-faq-item,
.sm-content-card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid #dfe9ff;
    border-radius: var(--sm-radius-md);
    box-shadow: var(--sm-shadow-soft);
    backdrop-filter: blur(5px);
}

.sm-category-card,
.sm-product-card,
.sm-service-card {
    overflow: hidden;
    transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.sm-category-card:hover,
.sm-product-card:hover,
.sm-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sm-shadow);
}

.sm-category-card__image,
.sm-product-card__image,
.sm-service-card__image {
    display: block;
    background: linear-gradient(145deg, #ffffff, #f6f8fc);
}

.sm-category-card__image img,
.sm-product-card__image img,
.sm-service-card__image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.sm-category-card__content,
.sm-product-card__content,
.sm-service-card__content {
    padding: 20px 20px 22px;
}

.sm-category-card__content h3,
.sm-product-card__content h3,
.sm-service-card__content h3 {
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 10px;
}

.sm-category-card__content p,
.sm-product-card__content p,
.sm-service-card__content p {
    margin-bottom: 12px;
    color: rgba(13, 41, 80, 0.88);
    line-height: 1.65;
}

.sm-category-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #496a99;
}

.sm-product-card__cat {
    display: inline-flex;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .07em;
    background: rgba(217, 21, 59, 0.12);
    color: var(--sm-blue-500);
    margin-bottom: 10px;
    font-weight: 700;
}

.sm-filter-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}

.sm-filter-wrap button {
    border: 1px solid #cbdcff;
    border-radius: 999px;
    background: #fff;
    color: var(--sm-heading);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 16px;
    transition: all 0.2s ease;
}

.sm-filter-wrap button.is-active,
.sm-filter-wrap button:hover {
    color: #fff;
    border-color: #c8102e;
    background: #c8102e;
}

.js-sm-filter-item.is-hidden {
    display: none;
}

.sm-why-grid {
    display: grid;
    gap: 14px;
}

.sm-why-card {
    border-radius: 14px;
    border: 1px solid #dce8ff;
    background: #fff;
    padding: 18px;
}

.sm-why-card h3 {
    margin: 0 0 6px;
    font-size: 20px;
}

.sm-why-card p {
    margin: 0;
    line-height: 1.65;
}

.sm-why-image {
    border-radius: var(--sm-radius-lg);
    overflow: hidden;
    box-shadow: var(--sm-shadow);
}

.sm-why-image img {
    width: 100%;
    min-height: 440px;
    object-fit: cover;
}

.sm-section--why {
    background: linear-gradient(120deg, #090f3d 0%, #0d1f57 45%, #112a67 100%);
}

.sm-section--why .sm-title {
    color: #f2f7ff;
}

.sm-section--why .sm-text {
    color: rgba(230, 239, 255, 0.93);
    line-height: 1.8;
    max-width: 56ch;
}

.sm-section--why .sm-why-copy {
    display: grid;
    gap: 16px;
}

.sm-section--why .sm-why-copy .sm-text {
    margin: 0;
}

.sm-section--why .sm-why-card {
    background: rgba(255, 255, 255, 0.96);
}

.sm-section--process .sm-process-card p {
    line-height: 1.75;
    color: rgba(14, 43, 84, 0.92);
}

.sm-process-card {
    padding: 24px;
}

.sm-process-card__number {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(140deg, #c8102e, #e33642);
    font-weight: 700;
    margin-bottom: 12px;
}

.sm-process-card h3 {
    font-size: 20px;
    margin-bottom: 7px;
}

.sm-brand-track {
    overflow: hidden;
    border-radius: var(--sm-radius-md);
    border: 1px solid #dbe8ff;
    background: #fff;
    padding: 20px 0;
    position: relative;
}

.sm-brand-track__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    animation: sm-marquee var(--sm-marquee-duration, 34s) linear infinite;
    will-change: transform;
}

@keyframes sm-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-1 * var(--sm-marquee-distance, 50%)));
    }
}

.sm-brand-card {
    width: 160px;
    min-height: 84px;
    margin: 0 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8fbff;
    border-radius: 12px;
    border: 1px solid #e1ebff;
}

.sm-brand-card img {
    max-width: 120px;
    max-height: 56px;
    width: auto;
}

.sm-client-track {
    margin-top: 16px;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid #dbe8ff;
    background: linear-gradient(120deg, #fff8fb, #f4f9ff);
    padding: 10px 0;
}

.sm-client-track__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    animation: sm-marquee var(--sm-marquee-duration, 46s) linear infinite;
    will-change: transform;
}

.sm-client-chip {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    background: #fff;
    border: 1px solid #e4ecff;
    border-radius: 999px;
    padding: 9px 14px;
    color: #0f2a5d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.sm-cta-card {
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(125deg, #051331, #0b2b66 58%, #c8102e);
    padding: 40px;
    color: #fff;
    box-shadow: var(--sm-shadow);
}

.sm-cta-card h2 {
    color: #fff;
    margin-bottom: 10px;
    font-size: clamp(28px, 4vw, 42px);
}

.sm-cta-card p {
    color: rgba(230, 239, 255, 0.9);
    margin-bottom: 14px;
}

.sm-cta-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.sm-cta-contact a {
    color: #fff;
    font-weight: 600;
}

.sm-hours-card {
    padding: 34px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #dce8ff;
    box-shadow: var(--sm-shadow-soft);
}

.sm-hours-card h3 {
    font-size: 34px;
    margin-bottom: 10px;
}

.sm-hours-card ul {
    margin: 0;
    padding-left: 18px;
}

.sm-hours-card li {
    margin-bottom: 7px;
}

.sm-section--archive-hero {
    padding-top: 62px;
    padding-bottom: 24px;
}

.sm-archive-hero {
    border-radius: 22px;
    background: linear-gradient(140deg, #0a285f, #0e3675 62%, #c8102e);
    color: #fff;
    padding: 38px;
    box-shadow: var(--sm-shadow);
}

.sm-archive-hero h1 {
    color: #fff;
    font-size: clamp(32px, 4vw, 52px);
    margin-bottom: 10px;
}

.sm-archive-hero p {
    color: rgba(233, 241, 255, 0.92);
    max-width: 760px;
}

.sm-archive-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
}

.sm-archive-meta a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.sm-section--detail-hero {
    padding-top: 62px;
    padding-bottom: 36px;
}

.sm-detail-hero {
    border-radius: 24px;
    padding: 36px;
    background: linear-gradient(135deg, #fff, #f0f6ff);
    border: 1px solid #dae8ff;
}

.sm-detail-hero h1 {
    font-size: clamp(34px, 4.7vw, 58px);
    line-height: 1.08;
    margin-bottom: 8px;
}

.sm-detail-hero__category {
    color: var(--sm-blue-500);
    font-weight: 700;
}

.sm-detail-hero__auth {
    margin-top: 12px;
    margin-bottom: 0;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(200, 16, 46, 0.2);
    background: rgba(200, 16, 46, 0.07);
    color: #0f2a5d;
    font-weight: 600;
    line-height: 1.6;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.sm-detail-hero__actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sm-detail-hero .sm-btn--ghost {
    color: var(--sm-blue-500);
    border-color: rgba(217, 21, 59, 0.36);
    background: rgba(217, 21, 59, 0.08);
}

.sm-detail-hero__image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--sm-shadow);
}

.sm-detail-hero__image img {
    width: 100%;
    min-height: 360px;
    object-fit: cover;
}

.sm-content-card {
    padding: 28px;
}

.sm-meta-card {
    padding: 24px;
}

.sm-meta-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.sm-meta-card ul {
    margin: 0;
    padding-left: 18px;
}

.sm-meta-card li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.sm-gallery-item {
    display: block;
    border-radius: 14px;
    overflow: hidden;
}

.sm-gallery-item img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sm-gallery-item:hover img {
    transform: scale(1.06);
}

.sm-faq-list {
    display: grid;
    gap: 14px;
}

.sm-faq-item {
    padding: 20px;
}

.sm-faq-item h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.sm-footer {
    color: #dce8ff;
    background-size: cover;
    background-position: center;
}

.sm-footer-top {
    padding-top: 86px;
    padding-bottom: 58px;
}

.sm-footer-logo img {
    max-height: 52px;
    width: auto;
}

.sm-footer-brand p {
    margin-top: 16px;
    margin-bottom: 0;
    color: rgba(221, 233, 255, 0.85);
    line-height: 1.75;
}

.sm-footer-widget h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 16px;
}

.sm-footer-links,
.sm-footer-contact {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.sm-footer-links li a,
.sm-footer-contact a,
.sm-footer-contact li {
    color: rgba(220, 232, 255, 0.88);
}

.sm-footer-links li a:hover,
.sm-footer-contact a:hover {
    color: #fff;
}

.sm-footer-hours {
    display: grid;
    gap: 4px;
    margin-top: 12px;
    color: rgba(220, 232, 255, 0.78);
    font-size: 14px;
}

.sm-footer-social {
    margin-top: 18px;
    display: flex;
    gap: 10px;
}

.sm-footer-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.sm-footer-social a img {
    max-width: 18px;
    max-height: 18px;
}

.sm-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding: 18px 0 24px;
}

.sm-footer-bottom p {
    margin: 0;
    text-align: center;
    color: rgba(217, 231, 255, 0.86);
}

@media (max-width: 1199.98px) {
    .sm-header-row {
        min-height: 76px;
    }

    .sm-section {
        padding: 76px 0;
    }
}

@media (max-width: 991.98px) {
    :root {
        --sm-header-offset: 76px;
    }

    .sm-header-row {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 68px;
        padding: 8px 0;
    }

    .sm-header-main .navbar-wrap {
        display: none !important;
    }

    .sm-mobile-left {
        display: flex;
        justify-content: flex-start;
        min-width: 52px;
        z-index: 2;
    }

    .sm-header-top {
        display: none;
    }

    .sm-site-logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        display: flex;
        justify-content: center;
        text-align: center;
        z-index: 1;
        width: max-content;
    }

    .sm-header-actions {
        min-width: 52px;
        margin: 0;
        justify-content: flex-end;
        z-index: 2;
        gap: 0;
    }

    .sm-header-search form {
        flex-direction: column;
    }

    .sm-header-search button {
        width: 100%;
        height: 48px;
    }

    .sm-hero {
        padding: clamp(64px, 9vh, 96px) 0 clamp(56px, 8vh, 82px);
    }

    .sm-floating-card {
        position: static;
        margin-top: 12px;
    }

    .sm-cta-card,
    .sm-detail-hero,
    .sm-archive-hero,
    .sm-hours-card {
        padding: 26px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --sm-header-offset: 68px;
    }

    .sm-section {
        padding: 62px 0;
    }

    .sm-header-row {
        min-height: 68px;
        gap: 8px;
    }

    .sm-site-logo img {
        max-height: 40px;
    }

    .sm-hero__desc,
    .sm-text {
        font-size: 16px;
    }

    .sm-category-card__image img,
    .sm-product-card__image img,
    .sm-service-card__image img {
        height: 208px;
    }

    .sm-detail-hero__image img,
    .sm-hero__media img,
    .sm-why-image img {
        min-height: 260px;
    }

    .sm-footer-top {
        padding-top: 66px;
        padding-bottom: 44px;
    }
}

/* Live brand block alignment update */
.sm-site-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.sm-site-logo .sm-site-brand {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.sm-site-brand img {
    width: clamp(172px, 16.5vw, 248px);
    max-height: 56px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}

.sm-site-brand__text {
    display: grid;
    line-height: 1.15;
}

.sm-site-brand__text strong {
    color: #ffffff;
    font-size: clamp(16px, 1.28vw, 22px);
    font-weight: 700;
}

.sm-site-brand__text small {
    color: rgba(230, 238, 255, 0.96);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: clamp(10px, 0.72vw, 12px);
    font-weight: 600;
}

.sm-footer-subtitle {
    display: block;
    margin-top: 4px;
    color: rgba(219, 233, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    font-weight: 600;
}

.sm-footer-desc {
    margin-top: 10px !important;
}

.sm-footer-whatsapp {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(120deg, #d9152a, #ed2f44);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(217, 21, 42, 0.35);
}

.sm-footer-whatsapp:hover {
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 1199.98px) {
    .sm-site-brand__text strong {
        font-size: 16px;
    }

    .sm-site-brand__text small {
        font-size: 10px;
    }
}

@media (max-width: 991.98px) {
    .sm-site-brand {
        gap: 0;
    }

    .sm-site-logo .sm-site-brand {
        padding: 0;
    }

    .sm-site-brand__text {
        display: none;
    }

    .sm-site-brand img {
        width: clamp(132px, 40vw, 188px);
        max-height: 46px;
    }
}

.sm-award-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #dfe9ff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(4, 20, 50, 0.08);
    padding: 22px;
    height: 100%;
}

.sm-award-card h3 {
    color: var(--sm-heading);
    font-size: 20px;
    margin-bottom: 9px;
}

.sm-award-card p {
    margin: 0;
    line-height: 1.65;
    color: rgba(13, 41, 80, 0.88);
}

.sm-contact-page {
    padding: 72px 0 88px;
    background:
        radial-gradient(circle at 10% 8%, rgba(217, 21, 59, 0.1), transparent 34%),
        radial-gradient(circle at 95% 3%, rgba(14, 63, 140, 0.1), transparent 30%),
        linear-gradient(180deg, #f7f9ff 0%, #ffffff 62%);
}

.sm-contact-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
    gap: 28px;
    padding: 34px;
    margin-bottom: 34px;
    border-radius: 24px;
    border: 1px solid #d9e6ff;
    background: linear-gradient(136deg, #061b46, #0c2f70 58%, #123a84);
    box-shadow: 0 20px 48px rgba(4, 21, 52, 0.2);
    overflow: hidden;
}

.sm-contact-hero:before,
.sm-contact-hero:after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.sm-contact-hero:before {
    width: 220px;
    height: 220px;
    top: -84px;
    right: -62px;
    background: rgba(255, 255, 255, 0.09);
}

.sm-contact-hero:after {
    width: 210px;
    height: 210px;
    bottom: -92px;
    left: -76px;
    background: rgba(217, 21, 59, 0.19);
}

.sm-contact-hero__content,
.sm-contact-hero__summary {
    position: relative;
    z-index: 1;
}

.sm-contact-hero__eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #ffdce4;
    background: rgba(217, 21, 59, 0.28);
}

.sm-contact-hero__content h1 {
    color: #fff;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    margin-bottom: 11px;
}

.sm-contact-hero__content p {
    color: rgba(230, 240, 255, 0.9);
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    max-width: 62ch;
}

.sm-contact-hero__actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sm-contact-hero__actions .sm-btn {
    min-width: 168px;
}

.sm-contact-hero__summary {
    padding: 20px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(6px);
}

.sm-contact-hero__summary h3 {
    color: #fff;
    margin: 0 0 14px;
    font-size: 23px;
}

.sm-contact-hero__summary ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.sm-contact-hero__summary li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(238, 245, 255, 0.95);
    line-height: 1.5;
}

.sm-contact-hero__summary i {
    width: 16px;
    margin-top: 4px;
    color: #ffd2dc;
}

.sm-contact-hero__summary a {
    color: #fff;
}

.sm-contact-locations {
    display: grid;
    gap: 18px;
}

.sm-contact-section {
    border-radius: 20px;
    border: 1px solid #dce8ff;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--sm-shadow-soft);
    padding: 22px;
}

.sm-contact-section__head {
    margin-bottom: 16px;
}

.sm-contact-section__head h2 {
    margin: 0;
    color: var(--sm-heading);
    font-size: clamp(22px, 3vw, 28px);
    line-height: 1.2;
}

.sm-contact-section__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.sm-contact-section__grid > .sm-contact-card:only-child {
    grid-column: 1 / -1;
}

.sm-contact-card {
    border-radius: 16px;
    border: 1px solid #d7e5ff;
    background: #fff;
    padding: 18px;
}

.sm-contact-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    color: #07255b;
}

.sm-contact-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.sm-contact-section__grid > .sm-contact-card:only-child .sm-contact-card__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sm-contact-card__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 11px;
    border: 1px solid #e3ecff;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff, #f9fbff);
}

.sm-contact-card__icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 1px;
}

.sm-contact-card__icon--address {
    background: #e8f0ff;
    color: #1f56b0;
}

.sm-contact-card__icon--phone {
    background: #ffecef;
    color: #d22f40;
}

.sm-contact-card__content {
    min-width: 0;
    flex: 1;
}

.sm-contact-card__meta {
    display: block;
    margin-bottom: 3px;
    font-size: 12px;
    color: #5d76a3;
    font-weight: 700;
}

.sm-contact-card__text {
    display: grid;
    gap: 1px;
}

.sm-contact-card p,
.sm-contact-card a {
    margin: 0;
    display: block;
    line-height: 1.5;
    color: #203e71;
    word-break: break-word;
}

.sm-contact-card a:hover {
    color: var(--sm-blue-500);
}

.sm-contact-card p + p,
.sm-contact-card a + a {
    margin-top: 0;
}

.sm-contact-form-card {
    position: sticky;
    top: calc(var(--sm-header-offset) + 24px);
    border-radius: 20px;
    border: 1px solid #dce8ff;
    background: #fff;
    box-shadow: var(--sm-shadow-soft);
    padding: 24px;
}

.sm-contact-form-card h2 {
    margin: 0 0 8px;
    font-size: clamp(26px, 3vw, 34px);
    color: var(--sm-heading);
}

.sm-contact-form-card > p {
    margin: 0 0 16px;
    color: rgba(17, 48, 90, 0.84);
    line-height: 1.7;
}

.sm-contact-form-wrap .contact-form {
    background: transparent;
}

.sm-contact-form-wrap {
    max-width: 430px !important;
    margin: 0 auto !important;
    width: 100%;
}

.sm-contact-form-wrap .contact-form .contact-form-row {
    margin-left: -8px !important;
    margin-right: -8px !important;
}

.sm-contact-form-wrap .contact-form .contact-column-6,
.sm-contact-form-wrap .contact-form .contact-column-12 {
    padding-left: 8px !important;
    padding-right: 8px !important;
}

.sm-contact-form-wrap .contact-form .contact-form-group {
    margin-bottom: 14px;
}

.sm-contact-form-wrap .contact-form .contact-label {
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #163b74;
    letter-spacing: .02em;
}

.sm-contact-form-wrap .contact-form .contact-form-input {
    height: 46px;
    border: 1px solid #cfdef8;
    border-radius: 12px;
    background: #f9fbff;
    color: #12305d;
    box-shadow: none;
    padding: 10px 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.sm-contact-form-wrap .contact-form textarea.contact-form-input {
    height: auto;
    min-height: 130px;
}

.sm-contact-form-wrap .contact-form .contact-form-input:focus {
    border-color: #547fcd;
    box-shadow: 0 0 0 4px rgba(84, 127, 205, 0.14);
    background: #ffffff;
}

.sm-contact-form-wrap .contact-form .contact-button {
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    background: linear-gradient(120deg, #c8102e, #e33642);
    box-shadow: 0 16px 30px rgba(200, 16, 46, 0.26);
}

.sm-contact-form-wrap .contact-form .contact-button:hover,
.sm-contact-form-wrap .contact-form .contact-button:focus {
    background: linear-gradient(120deg, #b20f2a, #d32840);
    color: #fff;
}

.sm-contact-form-wrap .contact-form .form-check {
    margin-top: 2px;
}

.sm-contact-form-wrap .contact-form .form-check-label {
    color: #355281;
    line-height: 1.5;
}

.sm-contact-form-wrap .contact-form .contact-message {
    border-radius: 10px;
    border-left-width: 4px;
}

.sm-clients-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(var(--sm-clients-columns, 4), minmax(0, 1fr));
}

.sm-client-card {
    border: 1px solid #dde7fb;
    border-radius: 18px;
    background: #fff;
    padding: 18px 16px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(4, 20, 50, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sm-client-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(4, 20, 50, 0.12);
}

.sm-client-card__logo {
    height: 96px;
    border-radius: 12px;
    background: linear-gradient(180deg, #f8faff, #eef3ff);
    border: 1px solid #dbe6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    overflow: hidden;
}

.sm-client-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

.sm-client-card h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
    color: var(--sm-heading);
}

.sm-client-card__fallback {
    display: inline-flex;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #fff;
    background: linear-gradient(135deg, #c8102e, #1f4e9c);
}

@media (max-width: 1199.98px) {
    .sm-clients-grid {
        grid-template-columns: repeat(var(--sm-clients-columns-lg, 3), minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .sm-clients-grid {
        grid-template-columns: repeat(var(--sm-clients-columns-md, 2), minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .sm-clients-grid {
        grid-template-columns: repeat(var(--sm-clients-columns-sm, 1), minmax(0, 1fr));
    }
}

/* Safety: prevent legacy newsletter popup overlays from rendering on public pages */
#newsletter-popup,
.newsletter-popup,
.newsletter-popup .modal-dialog,
.newsletter-popup .modal-content {
    display: none !important;
}

body.modal-open {
    overflow: auto !important;
    padding-right: 0 !important;
}

@media (max-width: 1199.98px) {
    .sm-contact-hero {
        grid-template-columns: 1fr;
    }

    .sm-contact-hero__summary {
        max-width: 540px;
    }
}

@media (max-width: 991.98px) {
    .sm-contact-page {
        padding: 58px 0 74px;
    }

    .sm-contact-form-card {
        position: static;
        top: auto;
    }
}

@media (max-width: 767.98px) {
    .sm-contact-page {
        padding: 50px 0 62px;
    }

    .sm-contact-hero {
        padding: 24px;
        border-radius: 18px;
        gap: 18px;
        margin-bottom: 24px;
    }

    .sm-contact-hero__content h1 {
        font-size: clamp(27px, 8vw, 35px);
    }

    .sm-contact-hero__content p {
        font-size: 15px;
    }

    .sm-contact-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .sm-contact-hero__actions .sm-btn {
        width: 100%;
    }

    .sm-contact-section {
        padding: 18px;
        border-radius: 16px;
    }

    .sm-contact-section__grid {
        grid-template-columns: 1fr;
    }

    .sm-contact-card h3 {
        font-size: 18px;
    }

    .sm-contact-section__grid > .sm-contact-card:only-child .sm-contact-card__list {
        grid-template-columns: 1fr;
    }

    .sm-contact-form-card {
        padding: 20px;
    }

    .sm-contact-form-wrap {
        max-width: 100%;
    }
}
