/*=========================================
                RESET
=========================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-16);
    font-weight: var(--fw-regular);
    color: var(--text);
    background: var(--body);
    line-height: 1.6;
    overflow-x: hidden;
}

/*=========================================
            CUSTOM SCROLLBAR
=========================================*/

/* Chrome, Edge, Safari */

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border: 3px solid var(--secondary);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

::-webkit-scrollbar-corner {
    background: var(--secondary);
}

/* Firefox */

html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--secondary);
}

.hover-link {
    position: relative;
    display: inline-block;
    align-self: end;
    white-space: nowrap;
    transition: var(--transition);
}

.hover-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0;
    height: 2px;
    background: var(--primary-hover);
    transition: var(--transition);
}

.hover-link:hover::after {
    width: 100%;
}

.hover-link:hover {
    color: var(--primary);
}

/*=========================================
                TYPOGRAPHY
=========================================*/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--heading);
    font-weight: var(--fw-medium);
    line-height: 1.2;
}

p {
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul,
ol {
    list-style: none;
}

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

button,
input,
textarea,
select {
    font: inherit;
    outline: none;
    border: none;
}

button {
    cursor: pointer;
}

ul li {
    color: var(--text-light);
    font-size: var(--fs-16);
    line-height: 1.7;
    list-style: disc;
    margin-left: var(--space-20);
}

/*=========================================
                LAYOUT
=========================================*/

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

.section {
    padding: var(--space-100) 0;
}

/*=========================================
                BUTTONS
=========================================*/

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* width: 180px;
    height: 48px; */
    border: 1px solid var(--primary);
    border-radius: var(--radius-xs);
    background: var(--primary);
    color: var(--white);
    font-size: var(--fs-16);
    font-weight: var(--fw-semibold);
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--white);
    border: 1px solid var(--primary-hover);
    color: var(--primary-hover);
}

/*=========================================
                UTILITIES
=========================================*/

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

.text-left {
    text-align: left;
}

.w-100 {
    width: 100%;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

/*=========================================
                Header
=========================================*/

.header {
    width: 100%;
    height: 88px;
    background: var(--body);
    border-bottom: 1px solid var(--text);
    display: flex;
    align-items: center;
}

.navbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
}

.navbar-left {
    display: flex;
    justify-content: flex-start;
}

.navbar-center {
    display: flex;
    justify-content: center;
}

.navbar-right {
    display: flex;
    justify-content: flex-end;
}

.logo {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: var(--fs-32);
    font-weight: 400;
    line-height: 1;
    color: var(--heading);
}

.logo img {
    width: 275px;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-menu>ul>li>a,
.nav-menu>ul>li>span {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--space-5);
    cursor: pointer;
    font-size: var(--fs-18);
    font-weight: var(--fw-medium);
    color: var(--text-light);
    transition: color var(--transition);
}

.nav-menu>ul>li>a::after,
.nav-menu>ul>li>span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: var(--primary-hover);

    transform: scaleX(0);
    transform-origin: center;
    transition: transform .35s ease;
}

.nav-menu>ul>li>a:hover,
.nav-menu>ul>li>a.active,
.nav-menu>ul>li>span:hover,
.nav-menu>ul>li>span.active {
    color: var(--primary-hover);
}

.nav-menu>ul>li>a:hover::after,
.nav-menu>ul>li>a.active::after,
.nav-menu>ul>li>span:hover::after,
.nav-menu>ul>li>span.active::after {
    transform: scaleX(1);
}

.btn-primary {
    /* width: 180px;
    height: 42px; */
    padding: 10px 48px;
    border-radius: var(--radius-xs);
    background: var(--btn-background);
    font-weight: var(--fw-semibold);
    color: var(--white);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 48px;
    font-weight: var(--fw-semibold);
    border: 1px solid var(--border);
    font-weight: var(--fw-semibold);
    border-radius: var(--radius-xs);
    background: var(--white);
    color: var(--heading);
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--btn-background);
    border-color: var(--btn-background);
    color: var(--white);
}

/*=========================================
            MEGA MENU
=========================================*/

.has-mega-menu {
    position: relative;
    list-style: none;
    margin: 0;
}

.has-mega-menu::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
}

.has-mega-menu>span {
    display: flex;
    align-items: center;
    gap: var(--space-5);
}

.has-mega-menu>span i {
    font-size: var(--fs-12);
    transition: var(--transition);
}

.has-mega-menu:hover>span i {
    transform: rotate(180deg);
}

/*----- DROPDOWN -----*/

.mega-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0%;
    transform: translateX(-12%) translateY(15px);
    width: 620px;
    padding: var(--space-5) var(--space-15) var(--space-5) var(--space-5);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(137, 128, 98, .15);
    border-radius: var(--radius-md);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, .05),
        0 35px 80px rgba(0, 0, 0, .10);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-12%) translateY(0);
}

.mega-menu-small {
    width: 170px;
}

.mega-menu-small .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
}

/*----- ARROW -----*/

/* .mega-menu::before {
    content: "";
    position: absolute;
    top: -9px;
    left: 50%;
    width: 18px;
    height: 18px;
    transform: translateX(-50%) rotate(45deg);
    background: var(--white);
    border-top: 1px solid rgba(137, 128, 98, .15);
    border-left: 1px solid rgba(137, 128, 98, .15);
} */

/*----- GRID -----*/

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10);
}

/*----- LINKS -----*/

.mega-menu-grid a {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-10);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    overflow: hidden;
    font-size: var(--fs-14);
    font-weight: var(--fw-medium);
    color: var(--text-light);
    transition:
        transform .35s ease,
        background .35s ease,
        border-color .35s ease,
        box-shadow .35s ease,
        color .35s ease;
}

.mega-menu-grid a.active {
    background: linear-gradient(90deg,
            rgba(137, 128, 98, .12),
            rgba(255, 255, 255, 0));
    border-color: var(--primary);
    color: var(--heading);
    box-shadow: var(--shadow-sm);
}

.mega-menu-grid a.active::before {
    transform: translateY(-50%) scaleY(1);
}

.mega-menu-grid a.active i {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
}

/* Left Accent */

.mega-menu-grid a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 100%;
    background: var(--primary);
    border-radius: 20px;
    transform: translateY(-50%) scaleY(0);
    transform-origin: center;
    transition: .35s ease;
}

/* Hover */

.mega-menu-grid a:hover {
    background: linear-gradient(90deg,
            rgba(137, 128, 98, .12),
            rgba(255, 255, 255, 0));
    border-color: var(--primary);
    color: var(--heading);
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}

.mega-menu-grid a:hover::before {
    transform: translateY(-50%) scaleY(1);
}

/*----- ICON -----*/

.mega-menu-grid a i {
    font-size: 13px;
    color: var(--primary);
    opacity: 0;
    transform:
        translateX(-12px) rotate(-30deg);
    transition: .35s ease;
}

.mega-menu-grid a:hover i {
    opacity: 1;
    transform:
        translateX(0) rotate(0deg);
}

/*=========================================
                Mobile
=========================================*/

.mobile-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 70px);
    background: var(--white);
    box-shadow: var(--shadow-md);
    overflow-y: auto;
    /* ✅ Vertical scroll */
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transition: .4s ease;
    z-index: var(--z-dropdown);
}

.mobile-menu::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: var(--primary-border);
    border-radius: 20px;
}

.mobile-menu::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    padding: 40px 30px;
}

.mobile-menu li {
    margin-bottom: 25px;
}

.mobile-menu a {
    display: block;
    font-size: var(--fs-18);
    color: var(--heading);
}

.mobile-menu a.active {
    color: var(--primary);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    margin: 6px auto;
    background: var(--heading);
    transition: all .3s ease;
    transform-origin: center;
}

/* Active (X icon) */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.menu-close {
    position: sticky;
    top: 0px;
    right: 10px;
    margin-left: auto;
    display: block;
    font-size: var(--fs-32);
    color: var(--heading);
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-dropdown {
    margin-bottom: 20px;
}

.mobile-dropdown-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: var(--fs-18);
    font-weight: var(--fw-medium);
    color: var(--heading);
}

.mobile-dropdown-toggle i {
    transition: .3s;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    padding-left: 15px;
    transition: max-height .35s ease;
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 600px;
    margin-top: 12px;
}

.mobile-submenu li {
    margin: 12px 0;
}

.mobile-submenu a {
    font-size: 15px;
    color: var(--text-light);
}

.mobile-submenu a:hover,
.mobile-submenu a.active {
    color: var(--primary-hover);
}

/*=========================================
                HERO
=========================================*/

.hero {
    padding: var(--space-90) 0;
    overflow: hidden;
    background-color: var(--white);
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 10px;
    margin-bottom: 18px;
    background: var(--badge-background);
    border: 1px solid var(--navbar-menu);
    border-radius: var(--radius-xs);
    font-size: var(--fs-12);
    font-weight: var(--fw-medium);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-badge-color);
}

.hero-badge i {
    font-size: var(--fs-12);
    color: var(--secondary-badge-color);
}

.hero-content h1 {
    margin-bottom: 18px;
    width: 100%;
    font-size: var(--fs-56);
    font-weight: var(--fw-medium);
    line-height: 1.1;
    color: var(--heading);
}

.hero-content p {
    max-width: 540px;
    margin-bottom: 22px;
    font-size: var(--fs-20);
    line-height: 1.7;
    width: 80%;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* .hero-buttons .btn-primary {
    background: var(--secondary);
    border: 1px solid var(--border);
    color: var(--heading);
}

.hero-buttons .btn-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
} */

.hero-buttons .btn-primary {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white);
}

.hero-buttons .btn-primary:hover {
    background: var(--white);
    border-color: var(--primary);
    color: var(--primary);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-xs);
    object-fit: cover;
}

.hero-card {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 18px;
    width: 86%;
    padding: 10px;
    background: rgba(255, 255, 255, .65);
    backdrop-filter: blur(4px);
    border: 1px solid var(--primary);
    border-radius: var(--radius-xs);
    box-shadow: var(--shadow-md);
}

.hero-card-icon {
    width: 52px;
    height: 52px;
    background: var(--primary);
    border-radius: var(--radius-xs);
    flex-shrink: 0;
}

.hero-card h4 {
    /* margin-bottom: 5px; */
    font-family: var(--font-body);
    font-size: var(--fs-16);
    color: var(--heading);
}

.hero-card p {
    font-size: var(--fs-12);
    color: var(--text);
}

/*=========================================
                FEATURES
=========================================*/

.features {
    padding: var(--space-60) 0;
    background-color: var(--body);
    border-bottom: 1px solid var(--text);
    border-top: 1px solid var(--text);
}

.section-heading {
    max-width: 900px;
    margin: 0 auto var(--space-60);
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.section-heading h2 {
    margin-bottom: var(--space-10);
    font-size: var(--fs-42);
    font-weight: var(--fw-medium);
    color: var(--heading);
    line-height: 1.2;
}

.section-heading p {
    width: 80%;
    font-size: var(--fs-20);
    line-height: 1.8;
    color: var(--text);
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    transition:
        border-color .35s ease,
        background-color .35s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .35s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    background: var(--body);
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-icon {
    width: 58px;
    height: 48px;
    margin-bottom: 30px;
    border-radius: var(--radius-xs);
    border: 1px solid var(--primary);
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: var(--fs-24);
    color: var(--primary);
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: var(--fs-20);
    font-family: var(--font-body);
    font-weight: var(--fw-medium);
    color: var(--heading);
    line-height: 1.3;
}

.feature-card p {
    font-size: var(--fs-18);
    color: var(--text);
    line-height: 1.8;
}

/*=========================================
                PRICING
=========================================*/

.pricing {
    padding: var(--space-60) 0;
    background-color: var(--white);
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-30);
    align-items: stretch;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: var(--space-30);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background:
        linear-gradient(var(--primary), var(--primary)) left top / 0 100% no-repeat,
        var(--white);

    transition:
        background-size .35s ease,
        background-color .35s ease,
        border-color .35s ease,
        transform .35s ease;
}

.pricing-card:hover {
    background:
        linear-gradient(var(--primary), var(--primary)) left top / 4px 100% no-repeat,
        var(--card-hover);

    border-color: var(--primary);
}

.pricing-card.active {
    border-color: var(--card-border-active);
}

.pricing-badge {
    position: absolute;
    left: 50%;
    top: -14px;
    width: max-content;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: var(--space-5);
    padding: 4px 12px;
    background: var(--badge-background);
    border: 1px solid var(--card-border-active);
    border-radius: var(--radius-xs);
    font-size: var(--fs-12);
    font-weight: var(--fw-medium);
    color: var(--secondary-badge-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pricing-badge i {
    color: var(--secondary-badge-color);
    font-size: var(--fs-12);
}

.pricing-card h3 {
    margin-bottom: var(--space-15);
    font-family: var(--font-body);
    font-size: var(--fs-20);
    font-weight: var(--fw-semibold);
    color: var(--heading);
}

.pricing-price {
    display: flex;
    align-items: flex-end;
    gap: var(--space-5);
    margin-bottom: var(--space-20);
}

.price {
    font-size: var(--fs-48);
    font-family: var(--font-heading);
    font-weight: var(--fw-medium);
    color: var(--heading);
    line-height: 1;
}

.fees {
    margin-bottom: 6px;
    font-size: var(--fs-14);
    color: var(--text-light);
}

.pricing-desc {
    margin-bottom: var(--space-20);
    font-size: var(--fs-16);
    color: var(--text);
}

.pricing-label {
    display: block;
    margin-bottom: var(--space-15);
    font-size: var(--fs-16);
    color: var(--text-light);
}

.pricing-card ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-20);
    margin-bottom: var(--space-30);
}

.pricing-card li {
    display: flex;
    gap: var(--space-10);
    align-items: flex-start;
    margin: 0;
}

.pricing-card li i {
    margin-top: 4px;
    color: var(--primary-hover);
    font-size: var(--fs-16);
}

.pricing-card li span {
    font-size: var(--fs-16);
    line-height: 1.6;
    color: var(--text-light);
}

.pricing-btn-active {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 48px;
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    background: var(--secondary);
    color: var(--primary);
    font-size: var(--fs-18);
    font-weight: var(--fw-medium);
    transition: var(--transition);
}

.pricing-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 48px;
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-size: var(--fs-18);
    font-weight: var(--fw-medium);
    transition: var(--transition);
    margin-top: auto;
}

.pricing-btn:hover {
    background: var(--primary);
    color: var(--white);
}

/*=========================================
            TRUSTPILOT
=========================================*/

.trustpilot {
    padding: var(--space-60) 0;
    background: var(--body);
    border-top: 1px solid var(--text);
    border-bottom: 1px solid var(--text);
}

.trustpilot .section-heading {
    margin-bottom: var(--space-50);
}

.trustpilot-card {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 34px 42px 42px;
    background: var(--white);
    border: 1px solid var(--primary);
    border-left: 4px solid var(--primary);
    border-radius: 16px;
}

.trustpilot-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 2px 8px;
    background: var(--secondary);
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: var(--fs-18);
    color: var(--btn-background);
    margin-bottom: var(--space-20);
}

.trustpilot-badge i {
    font-size: var(--fs-18);
    color: var(--btn-background);
}

.trustpilot-text {
    margin: 0;
    font-size: var(--fs-20);
    font-weight: var(--fw-regular);
    line-height: 1.38;
    color: var(--text-light);
}

/*=========================================
                SERVICES
=========================================*/

.services {
    padding: var(--space-40) 0;
    background-color: var(--white);
}

.services {
    background: var(--body);
    border-top: 1px solid var(--text);
    border-bottom: 1px solid var(--text);
}

.services-home {
    background: var(--white);
}

.services .section-heading {
    margin-bottom: var(--space-40);
}

.services .section-heading h2 {
    margin-bottom: var(--space-0);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-columns: 0.9fr 1.15fr 1.15fr;
    gap: var(--space-30);

    grid-template-areas:
        "card1 card1 card2"
        "card3 card4 card4";
}

.card-1 {
    grid-area: card1;
}

.card-2 {
    grid-area: card2;
}

.card-3 {
    grid-area: card3;
}

.card-4 {
    grid-area: card4;
}

.service-card {
    padding: var(--space-25);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-20);
    background: var(--secondary);
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
}

.service-icon i {
    color: var(--text);
    font-size: var(--fs-24);
}

.service-card h3 {
    margin-bottom: var(--space-15);
    font-family: var(--font-heading);
    font-size: var(--fs-28);
    font-weight: var(--fw-medium);
    color: var(--heading);
    line-height: 1.2;
}

.service-card p {
    font-size: var(--fs-15);
    line-height: 1.7;
    color: var(--text-light);
}

.service-insight {
    margin-top: var(--space-25);
    padding: var(--space-15);
    background: var(--badge-background);
    border-radius: var(--radius-md);
}

.service-insight span {
    display: block;
    font-size: var(--fs-12);
    font-weight: var(--fw-bold);
    color: var(--secondary-badge-color);
    text-transform: uppercase;
}

.service-insight p {
    margin: 0;
}

.service-divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin: var(--space-20) 0;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: var(--space-40);
    align-items: end;
}

.service-column h4 {
    margin-bottom: var(--space-15);
    font-family: var(--font-body);
    font-size: var(--fs-20);
    font-weight: var(--fw-medium);
    color: var(--text);
}

.service-column ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
}

.service-column li {
    display: flex;
    align-items: center;
    gap: var(--space-10);
    font-size: var(--fs-16);
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.service-column li i {
    font-size: var(--fs-6);
    color: var(--primary);
}

.service-link {
    position: relative;
    display: inline-block;
    align-self: end;
    white-space: nowrap;
    font-size: var(--fs-18);
    font-weight: var(--fw-medium);
    color: var(--primary-hover);
    transition: var(--transition);
}

.service-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--primary-hover);
    transition: var(--transition);
}

.service-link:hover::after {
    width: 100%;
}

.service-link:hover {
    color: var(--primary);
}

/*=========================================
                Contact
=========================================*/

.contact-form {
    padding: var(--space-60) 0;
    background: var(--body);
    border-top: 1px solid var(--text);
    border-bottom: 1px solid var(--text);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-40);
    align-items: stretch;
}

.contact-info,
.contact-card {
    position: relative;
    padding: var(--space-30);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.contact-info {
    border-left: 6px solid var(--primary-hover);
}

.contact-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: var(--space-5);
    padding: 5px 14px;
    background: var(--badge-background);
    border: 1px solid var(--primary);
    border-radius: var(--radius-xs);
    font-size: var(--fs-12);
    font-weight: var(--fw-medium);
    letter-spacing: 2px;
    color: var(--secondary-badge-color);
    text-transform: uppercase;
}

.contact-badge i {
    font-size: var(--fs-12);
}

.contact-card h3,
.contact-info h3 {
    margin-bottom: var(--space-10);
    font-family: var(--font-heading);
    font-size: var(--fs-28);
    color: var(--heading);
}

.contact-card p,
.contact-info p {
    color: var(--text-light);
    font-size: var(--fs-15);
    line-height: 1.6;
}

.contact-divider {
    height: 1px;
    background: var(--border);
    margin: var(--space-5) 0 var(--space-20) 0;
}

.contact-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-20);
}

.form-group {
    display: flex;
    flex-direction: column;
    margin: var(--space-20) 0 0 0;
}

.contact-row .form-group {
    margin-top: 0;
    width: stretch;
}

.form-group label {
    margin-bottom: var(--space-5);
    font-size: var(--fs-10);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
}

.form-group input,
.form-group textarea {
    height: 46px;
    padding: 0 var(--space-15);
    border: 1px solid var(--border);
    font-size: var(--fs-16);
}

.form-group textarea {
    height: 90px;
    padding-top: var(--space-15);
    resize: none;
    /* margin-top:var(--space-20); */
}

.contact-footer {
    margin-top: var(--space-20);
    padding: var(--space-20);
    background: var(--secondary);
    border: 1px solid var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-30);
}

.contact-footer p {
    margin: 0;
    font-size: var(--fs-14);
}

.contact-info ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-25);
    margin: var(--space-30) 0;
}

.contact-info li {
    display: flex;
    align-items: baseline;
    gap: var(--space-15);
    color: var(--text-light);
    font-size: var(--fs-15);
    margin: 0;
}

.contact-info i {
    color: var(--primary-hover);
}

/*=========================================
                FOOTER
=========================================*/

.footer {
    padding: var(--space-30) 0 var(--space-10);
    background: var(--secondary);
    border-top: 1px solid var(--primary);
    width: 100%;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: 78% 22%;
    align-items: start;
}

.footer-title {
    margin-bottom: var(--space-20);
    font-family: var(--font-heading);
    font-size: var(--fs-36);
    font-weight: var(--fw-medium);
    color: var(--heading);
    line-height: 1.1;
}

.footer-title img {
    width: 300px;
}

.footer-divider {
    width: 78%;
    height: 1px;
    margin-bottom: var(--space-20);
    background: var(--border);
}

.footer-disclaimer h4,
.footer-links h4,
.footer-help h4 {
    margin-bottom: var(--space-10);
    font-size: var(--fs-18);
    font-weight: var(--fw-semibold);
    font-family: var(--font-body);
    color: var(--text-light);
}

.footer-links ul li {
    list-style: none;
    margin: 0;
}

.footer-disclaimer p {
    width: 87%;
    font-size: var(--fs-16);
    line-height: 1.75;
    color: var(--text-light);
}

.footer-contact {
    display: flex;
    gap: var(--space-60);
    margin-top: var(--space-20);
}

.footer-contact-item h5 {
    margin-bottom: var(--space-5);
    font-size: var(--fs-18);
    font-family: var(--font-body);
    font-weight: var(--fw-medium);
    color: var(--text-light);
}

.footer-contact-item p {
    display: flex;
    align-items: end;
    gap: var(--space-5);
}

.footer-contact-item a {
    font-size: var(--fs-16);
    color: var(--text-light);
    line-height: normal;
}

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

.footer-contact-item .hover-link::after {
    bottom: -2px;
}

.footer-contact-item span {
    font-size: var(--fs-12);
    color: var(--text-light);
    line-height: normal;
}

.footer-right {
    padding-top: var(--space-50);
}

.footer-links {
    margin-bottom: var(--space-30);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    font-size: var(--fs-16);
    color: var(--text-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-hover);
}

.footer-help p {
    font-size: var(--fs-16);
    line-height: 1.7;
    color: var(--text-light);
}

.footer-help a {
    color: var(--primary-hover);
    font-weight: var(--fw-semibold);
}

.footer-help a {
    position: relative;
    display: inline-block;
    align-self: end;
    white-space: nowrap;
    font-size: var(--fs-16);
    font-weight: var(--fw-medium);
    color: var(--primary-hover);
    transition: var(--transition);
}

.footer-help a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0;
    height: 2px;
    background: var(--primary-hover);
    transition: var(--transition);
}

.footer-help a:hover::after {
    width: 100%;
}

.footer-help a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: var(--space-20);
    padding-top: var(--space-10);
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: var(--fs-16);
    color: var(--text-light);
}

/*=========================================
                                                  ***  SERVICE Page ***
                                        =========================================*/


/*=========================================
            SERVICE HERO
=========================================*/

.service-hero {
    padding: var(--space-40) 0;
    background: var(--white);
}

.service-hero-wrapper {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 520px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.service-hero-image {
    width: 100%;
    position: relative;
}

.service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--secondary) 43%, transparent 100%);
    z-index: 1;
}

.service-hero-card {
    position: absolute;
    left: var(--space-40);
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 470px;
    display: flex;
    flex-direction: column;
    padding: var(--space-30);
    background: rgba(255, 255, 255, .95);
    border: 1px solid var(--border);
    border-left: 6px solid var(--primary-hover);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(6px);
}

/* Trademark Search Page */

.service-hero-card.search-card {
    max-width: max-content;
    padding: 22px;
    border-left: 5px solid var(--primary-hover);

}

.service-hero-card h2 {
    font-family: var(--font-heading);
    font-size: var(--fs-32);
    font-weight: var(--fw-medium);
    color: var(--heading);
}

.service-hero-desc {
    margin-bottom: var(--space-15);
    font-size: var(--fs-16);
    line-height: 1.7;
    color: var(--text-light);
}

.service-hero-card ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-15);
    margin-bottom: var(--space-20);
}

.service-hero-card li {
    display: flex;
    gap: var(--space-15);
    align-items: flex-start;
    margin: 0;
}

.service-hero-card li i {
    margin-top: 4px;
    color: var(--primary-hover);
    font-size: var(--fs-20);
}

.service-hero-card li span {
    font-size: var(--fs-16);
    line-height: 1.6;
    color: var(--text-light);
}

.service-hero-card .btn {
    margin-top: auto;
    width: fit-content;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    color: var(--primary);
    transition: var(--transition);
}

.service-hero-card .btn:hover {
    background: var(--primary);
    color: var(--white);
}

/*=========================================
            PROCESS SECTION
=========================================*/

.process {
    padding: var(--space-20) 0 var(--space-80) 0;
    background: var(--white);
}

.process-heading {
    max-width: 800px;
    margin: 0 auto var(--space-60);
    margin-bottom: var(--space-40);
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.process-heading h2 {
    margin-bottom: var(--space-10);
    font-size: var(--fs-42);
    font-weight: var(--fw-medium);
    color: var(--heading);
    line-height: 1.2;
}

.process-heading p {
    width: 80%;
    font-size: var(--fs-20);
    color: var(--text);
}

.process-cards {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-60);
}

.process-cards::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    height: 1px;
    background: var(--border);
    transform: translateY(-50%);
    z-index: 0;
}

.process-card {
    position: relative;
    z-index: 2;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-25);
    min-height: 305px;
    display: flex;
    flex-direction: column;
}

.process-number {
    width: 60px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-30);
    background: var(--secondary);
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: var(--fs-32);
    color: var(--heading);
}

.process-card h3 {
    margin-bottom: var(--space-5);
    font-size: var(--fs-18);
    font-family: var(--font-body);
    font-weight: var(--fw-medium);
    color: var(--heading);
    line-height: 1.3;
}

.process-card p {
    width: 100%;
    font-size: var(--fs-18);
    line-height: 1.8;
    color: var(--text-light);
}

/*=========================================
            EXTENSION SECTION
=========================================*/

.extension {
    padding: var(--space-80) 0;
    background: var(--body);
    border-top: 1px solid var(--text);
    border-bottom: 1px solid var(--text);
}

.extension-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.extension-content h2 {
    margin-bottom: var(--space-20);
    font-family: var(--font-heading);
    font-size: var(--fs-42);
    font-weight: var(--fw-medium);
    line-height: 1.15;
    color: var(--heading);
}

.extension-text {
    width: 90%;
    margin-bottom: var(--space-25);
    font-size: var(--fs-20);
    color: var(--text-light);
}

.extension-insight {
    margin-bottom: var(--space-30);
    padding: 18px 20px;
    background: var(--badge-background);
    border-radius: var(--radius-md);
}

.extension-insight span {
    display: block;
    margin-bottom: var(--space-5);
    font-size: var(--fs-14);
    font-weight: var(--fw-bold);
    color: var(--secondary-badge-color);
}

.extension-insight p {
    margin: 0;
    font-size: var(--fs-14);
    color: var(--text-light);
}

.extension-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.extension .btn-primary {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white);
}

.extension .btn-primary:hover {
    background: var(--white);
    border-color: var(--primary);
    color: var(--primary);
}

/* .extension-image img {
    width: 100%;
    display: block;
    border-radius: var(--radius-md);
    object-fit: cover;
} */

.extension-image {
    position: relative;
}

.extension-image img {
    width: 100%;
    display: block;
    border-radius: var(--radius-md);
    object-fit: cover;
}

/*=========================================
        EXTENSION FLOATING CARDS
=========================================*/

.extension-image {
    position: relative;
}

.extension-image img {
    width: 100%;
    display: block;
    border-radius: var(--radius-md);
}

.extension-cards {
    position: absolute;
    left: var(--space-30);
    right: var(--space-30);
    bottom: var(--space-25);
    display: flex;
    justify-content: space-between;
}

.extension-card {
    display: flex;
    align-items: center;
    width: 31%;
    min-height: 76px;
    padding: var(--space-10);
    background: rgba(255, 255, 255, .45);
    border: 1px solid var(--primary);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-xs);
    box-shadow: var(--shadow-sm);
}

.extension-card-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-10);
    background: rgba(255, 255, 255, .65);
    border: 1px solid rgba(255, 255, 255, .70);
    border-radius: var(--radius-xs);
}

.extension-card-icon i {
    font-size: var(--fs-22);
    color: var(--primary);
}

.extension-card-content {
    flex: 1;
    min-width: 0;
}

.extension-card-content h5 {
    margin-bottom: var(--space-5);
    font-family: var(--font-body);
    font-size: var(--fs-14);
    font-weight: var(--fw-semibold);
    color: var(--heading);
}

.extension-card-content span {
    display: block;
    font-size: var(--fs-14);
    line-height: 1.4;
    color: var(--text-light);
}

/*=========================================
        AUTHORITY SECTION
=========================================*/

.authority {
    padding: var(--space-60) 0;
    background: var(--body);
    border-top: 1px solid var(--text);
    border-bottom: 1px solid var(--text);
}

.authority .section-heading {
    margin-bottom: var(--space-40);
    text-align: center;
}

.authority .section-heading h2 {
    font-size: var(--fs-42);
    font-family: var(--font-heading);
    font-weight: var(--fw-medium);
    color: var(--heading);
}

.authority-grid {
    display: grid;
    grid-template-columns: 36% 64%;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-30);
    align-items: stretch;
}

.authority-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-25);
}

.authority-left {
    display: flex;
    flex-direction: column;
}

.authority-right {
    border-left: 5px solid var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.authority-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-20);
    background: var(--secondary);
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
}

.authority-icon i {
    font-size: var(--fs-24);
    color: var(--primary);
}

.authority-card h3 {
    margin-bottom: var(--space-15);
    font-size: var(--fs-24);
    font-family: var(--font-heading);
    font-weight: var(--fw-medium);
    color: var(--heading);
}

.authority-left ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
}

.authority-left li {
    color: var(--text-light);
    font-size: var(--fs-16);
    line-height: 1.7;
    list-style: disc;
    margin-left: var(--space-20);
}

.authority-right p {
    width: 95%;
    color: var(--text-light);
    font-size: var(--fs-20);
    line-height: 1.8;
}

/*=========================================
            TESTIMONIAL
=========================================*/

.testimonial {
    padding: var(--space-80) 0;
    background: var(--white);
}

.testimonial .section-heading {
    margin-bottom: var(--space-40);
    text-align: center;
}

.testimonial .section-heading h2 {
    font-family: var(--font-heading);
    font-size: var(--fs-42);
    font-weight: var(--fw-medium);
    color: var(--heading);
}

.testimonialSwiper {
    overflow: hidden;
}

.testimonialSwiper .swiper-wrapper {
    align-items: stretch;
}

.testimonialSwiper .swiper-slide {
    display: flex;
    height: auto;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
    padding: var(--space-25);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.testimonial-stars {
    display: flex;
    gap: var(--space-5);
    margin-bottom: var(--space-20);
    color: var(--primary);
    font-size: var(--fs-20);
}

.testimonial-card p {
    flex: 1;
    font-size: var(--fs-18);
    padding-right: var(--space-40);
    line-height: 1.7;
    color: var(--text-light);
}

.testimonial-divider {
    margin: var(--space-20) 0;
    height: 1px;
    background: var(--border);
}

.testimonial-user {
    margin-top: auto;
}

.testimonial-user h4 {
    margin-bottom: var(--space-5);
    font-family: var(--font-body);
    font-size: var(--fs-20);
    font-weight: var(--fw-semibold);
    color: var(--primary);
}

.testimonial-user span {
    font-size: var(--fs-16);
    color: var(--text-light);
}

/*=========================================
                                                            BLOG PAGE
                                            =========================================*/

/*=========================================
                BLOG HERO
=========================================*/

.blog-hero {
    padding: var(--space-80) 0;
    background: var(--white);
}

.blog-hero-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.blog-hero-content h1 {
    margin-bottom: var(--space-20);

    font-family: var(--font-heading);
    font-size: var(--fs-42);
    font-weight: var(--fw-medium);
    line-height: 1.15;

    color: var(--heading);
}

.blog-hero-content p {
    width: 70%;
    margin: 0 auto;

    font-size: var(--fs-20);
    line-height: 1.7;

    color: var(--text);
}

/*=========================================
            BLOG BANNER
=========================================*/

.blog-banner {
    padding: var(--space-40) 0;
    background: var(--body);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.blog-banner-image {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}

.blog-banner-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

/*=========================================
            BLOG POSTS
=========================================*/

.blog-posts {
    padding: var(--space-40) 0 var(--space-80) 0;
    background: var(--white);
}

.blog-posts .section-heading {
    margin: 0 auto var(--space-40);
}

.blog-posts .section-heading h2 {
    margin-bottom: var(--space-0);
}

/* FILTER  */

.blog-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-40);
    margin-bottom: var(--space-50);
    border-bottom: 1px solid var(--border);
}

.blog-categories {
    display: flex;
    align-items: center;
    column-gap: var(--space-60);
    row-gap: var(--space-15);
    flex-wrap: wrap;
}

.blog-categories button {
    position: relative;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: var(--fs-20);
    font-weight: var(--fw-medium);
    color: var(--text);
    transition: var(--transition);
}

.blog-categories button:hover,
.blog-categories button.active {
    color: var(--primary-hover);
}

.blog-categories button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.blog-categories button:hover::after,
.blog-categories button.active::after {
    width: 100%;
}

/* SEARCH */

.blog-search {
    position: relative;
    width: 420px;
    flex-shrink: 0;
}

.blog-search input {
    width: 100%;
    height: 48px;
    padding: 0 55px 0 var(--space-20);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-size: var(--fs-18);
    color: var(--heading);
    outline: none;
    transition: var(--transition);
}

.blog-search input::placeholder {
    color: var(--text-light);
}

.blog-search input:focus {
    border-color: var(--primary);
}

.blog-search button {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--secondary);
    border: 1px solid var(--primary);
    border-radius: var(--radius-xs);
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.blog-search button:hover {
    background: var(--primary);
    color: var(--white);
}

/* GRID */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-40);
}

/* CARD */

.blog-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-left: 8px solid var(--primary);
    border-radius: var(--radius-md);
    text-decoration: none;
    background: var(--white);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.blog-card img {
    width: 100%;
    aspect-ratio: 4/4;
    object-fit: cover;
    display: block;
    transition: .5s;
}

.blog-card-content {
    position: absolute;
    left: 50%;
    bottom: var(--space-30);
    transform: translateX(-50%);
    width: 95%;
    padding: var(--space-20);
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid var(--primary-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.blog-card-content span {
    display: block;
    margin-bottom: var(--space-10);
    font-size: var(--fs-14);
    font-weight: var(--fw-medium);
    color: var(--primary-hover);
}

.blog-card-content h3 {
    margin-bottom: var(--space-10);
    font-family: var(--font-body);
    font-size: var(--fs-18);
    font-weight: var(--fw-medium);
    line-height: 1.4;
    color: var(--heading);
}

.blog-card-content p {
    font-size: var(--fs-18);
    line-height: 1.6;
    color: var(--text-light);
}

/*=========================
        HOVER
=========================*/

.blog-card:hover {
    box-shadow: var(--shadow-md);
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-card:hover .blog-card-content {
    background: rgba(255, 255, 255, .92);
    border-color: var(--primary);
}

.blog-card:hover h3 {
    color: var(--primary-hover);
}

.blog-card:hover::after {
    opacity: 1;
}

.blog-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .08), transparent 55%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

/*=========================================
            CTA BANNER
=========================================*/

.cta-banner {
    padding: var(--space-80) 0;
    border-top: 1px solid var(--border);
}

.cta-banner {
    background: var(--white);
    /* default */
}

.cta-banner-blog {
    background: var(--body);
}

.cta-banner-about {
    background: var(--white);
}

.cta-banner-wrapper {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.cta-banner-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgb(255 251 248 / 99%) 0%,
            rgb(255 251 248 / 95%) 25%,
            rgba(255, 251, 248, .72) 45%,
            rgba(255, 251, 248, .35) 80%,
            rgba(255, 251, 248, .10) 100%);
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 50%;
    padding: var(--space-25) var(--space-40);
}

.cta-banner-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    width: max-content;
    font-size: var(--fs-12);
    font-weight: var(--fw-medium);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-badge-color);
    gap: 10px;
    padding: 4px 10px;
    background: var(--badge-background);
    border: 1px solid var(--navbar-menu);
    border-radius: var(--radius-xs);
}

.cta-banner-badge i {
    font-size: var(--fs-12);
}

.cta-banner-content h2 {
    margin-bottom: var(--space-5);
    font-family: var(--font-heading);
    font-size: var(--fs-36);
    font-weight: var(--fw-medium);
    line-height: 1.15;
    color: var(--heading);
}

.cta-banner-content p {
    width: 85%;
    margin-bottom: var(--space-15);
    font-size: var(--fs-20);
    line-height: 1.5;
    color: var(--text);
}

.cta-banner-buttons {
    display: flex;
    gap: var(--space-15);
    flex-wrap: wrap;
}

.cta-banner .btn-primary {
    background: var(--primary);
    border: 1px solid var(--primary);
}

.cta-banner .btn-primary:hover {
    background: var(--white);
    border-color: var(--primary);
    color: var(--primary);
}

.cta-banner .btn-outline {
    background: var(--white);
    border: 1px solid var(--border);
}

.cta-banner .btn-outline:hover {
    background: var(--btn-background);
    border-color: var(--btn-background);
    color: var(--white);
}

/*=========================================
                                                        SINGLE BLOG PAGE
                                            =========================================*/

/*=========================================
        SINGLE BLOG HEADER
=========================================*/

.single-blog-header {
    padding: var(--space-40) 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

/* Breadcrumb */

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: var(--space-25);
    padding: 0;
    list-style: none;
}

.breadcrumb li {
    font-size: var(--fs-18);
    color: var(--primary-hover);
    list-style: none;
    margin: 0;
}

.breadcrumb li i {
    font-size: 10px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Content */

.single-blog-content {
    max-width: 910px;
}

.single-blog-content h1 {
    margin-bottom: var(--space-10);
    font-family: var(--font-heading);
    font-size: var(--fs-42);
    font-weight: var(--fw-medium);
    line-height: 1.2;
    color: var(--heading);
}

.single-blog-content p {
    margin-bottom: var(--space-20);
    font-size: var(--fs-20);
    line-height: 1.8;
    color: var(--text-light);
}

/* Meta */

.single-blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.single-blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-16);
    color: var(--text-light);
}

.single-blog-meta i {
    color: var(--primary);
}

/*=========================================
        SINGLE BLOG CONTENT
=========================================*/

.single-blog-body {
    padding: var(--space-60) 0;
    background: var(--body);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.single-blog-wrapper {
    max-width: 90%;
}

.single-blog-wrapper h2 {
    margin-bottom: var(--space-25);

    font-family: var(--font-heading);
    font-size: var(--fs-36);
    font-weight: var(--fw-medium);
    line-height: 1.2;
    color: var(--heading);
}

/* Ordered List */

.single-blog-wrapper ol {
    list-style: decimal;
    list-style-position: outside;
    margin: 0;
    padding-left: 35px;
}

.single-blog-wrapper li {
    display: list-item;
    margin-bottom: var(--space-30);
    font-size: var(--fs-20);
    line-height: 1.8;
    color: var(--text-light);
}

.single-blog-wrapper li::marker {
    font-weight: var(--fw-semibold);
    color: var(--text-light);
}

.single-blog-wrapper ol li:last-child {
    margin-bottom: 0;
}

/*=========================================
        SINGLE BLOG HIGHLIGHT
=========================================*/

.single-blog-highlight {
    padding: var(--space-60) 0;
    background: var(--white);
}

.single-blog-highlight-wrapper {
    max-width: 1100px;
}

.single-blog-highlight-wrapper h2 {
    margin-bottom: var(--space-20);
    font-family: var(--font-heading);
    font-size: var(--fs-36);
    font-weight: var(--fw-medium);
    line-height: 1.2;
    color: var(--heading);
}

.single-blog-highlight-wrapper>p {
    margin-bottom: var(--space-25);
    font-size: var(--fs-20);
    line-height: 1.7;
    color: var(--text-light);
}

/* Box */

.single-blog-box {
    max-width: 800px;
    padding: var(--space-25);
    background: var(--body);
    border: 1px solid #dddddd;
    border-left: 5px solid var(--primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* List */

.single-blog-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.single-blog-box li {
    display: flex;
    align-items: center;
    gap: var(--space-10);
    font-size: var(--fs-20);
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.single-blog-box li:last-child {
    margin-bottom: 0;
}

.single-blog-box li::before {
    content: "";
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background: #8d8264;
    border-radius: 50%;
}

/*=========================================
        SINGLE BLOG TEXT
=========================================*/

.single-blog-text {
    padding: var(--space-60) 0;
    background: var(--body);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.single-blog-text-wrapper {
    max-width: 90%;
}

.single-blog-text-wrapper h2 {
    margin-bottom: var(--space-20);

    font-family: var(--font-heading);
    font-size: var(--fs-36);
    font-weight: var(--fw-medium);
    line-height: 1.2;
    color: var(--heading);
}

.single-blog-text-wrapper p {
    margin: 0;

    font-size: var(--fs-20);
    line-height: 1.85;
    color: var(--text-light);
}

/*=========================================
                                                        ABOUT Page
                                            =========================================*/

/*=========================================
            ABOUT HERO
=========================================*/

.about-hero {
    padding: var(--space-80) 0;
    background: var(--white);
}

.about-hero-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border-radius: var(--radius-lg);
}

.about-hero-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(255, 247, 227, .96) 0%,
            rgba(255, 247, 227, .92) 29%,
            rgba(255, 247, 227, .82) 37%,
            rgba(255, 247, 227, 0.6) 52%,
            rgba(255, 247, 227, .40) 90%,
            rgba(255, 247, 227, .04) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    min-height: 520px;
    padding: var(--space-60);
}

.about-hero-badge {
    width: max-content;
}

.about-hero-badge i {
    font-size: var(--fs-12);
}

.about-hero-content h1 {
    margin-bottom: var(--space-20);
    font-family: var(--font-heading);
    font-size: var(--fs-56);
    font-weight: var(--fw-medium);
    line-height: 1.1;
    color: var(--heading);
}

.about-hero-content p {
    width: 95%;
    margin-bottom: var(--space-30);
    font-size: var(--fs-20);
    line-height: 1.7;
    color: var(--text-light);
}

/*=========================================
            COMPANY HISTORY
=========================================*/

.company-history {
    padding: var(--space-40) 0 var(--space-60) 0;
    background: var(--body);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.company-history .section-heading {
    margin-bottom: var(--space-40);
    text-align: center;
}

.company-history .section-heading h2 {
    font-family: var(--font-heading);
    font-size: var(--fs-42);
    font-weight: var(--fw-medium);
    color: var(--heading);
    line-height: normal;
    margin-bottom: var(--space-0);
}

/* GRID */

.company-history-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--space-50);
    row-gap: var(--space-25);
}

/* RIGHT CONNECTOR */

.company-history-connector {
    position: absolute;
    top: 50%;
    right: -36px;
    width: 80%;
    height: 50%;
    transform: translateY(-50%);
    border-top: 2px solid var(--border);
    border-right: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* CARD */

.company-history-card {
    position: relative;
    z-index: 2;
    padding: var(--space-20);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.company-history-card span {
    display: block;
    margin-bottom: var(--space-5);
    font-size: var(--fs-14);
    font-weight: var(--fw-semibold);
    color: var(--primary-hover);
    text-transform: uppercase;
}

.company-history-card h3 {
    margin-bottom: var(--space-5);
    font-family: var(--font-body);
    font-size: var(--fs-20);
    font-weight: var(--fw-medium);
    color: var(--heading);
}

.company-history-card p {
    margin: 0;
    font-size: var(--fs-18);
    line-height: 1.6;
    color: var(--text-light);
}

/*=========================================
            SERVICES SECTION
=========================================*/

.services-section {
    padding: var(--space-80) 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* Heading */

.services-section .section-heading {
    max-width: 720px;
    margin: 0 auto var(--space-60);
    text-align: center;
}

.services-section .section-heading h2 {
    margin-bottom: var(--space-15);
    font-family: var(--font-heading);
    font-size: var(--fs-42);
    font-weight: var(--fw-medium);
    line-height: 1.15;
    color: var(--heading);
}

.services-section .section-heading p {
    width: 100%;
    font-size: var(--fs-20);
    line-height: 1.7;
    color: var(--text);
}

/* Grid */

.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-40);
}

/* Card */

.services-section .service-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: var(--space-20);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition:
        border-color .35s ease,
        background-color .35s ease;
}

.services-section .service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .35s ease;
}

.services-section .service-card:hover {
    border-color: var(--primary);
    background: var(--body);
}

.services-section .service-card:hover::before {
    transform: scaleY(1);
}

/* Number */

.services-section .service-tag {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 54px;
    height: 50px;
    margin-bottom: var(--space-20);

    background: var(--secondary);
    border: 2px solid #D9C89C;
    border-radius: var(--radius-xs);

    font-size: 32px;
    font-family: var(--font-heading);
    font-weight: var(--fw-medium);
    color: #555;
}

/* Title */

.services-section .service-card h3 {
    font-family: var(--font-body);
    font-size: var(--fs-20);
    font-weight: var(--fw-medium);
    line-height: 1.5;
    margin-bottom: var(--space-0);
    color: var(--heading);
}

/* Text */

.services-section .service-card p {
    width: 65%;
    margin-bottom: auto;
    font-size: var(--fs-18);
    line-height: 1.8;
    color: var(--text-light);
}

/* Link */

.services-section .service-card a {
    align-self: flex-end;
    /* margin-top:var(--space-30); */

    position: relative;

    font-size: var(--fs-20);
    font-weight: var(--fw-medium);
    color: var(--primary-hover);

    text-decoration: none;
}

/*=========================================
                                                            FAQ PAGE
                                            =========================================*/

/*=========================================
                FAQ SECTION
=========================================*/

.faq-section {
    padding: var(--space-55) 0 var(--space-80);
    background: var(--body);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/*------ TABS ------*/

.faq-tabs {
    display: flex;
    align-items: center;
    gap: var(--space-50);
    margin-bottom: var(--space-40);
    padding-bottom: var(--space-35);
    border-bottom: 1px solid var(--border);
}

.faq-tab {
    position: relative;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: var(--fs-22);
    font-weight: var(--fw-medium);
    color: var(--text-light);
    transition: var(--transition);
}

.faq-tab:hover {
    color: var(--primary-hover);
}

.faq-tab.active {
    color: var(--primary-hover);
}

.faq-tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 2px;
    background: var(--primary-hover);
}

/*------ TAB CONTENT ------*/

.faq-content {
    display: none;
}

.faq-content.active {
    display: block;
}

/*------ FAQ LIST ------*/

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-15);
}

/*------ FAQ ITEM ------*/

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    box-shadow: var(--shadow-sm);
    background-color: var(--body);
}

.faq-item.active .faq-question span:first-child {
    color: var(--primary-hover);
}

/*------ QUESTION ------*/

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span:first-child {
    font-size: var(--fs-20);
    font-weight: var(--fw-medium);
    color: var(--heading);
}

.faq-icon {
    position: relative;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    transition: .35s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: var(--primary-hover);
    border-radius: 50px;
    transform: translate(-50%, -50%);
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(180deg);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/*------ FAQ ANSWER ------*/

.faq-answer {
    height: 0;
    overflow: hidden;
    opacity: 0;
    width: 95%;
    padding: 0 24px;
    transition:
        height .35s cubic-bezier(.4, 0, .2, 1),
        opacity .25s ease,
        padding .35s cubic-bezier(.4, 0, .2, 1);
}

.faq-answer p {
    margin: 0;
    padding-bottom: 24px;
    font-size: var(--fs-18);
    color: var(--text-light);
}

/*=========================================
                                                    PRIVACY POLICY PAGE
                                            =========================================*/

/*=========================================
        PRIVACY POLICY SECTION
=========================================*/

.privacy-policy-section {
    padding: 0 0 var(--space-55) 0;
    background: var(--white);
}

/* Tabs */

.privacy-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-50);
    margin-bottom: var(--space-40);
    padding-bottom: var(--space-35);
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    scrollbar-width: none;
}

.privacy-tabs::-webkit-scrollbar {
    display: none;
}

.privacy-tab {
    position: relative;
    flex-shrink: 0;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: var(--fs-22);
    font-weight: var(--fw-medium);
    color: var(--text-light);
    transition: var(--transition);
}

.privacy-tab:hover {
    color: var(--primary-hover);
}

.privacy-tab.active {
    color: var(--primary-hover);
}

.privacy-tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 2px;
    background: var(--primary-hover);
}

/* Content */

.privacy-content {
    display: none;
}

.privacy-content.active {
    display: block;
}

.privacy-content-wrapper {
    width: 92%;
}

.privacy-content-wrapper p {
    margin-bottom: var(--space-25);
    font-size: var(--fs-20);
    color: var(--text-light);
}

.privacy-content-wrapper p:last-child {
    margin-bottom: 0;
}

/*=========================================
                                                        CONTACT PAGE
                                            =========================================*/

/*=========================================
            CONTACT METHODS
=========================================*/

.contact-methods {
    padding: var(--space-80) 0;
    background: var(--body);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/*----- WRAPPER -----*/

.contact-methods-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-35);
}

/*----- CARD -----*/

.contact-methods .contact-card {
    position: relative;
    padding: var(--space-20);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition:
        border-color .35s ease,
        background-color .35s ease;
}

.contact-methods .contact-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .35s ease;
}

.contact-methods .contact-card:hover {
    border-color: var(--primary);
    background: #fffdf8;
}

.contact-methods .contact-card:hover::before {
    transform: scaleY(1);
}

/*----- ICON -----*/

.contact-methods .contact-card-icon {
    width: 58px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-20);
    background: var(--secondary);
    border: 2px solid var(--primary-border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.contact-methods .contact-card-icon i {
    font-size: var(--fs-24);
    color: var(--primary);
}

/*----- HEADING -----*/

.contact-methods .contact-card h3 {
    margin-bottom: var(--space-15);
    font-family: var(--font-heading);
    font-size: var(--fs-32);
    font-weight: var(--fw-medium);
    line-height: 1.2;
    color: var(--heading);
}

/*----- TEXT -----*/

.contact-methods .contact-card p {
    margin: 0;
    font-size: var(--fs-20);
    color: var(--text-light);
}

.contact-methods .contact-card p a.live-chat {
    color: var(--primary-hover);
    font-weight: var(--fw-medium);
    text-decoration: none;
    transition: var(--transition);
}

.contact-methods .contact-card p a:hover {
    color: var(--primary-hover);
}

/*=========================================
            CONTACT FAQ SECTION
=========================================*/

.contact-faq-section {
    padding: var(--space-80) 0;
    background: var(--white);
}

.contact-faq-bg {
    background: var(--white);
}

.default-faq-bg {
    background: var(--body);
}

/*=========================================
                                                    TRADEMARK SEARCH PAGE
                                            =========================================*/

/*=========================================
            TRADEMARK SEARCH
=========================================*/

.tm-search-table {
    max-width: 400px;
    table-layout: fixed;
    border-collapse: collapse;
}

/*------ ICON ------*/

.tm-search-icon {
    width: 54px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-15);
    background: var(--secondary);
    border: 2px solid var(--primary-border);
    border-radius: var(--radius-sm);
}

.tm-search-icon i {
    font-size: var(--fs-18);
    color: var(--primary);
}

/*------ HEADING ------*/

.tm-search-card h3 {
    margin-bottom: var(--space-10);
    font-family: var(--font-heading);
    font-size: var(--fs-22);
    font-weight: var(--fw-medium);
    line-height: 1.3;
    color: var(--heading);
}

/*------ TEXT ------*/

.tm-search-card p {
    margin-bottom: var(--space-10);
    font-family: var(--font-body);
    font-size: var(--fs-16);
    line-height: 1.6;
    color: var(--text-light);
}

/*------ SSEARCH BAR ------*/

.tm-search-form {
    display: flex;
    align-items: center;
    height: 48px;
    margin-bottom: var(--space-15);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.tm-search-form:focus-within {
    border-color: var(--primary);
}

.tm-search-form input {
    flex: 1;
    height: 100%;
    padding: 0 var(--space-20);
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: var(--fs-16);
    color: var(--heading);
}

.tm-search-form input::placeholder {
    color: var(--text-light);
}

.tm-search-form button {
    width: 42px;
    height: 38px;
    margin-right: var(--space-5);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.tm-search-form button:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/*------ STABLE WRAPPER ------*/

.tm-search-table-wrapper {
    width: 100%;
    max-height: 220px;
    height: 220px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--text-light) var(--body);
}

/* Chrome */

.tm-search-table-wrapper::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.tm-search-table-wrapper::-webkit-scrollbar-track {
    background: var(--body);
    border-radius: 20px;
}

.tm-search-table-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 20px;
}

.tm-search-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/*------ STABLE ------*/

.tm-search-table {
    width: 100%;
    min-width: 530px;
    border-collapse: separate;
    border-spacing: 0;
}

/*------ STICKY HEADER ------*/

.tm-search-table thead th {
    position: sticky;
    top: 0;
    z-index: 5;
    padding: 12px 8px;
    background: var(--white);
    text-align: left;
    white-space: nowrap;
    font-family: var(--font-body);
    font-size: var(--fs-13);
    font-weight: var(--fw-semibold);
    color: var(--primary-hover);
    border-bottom: 2px solid var(--border);
}

/*------ BODY ------*/

.tm-search-table tbody td {
    padding: 12px 8px;
    font-family: var(--font-body);
    font-size: var(--fs-14);
    color: var(--text-light);
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

/*------ Placeholder Row ------*/

.tm-placeholder td {
    height: 170px;
    text-align: center;
    vertical-align: middle;
    color: var(--text-light);
    font-size: 15px;
}

.tm-search-table tbody tr:hover {
    background: var(--card-hover);
}

.tm-search-table th:nth-child(1),
.tm-search-table td:nth-child(1) {
    width: 25%;
}

.tm-search-table th:nth-child(2),
.tm-search-table td:nth-child(2) {
    width: 35%;
}

.tm-search-table th:nth-child(3),
.tm-search-table td:nth-child(3) {
    width: 20%;
}

.tm-search-table th:nth-child(4),
.tm-search-table td:nth-child(4) {
    width: 20%;
}

/*=========================================
                                                    OUR TEAM PAGE
                                        =========================================*/

/*=========================================
            SECTION
=========================================*/

.team-members-section {
    padding: 0;
}


/*------ Alternate Full Width Background ------*/

.team-member:nth-child(odd) {
    background: var(--body);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.team-member:nth-child(even) {
    background: var(--white);
}


/*------ INNER ------*/

.team-member-inner {
    display: flex;
    align-items: center;
    gap: var(--space-60);
    padding: var(--space-40) 0;
}


/*------ IMAGE ------*/

.team-member-image {
    position: relative;
    width: 250px;
    flex-shrink: 0;
}


.team-member-image img {
    width: 100%;
    height: 285px;
    display: block;
    object-fit: cover;
    border-left: 6px solid var(--primary);
    border-radius: var(--radius-xs);
}


/*------ IMAGE OVERLAY INFO ------*/


.team-member-info {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 18px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(5px);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
}


.team-member-info h4 {
    margin-bottom: 3px;
    font-family: var(--font-heading);
    font-size: var(--fs-18);
    font-weight: var(--fw-medium);
    color: var(--heading);
}


.team-member-info span {
    font-family: var(--font-body);
    font-size: var(--fs-13);
    color: var(--text);
}


/*------ CONTENT ------*/


.team-member-content {
    flex: 1;
}


.team-member-content h3 {
    margin-bottom: var(--space-10);
    font-family: var(--font-heading);
    font-size: var(--fs-32);
    font-weight: var(--fw-medium);
    line-height: 1.2;
    color: var(--heading);
}


.team-member-content p {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--fs-20);
    line-height: 1.6;
    color: var(--text-light);

}

/*=========================================
                POPUP
=========================================*/

.contact-popup {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    z-index: var(--z-modal);
    transition: var(--transition);
}

.contact-popup.active {
    visibility: visible;
    opacity: 1;
}

/*----- OVERLAY -----*/

.contact-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(var(--radius-xs));
}

/*----- BOX -----*/

.contact-popup-box {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: var(--space-20);
    padding: var(--space-25);
    background: var(--body);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    z-index: 2;
    animation: popupShow .3s ease;
}

/*----- CLOSE BUTTON -----*/

.contact-popup-close {
    position: absolute;
    top: var(--space-20);
    right: var(--space-20);
    width: var(--fs-36);
    height: var(--fs-36);
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.contact-popup-close i {
    font-size: var(--fs-18);
}

.contact-popup-close:hover {
    color: var(--heading);
}

/*----- TITLE -----*/

.contact-popup-box h2 {
    font-family: var(--font-heading);
    font-size: var(--fs-28);
    font-weight: var(--fw-medium);
    color: var(--heading);
}

.contact-popup-box>p {
    margin-bottom: var(--space-15);
    font-family: var(--font-body);
    font-size: var(--fs-16);
    line-height: 1.6;
    color: var(--text-light);
}

/*----- DIVIDER -----*/

.popup-divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin-bottom: var(--space-20);
}

/*----- FORM -----*/

.popup-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
}

.popup-form input,
.popup-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    background: var(--white);
    font-family: var(--font-body);
    font-size: var(--fs-12);
    letter-spacing: 2px;
    color: var(--heading);
    transition: var(--transition);
    outline: none;
    box-sizing: border-box;
}

.popup-form input {
    height: 40px;
    padding: 0 var(--space-15);
}

.popup-form textarea {
    height: 88px;
    resize: none;
    padding: 14px var(--space-15);
}

.popup-form input::placeholder,
.popup-form textarea::placeholder {
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.popup-form input:focus,
.popup-form textarea:focus {
    border-color: var(--primary);
}

/*----- NOTE -----*/

.popup-note {
    margin-top: var(--space-5);
}

.popup-note strong {
    display: block;
    font-size: var(--fs-13);
    font-weight: var(--fw-medium);
    line-height: normal;
    color: var(--text-light);
}

.popup-note span {
    font-size: var(--fs-12);
    color: var(--text-light);
}

.popup-note a {
    color: var(--primary-hover);
    text-decoration: none;
}

.popup-note a:hover {
    color: var(--primary);
}

/*----- BUTTON -----*/

.popup-btn {
    width: 118px;
    height: 38px;
    background: var(--secondary);
    border: 1px solid var(--primary);
    border-radius: var(--radius-xs);
    color: var(--heading);
    font-size: var(--fs-14);
    font-weight: var(--fw-medium);
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
}

.popup-btn:hover {
    background: var(--primary);
    color: var(--white);
}

/*----- ANIMATION -----*/

@keyframes popupShow {

    from {
        opacity: 0;
        transform: translateY(var(--space-20)) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}