:root {
    --tf-dark: #111827;
    --tf-ink: #243041;
    --tf-muted: #64748b;
    --tf-line: #e5e7eb;
    --tf-soft: #f8fafc;
    --tf-orange: #ff6832;
    --tf-button-hover-bg: #fff4f0;
    --tf-button-hover-text: #ff6832;
}

body {
    color: var(--tf-ink);
    overflow-x: hidden;
}

.tf-topbar {
    background: rgba(17, 24, 39, .94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
}

.tf-topbar a {
    color: #fff;
}

.tf-topbar-contact,
.tf-social-links {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.tf-topbar-contact i {
    color: var(--tf-orange);
    margin-right: 6px;
}

.tf-social-links {
    gap: 8px;
}

.tf-social-links a {
    align-items: center;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    display: inline-flex;
    height: 32px;
    justify-content: center;
    width: 32px;
}

.tf-social-links a:hover {
    background: var(--tf-orange);
    border-color: var(--tf-orange);
    color: #fff;
}

.tf-header {
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, .64);
    box-shadow: 0 16px 50px rgba(15, 23, 42, .08);
    position: sticky;
    top: 0;
    z-index: 99;
}

.tf-header .navbar {
    min-height: 86px;
}

.tf-header .navbar-brand {
    flex-shrink: 0;
    max-width: 220px;
}

.tf-header .navbar-brand img {
    display: block;
    height: 42px;
    max-width: 100%;
    width: auto;
}

.tf-nav a {
    color: var(--tf-dark);
    font-weight: 700;
    margin-left: 26px;
}

.tf-nav a:hover,
.tf-nav a.active {
    color: var(--tf-orange);
}

.theme-btn,
.tf-nav a.theme-btn {
    border: 1px solid rgba(255, 104, 50, .9) !important;
    color: #fff !important;
}

.theme-btn::after {
    background-color: var(--tf-button-hover-bg) !important;
}

.theme-btn:hover,
.theme-btn:focus,
.theme-btn:active {
    background-color: var(--tf-button-hover-bg) !important;
    border-color: rgba(255, 104, 50, .68) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 104, 50, .22);
    color: var(--tf-button-hover-text) !important;
}

.theme-btn:hover i,
.theme-btn:focus i,
.theme-btn:active i {
    color: var(--tf-button-hover-text) !important;
}

.tf-nav a.theme-btn:hover,
.tf-nav a.theme-btn:focus,
.tf-nav a.theme-btn:active,
.tf-nav a.theme-btn:hover i,
.tf-nav a.theme-btn:focus i,
.tf-nav a.theme-btn:active i {
    color: var(--tf-button-hover-text) !important;
}

.theme-btn:hover::after,
.theme-btn:focus::after,
.theme-btn:active::after {
    background-color: var(--tf-button-hover-bg) !important;
}

.tf-hero {
    background:
        linear-gradient(90deg, rgba(9, 18, 32, .82) 0%, rgba(9, 18, 32, .52) 48%, rgba(9, 18, 32, .22) 100%),
        url("../img/hero/hero-bg-2-generated.png") center/cover no-repeat;
    color: #fff;
    min-height: 720px;
    display: flex;
    align-items: center;
}

.tf-eyebrow {
    color: var(--tf-orange);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.tf-hero h1,
.tf-page-hero h1 {
    color: #fff;
    font-size: clamp(44px, 6vw, 78px);
    line-height: 1.04;
    margin: 18px 0 22px;
}

.tf-hero p,
.tf-page-hero p {
    color: rgba(255, 255, 255, .86);
    font-size: 20px;
    max-width: 720px;
}

.tf-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.tf-pill {
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 4px;
    color: #fff;
    padding: 12px 16px;
    background: rgba(255, 255, 255, .08);
    font-weight: 700;
}

.tf-hero-form {
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 8px;
    padding: 34px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .34);
}

.tf-hero-form-icon {
    align-items: center;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 6px;
    color: #fff;
    display: inline-flex;
    font-size: 28px;
    height: 58px;
    justify-content: center;
    margin-bottom: 20px;
    width: 58px;
}

.tf-hero-form h3 {
    color: #fff;
    margin-bottom: 10px;
}

.tf-hero-form p {
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    margin-bottom: 22px;
}

.tf-hero-form .tf-form input,
.tf-hero-form .tf-form textarea {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .22);
    color: #fff;
}

.tf-hero-form .tf-form input::placeholder,
.tf-hero-form .tf-form textarea::placeholder {
    color: rgba(255, 255, 255, .72);
}

.tf-hero-form .tf-form input:focus,
.tf-hero-form .tf-form textarea:focus {
    border-color: rgba(255, 255, 255, .55);
    outline: none;
}

.tf-hero-form .tf-form textarea {
    height: 56px;
    min-height: 56px;
    resize: vertical;
}

@media (min-width: 768px) {
    .tf-hero-form .tf-form .row.g-3 > .col-12:nth-child(-n+2) {
        flex: 0 0 auto;
        width: 50%;
    }
}

.tf-section {
    padding: 100px 0;
}

.tf-section.soft {
    background:
        linear-gradient(135deg, rgba(248, 250, 252, .96), rgba(255, 255, 255, .82)),
        radial-gradient(circle at 18% 18%, rgba(255, 104, 50, .12), transparent 34%),
        radial-gradient(circle at 82% 8%, rgba(17, 24, 39, .08), transparent 28%);
}

.tf-section-title {
    max-width: 760px;
    margin-bottom: 42px;
}

.tf-section-title-full {
    max-width: none;
    width: 100%;
}

.tf-section-title-full p {
    max-width: 920px;
}

.tf-section-title h2 {
    color: var(--tf-dark);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
}

.tf-section-title p {
    color: var(--tf-muted);
    font-size: 18px;
}

.tf-section-title-center {
    margin-left: auto;
    margin-right: auto;
    max-width: 760px;
    text-align: center;
}

.tf-testimonial-card {
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--tf-line);
    border-radius: 10px;
    box-shadow: 0 14px 44px rgba(15, 23, 42, .07);
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 32px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.tf-testimonial-card:hover {
    border-color: rgba(255, 104, 50, .24);
    box-shadow: 0 20px 56px rgba(15, 23, 42, .1);
    transform: translateY(-3px);
}

.tf-testimonial-stars {
    color: var(--tf-orange);
    display: flex;
    font-size: 14px;
    gap: 4px;
    margin-bottom: 18px;
}

.tf-testimonial-card blockquote {
    border: none;
    color: var(--tf-ink);
    flex: 1;
    font-size: 17px;
    line-height: 1.65;
    margin: 0 0 24px;
    padding: 0;
}

.tf-testimonial-card blockquote p {
    margin: 0;
}

.tf-testimonial-author strong {
    color: var(--tf-dark);
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.tf-testimonial-author span {
    color: var(--tf-muted);
    font-size: 14px;
}

.tf-content-stack {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.tf-content-stack .tf-eyebrow {
    margin-bottom: 0;
}

.tf-content-stack h2 {
    margin: 0;
}

.tf-content-stack p {
    margin: 0;
}

.tf-card {
    height: 100%;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 8px;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 18px 60px rgba(15, 23, 42, .08);
    padding: 32px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.tf-card:hover {
    border-color: rgba(255, 104, 50, .28);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .12);
    transform: translateY(-4px);
}

.tf-card .icon {
    color: var(--tf-orange);
    font-size: 34px;
    margin-bottom: 20px;
}

.tf-card h3,
.tf-card h4 {
    color: var(--tf-dark);
}

.tf-card p,
.tf-card li {
    color: var(--tf-muted);
}

.tf-legal-section {
    background:
        linear-gradient(180deg, #fff 0%, #f8fafc 100%),
        radial-gradient(circle at 8% 12%, rgba(255, 104, 50, .08), transparent 30%);
    padding: 90px 0;
}

.tf-legal-content {
    height: auto;
    margin: 0 auto;
    max-width: 980px;
    padding: clamp(30px, 5vw, 58px);
}

.tf-legal-content:hover {
    border-color: rgba(255, 255, 255, .72);
    box-shadow: 0 18px 60px rgba(15, 23, 42, .08);
    transform: none;
}

.tf-legal-content h2 {
    align-items: center;
    color: var(--tf-dark);
    display: flex;
    font-size: clamp(24px, 3vw, 34px);
    gap: 14px;
    line-height: 1.2;
    margin: 42px 0 14px;
}

.tf-legal-content h2:first-child {
    margin-top: 0;
}

.tf-legal-content h2::before {
    background: var(--tf-orange);
    border-radius: 999px;
    content: "";
    flex: 0 0 auto;
    height: 10px;
    width: 10px;
}

.tf-legal-content p {
    color: var(--tf-ink);
    font-size: 17px;
    line-height: 1.78;
    margin: 0;
    max-width: 860px;
}

.tf-legal-content p + p {
    margin-top: 16px;
}

.tf-legal-content a {
    color: var(--tf-orange);
    font-weight: 700;
    text-decoration: none;
}

.tf-legal-content a:hover {
    color: var(--tf-dark);
}

.tf-legal-content .tf-form {
    background: #fff;
    border: 1px solid rgba(226, 232, 240, .95);
    border-radius: 8px;
    box-shadow: 0 18px 54px rgba(15, 23, 42, .08);
    margin-top: 22px;
    padding: clamp(22px, 4vw, 34px);
}

.tf-legal-content .tf-form textarea {
    min-height: 118px;
}

.tf-legal-content .tf-form-check {
    background: rgba(255, 104, 50, .06);
    border: 1px solid rgba(255, 104, 50, .16);
    border-radius: 8px;
    display: block;
    padding: 16px 18px;
}

.tf-legal-content .wpcf7-list-item {
    margin: 0;
}

.tf-legal-content .wpcf7-list-item label {
    align-items: flex-start;
    cursor: pointer;
    display: flex;
    gap: 10px;
    margin: 0;
}

.tf-legal-content .wpcf7-list-item input {
    flex: 0 0 auto;
    margin-top: 5px;
    width: auto;
}

.tf-legal-content .wpcf7-list-item-label {
    color: var(--tf-ink);
    font-size: 15px;
    line-height: 1.55;
}

.tf-about-media {
    position: relative;
}

.tf-active-badge {
    align-items: center;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(34, 197, 94, .32);
    border-radius: 999px;
    bottom: 24px;
    box-shadow: 0 16px 44px rgba(15, 23, 42, .14);
    color: #15803d;
    display: inline-flex;
    font-size: 15px;
    font-weight: 800;
    gap: 10px;
    left: 24px;
    padding: 12px 18px 12px 16px;
    position: absolute;
    z-index: 2;
}

.tf-active-badge-indicator {
    display: inline-flex;
    height: 10px;
    position: relative;
    width: 10px;
}

.tf-active-badge-dot {
    background: #22c55e;
    border-radius: 50%;
    height: 10px;
    left: 0;
    position: absolute;
    top: 0;
    width: 10px;
}

.tf-active-badge-pulse {
    animation: tf-active-pulse 2s ease-out infinite;
    background: rgba(34, 197, 94, .55);
    border-radius: 50%;
    height: 10px;
    left: 0;
    position: absolute;
    top: 0;
    width: 10px;
}

@keyframes tf-active-pulse {
    0% {
        opacity: .9;
        transform: scale(1);
    }

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

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

.tf-service-card {
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 8px;
    box-shadow: 0 18px 60px rgba(15, 23, 42, .08);
    display: grid;
    grid-template-columns: minmax(210px, 38%) 1fr;
    height: 100%;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.tf-service-card:hover {
    border-color: rgba(255, 104, 50, .34);
    box-shadow: 0 26px 78px rgba(15, 23, 42, .13);
    transform: translateY(-5px);
}

.tf-service-card-media {
    background-position: center;
    background-size: cover;
    min-height: 290px;
    padding: 24px;
    position: relative;
}

.tf-service-card-media::before {
    background: linear-gradient(180deg, rgba(17, 24, 39, .18), rgba(17, 24, 39, .78));
    content: "";
    inset: 0;
    position: absolute;
}

.tf-service-card-media span,
.tf-service-card-media .icon {
    position: relative;
    z-index: 1;
}

.tf-service-card-media span {
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
}

.tf-service-card-media .icon {
    align-items: center;
    background: rgba(255, 255, 255, .16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 8px;
    bottom: 24px;
    color: #fff;
    display: inline-flex;
    font-size: 30px;
    height: 64px;
    justify-content: center;
    position: absolute;
    width: 64px;
}

.tf-service-card-body {
    padding: 34px;
}

.tf-service-card-body h3 {
    color: var(--tf-dark);
    margin-bottom: 14px;
}

.tf-service-card-body p,
.tf-service-card-body li {
    color: var(--tf-muted);
}

.tf-service-card-body ul {
    display: grid;
    gap: 8px;
    list-style: none;
    margin: 22px 0 26px;
    padding: 0;
}

.tf-service-card-body li {
    align-items: center;
    display: flex;
    gap: 10px;
}

.tf-service-card-body li::before {
    background: var(--tf-orange);
    border-radius: 50%;
    content: "";
    height: 7px;
    width: 7px;
}

.tf-service-link {
    align-items: center;
    color: var(--tf-orange);
    display: inline-flex;
    font-weight: 800;
    gap: 10px;
}

.tf-service-link i {
    transform: rotate(-45deg);
}

.tf-detail-layout {
    display: grid;
    gap: 44px;
    grid-template-columns: minmax(0, 1fr) 360px;
}

.tf-detail-content {
    display: grid;
    gap: 24px;
}

.tf-detail-hero {
    box-shadow: 0 20px 60px rgba(15, 23, 42, .12);
}

.tf-detail-card {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .88);
    border-radius: 10px;
    box-shadow: 0 14px 44px rgba(15, 23, 42, .07);
    overflow: hidden;
    padding: 32px 34px;
    position: relative;
}

.tf-detail-card:hover {
    box-shadow: 0 14px 44px rgba(15, 23, 42, .07);
    transform: none;
}

.tf-detail-card-label {
    color: var(--tf-orange);
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.tf-detail-card h2 {
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.15;
    margin-bottom: 16px;
}

.tf-detail-card-intro {
    padding-left: 38px;
}

.tf-detail-card-intro::before {
    background: var(--tf-orange);
    border-radius: 10px 0 0 10px;
    content: "";
    inset: 0 auto 0 0;
    position: absolute;
    width: 4px;
}

.tf-detail-card-includes {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 250, 252, .92));
}

.tf-detail-card-audience {
    background: linear-gradient(135deg, rgba(255, 104, 50, .08), rgba(255, 255, 255, .94));
    border-color: rgba(255, 104, 50, .18);
}

.tf-detail-card-audience p:last-child {
    font-size: 17px;
    margin-bottom: 0;
}

.tf-detail-content h2,
.tf-detail-sidebar h3 {
    color: var(--tf-dark);
}

.tf-detail-content p,
.tf-detail-content li,
.tf-detail-sidebar p,
.tf-detail-sidebar li {
    color: var(--tf-muted);
}

.tf-detail-list {
    display: grid;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tf-detail-list li {
    align-items: flex-start;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--tf-line);
    border-radius: 0;
    display: block;
    padding: 14px 0;
}

.tf-detail-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tf-detail-sidebar {
    align-self: start;
    position: sticky;
    top: 120px;
}

.tf-mini-services {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.tf-mini-services a {
    border: 1px solid var(--tf-line);
    border-radius: 6px;
    color: var(--tf-dark);
    font-weight: 700;
    padding: 13px 14px;
}

.tf-mini-services a:hover,
.tf-mini-services a.active {
    border-color: rgba(255, 104, 50, .45);
    color: var(--tf-orange);
}

.tf-page-hero {
    background:
        linear-gradient(90deg, rgba(9, 18, 32, .82) 0%, rgba(9, 18, 32, .52) 48%, rgba(9, 18, 32, .22) 100%),
        url("../img/breadcrumb-generated.png") center/cover no-repeat;
    padding: 150px 0 120px;
}

.tf-card > p + .tf-form,
.tf-card > h3 + .tf-form {
    margin-top: 24px;
}

.tf-form .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1.25rem;
    row-gap: 1.25rem;
}

.tf-form input,
.tf-form textarea,
.tf-form select {
    width: 100%;
    border: 1px solid var(--tf-line);
    border-radius: 6px;
    padding: 16px 18px;
    color: var(--tf-dark);
    background: #fff;
}

.tf-form .wpcf7-form p {
    margin: 0;
}

.tf-form .wpcf7-form br {
    display: none;
}

.tf-form .wpcf7-not-valid-tip {
    color: #dc2626;
    display: block;
    font-size: 13px;
    margin-top: 6px;
}

.tf-form .wpcf7-response-output {
    border-radius: 6px;
    font-size: 14px;
    margin: 18px 0 0 !important;
    padding: 12px 14px !important;
}

.tf-form .wpcf7-spinner {
    margin: 12px 0 0 12px;
}

.tf-form textarea {
    min-height: 150px;
}

.tf-quote-cta {
    padding: 80px 0;
}

.tf-quote-cta-panel {
    background:
        linear-gradient(135deg, rgba(17, 24, 39, .97), rgba(17, 24, 39, .9)),
        radial-gradient(circle at 85% 20%, rgba(255, 104, 50, .28), transparent 42%);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    box-shadow: 0 28px 80px rgba(15, 23, 42, .18);
    color: #fff;
    overflow: hidden;
    padding: clamp(40px, 5vw, 64px);
    position: relative;
}

.tf-quote-cta-panel::after {
    background: linear-gradient(90deg, transparent, rgba(255, 104, 50, .18), transparent);
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.tf-quote-cta-panel h2 {
    color: #fff;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    margin: 16px 0 18px;
}

.tf-quote-cta-panel p {
    color: rgba(255, 255, 255, .8);
    font-size: 18px;
    margin-bottom: 28px;
    max-width: 620px;
}

.tf-quote-cta-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.tf-quote-cta-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tf-quote-cta-point {
    align-items: center;
    color: rgba(255, 255, 255, .86);
    display: flex;
    font-size: 16px;
    font-weight: 600;
    gap: 12px;
}

.tf-quote-cta-point i {
    color: var(--tf-orange);
    font-size: 18px;
    width: 20px;
}

.tf-quote-cta-actions {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
    justify-content: center;
    padding: 28px;
    width: 100%;
}

.tf-quote-cta-actions .theme-btn {
    justify-content: center;
    width: 100%;
}

.tf-quote-cta-contact {
    align-items: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 6px;
    color: #fff;
    display: flex;
    gap: 14px;
    padding: 16px 18px;
    text-decoration: none;
    transition: background .25s ease, border-color .25s ease;
}

.tf-quote-cta-contact:hover {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 104, 50, .35);
    color: #fff;
}

.tf-quote-cta-contact i {
    align-items: center;
    background: rgba(255, 104, 50, .16);
    border-radius: 50%;
    color: var(--tf-orange);
    display: inline-flex;
    flex-shrink: 0;
    font-size: 18px;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.tf-quote-cta-contact small {
    color: rgba(255, 255, 255, .62);
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.tf-quote-cta-contact strong {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    word-break: break-word;
}

.tf-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tf-contact-item {
    align-items: center;
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--tf-line);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, .06);
    color: inherit;
    display: flex;
    gap: 16px;
    padding: 20px 22px;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

a.tf-contact-item:hover {
    border-color: rgba(255, 104, 50, .28);
    box-shadow: 0 18px 52px rgba(15, 23, 42, .1);
    color: inherit;
    transform: translateY(-2px);
}

a.tf-contact-item:hover strong {
    color: var(--tf-orange);
}

.tf-contact-item-icon {
    align-items: center;
    background: rgba(255, 104, 50, .1);
    border-radius: 6px;
    color: var(--tf-orange);
    display: inline-flex;
    flex-shrink: 0;
    font-size: 20px;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.tf-contact-item-label {
    color: var(--tf-muted);
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.tf-contact-item-body strong,
.tf-contact-item-body > span:not(.tf-contact-item-label) {
    color: var(--tf-dark);
    display: block;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
}

.tf-form-consent {
    margin-top: 8px;
}

.tf-form-submit {
    margin-top: 12px;
}

.tf-form-check {
    align-items: flex-start;
    color: var(--tf-muted);
    cursor: pointer;
    display: inline-flex;
    font-size: 15px;
    gap: 10px;
    line-height: 1.5;
    margin: 0;
}

.tf-form-check input {
    accent-color: var(--tf-orange);
    flex-shrink: 0;
    height: 18px;
    margin-top: 3px;
    width: 18px;
}

.tf-footer {
    background: var(--tf-dark);
    color: rgba(255, 255, 255, .78);
    padding: 70px 0 28px;
}

.tf-footer .col-lg-5 > img {
    display: block;
    height: auto;
    max-width: 100%;
    width: 50%;
}

.tf-footer h4 {
    color: #fff;
}

.tf-footer a {
    color: rgba(255, 255, 255, .78);
}

.tf-footer a:hover {
    color: #fff;
}

.tf-footer-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tf-footer-menu li {
    margin: 0;
    padding: 0;
}

.tf-footer-menu a {
    display: inline-block;
}

.tf-footer-panel-title {
    margin: 0;
}

.tf-footer-toggle {
    align-items: center;
    background: transparent;
    border: 0;
    color: #fff;
    display: flex;
    font: inherit;
    font-size: inherit;
    font-weight: inherit;
    justify-content: space-between;
    line-height: inherit;
    margin: 0;
    padding: 0;
    text-align: left;
    width: 100%;
}

.tf-footer-toggle::after {
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    content: "";
    display: none;
    flex-shrink: 0;
    height: 8px;
    margin-left: 12px;
    transform: rotate(45deg);
    transition: transform .2s ease;
    width: 8px;
}

.tf-footer-toggle:not(.collapsed)::after {
    transform: rotate(-135deg);
}

.tf-footer-panel-body > p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .tf-footer .col-lg-5 {
        margin-bottom: 24px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .tf-footer-panel {
        border-top: 1px solid rgba(255, 255, 255, .12);
        margin: 0;
        padding: 0 12px;
    }

    .tf-footer-panel-title {
        margin: 0;
    }

    .tf-footer-toggle {
        padding: 16px 0;
    }

    .tf-footer-toggle::after {
        display: block;
    }

    .tf-footer-panel-body {
        padding: 0 0 16px;
    }

    .tf-footer-panel-body.collapsing {
        overflow: hidden;
    }
}

@media (min-width: 768px) {
    .tf-footer-toggle {
        cursor: default;
        pointer-events: none;
    }

    .tf-footer-toggle::after {
        display: none;
    }

    .tf-footer-panel-body.collapse {
        display: block !important;
        height: auto !important;
        visibility: visible;
    }
}

.tf-footer-bottom {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    margin-top: 45px;
    padding: 20px;
}

.tf-footer-social {
    align-items: center;
    display: inline-flex;
    gap: 8px;
}

.tf-footer-social a {
    align-items: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.tf-footer-social a:hover {
    background: var(--tf-orange);
    border-color: var(--tf-orange);
    color: #fff;
}

@media (max-width: 991px) {
    .tf-topbar .tf-social-links {
        display: none;
    }

    .tf-topbar .container,
    .tf-topbar-contact {
        justify-content: center !important;
        text-align: center;
    }

    .tf-nav {
        padding-bottom: 22px;
    }

    .tf-nav a {
        display: block;
        margin: 14px 0 0;
    }

    .tf-hero {
        min-height: auto;
        padding: 110px 0;
    }

    .tf-service-card,
    .tf-detail-layout {
        grid-template-columns: 1fr;
    }

    .tf-detail-sidebar {
        position: static;
    }

    .tf-quote-cta-actions {
        margin-top: 8px;
    }
}

@media (max-width: 575px) {
    .tf-hero .row,
    .tf-section .row {
        --bs-gutter-x: 0;
    }

    .tf-form .row {
        --bs-gutter-x: 1rem;
    }

    .tf-hero-actions {
        justify-content: center;
        width: 100%;
    }

    .tf-hero-actions .theme-btn {
        flex: 1 1 100%;
        justify-content: center;
        text-align: center;
        width: 100%;
    }
}
