:root {
    --tig-green: #0a7d44;
    --tig-green-dark: #056035;
    --tig-green-deep: #043f28;
    --tig-yellow: #e3cf1c;
    --tig-white: #ffffff;
    --tig-off-white: #f7f7f5;
    --tig-text: #202020;
    --tig-muted: #5f5f5f;
    --tig-border: #dedede;
    --tig-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    --tig-radius: 12px;
    --tig-container: 1360px;
    --tig-font: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--tig-text);
    background: var(--tig-off-white);
    font-family: var(--tig-font);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.tig-container {
    width: min(calc(100% - 48px), var(--tig-container));
    margin: 0 auto;
}

.tig-site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(6px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.tig-site-header__inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.tig-branding,
.tig-branding__link,
.custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.tig-branding img,
.custom-logo {
    width: auto;
    height: 64px;
}

.tig-header-actions-wrap {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.tig-menu a {
    font-size: 21px;
    font-weight: 500;
    color: #262626;
}

.tig-header-utility {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tig-search-link {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1f1f1f;
}

.tig-search-link svg {
    width: 24px;
    height: 24px;
}

.tig-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 14px 24px;
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.tig-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.tig-button--brand {
    background: var(--tig-green);
    color: var(--tig-white);
}

.tig-button--secondary {
    padding-inline: 20px;
}

.tig-button--large {
    min-width: 220px;
    font-size: 22px;
    padding: 18px 34px;
    border-radius: 10px;
}

.tig-button--light {
    background: #f2f2ec;
    color: #202020;
    min-width: 170px;
    justify-content: space-between;
    padding: 14px 18px;
}

.tig-button__arrow {
    font-size: 30px;
    line-height: 0.8;
}

.tig-main {
    overflow: clip;
}

.tig-hero {
    position: relative;
    min-height: 600px;
}

.tig-hero__bg {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
}

.tig-hero__content {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.tig-hero__copy {
    max-width: 520px;
    color: var(--tig-white);
    padding-block: 90px;
}

.tig-hero__copy h1 {
    margin: 0;
    text-transform: uppercase;
    font-size: clamp(42px, 5vw, 78px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: 0.02em;
}

.tig-hero__copy p {
    margin: 34px 0 18px;
    font-size: 27px;
    font-weight: 500;
}

.tig-hero__underline {
    display: block;
    width: 360px;
    max-width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
}

.tig-location-strip {
    background: #fafafa;
    padding: 8px 0 10px;
    border-bottom: 1px solid #e8e8e8;
}

.tig-location-strip__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.tig-location-pill {
    background: linear-gradient(180deg, #076839 0%, #0a6037 100%);
    color: var(--tig-white);
    font-size: 22px;
    font-weight: 700;
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px 10px;
}

.tig-section {
    padding: 42px 0 18px;
}

.tig-section--products-page {
    padding-top: 52px;
    padding-bottom: 18px;
}

.tig-product-grid {
    display: grid;
    gap: 24px;
}

.tig-product-grid--three {
    grid-template-columns: repeat(3, 1fr);
}

.tig-product-grid--four {
    grid-template-columns: repeat(4, 1fr);
}

.tig-product-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: linear-gradient(180deg, #0b8c46 0%, #0b6d3e 55%, #07532f 100%);
    box-shadow: var(--tig-shadow);
    min-height: 480px;
}

.tig-products-page .tig-product-card,
.tig-main--products .tig-product-card {
    min-height: 548px;
    border-radius: 10px;
}

.tig-product-card::before,
.tig-product-card::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.tig-product-card::before {
    width: 380px;
    height: 380px;
    right: -210px;
    bottom: -190px;
    border: 10px solid rgba(231, 209, 23, 0.9);
}

.tig-product-card::after {
    width: 320px;
    height: 320px;
    right: -160px;
    bottom: -160px;
    border: 8px solid rgba(27, 155, 71, 0.85);
}

.tig-card--home::before {
    top: -170px;
    right: -80px;
    bottom: auto;
}

.tig-card--home::after {
    top: -120px;
    right: -22px;
    bottom: auto;
}

.tig-card--life-person::before {
    border-color: rgba(31, 152, 88, 0.95);
}

.tig-card--life-person::after {
    border-color: rgba(11, 102, 64, 0.95);
}

.tig-product-card__image-wrap {
    height: 255px;
    position: relative;
    z-index: 2;
}

.tig-main--products .tig-product-card__image-wrap {
    height: 290px;
}

.tig-product-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tig-product-card__content {
    position: relative;
    z-index: 2;
    color: var(--tig-white);
    padding: 22px 24px 28px;
    display: flex;
    flex-direction: column;
    min-height: calc(100% - 255px);
}

.tig-main--products .tig-product-card__content {
    min-height: calc(100% - 290px);
}

.tig-product-card__content h3 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 800;
}

.tig-product-card__content p {
    margin: 0 0 26px;
    font-size: 18px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.94);
}

.tig-product-card .tig-button {
    margin-top: auto;
    align-self: flex-start;
}

.tig-products-heading {
    text-align: center;
    margin-bottom: 44px;
}

.tig-products-heading h1 {
    margin: 0;
    text-transform: uppercase;
    font-size: clamp(44px, 4vw, 74px);
    line-height: 1.04;
    font-weight: 800;
}

.tig-products-heading__subline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 14px;
}

.tig-products-heading__subline span {
    width: 140px;
    height: 3px;
    background: rgba(10, 125, 68, 0.7);
}

.tig-products-heading__subline p {
    margin: 0;
    font-size: 28px;
    color: #3a3a3a;
}

.tig-cta-section {
    padding: 14px 0 36px;
}

.tig-cta-section--products {
    padding-top: 0;
}

.tig-cta-box {
    text-align: center;
    padding: 10px 0 28px;
}

.tig-cta-box--lines {
    position: relative;
}

.tig-cta-box--lines::before,
.tig-cta-box--lines::after {
    content: '';
    position: absolute;
    top: 30px;
    width: min(32%, 420px);
    height: 2px;
    background: #d8d8d8;
}

.tig-cta-box--lines::before {
    left: 0;
}

.tig-cta-box--lines::after {
    right: 0;
}

.tig-cta-box h2 {
    margin: 0 0 12px;
    font-size: clamp(44px, 4vw, 56px);
    color: var(--tig-green-dark);
    font-weight: 800;
}

.tig-cta-box p {
    margin: 0 0 24px;
    font-size: clamp(24px, 2.2vw, 30px);
    color: #313131;
}

.tig-site-footer {
    margin-top: 20px;
    background: linear-gradient(180deg, rgba(6, 101, 58, 0.98) 0%, rgba(3, 66, 40, 1) 100%);
    color: var(--tig-white);
}

.tig-site-footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.3fr;
    gap: 28px;
    padding: 36px 0 28px;
}

.tig-footer-col h3 {
    margin: 0 0 18px;
    font-size: 24px;
    font-weight: 800;
}

.tig-link-list,
.tig-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tig-link-list li,
.tig-contact-list li {
    margin-bottom: 14px;
    font-size: 18px;
}

.tig-link-list li::before {
    content: '▸';
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.95);
}

.tig-link-list--locations li::before {
    content: '•';
}

.tig-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tig-contact-list__icon {
    width: 24px;
    display: inline-flex;
    justify-content: center;
}

.tig-footer-col--image {
    display: flex;
    align-items: center;
}

.tig-footer-image-frame {
    width: 100%;
    max-width: 470px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.tig-footer-image-frame img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.tig-site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    min-height: 96px;
    display: grid;
    grid-template-columns: 1.6fr 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 18px 0 24px;
}

.tig-footer-copy,
.tig-footer-meta {
    font-size: 18px;
}

.tig-footer-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tig-social-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.tig-social-links a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.tig-page-default__content {
    padding: 60px 0;
}

.tig-page-default__header h1 {
    margin-top: 0;
    font-size: clamp(36px, 4vw, 52px);
}

.tig-page-default__body {
    font-size: 18px;
    line-height: 1.65;
}

@media (max-width: 1280px) {
    .tig-menu {
        gap: 24px;
    }

    .tig-menu a {
        font-size: 18px;
    }

    .tig-product-grid--four {
        grid-template-columns: repeat(2, 1fr);
    }

    .tig-site-footer__top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .tig-site-header__inner,
    .tig-header-actions-wrap {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tig-hero,
    .tig-hero__content {
        min-height: 520px;
    }

    .tig-location-strip__grid,
    .tig-product-grid--three {
        grid-template-columns: repeat(2, 1fr);
    }

    .tig-cta-box--lines::before,
    .tig-cta-box--lines::after {
        display: none;
    }

    .tig-site-footer__bottom {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
}

@media (max-width: 767px) {
    .tig-container {
        width: min(calc(100% - 28px), var(--tig-container));
    }

    .tig-branding img,
    .custom-logo {
        height: 52px;
    }

    .tig-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 18px;
    }

    .tig-menu a {
        font-size: 17px;
    }

    .tig-header-utility {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tig-button {
        width: auto;
    }

    .tig-hero,
    .tig-hero__content {
        min-height: 430px;
    }

    .tig-hero__copy {
        padding-block: 54px;
    }

    .tig-hero__copy p {
        font-size: 22px;
    }

    .tig-hero-slider {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.tig-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.tig-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.tig-hero-slide__bg {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.tig-hero-slider .tig-hero__content {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    z-index: 3;
}

.tig-hero-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.tig-hero-slider__arrow--prev {
    left: 24px;
}

.tig-hero-slider__arrow--next {
    right: 24px;
}

.tig-hero-slider__dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}

.tig-hero-slider__dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    padding: 0;
}

.tig-hero-slider__dot.is-active {
    background: #ffffff;
}

@media (max-width: 991px) {
    .tig-hero-slider__arrow {
        width: 44px;
        height: 44px;
        font-size: 28px;
    }

    .tig-hero-slider__arrow--prev {
        left: 14px;
    }

    .tig-hero-slider__arrow--next {
        right: 14px;
    }
}

@media (max-width: 767px) {
    .tig-hero-slider,
    .tig-hero-slider .tig-hero__content {
        min-height: 460px;
    }

    .tig-hero-slider__dots {
        bottom: 18px;
    }
}

    .tig-location-strip__grid,
    .tig-product-grid--three,
    .tig-product-grid--four,
    .tig-site-footer__top {
        grid-template-columns: 1fr;
    }

    .tig-location-pill {
        min-height: 68px;
        font-size: 20px;
    }

    .tig-product-card,
    .tig-main--products .tig-product-card {
        min-height: 450px;
    }

    .tig-product-card__image-wrap,
    .tig-main--products .tig-product-card__image-wrap {
        height: 240px;
    }

    .tig-product-card__content h3 {
        font-size: 30px;
    }

    .tig-product-card__content p,
    .tig-link-list li,
    .tig-contact-list li,
    .tig-footer-copy,
    .tig-footer-meta {
        font-size: 17px;
    }

    .tig-products-heading__subline {
        flex-direction: column;
        gap: 12px;
    }

    .tig-products-heading__subline span {
        width: 120px;
    }

    .tig-products-heading__subline p {
        font-size: 22px;
    }

    .tig-cta-box h2 {
        font-size: 38px;
    }

    .tig-cta-box p {
        font-size: 22px;
    }

    .tig-button--large {
        width: 100%;
        max-width: 320px;
    }
}

.tig-product-page {
    background: #ffffff;
}

.tig-product-hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
}

.tig-product-hero__bg {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.tig-product-hero__content {
    position: relative;
    z-index: 2;
    min-height: 560px;
    display: flex;
    align-items: center;
}

.tig-product-hero__copy {
    max-width: 560px;
    color: #ffffff;
}

.tig-product-hero__copy h1 {
    margin: 0 0 18px;
    font-size: 64px;
    line-height: 1.02;
    font-weight: 800;
}

.tig-product-hero__copy p {
    margin: 0 0 26px;
    font-size: 24px;
    line-height: 1.45;
}

.tig-product-section {
    padding: 72px 0;
}

.tig-product-section--alt {
    background: #f7f7f7;
}

.tig-product-section__intro {
    max-width: 860px;
    margin: 0 auto 42px;
    text-align: center;
}

.tig-product-section__intro h2 {
    margin: 0 0 16px;
    font-size: 40px;
    line-height: 1.15;
    color: #0b8f3a;
}

.tig-product-section__intro p {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
}

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

.tig-feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.tig-feature-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    color: #111827;
}

.tig-feature-card p {
    margin: 0;
    color: #4b5563;
    line-height: 1.65;
}

.tig-two-col {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
    align-items: center;
}

.tig-two-col__media img {
    width: 100%;
    display: block;
    border-radius: 18px;
}

.tig-two-col__content h2 {
    margin: 0 0 18px;
    font-size: 40px;
    line-height: 1.15;
    color: #0b8f3a;
}

.tig-check-list {
    margin: 0 0 28px;
    padding-left: 20px;
}

.tig-check-list li {
    margin-bottom: 12px;
    color: #374151;
    line-height: 1.65;
}

.tig-product-cta {
    padding: 72px 0 90px;
    text-align: center;
}

.tig-product-cta h2 {
    margin: 0 0 14px;
    font-size: 42px;
    color: #0b8f3a;
}

.tig-product-cta p {
    margin: 0 0 26px;
    font-size: 20px;
    color: #374151;
}

@media (max-width: 991px) {
    .tig-product-hero__copy h1 {
        font-size: 48px;
    }

    .tig-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tig-two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .tig-product-hero,
    .tig-product-hero__content {
        min-height: 460px;
    }

    .tig-product-hero__copy h1 {
        font-size: 38px;
    }

    .tig-product-hero__copy p {
        font-size: 19px;
    }

    .tig-product-section,
    .tig-product-cta {
        padding: 52px 0;
    }

    .tig-feature-grid {
        grid-template-columns: 1fr;
    }

    .tig-product-section__intro h2,
    .tig-two-col__content h2,
    .tig-product-cta h2 {
        font-size: 30px;
    }
}

.tig-main--products .tig-product-grid--four {
    align-items: stretch;
}

.tig-main--products .tig-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tig-main--products .tig-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.tig-main--products .tig-product-card__content {
    gap: 10px;
}

.tig-main--products .tig-product-card__content h3 {
    min-height: 64px;
}

.tig-main--products .tig-product-card__content p {
    min-height: 78px;
}

.tig-main--products .tig-product-card .tig-button {
    min-width: 190px;
}

.tig-main--products .tig-products-heading {
    margin-bottom: 52px;
}

.tig-main--products .tig-cta-box {
    padding-top: 22px;
}

@media (max-width: 1199px) {
    .tig-product-grid--four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .tig-product-grid--four {
        grid-template-columns: 1fr;
    }

    .tig-main--products .tig-product-card__content h3,
    .tig-main--products .tig-product-card__content p {
        min-height: auto;
    }

    .tig-main--products .tig-product-card .tig-button {
        width: 100%;
    }
}

.tig-primary-nav {
    display: flex;
    align-items: center;
}

.tig-menu,
.tig-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.tig-menu li a {
    display: block;
}

.tig-menu .menu-item-has-children > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tig-menu .menu-item-has-children > a::after {
    content: "▼";
    font-size: 11px;
    line-height: 1;
}

.tig-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    z-index: 9999;
}

.tig-menu .sub-menu li {
    width: 100%;
}

.tig-menu .sub-menu li a {
    padding: 10px 18px;
    white-space: nowrap;
    color: #111827;
    font-size: 15px;
}

.tig-menu .sub-menu li a:hover {
    background: #f3f4f6;
    color: #0B8F3A;
}

.tig-menu li:hover > .sub-menu,
.tig-menu li:focus-within > .sub-menu {
    display: block;
}

@media (max-width: 1024px) {
    .tig-menu .menu-item-has-children.open > .sub-menu {
        display: block;
        position: static;
        box-shadow: none;
        background: #f9fafb;
        margin-top: 8px;
        border-radius: 8px;
    }
}

.tig-contact-main {
    padding: 72px 0;
    background: #f8faf8;
}

.tig-contact-grid {
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.tig-contact-info {
    display: grid;
    gap: 20px;
}

.tig-contact-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.tig-contact-card h2,
.tig-contact-card h3 {
    margin: 0 0 12px;
    color: #0b8f3a;
}

.tig-contact-card p {
    margin: 0;
    color: #374151;
    line-height: 1.7;
}

.tig-contact-card a {
    color: #0b8f3a;
    text-decoration: none;
}

.tig-contact-card a:hover {
    text-decoration: underline;
}

.tig-contact-card--form {
    min-height: 100%;
}

.tig-contact-form-wrap .tig-contact-card {
    padding: 34px 30px;
}

.tig-contact-editor-content {
    margin-top: 24px;
}

.tig-contact-editor-content p {
    margin-bottom: 18px;
}

.tig-contact-editor-content input,
.tig-contact-editor-content textarea,
.tig-contact-editor-content select {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 16px;
    background: #fff;
}

.tig-contact-editor-content textarea {
    min-height: 160px;
    resize: vertical;
}

.tig-contact-editor-content input[type="submit"],
.tig-contact-editor-content button,
.tig-contact-editor-content .wp-element-button {
    display: inline-block;
    width: auto;
    border: 0;
    border-radius: 999px;
    background: #0b8f3a;
    color: #ffffff;
    padding: 14px 24px;
    cursor: pointer;
}

.tig-contact-cta {
    background: #ffffff;
}

@media (max-width: 991px) {
    .tig-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .tig-contact-main {
        padding: 52px 0;
    }

    .tig-contact-form-wrap .tig-contact-card,
    .tig-contact-card {
        padding: 24px 20px;
    }
}

.tig-menu .sub-menu .menu-item-has-children {
    position: relative;
}

.tig-primary-nav,
.tig-main-nav {
  display: flex;
  align-items: center;
}

.tig-menu,
.tig-menu ul,
.tig-nav-menu,
.tig-nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tig-menu > li,
.tig-nav-menu > li {
  position: relative;
}

.tig-menu li a,
.tig-nav-menu li a {
  display: block;
}

.tig-menu .menu-item-has-children > a,
.tig-nav-menu .menu-item-has-children > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tig-menu .menu-item-has-children > a::after,
.tig-nav-menu .menu-item-has-children > a::after {
  content: "▾";
  font-size: 16px;
  line-height: 1;
}

/* Right-side flyout submenu */
.tig-menu .sub-menu,
.tig-nav-menu .sub-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 260px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  z-index: 9999;
}

.tig-menu .sub-menu li,
.tig-nav-menu .sub-menu li {
  width: 100%;
}

.tig-menu .sub-menu li a,
.tig-nav-menu .sub-menu li a {
  padding: 10px 18px;
  white-space: nowrap;
  color: #111827;
  font-size: 15px;
}

.tig-menu .sub-menu li a:hover,
.tig-nav-menu .sub-menu li a:hover {
  background: #f3f4f6;
  color: #0B8F3A;
}

.tig-menu li:hover > .sub-menu,
.tig-menu li:focus-within > .sub-menu,
.tig-nav-menu li:hover > .sub-menu,
.tig-nav-menu li:focus-within > .sub-menu {
  display: block;
}

@media (max-width: 1024px) {
  .tig-menu,
  .tig-nav-menu {
    gap: 20px;
  }

  .tig-menu .menu-item-has-children.open > .sub-menu,
  .tig-nav-menu .menu-item-has-children.open > .sub-menu {
    display: block;
    position: static;
    box-shadow: none;
    background: #f9fafb;
    margin-top: 8px;
    border-radius: 8px;
  }
}