/*
 * Help to Find Us — premium interface layer
 * Loaded after the legacy theme to provide one consistent design system across
 * public pages, account flows, search results, details and the dashboard.
 */

:root {
    --bs-primary: #12263a;
    --bs-secondary: #c9364f;
    --bs-danger: #c9364f;
    --bs-light: #f7f5f1;
    --bs-dark: #0b1724;
    --htfu-ink: #102235;
    --htfu-ink-soft: #43566a;
    --htfu-muted: #6f7d89;
    --htfu-red: #c9364f;
    --htfu-red-dark: #a8233b;
    --htfu-red-soft: #fff0f2;
    --htfu-teal: #177d75;
    --htfu-teal-soft: #eaf7f4;
    --htfu-ivory: #f8f6f2;
    --htfu-surface: #ffffff;
    --htfu-line: #e5e7e8;
    --htfu-shadow-sm: 0 8px 24px rgba(16, 34, 53, .07);
    --htfu-shadow: 0 20px 60px rgba(16, 34, 53, .11);
    --htfu-radius-sm: 12px;
    --htfu-radius: 20px;
    --htfu-radius-lg: 32px;
}

html {
    scroll-padding-top: 92px;
}

body {
    color: var(--htfu-ink-soft);
    background: var(--htfu-ivory);
    font-family: "Manrope", sans-serif;
    font-size: 15.5px;
    line-height: 1.75;
    letter-spacing: -.005em;
    overflow-x: hidden;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    content: "";
    pointer-events: none;
    background:
        radial-gradient(circle at 8% 8%, rgba(201, 54, 79, .055), transparent 25rem),
        radial-gradient(circle at 92% 40%, rgba(23, 125, 117, .055), transparent 28rem),
        var(--htfu-ivory);
}

::selection {
    color: #fff;
    background: var(--htfu-red);
}

a {
    color: var(--htfu-teal);
    transition: color .2s ease, opacity .2s ease;
}

a:hover {
    color: var(--htfu-red-dark);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: var(--htfu-ink);
    font-family: "Manrope", sans-serif;
    font-weight: 750;
    letter-spacing: -.035em;
}

h1,
h2,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: "DM Serif Display", Georgia, serif;
    font-weight: 400 !important;
    letter-spacing: -.025em;
}

p:last-child {
    margin-bottom: 0;
}

img {
    max-width: 100%;
}

.site-main {
    min-height: 60vh;
}

.container {
    max-width: 1240px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 10000;
    padding: 10px 16px;
    color: #fff;
    background: var(--htfu-ink);
    border-radius: 10px;
    transform: translateY(-160%);
}

.skip-link:focus {
    color: #fff;
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid rgba(23, 125, 117, .35);
    outline-offset: 3px;
}

/* Top bar */
.site-topbar {
    position: relative;
    z-index: 1031;
    color: rgba(255, 255, 255, .75);
    background: var(--htfu-ink);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.site-topbar .container {
    min-height: 40px;
}

.site-topbar a {
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .015em;
}

.site-topbar a:hover {
    color: #fff;
}

.site-topbar__message {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.site-topbar__message::before {
    width: 7px;
    height: 7px;
    content: "";
    background: #55d6b9;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(85, 214, 185, .12);
}

.site-topbar__social {
    display: flex;
    gap: 3px;
    justify-content: center;
}

.site-topbar__social a {
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
}

.site-topbar__social a:hover {
    background: rgba(255, 255, 255, .1);
}

/* Navigation */
.nav-bar {
    position: relative;
    z-index: 1030;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(16, 34, 53, .08);
    backdrop-filter: blur(16px);
}

.nav-bar.sticky-top {
    box-shadow: 0 10px 35px rgba(16, 34, 53, .1) !important;
}

.navbar {
    max-width: 1360px;
    min-height: 82px;
    margin-inline: auto;
    padding-inline: 32px !important;
}

.navbar-light .navbar-brand img {
    width: 184px;
    max-height: 55px;
    object-fit: contain;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 2px;
    padding: 29px 11px;
    color: var(--htfu-ink) !important;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 720;
    letter-spacing: -.01em;
    white-space: nowrap;
}

.navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    right: 12px;
    bottom: 18px;
    left: 12px;
    height: 2px;
    content: "";
    background: var(--htfu-red);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--htfu-red) !important;
}

.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
    transform: scaleX(1);
}

.navbar-light .navbar-nav .nav-link i {
    margin-right: 4px;
    font-size: 11px;
    opacity: .72;
}

.navbar-toggler {
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--htfu-ink) !important;
    background: var(--htfu-ivory);
    border: 1px solid var(--htfu-line) !important;
    border-radius: 12px;
}

.navbar .dropdown-menu {
    min-width: 245px;
    padding: 10px;
    background: rgba(255, 255, 255, .98) !important;
    border: 1px solid rgba(16, 34, 53, .08) !important;
    border-radius: 16px !important;
    box-shadow: var(--htfu-shadow);
}

.navbar .dropdown-item {
    padding: 10px 12px;
    color: var(--htfu-ink-soft);
    font-size: 13px;
    font-weight: 650;
    border-radius: 9px;
}

.navbar .dropdown-item i {
    width: 20px;
    color: var(--htfu-red);
    text-align: center;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item.active {
    color: var(--htfu-ink) !important;
    background: var(--htfu-red-soft) !important;
}

.navbar__cta {
    flex-shrink: 0;
    margin-left: 12px;
}

/* Shared page hero / breadcrumb */
.bg-breadcrumb {
    position: relative;
    display: flex;
    min-height: 142px;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 5%, rgba(70, 202, 181, .18), transparent 18rem),
        radial-gradient(circle at 12% 110%, rgba(201, 54, 79, .27), transparent 22rem),
        linear-gradient(115deg, #0c1c2c 0%, #173a52 100%) !important;
}

.bg-breadcrumb::before,
.bg-breadcrumb::after {
    position: absolute;
    content: "";
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
}

.bg-breadcrumb::before {
    top: -150px;
    right: 8%;
    width: 290px;
    height: 290px;
}

.bg-breadcrumb::after {
    right: 21%;
    bottom: -105px;
    width: 190px;
    height: 190px;
}

.bg-breadcrumb .container {
    position: relative;
    z-index: 1;
    padding-block: 32px;
}

.bg-breadcrumb h3 {
    margin: 0;
    color: #fff !important;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: clamp(1.75rem, 3vw, 2.65rem);
    font-weight: 400;
    letter-spacing: -.02em;
}

.bg-breadcrumb p {
    margin: 0;
    color: rgba(255, 255, 255, .72) !important;
}

.breadcrumb {
    gap: 2px;
    font-size: 12px;
    font-weight: 650;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .42);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, .72) !important;
}

.breadcrumb-item.active {
    color: #ffb7c3 !important;
}

/* Typography and section rhythm */
.display-5 {
    max-width: 860px;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.08;
}

.sub-title,
.sub-style .sub-title,
.sub-style > h5,
.section-title .sub-title {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
    color: var(--htfu-red) !important;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.sub-title::before,
.sub-title::after,
.section-title .sub-style::before,
.section-title .sub-style::after,
.sub-style::before,
.sub-style::after {
    display: none !important;
}

.sub-title::before,
.sub-style > h5::before {
    display: inline-block !important;
    width: 20px !important;
    height: 2px !important;
    margin: 0 !important;
    content: "";
    background: currentColor;
    border: 0 !important;
}

.container-fluid.contact,
.container-fluid.features,
.container-fluid.country,
.container-fluid.training,
.site-main > .container-fluid.overflow-hidden {
    position: relative;
}

.container-fluid.contact,
.container-fluid.features {
    padding-block: 68px !important;
}

.container-fluid.bg-light,
.bg-light {
    background-color: var(--htfu-ivory) !important;
}

.rounded {
    border-radius: var(--htfu-radius-sm) !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    min-height: 44px;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 10px 19px;
    font-family: "Manrope", sans-serif !important;
    font-size: 13px;
    font-weight: 750 !important;
    letter-spacing: -.005em;
    border-radius: 12px !important;
    box-shadow: none;
    transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}

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

.btn.btn-primary,
.btn-primary {
    color: #fff !important;
    background: linear-gradient(135deg, var(--htfu-red), #df5268) !important;
    border: 1px solid var(--htfu-red) !important;
    box-shadow: 0 10px 24px rgba(201, 54, 79, .2);
}

.btn.btn-primary:hover,
.btn.btn.btn-primary:hover,
.btn-primary:hover {
    color: #fff !important;
    background: linear-gradient(135deg, var(--htfu-red-dark), var(--htfu-red)) !important;
    border-color: var(--htfu-red-dark) !important;
    box-shadow: 0 14px 30px rgba(201, 54, 79, .27);
}

.btn.btn-secondary,
.btn-secondary,
.btn-outline-primary {
    color: var(--htfu-ink) !important;
    background: #fff !important;
    border: 1px solid var(--htfu-line) !important;
    box-shadow: 0 5px 15px rgba(16, 34, 53, .05);
}

.btn.btn-secondary:hover,
.btn-secondary:hover,
.btn-outline-primary:hover {
    color: var(--htfu-red) !important;
    background: var(--htfu-red-soft) !important;
    border-color: rgba(201, 54, 79, .28) !important;
}

.btn.rounded-pill {
    border-radius: 999px !important;
}

.btn-lg-square,
.btn-md-square,
.btn-sm-square,
.btn-square {
    padding: 0;
    border-radius: 50% !important;
}

/* Forms and search panels */
label {
    margin-bottom: 6px;
    color: var(--htfu-ink);
    font-size: 12px;
    font-weight: 750;
}

.form-control,
.form-select,
select.form-control {
    min-height: 48px;
    padding: 11px 13px;
    color: var(--htfu-ink);
    background-color: #fff;
    border: 1px solid #dfe3e6;
    border-radius: 11px;
    box-shadow: 0 1px 0 rgba(16, 34, 53, .02);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

textarea.form-control {
    min-height: 125px;
}

.form-control:hover,
.form-select:hover,
select.form-control:hover {
    border-color: #c8d0d6;
}

.form-control:focus,
.form-select:focus,
select.form-control:focus {
    color: var(--htfu-ink);
    background: #fff;
    border-color: var(--htfu-teal);
    box-shadow: 0 0 0 4px rgba(23, 125, 117, .12);
}

.form-control::placeholder {
    color: #9aa5af;
}

input[type="file"].form-control {
    padding: 7px;
}

.form-check-input:checked {
    background-color: var(--htfu-red);
    border-color: var(--htfu-red);
}

.input-group-text {
    color: var(--htfu-muted);
    background: var(--htfu-ivory);
    border-color: var(--htfu-line);
}

.contact form,
.features form {
    position: relative;
}

.features .bg-light.rounded.p-3,
.contact .bg-light.py-5.rounded,
.contact .bg-light.rounded,
.features .bg-light.rounded {
    padding: 24px !important;
    background: rgba(255, 255, 255, .92) !important;
    border: 1px solid rgba(16, 34, 53, .07);
    border-radius: var(--htfu-radius) !important;
    box-shadow: var(--htfu-shadow-sm);
}

.features form .row,
.contact form .row {
    row-gap: 14px;
}

.features form .btn.mt-4 {
    margin-top: 27px !important;
}

/* Results, reusable cards and profile surfaces */
.features .feature-item {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(16, 34, 53, .075);
    border-radius: var(--htfu-radius);
    box-shadow: var(--htfu-shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.features .feature-item::after {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    content: "";
    background: linear-gradient(90deg, var(--htfu-red), #e97a74, var(--htfu-teal));
    transform: none;
}

.features .feature-item:hover {
    border-color: rgba(201, 54, 79, .2);
    box-shadow: var(--htfu-shadow);
    transform: translateY(-6px);
}

.features .feature-item:hover::after {
    height: 4px;
}

.features .feature-item .feature-icon {
    display: grid;
    width: 104px;
    height: 104px;
    margin-inline: auto;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(145deg, var(--htfu-red-soft), #fff);
    border: 1px solid rgba(201, 54, 79, .12);
    border-radius: 50%;
}

.features .feature-item .feature-icon img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    border-radius: 50%;
}

.features .feature-item .feature-icon i {
    color: var(--htfu-red) !important;
}

.features .feature-item:hover .feature-icon,
.features .feature-item:hover .feature-icon i {
    color: var(--htfu-red) !important;
    background: var(--htfu-red-soft);
}

.feature-content h3,
.feature-content h5 {
    margin-bottom: 8px;
}

.feature-content h6 {
    color: var(--htfu-red);
    font-size: 13px;
    letter-spacing: 0;
}

.feature-content p {
    color: var(--htfu-muted);
    font-size: 13px;
}

.feature-content .btn {
    margin-top: auto;
}

.listing-card .feature-content {
    min-height: 150px;
}

.listing-badge,
.listing-status {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    padding: 6px 9px;
    color: var(--htfu-muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .055em;
    line-height: 1;
    text-transform: uppercase;
    background: #f2f4f5;
    border-radius: 999px;
}

.listing-badge--blood,
.listing-status.is-urgent {
    color: var(--htfu-red-dark);
    background: var(--htfu-red-soft);
}

.listing-badge--search,
.listing-status.is-available {
    color: #0f685f;
    background: var(--htfu-teal-soft);
}

.card {
    background: #fff;
    border: 1px solid rgba(16, 34, 53, .08);
    border-radius: var(--htfu-radius) !important;
    box-shadow: var(--htfu-shadow-sm);
}

.site-main > .container-fluid.overflow-hidden .bg-light.rounded,
.site-main > .container-fluid.overflow-hidden .bg-light.my-3.rounded {
    background: #fff !important;
    border: 1px solid rgba(16, 34, 53, .075);
    border-radius: var(--htfu-radius) !important;
    box-shadow: var(--htfu-shadow-sm);
}

.site-main > .container-fluid.overflow-hidden .bg-light.rounded img {
    border-radius: calc(var(--htfu-radius) - 5px);
}

/* Editorial/information pages */
.country .section,
.mission,
.training .col-xl-12 > ul,
.site-main article {
    padding: clamp(24px, 4vw, 42px) !important;
    background: rgba(255, 255, 255, .94) !important;
    border: 1px solid rgba(16, 34, 53, .075);
    border-radius: var(--htfu-radius) !important;
    box-shadow: var(--htfu-shadow-sm);
}

.country .section h2,
.mission h2 {
    margin-bottom: 16px;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.country .section li,
.training li,
.site-main article li {
    margin-bottom: 9px;
}

.country .section li::marker,
.training li::marker,
.site-main article li::marker {
    color: var(--htfu-red);
}

/* Tables, sidebar, pagination and state feedback */
.table-responsive,
.table {
    overflow: hidden;
    background: #fff;
    border-radius: 14px;
}

.table > :not(caption) > * > * {
    padding: 13px 14px;
    border-bottom-color: var(--htfu-line);
}

.table thead th {
    color: var(--htfu-ink);
    background: #f2f5f5;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.list-group {
    gap: 4px;
}

.list-group-item {
    padding: 11px 13px;
    color: var(--htfu-ink-soft);
    font-size: 13px;
    font-weight: 650;
    background: transparent;
    border: 0;
    border-radius: 10px !important;
}

.list-group-item i {
    width: 22px;
    color: var(--htfu-red);
    text-align: center;
}

.list-group-item:hover,
.list-group-item.active {
    color: var(--htfu-ink) !important;
    background: var(--htfu-red-soft) !important;
}

.features .col-lg-3.bg-light,
.contact .col-lg-3.bg-light {
    align-self: flex-start;
    padding: 20px !important;
    background: #fff !important;
    border: 1px solid rgba(16, 34, 53, .075);
    border-radius: var(--htfu-radius) !important;
    box-shadow: var(--htfu-shadow-sm);
}

.pagination {
    gap: 6px;
}

.page-link {
    min-width: 40px;
    padding: 8px 12px;
    color: var(--htfu-ink);
    text-align: center;
    background: #fff;
    border: 1px solid var(--htfu-line);
    border-radius: 10px !important;
}

.page-item.active .page-link {
    color: #fff;
    background: var(--htfu-red);
    border-color: var(--htfu-red);
}

.alert {
    max-width: 1180px;
    margin: 18px auto 0 !important;
    padding: 14px 18px;
    border: 0;
    border-radius: 14px;
    box-shadow: var(--htfu-shadow-sm);
}

.alert-info {
    color: #0d5c56;
    background: var(--htfu-teal-soft);
}

.alert-danger {
    color: #8f1f33;
    background: var(--htfu-red-soft);
}

/* Location search experiences */
#mapContainer,
#map {
    overflow: hidden;
}

#mapContainer {
    background: #e8eeed;
    border: 1px solid rgba(16, 34, 53, .1) !important;
    border-radius: var(--htfu-radius) !important;
    box-shadow: var(--htfu-shadow-sm);
}

.features > .container-fluid.px-0 {
    max-width: 1400px;
    padding-inline: 20px !important;
}

.features > .container-fluid > .row.g-0 {
    gap: 18px;
    flex-wrap: nowrap;
}

.features > .container-fluid > .row.g-0 > .col-lg-4 {
    padding: 0 !important;
    background: transparent !important;
}

.features > .container-fluid > .row.g-0 > .col-lg-8 {
    width: calc(66.6666667% - 18px);
}

.features .card-header {
    padding: 18px 20px;
    background: var(--htfu-ink) !important;
    border: 0;
    border-radius: var(--htfu-radius) var(--htfu-radius) 0 0 !important;
}

.features .card-header h5 {
    color: #fff !important;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 750;
    letter-spacing: -.01em;
}

.features .card-body {
    padding: 22px;
}

.features .btn-info {
    color: #fff;
    background: var(--htfu-teal);
    border-color: var(--htfu-teal);
}

.features .btn-info:hover {
    color: #fff;
    background: #0f675f;
    border-color: #0f675f;
}

.features .form-range::-webkit-slider-thumb {
    background: var(--htfu-red);
}

.features .form-range::-moz-range-thumb {
    background: var(--htfu-red);
}

.leaflet-container {
    font-family: "Manrope", sans-serif;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
    color: var(--htfu-ink-soft);
    background: #fff;
}

.leaflet-popup-content-wrapper {
    border-radius: 13px;
    box-shadow: var(--htfu-shadow-sm);
}

.person-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(16, 34, 53, .08) !important;
    border-radius: 15px !important;
    box-shadow: var(--htfu-shadow-sm);
}

.person-photo {
    border: 3px solid var(--htfu-red-soft);
}

.distance-badge {
    background: var(--htfu-teal) !important;
    border-radius: 999px !important;
}

/* Sharing */
.card .facebook,
.card .twitter,
.card .instagram,
.card .whatsapp,
.card .telegram,
.card .pinterest,
.card .linkedin {
    min-height: 38px;
    padding: 8px 12px;
    color: #fff;
    border: 0;
    border-radius: 9px !important;
    opacity: .9;
}

.card .facebook:hover,
.card .twitter:hover,
.card .instagram:hover,
.card .whatsapp:hover,
.card .telegram:hover,
.card .pinterest:hover,
.card .linkedin:hover {
    color: #fff;
    opacity: 1;
}

/* Homepage */
.home-hero {
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, .78);
    background:
        radial-gradient(circle at 78% 18%, rgba(64, 191, 170, .19), transparent 22rem),
        radial-gradient(circle at 13% 90%, rgba(213, 60, 86, .22), transparent 25rem),
        linear-gradient(125deg, #0b1928 0%, #143750 62%, #124a57 100%);
}

.home-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: .15;
    background-image: radial-gradient(rgba(255,255,255,.7) .75px, transparent .75px);
    background-size: 24px 24px;
    mask-image: linear-gradient(to right, #000, transparent 75%);
}

.home-hero .container {
    position: relative;
    z-index: 1;
    padding-block: clamp(68px, 9vw, 116px);
}

.hero-eyebrow {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    margin-bottom: 20px;
    padding: 8px 13px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.hero-eyebrow i {
    color: #72dcc7;
}

.home-hero h1 {
    max-width: 740px;
    margin-bottom: 22px;
    color: #fff;
    font-size: clamp(3.1rem, 6.4vw, 5.7rem);
    line-height: .97;
}

.home-hero h1 em {
    color: #ff9cad;
    font-style: normal;
}

.home-hero__lead {
    max-width: 650px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .76);
    font-size: clamp(1rem, 1.4vw, 1.14rem);
    line-height: 1.75;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.home-hero .btn-hero-light {
    color: var(--htfu-ink) !important;
    background: #fff !important;
    border: 1px solid #fff !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .14);
}

.home-hero .btn-hero-light:hover {
    color: var(--htfu-red) !important;
}

.home-hero .btn-hero-ghost {
    color: #fff !important;
    background: rgba(255, 255, 255, .06) !important;
    border: 1px solid rgba(255, 255, 255, .2) !important;
}

.home-hero .btn-hero-ghost:hover {
    background: rgba(255, 255, 255, .12) !important;
}

.hero-visual {
    position: relative;
    max-width: 460px;
    margin-left: auto;
}

.hero-visual__frame {
    position: relative;
    padding: 12px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--htfu-radius-lg);
    box-shadow: 0 35px 80px rgba(0, 0, 0, .24);
    transform: rotate(2deg);
    backdrop-filter: blur(16px);
}

.hero-visual__frame img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: calc(var(--htfu-radius-lg) - 9px);
}

.hero-float {
    position: absolute;
    z-index: 2;
    display: flex;
    gap: 12px;
    align-items: center;
    min-width: 205px;
    padding: 13px 15px;
    color: var(--htfu-ink-soft);
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 15px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .17);
}

.hero-float--top {
    top: -24px;
    left: -40px;
}

.hero-float--bottom {
    right: -34px;
    bottom: 28px;
}

.hero-float__icon {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    color: var(--htfu-red);
    place-items: center;
    background: var(--htfu-red-soft);
    border-radius: 11px;
}

.hero-float--bottom .hero-float__icon {
    color: var(--htfu-teal);
    background: var(--htfu-teal-soft);
}

.hero-float small {
    display: block;
    color: var(--htfu-muted);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-float strong {
    display: block;
    color: var(--htfu-ink);
    font-size: 13px;
}

.trust-strip {
    position: relative;
    z-index: 2;
    margin-top: -28px;
}

.trust-strip__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 20px 14px;
    background: rgba(255, 255, 255, .97);
    border: 1px solid rgba(16, 34, 53, .07);
    border-radius: var(--htfu-radius);
    box-shadow: var(--htfu-shadow);
}

.trust-item {
    display: flex;
    gap: 13px;
    align-items: center;
    justify-content: center;
    min-height: 55px;
    padding-inline: 18px;
    border-right: 1px solid var(--htfu-line);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item i {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    color: var(--htfu-teal);
    place-items: center;
    background: var(--htfu-teal-soft);
    border-radius: 10px;
}

.trust-item strong {
    display: block;
    color: var(--htfu-ink);
    font-size: 13px;
}

.trust-item span {
    display: block;
    color: var(--htfu-muted);
    font-size: 11px;
}

.home-section {
    padding-block: clamp(76px, 9vw, 112px);
}

.home-section--soft {
    background: rgba(255, 255, 255, .56);
    border-block: 1px solid rgba(16, 34, 53, .06);
}

.section-kicker {
    margin-bottom: 12px;
    color: var(--htfu-red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.home-section__title {
    max-width: 680px;
    margin-bottom: 18px;
    font-size: clamp(2.35rem, 4.7vw, 4.2rem);
    line-height: 1.04;
}

.home-section__lead {
    max-width: 660px;
    color: var(--htfu-muted);
    font-size: 16px;
}

.service-card {
    position: relative;
    display: flex;
    height: 100%;
    min-height: 325px;
    flex-direction: column;
    padding: clamp(25px, 3vw, 34px);
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(16, 34, 53, .075);
    border-radius: var(--htfu-radius);
    box-shadow: var(--htfu-shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
    box-shadow: var(--htfu-shadow);
    transform: translateY(-7px);
}

.service-card::after {
    position: absolute;
    right: -42px;
    bottom: -42px;
    width: 130px;
    height: 130px;
    content: "";
    background: var(--htfu-red-soft);
    border-radius: 50%;
}

.service-card--teal::after {
    background: var(--htfu-teal-soft);
}

.service-card__icon {
    display: grid;
    width: 56px;
    height: 56px;
    margin-bottom: 32px;
    color: var(--htfu-red);
    place-items: center;
    background: var(--htfu-red-soft);
    border-radius: 15px;
}

.service-card--teal .service-card__icon {
    color: var(--htfu-teal);
    background: var(--htfu-teal-soft);
}

.service-card h3 {
    font-size: 1.4rem;
}

.service-card p {
    color: var(--htfu-muted);
    font-size: 14px;
}

.service-card__link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-top: auto;
    color: var(--htfu-ink);
    font-size: 13px;
    font-weight: 800;
}

.service-card__link i {
    color: var(--htfu-red);
    transition: transform .2s ease;
}

.service-card:hover .service-card__link i {
    transform: translateX(4px);
}

.story-visual {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-radius: var(--htfu-radius-lg);
    box-shadow: var(--htfu-shadow);
}

.story-visual img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.story-visual__label {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    padding: 19px 22px;
    color: rgba(255, 255, 255, .78);
    background: rgba(11, 25, 40, .88);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    backdrop-filter: blur(12px);
}

.story-visual__label strong {
    display: block;
    color: #fff;
    font-size: 15px;
}

.value-list {
    display: grid;
    gap: 10px;
    margin: 28px 0 32px;
    padding: 0;
    list-style: none;
}

.value-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--htfu-ink-soft);
    font-weight: 650;
}

.value-list i {
    display: grid;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    margin-top: 2px;
    color: var(--htfu-teal);
    place-items: center;
    background: var(--htfu-teal-soft);
    border-radius: 50%;
    font-size: 10px;
}

.home-cta {
    position: relative;
    padding: clamp(36px, 6vw, 68px);
    overflow: hidden;
    color: rgba(255, 255, 255, .74);
    background:
        radial-gradient(circle at 95% 10%, rgba(84, 210, 185, .2), transparent 20rem),
        linear-gradient(125deg, #102235, #173f54);
    border-radius: var(--htfu-radius-lg);
    box-shadow: var(--htfu-shadow);
}

.home-cta::after {
    position: absolute;
    right: -70px;
    bottom: -100px;
    width: 250px;
    height: 250px;
    content: "";
    border: 38px solid rgba(255, 255, 255, .055);
    border-radius: 50%;
}

.home-cta h2 {
    color: #fff;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 1.04;
}

/* Footer */
.floating-btn {
    right: auto;
    bottom: 24px;
    left: 24px;
    z-index: 100;
    height: auto;
    padding: 10px 16px !important;
    font-size: 12px;
}

.site-footer {
    position: relative;
    padding: 74px 0 32px;
    overflow: hidden;
    color: rgba(255, 255, 255, .62);
    background: #0b1724;
}

.site-footer::before {
    position: absolute;
    top: -180px;
    right: -100px;
    width: 440px;
    height: 440px;
    content: "";
    border: 1px solid rgba(255, 255, 255, .055);
    border-radius: 50%;
}

.site-footer__brand {
    width: 190px;
    max-height: 60px;
    margin-bottom: 22px;
    padding: 8px 12px;
    object-fit: contain;
    background: #fff;
    border-radius: 11px;
}

.site-footer h5 {
    margin-bottom: 20px;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.site-footer p {
    max-width: 410px;
    font-size: 13px;
}

.site-footer__links {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__links a {
    color: rgba(255, 255, 255, .66);
    font-size: 13px;
}

.site-footer__links a:hover {
    color: #fff;
}

.site-footer__social {
    display: flex;
    gap: 8px;
    margin-top: 22px;
}

.site-footer__social a {
    display: grid;
    width: 37px;
    height: 37px;
    color: rgba(255, 255, 255, .75);
    place-items: center;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
}

.site-footer__social a:hover {
    color: #fff;
    background: var(--htfu-red);
}

.site-footer__bottom {
    position: relative;
    z-index: 1;
    margin-top: 54px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.site-footer__bottom a {
    color: #fff;
}

.site-footer .goog-te-gadget {
    color: rgba(255, 255, 255, .45);
    font-family: "Manrope", sans-serif;
    font-size: 10px;
}

.site-footer .goog-te-combo {
    min-height: 38px;
    margin: 0;
    padding: 7px 10px;
    color: var(--htfu-ink);
    background: #fff;
    border: 0;
    border-radius: 9px;
}

.back-to-top {
    right: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    border-radius: 14px !important;
}

/* Keep the legacy utility names aligned to the new system. */
.text-primary {
    color: var(--htfu-ink) !important;
}

.text-secondary {
    color: var(--htfu-red) !important;
}

.text-muted {
    color: var(--htfu-muted) !important;
}

.bg-primary {
    background-color: var(--htfu-ink) !important;
}

.bg-secondary {
    background-color: var(--htfu-red) !important;
}

.border-secondary {
    border-color: transparent !important;
}

@media (max-width: 1199.98px) {
    .navbar {
        padding-inline: 20px !important;
    }

    .navbar-light .navbar-nav .nav-link {
        padding-inline: 8px;
        font-size: 12px;
    }

    .navbar__cta {
        margin-left: 6px;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        min-height: 74px;
        padding-block: 10px !important;
    }

    .navbar-light .navbar-brand img {
        width: 160px;
    }

    .navbar-collapse {
        max-height: calc(100vh - 95px);
        margin-top: 10px;
        padding: 12px;
        overflow-y: auto;
        background: #fff;
        border-top: 1px solid var(--htfu-line);
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top .navbar-light .navbar-nav .nav-link {
        margin: 2px 0;
        padding: 11px 12px;
        border-radius: 9px;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        background: var(--htfu-red-soft);
    }

    .navbar-light .navbar-nav .nav-link::before {
        display: none;
    }

    .navbar .dropdown-menu {
        margin: 2px 0 8px !important;
        box-shadow: none;
    }

    .navbar__cta {
        width: 100%;
        margin: 8px 0 2px;
    }

    .hero-visual {
        max-width: 390px;
        margin: 70px auto 0;
    }

    .home-section__title {
        max-width: 760px;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 14.5px;
    }

    .bg-breadcrumb {
        min-height: 120px;
    }

    .bg-breadcrumb .row > div {
        text-align: left !important;
    }

    .bg-breadcrumb .breadcrumb,
    .bg-breadcrumb .float-end {
        float: none !important;
        justify-content: flex-start !important;
        margin-top: 8px !important;
    }

    .container-fluid.contact,
    .container-fluid.features {
        padding-block: 48px !important;
    }

    .features .col-lg-6.py-4 {
        padding-top: 8px !important;
    }

    .features .col-lg-6.py-4 .float-end,
    .features .col-lg-6.py-4 .float-center {
        float: none !important;
    }

    .features .col-lg-6.py-4,
    .features .col-lg-6.py-4 .d-flex {
        flex-wrap: wrap;
        justify-content: flex-start !important;
    }

    .features form .btn.mt-4 {
        margin-top: 4px !important;
    }

    .features > .container-fluid.px-0 {
        padding-inline: 14px !important;
    }

    .features > .container-fluid > .row.g-0 {
        gap: 16px;
        flex-wrap: wrap;
    }

    .features > .container-fluid > .row.g-0 > .col-lg-8 {
        width: 100%;
    }

    .features > .container-fluid > .row.g-0 #mapContainer {
        height: 540px !important;
    }

    .trust-strip {
        margin-top: -18px;
    }

    .trust-strip__inner {
        grid-template-columns: 1fr;
        padding: 8px 16px;
    }

    .trust-item {
        justify-content: flex-start;
        padding: 13px 4px;
        border-right: 0;
        border-bottom: 1px solid var(--htfu-line);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .home-hero h1 {
        font-size: clamp(3rem, 15vw, 4.4rem);
    }

    .hero-float--top {
        left: -10px;
    }

    .hero-float--bottom {
        right: -8px;
    }

    .story-visual,
    .story-visual img {
        min-height: 390px;
    }

    .site-footer {
        padding-top: 58px;
    }

    .site-footer__bottom {
        text-align: center;
    }

    .floating-btn {
        right: 82px;
        bottom: 20px;
        left: auto;
        width: 44px;
        height: 44px;
        padding: 0 !important;
        font-size: 0;
        border-radius: 14px !important;
    }

    .floating-btn i {
        margin: 0 !important;
        font-size: 15px;
    }

    .back-to-top {
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 479.98px) {
    .navbar {
        padding-inline: 14px !important;
    }

    .navbar-light .navbar-brand img {
        width: 145px;
    }

    .home-hero__actions .btn {
        width: 100%;
    }

    .hero-visual {
        padding-inline: 8px;
    }

    .hero-float {
        min-width: 178px;
        padding: 10px 12px;
    }

    .hero-float strong {
        font-size: 11px;
    }

    .hero-float--top {
        top: -35px;
        left: 0;
    }

    .hero-float--bottom {
        right: 0;
        bottom: 15px;
    }

    .features .bg-light.rounded.p-3,
    .contact .bg-light.py-5.rounded,
    .contact .bg-light.rounded,
    .features .bg-light.rounded {
        padding: 18px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
