/* ==================================================
   Travelink County — Base CSS / Root Setup
   Premium Membership + Vacation Ownership Theme
================================================== */

/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap");

:root {
    /* Brand Colors */
    --red: #e21b2d;
    --blue: #172f91;
    --green: #087b45;
    --orange: #d86d16;
    --purple: #9b2fae;

    /* Premium Accent */
    --gold: #d8b75a;
    --gold-light: #f3dc91;
    --gold-dark: #a77b22;

    /* Neutrals */
    --dark: #111827;
    --dark-2: #1f2937;
    --light: #f8f5ef;
    --cream: #fffaf1;
    --white: #ffffff;

    /* Text */
    --text: #334155;
    --muted: #64748b;
    --heading: #111827;

    /* Borders / Soft Backgrounds */
    --border: rgba(15, 23, 42, 0.12);
    --border-light: rgba(255, 255, 255, 0.16);

    --blue-soft: #eef3ff;
    --red-soft: #fff0f2;
    --green-soft: #edf8f2;
    --orange-soft: #fff3e8;
    --purple-soft: #f8ecfb;
    --gold-soft: #fff7dc;

    /* Shadows */
    --shadow-sm: 0 12px 35px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 24px 70px rgba(15, 23, 42, 0.14);
    --shadow-lg: 0 32px 100px rgba(15, 23, 42, 0.22);
    --shadow-gold: 0 18px 42px rgba(216, 183, 90, 0.28);

    /* Radius */
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --radius-pill: 999px;

    /* Fonts */
    --font-body: "Outfit", sans-serif;
    --font-heading: "Cormorant Garamond", serif;

    /* Motion */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ================================
   Reset & Base
================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img,
svg {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--heading);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

p {
    margin-top: 0;
}

::selection {
    color: var(--dark);
    background: var(--gold-light);
}

/* ================================
   Utilities
================================ */

.section-space {
    padding: 80px 0;
}

.section-space-sm {
    padding: 78px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--gold-dark);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-label::before {
    width: 30px;
    height: 2px;
    content: "";
    border-radius: var(--radius-pill);
    background: currentColor;
}

.section-title {
    /* max-width: 780px; */
    margin: 0;
    color: var(--heading);
    font-family: var(--font-heading);
    /* font-size: clamp(38px, 4.4vw, 64px); */
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.section-copy {
    max-width: 680px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.text-gradient {
    display: inline-block;
    color: transparent;
    background: linear-gradient(135deg, var(--red), var(--gold), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
}

.bg-light-custom {
    background: var(--light);
}

.bg-cream-custom {
    background: var(--cream);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.8s var(--ease),
        transform 0.8s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 575.98px) {
    .section-space {
        padding: 76px 0;
    }

    .section-space-sm {
        padding: 60px 0;
    }

    .section-title {
        font-size: 38px;
        line-height: 1.08;
    }

    .section-copy {
        font-size: 15px;
        line-height: 1.7;
    }

    .section-label {
        font-size: 11px;
        letter-spacing: 0.14em;
    }
}

/* ================================
   Buttons
================================ */

.btn-brand,
.btn-outline-brand,
.btn-light-custom {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1;
    text-align: center;
    transition:
        transform 0.3s var(--ease),
        box-shadow 0.3s var(--ease),
        background 0.3s var(--ease),
        color 0.3s var(--ease),
        border-color 0.3s var(--ease);
}

.btn-brand {
    color: #111827;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border: 1px solid rgba(216, 183, 90, 0.8);
    box-shadow: var(--shadow-gold);
}

.btn-brand:hover,
.btn-brand:focus {
    color: #111827;
    background: linear-gradient(135deg, #ffe9a8, #cfa33d);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(216, 183, 90, 0.36);
}

.btn-outline-brand {
    color: var(--dark);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(216, 183, 90, 0.45);
    backdrop-filter: blur(10px);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
    color: var(--white);
    background: var(--dark);
    border-color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.22);
}

.btn-light-custom {
    color: var(--dark);
    background: var(--white);
    border: 1px solid var(--white);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.15);
}

.btn-light-custom:hover,
.btn-light-custom:focus {
    color: var(--dark);
    background: var(--gold-soft);
    border-color: var(--gold-light);
    transform: translateY(-3px);
}

@media (max-width: 575.98px) {
    .btn-brand,
    .btn-outline-brand,
    .btn-light-custom {
        width: 100%;
        min-height: 52px;
        padding: 14px 22px;
    }
}

/* Preloader */
body.tlc-loading {
    overflow: hidden;
}

.tlc-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(30, 136, 229, 0.28),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(251, 140, 0, 0.16),
            transparent 32%
        ),
        linear-gradient(135deg, #0f172a 0%, #101b32 55%, #071020 100%);
    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}

.tlc-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.tlc-preloader::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.055;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
    background-size: 58px 58px;
}

.tlc-preloader__sky {
    position: relative;
    width: min(720px, calc(100% - 36px));
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tlc-flight-path {
    position: absolute;
    top: 58px;
    left: 50%;
    width: min(560px, 82vw);
    height: 165px;
    transform: translateX(-50%);
}

.tlc-flight-dash {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    height: 2px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

.tlc-flight-dash::before {
    position: absolute;
    inset: 0;
    content: "";
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.95) 0 18px,
        transparent 18px 34px
    );
    animation: tlcDashMove 0.9s linear infinite;
}

.tlc-flying-plane {
    position: absolute;
    left: -75px;
    bottom: 24px;
    width: 82px;
    height: 82px;
    color: var(--blue);
    filter: drop-shadow(0 18px 28px rgba(30, 136, 229, 0.36))
        drop-shadow(0 0 18px rgba(30, 136, 229, 0.22));
    animation: tlcPlaneRealFly 2.7s cubic-bezier(0.45, 0.05, 0.35, 1) infinite;
}

.tlc-flying-plane::before {
    position: absolute;
    top: 48px;
    right: 62px;
    width: 95px;
    height: 3px;
    content: "";
    opacity: 0.75;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7));
    border-radius: 999px;
}

.tlc-flying-plane svg {
    width: 100%;
    height: 100%;
    transform: rotate(43deg);
}

.tlc-cloud {
    position: absolute;
    display: block;
    opacity: 0.15;
    background: var(--white);
    border-radius: 999px;
    animation: tlcCloudFloat 6s ease-in-out infinite;
}

.tlc-cloud::before,
.tlc-cloud::after {
    position: absolute;
    content: "";
    background: inherit;
    border-radius: 50%;
}

.tlc-cloud--one {
    top: 72px;
    left: 26px;
    width: 82px;
    height: 22px;
}

.tlc-cloud--one::before {
    left: 16px;
    bottom: 8px;
    width: 28px;
    height: 28px;
}

.tlc-cloud--one::after {
    right: 15px;
    bottom: 6px;
    width: 34px;
    height: 34px;
}

.tlc-cloud--two {
    right: 30px;
    top: 105px;
    width: 92px;
    height: 24px;
    animation-delay: 1s;
}

.tlc-cloud--two::before {
    left: 18px;
    bottom: 8px;
    width: 32px;
    height: 32px;
}

.tlc-cloud--two::after {
    right: 18px;
    bottom: 6px;
    width: 38px;
    height: 38px;
}

.tlc-cloud--three {
    left: 50%;
    bottom: 55px;
    width: 76px;
    height: 20px;
    animation-delay: 1.8s;
}

.tlc-cloud--three::before {
    left: 15px;
    bottom: 7px;
    width: 27px;
    height: 27px;
}

.tlc-cloud--three::after {
    right: 13px;
    bottom: 5px;
    width: 31px;
    height: 31px;
}

.tlc-preloader__content {
    position: relative;
    z-index: 3;
    width: min(440px, 100%);
    margin-top: 135px;
    padding: 32px 26px 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 26px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 28px 75px rgba(0, 0, 0, 0.25);
}

.tlc-logo-wrap {
    width: 92px;
    height: 92px;
    margin: 0 auto 18px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 24px;
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.24),
        0 0 0 7px rgba(255, 255, 255, 0.06);
    animation: tlcLogoFloat 2.4s ease-in-out infinite;
}

.tlc-logo-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.tlc-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    font-weight: 700;
}

.tlc-preloader__content h2 {
    margin: 0 0 10px;
    color: var(--white);
    font-size: clamp(31px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.045em;
}

.tlc-preloader__content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
}

.tlc-loading-bar {
    position: relative;
    width: min(390px, 100%);
    height: 7px;
    overflow: hidden;
    margin: 34px auto 0;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 999px;
}

.tlc-loading-bar span {
    position: absolute;
    inset: 0;
    width: 42%;
    background: linear-gradient(90deg, var(--red), var(--orange), var(--blue));
    border-radius: inherit;
    animation: tlcLoadMove 1.25s ease-in-out infinite;
}

@keyframes tlcDashMove {
    from {
        transform: translateX(-34px);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes tlcPlaneRealFly {
    0% {
        left: -80px;
        bottom: 22px;
        transform: translateY(18px) rotate(-10deg) scale(0.92);
        opacity: 0;
    }

    12%,
    75% {
        opacity: 1;
    }

    45% {
        bottom: 82px;
        transform: translateY(-10px) rotate(4deg) scale(1.04);
    }

    100% {
        left: calc(100% + 20px);
        bottom: 36px;
        transform: translateY(10px) rotate(-6deg) scale(0.95);
        opacity: 0;
    }
}

@keyframes tlcCloudFloat {
    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(16px);
    }
}

@keyframes tlcLogoFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes tlcLoadMove {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(260%);
    }
}

@media (max-width: 575.98px) {
    .tlc-preloader__sky {
        min-height: 410px;
    }

    .tlc-flight-path {
        top: 54px;
        width: 92vw;
        height: 145px;
    }

    .tlc-flying-plane {
        width: 70px;
        height: 70px;
    }

    .tlc-flying-plane::before {
        top: 40px;
        right: 54px;
        width: 80px;
    }

    .tlc-preloader__content {
        margin-top: 125px;
        padding: 28px 20px 26px;
        border-radius: 22px;
    }

    .tlc-logo-wrap {
        width: 82px;
        height: 82px;
        border-radius: 21px;
    }

    .tlc-brand-mark {
        font-size: 16px;
    }

    .tlc-preloader__content h2 {
        font-size: 29px;
    }

    .tlc-preloader__content p {
        font-size: 13px;
    }
}

/* ================================
   Topbar
================================ */

.tlc-topbar {
    position: relative;
    z-index: 1040;
    width: 100%;
    background: linear-gradient(135deg, #0f172a, #111827);
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--font-body);
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tlc-topbar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.tlc-topbar-inner .tlc-topbar-right .social-resp {
    display: flex;
    gap: 15px;
}

.tlc-topbar-left,
.tlc-topbar-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.tlc-topbar span,
.tlc-topbar a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.tlc-topbar i {
    color: var(--gold);
    font-size: 14px;
}

.tlc-topbar a {
    transition: color 0.25s var(--ease);
}

.tlc-topbar a:hover {
    color: var(--gold-light);
}

/* ================================
   TRAVELINK COUNTY HEADER
   Normal Bootstrap Navbar
================================ */

.tlc-main-header {
    position: sticky;
    height: 80px;
    top: 0;
    z-index: 1030;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 34px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.tlc-navbar {
    /*min-height: 84px;*/
    height: 100%;
    padding: 0;
    font-family: var(--font-body);
}

/*.tlc-header-inner {*/
/*  min-height: 84px;*/
/*}*/

.tlc-brand {
    width: 178px;
    min-width: 178px;
    /*width: 150px;*/
    /*  min-width: 160px;*/
    /*height: 64px;*/
    height: 75px;
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.tlc-brand img {
    width: 100%;
    /*max-height: 58px;*/
    max-height: 100%;
    display: block;
    object-fit: contain;
    object-position: left center;
}

.tlc-navbar-collapse {
    flex-grow: 1;
}

/* ================================
   Desktop Menu
================================ */

.tlc-menu-list {
    gap: 15px;
}

.tlc-menu-list .nav-link {
    position: relative;
    min-height: 84px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px !important;
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.25s var(--ease);
}

.tlc-menu-list .nav-link::before {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 23px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition:
        opacity 0.25s var(--ease),
        transform 0.25s var(--ease);
}

.tlc-menu-list .nav-link:hover,
.tlc-menu-list .nav-link.active,
.tlc-menu-list .show > .nav-link {
    color: var(--gold-dark);
}

.tlc-menu-list .nav-link:hover::before,
.tlc-menu-list .nav-link.active::before,
.tlc-menu-list .show > .nav-link::before {
    opacity: 1;
    transform: scaleX(1);
}

.tlc-menu-list .dropdown-toggle::after {
    /* margin-left: 8px; */
    vertical-align: middle;
    border-top-color: currentColor;
}

/* ================================
   Dropdown
================================ */

.tlc-dropdown-menu {
    /* min-width: 330px; */
    min-width: 250px;
    padding: 14px 5px;
    margin-top: 0;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

.tlc-dropdown-menu .dropdown-item {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 12px 8px;
    border-radius: 15px;
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    white-space: normal;
    transition:
        background 0.25s var(--ease),
        color 0.25s var(--ease),
        transform 0.25s var(--ease);
}

.tlc-dropdown-menu .dropdown-item i {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 13px;
    color: var(--gold-dark);
    background: var(--gold-soft);
    font-size: 16px;
}

.tlc-dropdown-menu .dropdown-item:hover,
.tlc-dropdown-menu .dropdown-item:focus {
    color: var(--gold-dark);
    background: var(--cream);
    transform: translateX(3px);
}

@media (min-width: 992px) {
    .tlc-service-dropdown:hover > .dropdown-menu {
        display: block;
    }

    .tlc-service-dropdown:hover > .nav-link {
        color: var(--gold-dark);
    }
}

/* ================================
   Header CTA
================================ */

.dropdown-item:hover,
.dropdown-item.active,
.dropdown-item:active {
    background-color: #e3c671;
    color: #071020;
}

.tlc-header-cta-item {
    margin-left: 8px;
}

.tlc-header-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    /*padding: 13px 22px;*/
    padding: 8px 18px;
    border-radius: 999px;
    color: var(--dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border: 1px solid rgba(216, 183, 90, 0.7);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 14px 34px rgba(216, 183, 90, 0.24);
    transition:
        transform 0.25s var(--ease),
        box-shadow 0.25s var(--ease);
}

.tlc-header-btn:hover {
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(216, 183, 90, 0.32);
    text-decoration: none;
}

/* ================================
   Mobile Toggle
================================ */

.tlc-menu-toggle {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: var(--dark);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.tlc-menu-toggle:focus {
    box-shadow: 0 0 0 4px rgba(216, 183, 90, 0.22);
}

.tlc-menu-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: var(--white);
}

/* ================================
   Mobile Normal Collapse Menu
================================ */

@media (max-width: 991.98px) {
    .tlc-navbar {
        min-height: 74px;
    }

    .tlc-header-inner {
        min-height: 74px;
    }

    .tlc-brand {
        width: 148px;
        min-width: 148px;
        height: 56px;
    }

    .tlc-brand img {
        max-height: 65px;
    }

    .tlc-navbar-collapse {
        width: 100%;
        flex-basis: 100%;
        margin-top: 0;
        padding: 0 0 18px;
    }

    .tlc-menu-list {
        width: 100%;
        gap: 8px;
        padding: 16px;
        margin-top: 10px;
        border-radius: 24px;
        background:
            radial-gradient(
                circle at top left,
                rgba(216, 183, 90, 0.14),
                transparent 34%
            ),
            linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: 0 20px 55px rgba(15, 23, 42, 0.12);
    }

    .tlc-menu-list .nav-item {
        width: 100%;
    }

    .tlc-menu-list .nav-link {
        width: 100%;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 15px !important;
        border-radius: 15px;
        color: var(--dark);
        background: rgba(255, 255, 255, 0.74);
        border: 1px solid rgba(15, 23, 42, 0.07);
        font-size: 14px;
        line-height: 1.2;
        white-space: normal;
    }

    .tlc-menu-list .nav-link::before {
        display: none;
    }

    .tlc-menu-list .nav-link:hover,
    .tlc-menu-list .nav-link.active,
    .tlc-menu-list .show > .nav-link {
        color: var(--gold-dark);
        background: var(--cream);
        border-color: rgba(216, 183, 90, 0.28);
    }

    .tlc-menu-list .dropdown-toggle::after {
        margin-left: auto;
    }

    .tlc-dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        min-width: 100%;
        padding: 8px;
        margin: 7px 0 2px !important;
        border-radius: 18px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        background: rgba(255, 255, 255, 0.72);
        box-shadow: none;
    }

    .tlc-dropdown-menu .dropdown-item {
        min-height: 48px;
        padding: 10px 11px;
        border-radius: 13px;
        font-size: 13.5px;
    }

    .tlc-dropdown-menu .dropdown-item i {
        width: 32px;
        height: 32px;
        border-radius: 11px;
        font-size: 14px;
    }

    .tlc-header-cta-item {
        margin-left: 0;
        margin-top: 8px;
    }

    .tlc-header-btn {
        width: 100%;
        min-height: 52px;
        border-radius: 15px;
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .tlc-header-inner {
        padding-left: 15px;
        padding-right: 15px;
    }

    .tlc-brand {
        width: 138px;
        min-width: 138px;
    }

    .tlc-menu-list {
        padding: 14px;
        border-radius: 20px;
    }
}

/* ================================
   TRAVELINK COUNTY RESPONSIVE HERO
================================ */

/* VIDEO HERO ONLY */
.tlv-video-hero {
    position: relative;
    width: 100%;
    min-height: clamp(360px, 62vw, 760px);
    min-height: 80vh;
    overflow: hidden;
    background: #071225;
}

.tlv-video-hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Soft shade only, video clear rahega */
.tlv-video-shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(7, 18, 37, 0.04) 0%,
            rgba(7, 18, 37, 0.1) 60%,
            rgba(7, 18, 37, 0.38) 100%
        ),
        radial-gradient(
            circle at 50% 15%,
            rgba(255, 255, 255, 0.08),
            transparent 38%
        );
}

.home-about-btn {
    background: #0f1e34;
    color: #fff;
}
.home-about-btn:hover {
    background: #e3bd48 !important;
    color: #0f1e34;
}

/* ================================
   BELOW CONTENT + FORM SECTION
================================ */

.tlv-enquiry-section {
    position: relative;
    padding: clamp(36px, 6vw, 86px) 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(216, 183, 90, 0.14),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 100%,
            rgba(77, 137, 191, 0.16),
            transparent 34%
        ),
        linear-gradient(135deg, #071225 0%, #0c1a2f 52%, #12233b 100%);
}

.tlv-enquiry-section .container {
    width: min(100% - 32px, 1250px);
    max-width: 1250px;
    margin-inline: auto;
    padding-left: 0;
    padding-right: 0;
}

.tlv-enquiry-box {
    width: 100%;
    padding: clamp(18px, 3vw, 34px);
    border-radius: clamp(22px, 3vw, 34px);
    /*background: linear-gradient(*/
    /*    135deg,*/
    /*    rgba(255, 255, 255, 0.095),*/
    /*    rgba(255, 255, 255, 0.045)*/
    /*  ),*/
    /*  radial-gradient(*/
    /*    circle at 90% 10%,*/
    /*    rgba(216, 183, 90, 0.13),*/
    /*    transparent 32%*/
    /*  );*/
    background: #f8f8f8;
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.tlv-content-card,
.tlv-form-card {
    border-radius: clamp(20px, 2.6vw, 28px);
}

/* LEFT CONTENT */
.tlv-content-card {
    padding: clamp(22px, 3.4vw, 44px);
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.085),
        rgba(255, 255, 255, 0.035)
    );
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.tlv-hero-label {
    width: fit-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--gold-light, #f2d37b);
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(216, 183, 90, 0.34);
    font-family: var(--font-body, "Outfit", sans-serif);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.13em;
    line-height: 1.35;
    text-transform: uppercase;
}

.tlv-content-card h1 {
    max-width: 560px;
    margin: 0;
    color: #ffffff;
    font-family: var(--font-heading, "Cormorant Garamond", serif);
    font-size: clamp(38px, 5.2vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.tlv-content-card h1 span {
    display: block;
    color: var(--gold-light, #f2d37b);
    font-style: italic;
}

.tlv-content-card p {
    max-width: 540px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--font-body, "Outfit", sans-serif);
    font-size: clamp(14px, 1.4vw, 16px);
    line-height: 1.72;
    font-weight: 500;
}

.tlv-feature-list {
    display: grid;
    gap: 13px;
    margin-top: 26px;
}

.tlv-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: rgba(255, 255, 255, 0.86);
    font-family: var(--font-body, "Outfit", sans-serif);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
}

.tlv-feature-item i {
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--gold-light, #f2d37b);
    font-size: 15px;
}

.tlv-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 32px;
}

.tlv-btn-primary,
.tlv-btn-outline {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-family: var(--font-body, "Outfit", sans-serif);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition: all 0.25s ease;
}

.tlv-btn-primary {
    color: var(--dark, #071225);
    background: linear-gradient(
        135deg,
        var(--gold-light, #f2d37b),
        var(--gold, #d8b75a)
    );
    border: 1px solid rgba(216, 183, 90, 0.65);
    box-shadow: 0 16px 38px rgba(216, 183, 90, 0.18);
}

.tlv-btn-outline {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.tlv-btn-primary:hover,
.tlv-btn-outline:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.tlv-btn-primary:hover {
    color: var(--dark, #071225);
    box-shadow: 0 22px 48px rgba(216, 183, 90, 0.28);
}

.tlv-btn-outline:hover {
    color: var(--gold-light, #f2d37b);
    background: rgba(216, 183, 90, 0.11);
    border-color: rgba(216, 183, 90, 0.42);
}

/* RIGHT FORM */
.tlv-form-card {
    padding: clamp(22px, 3.4vw, 42px);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.98),
        rgba(247, 249, 252, 0.95)
    );
    border: 1px solid rgba(255, 255, 255, 0.64);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.tlv-form-tag {
    display: inline-flex;
    margin-bottom: 12px;
    color: #967326;
    font-family: var(--font-body, "Outfit", sans-serif);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.15em;
    line-height: 1.3;
    text-transform: uppercase;
}

.tlv-form-card h3 {
    max-width: 460px;
    margin: 0;
    color: #071225;
    font-family: var(--font-heading, "Cormorant Garamond", serif);
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.tlv-form-card p {
    max-width: 430px;
    margin: 13px 0 0;
    color: #5b6472;
    font-family: var(--font-body, "Outfit", sans-serif);
    font-size: 15px;
    line-height: 1.65;
    font-weight: 500;
}

.tlv-hero-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 24px;
}

.tlv-hero-form input,
.tlv-hero-form select {
    width: 100%;
    height: 56px;
    padding: 0 17px;
    border: 1px solid #e1e7f0;
    border-radius: 15px;
    outline: none;
    color: #071225;
    background: #ffffff;
    font-family: var(--font-body, "Outfit", sans-serif);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(7, 18, 37, 0.05);
    transition: all 0.25s ease;
}

.tlv-hero-form select {
    cursor: pointer;
    appearance: auto;
}

.tlv-hero-form input::placeholder {
    color: #7b8492;
    opacity: 1;
}

.tlv-hero-form input:focus,
.tlv-hero-form select:focus {
    border-color: rgba(216, 183, 90, 0.8);
    box-shadow: 0 0 0 4px rgba(216, 183, 90, 0.14);
}

.tlv-hero-form button {
    width: 100%;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 15px;
    color: #071225;
    background: linear-gradient(
        135deg,
        var(--gold-light, #f2d37b),
        var(--gold, #d8b75a)
    );
    font-family: var(--font-body, "Outfit", sans-serif);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 16px 36px rgba(216, 183, 90, 0.24);
    transition: all 0.25s ease;
}

.tlv-hero-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(216, 183, 90, 0.32);
}

.tlv-form-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e8edf4;
    color: #596373;
    font-family: var(--font-body, "Outfit", sans-serif);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 800;
}

.tlv-form-note i {
    flex: 0 0 auto;
    margin-top: 1px;
    color: #967326;
    font-size: 15px;
}

/* ================================
   RESPONSIVE FIXES
================================ */

@media (max-width: 1199.98px) {
    .tlv-enquiry-box {
        padding: 26px;
    }

    .tlv-content-card,
    .tlv-form-card {
        padding: 32px;
    }
}

@media (max-width: 991.98px) {
    .tlv-video-hero {
        min-height: 520px;
    }

    .tlv-enquiry-section {
        padding: 52px 0;
    }

    .tlv-enquiry-box {
        padding: 22px;
    }

    .tlv-content-card,
    .tlv-form-card {
        height: auto !important;
    }
}

@media (max-width: 767.98px) {
    .tlv-video-hero {
        min-height: 430px;
    }

    .tlv-video-hero-media {
        object-position: center;
    }

    .tlv-enquiry-section {
        padding: 36px 0;
    }

    .tlv-enquiry-section .container {
        width: min(100% - 26px, 1250px);
    }

    .tlv-enquiry-box {
        padding: 14px;
        border-radius: 24px;
    }

    .tlv-content-card,
    .tlv-form-card {
        padding: 24px;
        border-radius: 22px;
    }

    .tlv-hero-label {
        margin-bottom: 15px;
        padding: 9px 13px;
        font-size: 9.5px;
        letter-spacing: 0.1em;
    }

    .tlv-content-card h1 {
        font-size: 39px;
        line-height: 1.02;
    }

    .tlv-content-card p {
        margin-top: 16px;
        font-size: 14.5px;
        line-height: 1.62;
    }

    .tlv-feature-list {
        gap: 11px;
        margin-top: 22px;
    }

    .tlv-feature-item {
        font-size: 13.5px;
        line-height: 1.5;
    }

    .tlv-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 11px;
        margin-top: 26px;
    }

    .tlv-btn-primary,
    .tlv-btn-outline {
        width: 100%;
        min-height: 50px;
        padding: 13px 16px;
        font-size: 13px;
    }

    .tlv-form-card h3 {
        font-size: 30px;
    }

    .tlv-form-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .tlv-hero-form {
        gap: 12px;
        margin-top: 21px;
    }

    .tlv-hero-form input,
    .tlv-hero-form select,
    .tlv-hero-form button {
        height: 52px;
        border-radius: 14px;
        font-size: 13.5px;
    }
}

@media (max-width: 575.98px) {
    .tlv-video-hero {
        min-height: 350px;
    }

    .tlv-enquiry-section {
        padding: 30px 0;
    }

    .tlv-enquiry-section .container {
        width: min(100% - 22px, 1250px);
    }

    .tlv-enquiry-box {
        /*padding: 12px;*/
        padding: 32px 22px;
        border-radius: 22px;
    }

    .tlv-content-card,
    .tlv-form-card {
        padding: 22px 20px;
        border-radius: 20px;
    }

    .tlv-content-card h1 {
        font-size: 35px;
    }

    .tlv-content-card p {
        font-size: 14px;
    }

    .tlv-feature-item {
        gap: 10px;
        font-size: 13px;
    }

    .tlv-form-card h3 {
        font-size: 28px;
    }

    .tlv-form-note {
        font-size: 12.5px;
    }
}

@media (max-width: 390px) {
    .tlv-video-hero {
        min-height: 350px;
    }

    .tlv-content-card,
    .tlv-form-card {
        padding: 20px 18px;
    }

    .tlv-content-card h1 {
        font-size: 32px;
    }

    .tlv-hero-label {
        font-size: 9px;
        padding: 8px 11px;
    }
}

/* ==================================================
   Travelink County — About Us Section
   Paste after Hero CSS
================================================== */

.tlx-about {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 8% 18%,
            rgba(216, 183, 90, 0.13),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 80%,
            rgba(226, 27, 45, 0.08),
            transparent 30%
        ),
        var(--cream);
}

.tlx-about::before {
    content: "";
    position: absolute;
    right: -110px;
    top: 80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(216, 183, 90, 0.25);
    pointer-events: none;
}

.tlx-about-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 70px;
}

/* Left Visual */
.tlx-about-visual {
    position: relative;
    min-height: 620px;
}

.tlx-about-image {
    position: absolute;
    overflow: hidden;
    border-radius: 34px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.tlx-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.tlx-about-image:hover img {
    transform: scale(1.06);
}

.tlx-about-image-main {
    left: 0;
    top: 0;
    width: 78%;
    height: 510px;
}

.tlx-about-image-small {
    right: 0;
    bottom: 0;
    width: 52%;
    height: 310px;
    border: 10px solid var(--cream);
}

.tlx-about-badge {
    position: absolute;
    left: 34px;
    bottom: 56px;
    width: 245px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.2);
}

.tlx-about-badge span {
    display: block;
    margin-bottom: 6px;
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.tlx-about-badge strong {
    display: block;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.tlx-about-exp {
    position: absolute;
    right: 20px;
    top: 72px;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: var(--shadow-gold);
}

.tlx-about-exp strong {
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 38px;
    line-height: 1;
}

.tlx-about-exp span {
    max-width: 110px;
    margin-top: 6px;
    color: rgba(17, 24, 39, 0.78);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

/* Right Content */
.tlx-about-content {
    max-width: 680px;
}

.tlx-about .section-title {
    max-width: 680px;
}

.tlx-about .section-copy {
    max-width: 670px;
}

.tlx-about-text {
    max-width: 660px;
    margin: 16px 0 0;
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
}

.tlx-about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.tlx-about-highlights div {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.tlx-about-highlights i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 14px;
    color: var(--dark);
    background: var(--gold-soft);
    font-size: 19px;
}

.tlx-about-highlights span {
    color: var(--dark);
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.35;
}

.tlx-about-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.tlx-about-services span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--gold-dark);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(216, 183, 90, 0.26);
    font-size: 12px;
    font-weight: 800;
}

.tlx-about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

/* Tablet */
@media (max-width: 1199.98px) {
    .tlx-about-grid {
        gap: 45px;
    }

    .tlx-about-visual {
        min-height: 560px;
    }

    .tlx-about-image-main {
        height: 470px;
    }

    .tlx-about-image-small {
        height: 285px;
    }

    .tlx-about-badge {
        left: 24px;
        bottom: 48px;
    }
}

/* Mobile Tablet */
@media (max-width: 991.98px) {
    .tlx-about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .tlx-about-content {
        max-width: 100%;
    }

    .tlx-about-visual {
        min-height: 540px;
        max-width: 680px;
        margin: 0 auto;
        width: 100%;
        order: 2;
    }

    .tlx-about-content {
        order: 1;
    }

    .tlx-about-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .tlx-about::before {
        display: none;
    }

    .tlx-about-grid {
        gap: 38px;
    }

    .tlx-about-visual {
        min-height: 455px;
    }

    .tlx-about-image {
        border-radius: 24px;
    }

    .tlx-about-image-main {
        width: 88%;
        height: 360px;
    }

    .tlx-about-image-small {
        width: 56%;
        height: 215px;
        border-width: 7px;
    }

    .tlx-about-badge {
        left: 16px;
        bottom: 34px;
        width: 210px;
        padding: 18px;
        border-radius: 20px;
    }

    .tlx-about-badge strong {
        font-size: 23px;
    }

    .tlx-about-exp {
        right: 6px;
        top: 42px;
        width: 116px;
        height: 116px;
    }

    .tlx-about-exp strong {
        font-size: 30px;
    }

    .tlx-about-exp span {
        max-width: 88px;
        font-size: 9px;
    }

    .tlx-about-highlights {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 24px;
    }

    .tlx-about-highlights div {
        min-height: auto;
        padding: 16px;
        border-radius: 18px;
    }

    .tlx-about-highlights i {
        width: 38px;
        height: 38px;
        border-radius: 13px;
        font-size: 17px;
    }

    .tlx-about-actions {
        flex-direction: column;
        margin-top: 28px;
    }

    .tlx-about-services span {
        font-size: 11.5px;
    }
}

@media (max-width: 380px) {
    .tlx-about-visual {
        min-height: 430px;
    }

    .tlx-about-image-main {
        height: 335px;
    }

    .tlx-about-image-small {
        height: 200px;
    }

    .tlx-about-badge {
        width: 195px;
    }
}

/* ==================================================
   Travelink County — Modern Services Section
   Replace old services CSS with this
================================================== */

.tlx-services {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(216, 183, 90, 0.13),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 80%,
            rgba(226, 27, 45, 0.06),
            transparent 30%
        ),
        linear-gradient(180deg, #ffffff 0%, #f8f5ef 100%);
}

.tlx-services::before {
    content: "";
    position: absolute;
    right: -130px;
    top: 100px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(216, 183, 90, 0.24);
    pointer-events: none;
}

.tlx-services-head {
    position: relative;
    z-index: 2;
    margin-bottom: 42px;
}

.tlx-services-head-grid {
    display: grid;
    /*grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);*/
    grid-template-columns: minmax(320px, 0.9fr);
    gap: 44px;
    align-items: end;
}

.tlx-services-head-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 16.5px;
    line-height: 1.8;
}

/* Grid */
.tlx-services-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 24px;
}

/* Card */
.tlx-service-box {
    position: relative;
    min-height: 300px;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    overflow: hidden;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 54px rgba(15, 23, 42, 0.08);
    transition:
        transform 0.3s var(--ease),
        box-shadow 0.3s var(--ease),
        border-color 0.3s var(--ease);
}

.tlx-service-box:hover {
    transform: translateY(-7px);
    border-color: rgba(216, 183, 90, 0.34);
    box-shadow: 0 30px 78px rgba(15, 23, 42, 0.14);
}

.tlx-service-media {
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

.tlx-service-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 45%, rgba(255, 255, 255, 0.18)),
        linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.28));
}

.tlx-service-media img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.7s var(--ease);
}

.tlx-service-box:hover .tlx-service-media img {
    transform: scale(1.08);
}

.tlx-service-content {
    position: relative;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tlx-service-content::before {
    content: "";
    position: absolute;
    right: -58px;
    top: -58px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(216, 183, 90, 0.12);
    pointer-events: none;
}

.tlx-service-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.tlx-service-top span {
    color: rgba(15, 23, 42, 0.22);
    /*font-family: var(--font-heading);*/
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.tlx-service-top i {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    color: var(--dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    font-size: 22px;
    box-shadow: 0 12px 30px rgba(216, 183, 90, 0.24);
}

.tlx-service-box h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--heading);
    font-family: var(--font-heading);
    font-size: 32px;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.tlx-service-box p {
    position: relative;
    z-index: 1;
    margin: 15px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.72;
}

.tlx-service-tags {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.tlx-service-tags span {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--gold-dark);
    background: var(--gold-soft);
    border: 1px solid rgba(216, 183, 90, 0.22);
    font-size: 11.5px;
    font-weight: 800;
    line-height: 1;
}

.tlx-service-btn {
    position: relative;
    z-index: 1;
    width: fit-content;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 26px;
    padding: 12px 18px;
    border-radius: 999px;
    color: var(--dark);
    background: transparent;
    border: 1px solid rgba(15, 23, 42, 0.14);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition:
        background 0.25s var(--ease),
        border-color 0.25s var(--ease),
        transform 0.25s var(--ease);
}

.tlx-service-btn i {
    transition: transform 0.25s var(--ease);
}

.tlx-service-btn:hover {
    color: var(--dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-color: rgba(216, 183, 90, 0.5);
    transform: translateY(-2px);
}

.tlx-service-btn:hover i {
    transform: translateX(3px);
}

/* Dark Featured Card */
.tlx-service-dark {
    background:
        radial-gradient(
            circle at 90% 12%,
            rgba(216, 183, 90, 0.2),
            transparent 30%
        ),
        linear-gradient(145deg, #101827, #1f2937);
    border-color: rgba(255, 255, 255, 0.12);
}

.tlx-service-dark .tlx-service-content::before {
    background: rgba(216, 183, 90, 0.16);
}

.tlx-service-dark .tlx-service-top span {
    color: rgba(255, 255, 255, 0.18);
}

.tlx-service-dark h3 {
    color: var(--white);
}

.tlx-service-dark p {
    color: rgba(255, 255, 255, 0.75);
}

.tlx-service-dark .tlx-service-tags span {
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(216, 183, 90, 0.26);
}

.tlx-service-dark .tlx-service-btn {
    color: var(--dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-color: rgba(216, 183, 90, 0.45);
}

/* Gold Card */
.tlx-service-gold {
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(255, 255, 255, 0.48),
            transparent 28%
        ),
        linear-gradient(145deg, #fffaf1, #f4e2a7);
}

.tlx-service-gold .tlx-service-tags span {
    background: rgba(255, 255, 255, 0.62);
}

/* Responsive */
@media (max-width: 1199.98px) {
    .tlx-service-box {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .tlx-service-media {
        height: 240px;
    }

    .tlx-service-media img {
        min-height: 240px;
    }
}

@media (max-width: 991.98px) {
    .tlx-services-head-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .tlx-services-head-grid p {
        max-width: 720px;
    }

    .tlx-services-grid {
        grid-template-columns: 1fr;
    }

    .tlx-service-box {
        grid-template-columns: 0.85fr 1.15fr;
    }

    .tlx-service-media {
        height: auto;
    }

    .tlx-service-media img {
        min-height: 360px;
    }
}

@media (max-width: 767.98px) {
    .tlx-service-box {
        grid-template-columns: 1fr;
        border-radius: 26px;
    }

    .tlx-service-media {
        height: 230px;
    }

    .tlx-service-media img {
        min-height: 230px;
    }

    .tlx-service-content {
        padding: 26px;
    }

    .tlx-service-box h3 {
        font-size: 29px;
    }
}

@media (max-width: 575.98px) {
    .tlx-services-head {
        margin-bottom: 30px;
    }

    .tlx-services-grid {
        gap: 18px;
    }

    .tlx-service-media {
        height: 205px;
    }

    .tlx-service-media img {
        min-height: 205px;
    }

    .tlx-service-content {
        padding: 23px;
    }

    .tlx-service-top {
        margin-bottom: 15px;
    }

    .tlx-service-top span {
        font-size: 31px;
    }

    .tlx-service-top i {
        width: 46px;
        height: 46px;
        border-radius: 15px;
        font-size: 20px;
    }

    .tlx-service-box h3 {
        font-size: 26px;
    }

    .tlx-service-box p {
        font-size: 14.5px;
    }

    .tlx-service-btn {
        width: 100%;
    }
}

/* ==================================================
   Travelink County — Dark Animated Destinations
================================================== */

.tlx-destinations {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 18%,
            rgba(216, 183, 90, 0.18),
            transparent 28%
        ),
        radial-gradient(
            circle at 88% 76%,
            rgba(226, 27, 45, 0.14),
            transparent 32%
        ),
        linear-gradient(135deg, #070a13 0%, #101827 48%, #0b111f 100%);
    color: var(--white);
}

.tlx-destinations::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(
        180deg,
        transparent,
        #000 18%,
        #000 82%,
        transparent
    );
    pointer-events: none;
}

.tlx-dest-bg span {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
    animation: tlxDestFloat 8s ease-in-out infinite;
}

.tlx-dest-bg span:nth-child(1) {
    width: 210px;
    height: 210px;
    left: -70px;
    top: 70px;
    border: 1px solid rgba(216, 183, 90, 0.24);
}

.tlx-dest-bg span:nth-child(2) {
    width: 340px;
    height: 340px;
    right: -140px;
    top: 110px;
    background: radial-gradient(
        circle,
        rgba(216, 183, 90, 0.18),
        transparent 68%
    );
    animation-delay: 1.2s;
}

.tlx-dest-bg span:nth-child(3) {
    width: 260px;
    height: 260px;
    left: 42%;
    bottom: -130px;
    background: radial-gradient(
        circle,
        rgba(226, 27, 45, 0.16),
        transparent 70%
    );
    animation-delay: 2s;
}

.tlx-dest-head {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto 34px;
    text-align: center;
}

.tlx-dest-head .section-label {
    color: var(--gold-light);
}

.tlx-dest-head .section-label::before {
    background: var(--gold-light);
}

.tlx-dest-head .section-title {
    max-width: 860px;
    margin: 0 auto;
    color: var(--white);
}

.tlx-dest-head .section-title span {
    color: var(--gold-light);
    font-style: italic;
}

.tlx-dest-head p {
    max-width: 720px;
    margin: 22px auto 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16.5px;
    line-height: 1.8;
}

.tlx-dest-tabs {
    position: relative;
    z-index: 2;
    width: fit-content;
    max-width: 100%;
    display: flex;
    gap: 8px;
    margin: 0 auto 34px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.tlx-dest-tabs button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 22px;
    border: 0;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.72);
    background: transparent;
    font-size: 14px;
    font-weight: 800;
    transition:
        background 0.25s var(--ease),
        color 0.25s var(--ease),
        transform 0.25s var(--ease);
}

.tlx-dest-tabs button.active {
    color: var(--dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 12px 30px rgba(216, 183, 90, 0.24);
}

.tlx-dest-tabs button:hover {
    transform: translateY(-1px);
}

.tlx-dest-panel {
    position: relative;
    z-index: 2;
    display: none;
}

.tlx-dest-panel.active {
    display: block;
    animation: tlxDestPanel 0.45s var(--ease) both;
}

.tlx-dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.tlx-dest-card {
    position: relative;
    min-height: 365px;
    overflow: hidden;
    border-radius: 30px;
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
    transform: translateY(0);
    transition:
        transform 0.35s var(--ease),
        border-color 0.35s var(--ease),
        box-shadow 0.35s var(--ease);
}

.tlx-dest-card:hover {
    transform: translateY(-8px);
    border-color: rgba(216, 183, 90, 0.42);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.tlx-dest-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition:
        transform 0.8s var(--ease),
        filter 0.35s var(--ease);
}

.tlx-dest-card:hover img {
    transform: scale(1.1);
    filter: saturate(1.12);
}

.tlx-dest-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(7, 10, 19, 0.08) 0%,
        rgba(7, 10, 19, 0.3) 38%,
        rgba(7, 10, 19, 0.92) 100%
    );
}

.tlx-dest-card::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 0;
    z-index: 2;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(
        90deg,
        var(--red),
        var(--gold-light),
        var(--green)
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
}

.tlx-dest-card:hover::after {
    transform: scaleX(1);
}

.tlx-dest-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 26px;
}

.tlx-dest-card-content span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 13px;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(216, 183, 90, 0.24);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tlx-dest-card-content h3 {
    margin: 0;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 34px;
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.tlx-dest-card-content p {
    max-width: 320px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14.5px;
    line-height: 1.65;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .tlx-dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tlx-dest-card {
        min-height: 340px;
    }
}

@media (max-width: 767.98px) {
    .tlx-dest-head {
        text-align: left;
        margin-bottom: 28px;
    }

    .tlx-dest-head .section-title {
        margin: 0;
    }

    .tlx-dest-head p {
        margin-left: 0;
        margin-right: 0;
    }

    .tlx-dest-tabs {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .tlx-dest-tabs button {
        flex: 1;
        justify-content: center;
        padding-inline: 14px;
    }

    .tlx-dest-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .tlx-dest-card {
        min-height: 315px;
        border-radius: 24px;
    }

    .tlx-dest-card-content {
        padding: 22px;
    }

    .tlx-dest-card-content h3 {
        font-size: 30px;
    }
}

@media (max-width: 420px) {
    .tlx-dest-tabs {
        padding: 6px;
    }

    .tlx-dest-tabs button {
        min-height: 42px;
        font-size: 13px;
        gap: 7px;
    }

    .tlx-dest-card {
        min-height: 295px;
    }

    .tlx-dest-card-content h3 {
        font-size: 27px;
    }

    .tlx-dest-card-content p {
        font-size: 13.5px;
    }
}

/* Animations */
@keyframes tlxDestFloat {
    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.72;
    }

    50% {
        transform: translateY(18px) scale(1.04);
        opacity: 0.42;
    }
}

@keyframes tlxDestPanel {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================================================
   Travelink County — Why Choose Us Section
   Light Premium Style
================================================== */

.tlx-why {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 14%,
            rgba(216, 183, 90, 0.18),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 82%,
            rgba(226, 27, 45, 0.06),
            transparent 30%
        ),
        linear-gradient(180deg, #fffaf1 0%, #ffffff 48%, #f8f5ef 100%);
}

.tlx-why::before {
    content: "";
    position: absolute;
    left: -130px;
    top: 120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(216, 183, 90, 0.25);
    pointer-events: none;
}

.tlx-why::after {
    content: "";
    position: absolute;
    right: -150px;
    bottom: 90px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(216, 183, 90, 0.14),
        transparent 68%
    );
    pointer-events: none;
}

.tlx-why-head {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto 46px;
    text-align: center;
}

.tlx-why-head .section-title {
    max-width: 850px;
    margin: 0 auto;
}

.tlx-why-head p {
    max-width: 720px;
    margin: 22px auto 0;
    color: var(--muted);
    font-size: 16.5px;
    line-height: 1.8;
}

/* Layout */
.tlx-why-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 26px;
    align-items: stretch;
}

/* Feature Card */
.tlx-why-feature {
    position: relative;
    min-height: 100%;
    padding: 38px;
    border-radius: 36px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 88% 10%,
            rgba(216, 183, 90, 0.22),
            transparent 30%
        ),
        linear-gradient(145deg, #101827, #1f2937);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
}

.tlx-why-feature::before {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    border: 1px solid rgba(216, 183, 90, 0.26);
}

.tlx-why-feature-icon {
    position: relative;
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    border-radius: 22px;
    color: var(--dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    font-size: 28px;
    box-shadow: 0 16px 38px rgba(216, 183, 90, 0.28);
}

.tlx-why-feature > span {
    position: relative;
    display: block;
    margin-bottom: 14px;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.tlx-why-feature h3 {
    position: relative;
    max-width: 520px;
    margin: 0;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(32px, 3.2vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.tlx-why-feature p {
    position: relative;
    max-width: 500px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15.5px;
    line-height: 1.75;
}

.tlx-why-feature-points {
    position: relative;
    display: grid;
    gap: 12px;
    margin-top: 34px;
}

.tlx-why-feature-points div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tlx-why-feature-points strong {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--dark);
    background: var(--gold-light);
    font-size: 13px;
    font-weight: 900;
}

.tlx-why-feature-points span {
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 700;
}

/* Cards Grid */
.tlx-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.tlx-why-card {
    position: relative;
    min-height: 250px;
    padding: 30px;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
    transition:
        transform 0.3s var(--ease),
        box-shadow 0.3s var(--ease),
        border-color 0.3s var(--ease),
        background 0.3s var(--ease);
}

.tlx-why-card::before {
    content: "";
    position: absolute;
    right: -62px;
    top: -62px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(216, 183, 90, 0.13);
    transition: transform 0.35s var(--ease);
}

.tlx-why-card::after {
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 0;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}

.tlx-why-card:hover {
    transform: translateY(-8px);
    background: var(--white);
    border-color: rgba(216, 183, 90, 0.32);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}

.tlx-why-card:hover::before {
    transform: scale(1.15);
}

.tlx-why-card:hover::after {
    transform: scaleX(1);
}

.tlx-why-icon {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 19px;
    color: var(--dark);
    background: var(--gold-soft);
    font-size: 24px;
    transition:
        background 0.3s var(--ease),
        transform 0.3s var(--ease);
}

.tlx-why-card:hover .tlx-why-icon {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: rotate(-4deg) scale(1.04);
}

.tlx-why-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--heading);
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.tlx-why-card p {
    position: relative;
    z-index: 1;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.72;
}

/* Stats */
.tlx-why-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 28px;
    padding: 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
}

.tlx-why-stats div {
    min-height: 112px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #fffaf1);
    border: 1px solid rgba(216, 183, 90, 0.18);
}

.tlx-why-stats strong {
    color: var(--gold-dark);
    font-family: var(--font-heading);
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.03em;
}

.tlx-why-stats span {
    margin-top: 9px;
    color: var(--muted);
    font-size: 13.5px;
    font-weight: 800;
    line-height: 1.35;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .tlx-why-layout {
        grid-template-columns: 1fr;
    }

    .tlx-why-feature {
        min-height: auto;
    }
}

@media (max-width: 991.98px) {
    .tlx-why-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .tlx-why-head {
        text-align: left;
        margin-bottom: 32px;
    }

    .tlx-why-head .section-title,
    .tlx-why-head p {
        margin-left: 0;
        margin-right: 0;
    }

    .tlx-why-grid {
        grid-template-columns: 1fr;
    }

    .tlx-why-feature {
        padding: 28px;
        border-radius: 28px;
    }

    .tlx-why-card {
        min-height: auto;
        padding: 26px;
        border-radius: 24px;
    }

    .tlx-why-stats {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }
}

@media (max-width: 575.98px) {
    .tlx-why-feature {
        padding: 24px;
    }

    .tlx-why-feature-icon {
        width: 56px;
        height: 56px;
        border-radius: 19px;
        font-size: 24px;
    }

    .tlx-why-feature h3 {
        font-size: 32px;
    }

    .tlx-why-feature-points div {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .tlx-why-card h3 {
        font-size: 25px;
    }

    .tlx-why-icon {
        width: 50px;
        height: 50px;
        border-radius: 17px;
        font-size: 22px;
    }

    .tlx-why-stats div {
        min-height: 96px;
    }

    .tlx-why-stats strong {
        font-size: 30px;
    }
}

/* ==================================================
   Travelink County — Clean Dark Blue CTA
================================================== */

.tlx-enquiry-cta {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background:
        radial-gradient(
            circle at 18% 18%,
            rgba(216, 183, 90, 0.16),
            transparent 30%
        ),
        radial-gradient(
            circle at 86% 82%,
            rgba(226, 27, 45, 0.11),
            transparent 32%
        ),
        linear-gradient(135deg, #071225 0%, #0f1d36 48%, #071020 100%);
    color: var(--white);
}

.tlx-enquiry-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.55;
    pointer-events: none;
}

.tlx-enquiry-cta::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    border: 1px solid rgba(216, 183, 90, 0.25);
    pointer-events: none;
}

.tlx-enquiry-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.tlx-enquiry-label {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.tlx-enquiry-content h2 {
    margin: 0;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(40px, 4.5vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.tlx-enquiry-content p {
    max-width: 640px;
    margin: 22px auto 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.8;
}

.tlx-enquiry-form {
    max-width: 700px;
    margin: 42px auto 0;
}

.tlx-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 14px;
}

.tlx-enquiry-form input,
.tlx-enquiry-form select {
    width: 100%;
    height: 60px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    outline: none;
    color: var(--dark);
    background: rgba(255, 255, 255, 0.96);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    box-shadow: none;
    transition:
        border-color 0.25s var(--ease),
        box-shadow 0.25s var(--ease),
        background 0.25s var(--ease);
}

.tlx-enquiry-form input::placeholder {
    color: #6b7280;
}

.tlx-enquiry-form input:focus,
.tlx-enquiry-form select:focus {
    background: var(--white);
    border-color: rgba(216, 183, 90, 0.75);
    box-shadow: 0 0 0 4px rgba(216, 183, 90, 0.14);
}

.tlx-enquiry-form button {
    width: 100%;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 14px;
    color: var(--dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 18px 42px rgba(216, 183, 90, 0.22);
    transition:
        transform 0.25s var(--ease),
        box-shadow 0.25s var(--ease);
}

.tlx-enquiry-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 54px rgba(216, 183, 90, 0.32);
}

.tlx-enquiry-form button i {
    font-size: 15px;
    transition: transform 0.25s var(--ease);
}

.tlx-enquiry-form button:hover i {
    transform: translateX(3px);
}

.tlx-enquiry-note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    font-weight: 600;
}

.tlx-enquiry-note i {
    color: var(--gold-light);
}

/* Responsive */
@media (max-width: 767.98px) {
    .tlx-enquiry-cta {
        padding: 78px 0;
    }

    .tlx-enquiry-content {
        text-align: left;
    }

    .tlx-enquiry-content p {
        margin-left: 0;
        margin-right: 0;
    }

    .tlx-enquiry-form {
        margin-top: 32px;
    }

    .tlx-form-row {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 12px;
    }

    .tlx-enquiry-note {
        align-items: flex-start;
        justify-content: flex-start;
        font-size: 14px;
        line-height: 1.5;
    }
}

@media (max-width: 420px) {
    .tlx-enquiry-content h2 {
        font-size: 36px;
    }

    .tlx-enquiry-content p {
        font-size: 15px;
    }

    .tlx-enquiry-form input,
    .tlx-enquiry-form select,
    .tlx-enquiry-form button {
        height: 56px;
        border-radius: 12px;
    }
}

/* ==================================================
   Travelink County — Full Footer
================================================== */

.tlx-footer {
    position: relative;
    overflow: hidden;
    padding: 88px 0 0;
    background:
        radial-gradient(
            circle at 12% 12%,
            rgba(216, 183, 90, 0.16),
            transparent 30%
        ),
        radial-gradient(
            circle at 92% 72%,
            rgba(226, 27, 45, 0.1),
            transparent 32%
        ),
        linear-gradient(135deg, #071225 0%, #0f1d36 48%, #071020 100%);
    color: var(--white);
}

.tlx-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.48;
    pointer-events: none;
}

.tlx-footer::after {
    content: "";
    position: absolute;
    right: -130px;
    top: 70px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(216, 183, 90, 0.22);
    pointer-events: none;
}

.tlx-footer .container {
    position: relative;
    z-index: 2;
}

/* Top CTA */
.tlx-footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    margin-bottom: 58px;
    padding: 20px 38px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.tlx-footer-top span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.tlx-footer-top h2 {
    max-width: 760px;
    margin: 0;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(32px, 3.6vw, 52px);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.tlx-footer-top-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    color: var(--dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 16px 38px rgba(216, 183, 90, 0.22);
    transition:
        transform 0.25s var(--ease),
        box-shadow 0.25s var(--ease);
}

.tlx-footer-top-btn:hover {
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(216, 183, 90, 0.32);
}

.tlx-footer-top-btn i {
    transition: transform 0.25s var(--ease);
}

.tlx-footer-top-btn:hover i {
    transform: translateX(3px);
}

/* Main Footer */
.tlx-footer-main {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 0.8fr 1.05fr;
    gap: 42px;
    padding-bottom: 58px;
}

.tlx-footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
    padding: 5px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.96);
}

.tlx-footer-logo img {
    width: 85px;
    height: auto;
    object-fit: contain;
}

.tlx-footer-brand p {
    max-width: 380px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.75;
}

.tlx-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.tlx-footer-social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    text-decoration: none;
    transition:
        color 0.25s var(--ease),
        background 0.25s var(--ease),
        transform 0.25s var(--ease);
}

.tlx-footer-social a:hover {
    color: var(--dark);
    background: var(--gold-light);
    transform: translateY(-3px);
}

/* Columns */
.tlx-footer-col h3,
.tlx-footer-contact h3 {
    margin: 0 0 22px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 25px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.tlx-footer-col ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tlx-footer-col a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    transition:
        color 0.25s var(--ease),
        transform 0.25s var(--ease);
}

.tlx-footer-col a::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(216, 183, 90, 0.75);
    transition: background 0.25s var(--ease);
}

.tlx-footer-col a:hover {
    color: var(--gold-light);
    transform: translateX(3px);
}

.tlx-footer-col a:hover::before {
    background: var(--gold-light);
}

/* Contact */
.tlx-footer-info {
    display: grid;
    gap: 13px;
}

.tlx-footer-info a,
.tlx-footer-info div {
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.45;
}

.tlx-footer-info i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--dark);
    background: var(--gold-light);
    font-size: 15px;
}

.tlx-footer-info a:hover span {
    color: var(--gold-light);
}

/* Newsletter */
.tlx-footer-newsletter {
    margin-top: 24px;
}

.tlx-footer-newsletter label {
    display: block;
    margin-bottom: 10px;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tlx-footer-newsletter div {
    display: grid;
    grid-template-columns: 1fr 52px;
    gap: 8px;
}

.tlx-footer-newsletter input {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    outline: none;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    font-size: 14px;
}

.tlx-footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.52);
}

.tlx-footer-newsletter input:focus {
    border-color: rgba(216, 183, 90, 0.7);
    box-shadow: 0 0 0 4px rgba(216, 183, 90, 0.12);
}

.tlx-footer-newsletter button {
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 16px;
    color: var(--dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    font-size: 17px;
    transition:
        transform 0.25s var(--ease),
        box-shadow 0.25s var(--ease);
}

.tlx-footer-newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(216, 183, 90, 0.22);
}

/* Bottom */
.tlx-footer-bottom {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tlx-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

.tlx-footer-bottom div {
    display: flex;
    align-items: center;
    gap: 18px;
}

.tlx-footer-bottom a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s var(--ease);
}

.tlx-footer-bottom a:hover {
    color: var(--gold-light);
}

/* Back To Top */
.tlx-back-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: var(--dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition:
        opacity 0.25s var(--ease),
        visibility 0.25s var(--ease),
        transform 0.25s var(--ease);
}

.tlx-back-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tlx-back-top:hover {
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1199.98px) {
    .tlx-footer-main {
        grid-template-columns: 1.2fr 0.8fr 0.8fr;
    }

    .tlx-footer-contact {
        grid-column: 1 / -1;
        max-width: 620px;
    }
}
.tlc-header-inner {
    max-width: 1182px !important;
}

@media (max-width: 992px) and (min-width: 800px) {
    .tlc-topbar .container {
        max-width: 100% !important;
    }
}

@media (max-width: 1200px) and (min-width: 992px) {
    .tlx-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .tlc-brand {
        width: 100%;
        min-width: 130px;
    }

    .tlc-menu-list .nav-link {
        padding: 0 10px !important;
    }

    .tlc-header-inner {
        max-width: 1050px;
    }
}

@media (max-width: 850px) {
    .tlc-topbar .container {
        max-width: 772px !important;
    }

    .tlv-hero-slider {
        min-height: 48vh !important;
    }

    .myHeroSwiper {
        width: 100%;
        height: 48vh !important; /* Full viewport height */
    }
}

@media (max-width: 430px) {
    .tlc-topbar-inner .tlc-topbar-right {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .tlc-topbar-inner .tlc-topbar-right .social-resp {
        display: flex;

        gap: 20px !important;
    }
}
@media (max-width: 900px) {
    .tlc-topbar-inner {
        flex-direction: column;
        padding: 12px 0;
        gap: 12px;
    }
}
@media (max-width: 991.98px) {
    .tlx-footer-top {
        grid-template-columns: 1fr;
    }

    .tlx-footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .tlx-footer-brand {
        grid-column: 1 / -1;
    }

    .tlx-footer-contact {
        grid-column: auto;
    }
}

@media (max-width: 767.98px) {
    .tlx-footer {
        padding-top: 70px;
    }

    .tlx-footer-top {
        padding: 28px;
        border-radius: 26px;
        margin-bottom: 42px;
    }

    .tlx-footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-bottom: 42px;
    }

    .tlx-footer-contact {
        max-width: 100%;
    }

    .tlx-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .tlx-footer-bottom div {
        flex-wrap: wrap;
        gap: 12px 18px;
    }
}

@media (max-width: 420px) {
    .tlx-footer-top {
        padding: 24px;
    }

    .tlc-topbar-left {
        display: none;
    }

    .tlx-footer-logo img {
        width: 90px;
    }

    .tlx-footer-brand p,
    .tlx-footer-col a,
    .tlx-footer-info a,
    .tlx-footer-info div {
        font-size: 14px;
    }

    .tlx-footer-newsletter div {
        grid-template-columns: 1fr 48px;
    }

    .tlx-footer-newsletter input,
    .tlx-footer-newsletter button {
        height: 48px;
        border-radius: 14px;
    }

    .tlx-back-top {
        width: 44px;
        height: 44px;
        right: 16px;
        bottom: 16px;
    }
}

/* ================================
   Floating WhatsApp Button
================================ */

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 84px;
    /* Back-to-top button ke upar */
    z-index: 95;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: #25d366;
    text-decoration: none;
    font-size: 25px;
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.35);
    transition:
        transform 0.25s var(--ease),
        box-shadow 0.25s var(--ease),
        background 0.25s var(--ease);
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.22);
    animation: whatsappPulse 1.8s ease-in-out infinite;
    z-index: -1;
}

.whatsapp-float:hover {
    color: #ffffff;
    background: #1ebe5d;
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 22px 44px rgba(37, 211, 102, 0.45);
}

.whatsapp-float i {
    line-height: 1;
}

/* Animation */
@keyframes whatsappPulse {
    0% {
        transform: scale(0.92);
        opacity: 0.75;
    }

    70% {
        transform: scale(1.18);
        opacity: 0;
    }

    100% {
        transform: scale(1.18);
        opacity: 0;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .whatsapp-float {
        right: 16px;
        bottom: 76px;
        width: 50px;
        height: 50px;
        font-size: 23px;
    }
}

/* ================================
   Dark Marquee Strip
================================ */

.tlx-marquee-strip {
    overflow: hidden;
    padding: 18px 0;
    background: linear-gradient(135deg, #071225, #0f1d36);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tlx-marquee-track {
    display: flex;
    width: max-content;
    animation: tlxMarquee 28s linear infinite;
}

.tlx-marquee-content {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-right: 18px;
}

.tlx-marquee-content span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.11);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.tlx-marquee-content i {
    color: var(--gold-light);
    font-size: 16px;
}

.tlx-marquee-strip:hover .tlx-marquee-track {
    animation-play-state: paused;
}

@keyframes tlxMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 575.98px) {
    .tlx-marquee-strip {
        padding: 14px 0;
    }

    .tlx-marquee-content span {
        padding: 9px 14px;
        font-size: 12.5px;
    }
}

/* Testimonials */
.tlx-testimonials {
    background: #f8fafc;
}
.tlx-testimonials-head {
    text-align: center;
    margin-bottom: 3rem;
}
.tlx-testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.8rem 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.tlx-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}
.tlx-testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    flex-shrink: 0;
    background: #f1f5f9;
}
.tlx-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tlx-testimonial-stars {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}
.tlx-testimonial-stars i {
    margin-right: 2px;
}
.tlx-testimonial-text {
    font-size: 1rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-style: italic;
    flex: 1;
    text-align: justify;
}
.tlx-testimonial-author strong {
    display: block;
    color: #0f172a;
    font-weight: 600;
}
.tlx-testimonial-author span {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
}
.tlx-testimonial-location {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 0.3rem;
}
.testimonialSwiper {
    padding: 10px 0 30px 0; /* prevent button overlap */
}
.testimonialSwiper .swiper-button-next,
.testimonialSwiper .swiper-button-prev {
    color: #d8b75a; /* accent color */
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}
.testimonialSwiper .swiper-button-next:hover,
.testimonialSwiper .swiper-button-prev:hover {
    background: #d8b75a;
    color: white;
}
.testimonialSwiper .swiper-button-next::after,
.testimonialSwiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}
