/* Utility Classes with Prefix */
    .travel-storeLocation-container {
        margin: 0 auto;
        padding: 0 20px;
    }

    .travel-storeLocation-text-red {
        color: #ff0000;
    }

    .travel-storeLocation-bg-red {
        background-color: #ff0000;
    }

    .travel-storeLocation-section {
        padding: 80px 0;
    }

    /* Custom Animations */
    .travel-storeLocation-animate-on-scroll {
        opacity: 0;
        transition: all 0.8s ease-out;
    }

    /* Slide In Right Animation */
    .travel-storeLocation-slide-in-right {
        transform: translateX(50px);
    }

    /* Slide In Up Animation */
    .travel-storeLocation-slide-in-up {
        transform: translateY(30px);
    }

    .travel-storeLocation-animate-active {
        opacity: 1;
        transform: translate(0, 0);
    }

    /* Hero Section */
    #travel-storeLocation-hero {
        padding-top: 100px;
        background: radial-gradient(circle at top right, rgba(231, 0, 0, 0.05), transparent);
        overflow: hidden;
    }

    .travel-storeLocation-container {
        max-width: 1600px;
        margin-inline: auto;
    }

    .travel-storeLocation-hero-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
    }

    @media (min-width: 992px) {
        .travel-storeLocation-hero-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    .travel-storeLocation-hero-title {
        font-size: 48px;
        font-weight: 800;
        line-height: 1.1;
        color: #000;
        margin-bottom: 24px;
    }

    .travel-storeLocation-hero-subtitle {
        font-size: 1.25rem;
        color: #4b5563;
        margin-bottom: 40px;
    }

    .travel-storeLocation-btn-primary {
        background-color: #ff0000;
        color: white;
        padding: 16px 32px;
        border-radius: 8px;
        font-weight: 700;
        border: none;
        cursor: pointer;
        transition: transform 0.2s, box-shadow 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
    }

    .travel-storeLocation-btn-primary:hover {
        transform: translateY(-2px);
        color: #ffffff;
        box-shadow: 0 10px 15px -3px rgba(231, 0, 0, 0.3);
    }

    /* Hero Image Container */
    .travel-storeLocation-hero-img-wrapper {
        /* position: relative;
        border-radius: 20px;
        overflow: hidden; */
        /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); */
    }

    .travel-storeLocation-hero-img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Table Section */
    .travel-storeLocation-table-wrapper {
        width: 100%;
        overflow-x: auto;
        border: 1px solid #f3f4f6;
        border-radius: 12px;
        margin-top: 40px;
    }

    .travel-storeLocation-table {
        width: 100%;
        min-width: 900px;
        border-collapse: collapse;
        background: white;
        text-align: left;
    }

    .travel-storeLocation-table th {
        background: #f9fafb;
        padding: 16px;
        font-size: 0.75rem;
        text-transform: uppercase;
        color: #6b7280;
        border-bottom: 1px solid #f3f4f6;
    }

    .travel-storeLocation-table td {
        padding: 16px;
        border-bottom: 1px solid #f3f4f6;
        font-size: 0.875rem;
    }

    @media (max-width: 768px) {
        .travel-storeLocation-table td {
            white-space: nowrap;
        }
    }
    @media (max-width: 405px) {
        .travel-storeLocation-btn-primary {
            padding: 16px 10px;
        }
    }

    /* .travel-storeLocation-data-blur {
        filter: blur(4px);
        opacity: 0.3;
        user-select: none;
    } */

    /* .travel-storeLocation-lock-badge-link {
        background: rgba(255, 255, 255, 0.9);
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 10px;
        font-weight: bold;
        border: 1px solid #eee;
        color: #ff0000;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        transition: background 0.2s;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }

    .travel-storeLocation-lock-badge-link:hover {
        background: #ffffff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    } */

    /* Counter Section */
    .travel-storeLocation-counter-section {
        background-color: #f9fafb;
        color: #000;
        text-align: center;
        border-radius: 25px;
    }

    .travel-storeLocation-counter-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    @media (min-width: 992px) {
        .travel-storeLocation-counter-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .travel-storeLocation-counter-num {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 8px;
    }

    .travel-storeLocation-counter-label {
        color: #000;
        font-size: 17px;
    }

    /* Why Us Cards (Feature) */
    .travel-storeLocation-feature-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 50px;
    }

    @media (min-width: 768px) {
        .travel-storeLocation-feature-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    @media (min-width: 991px) {
        .travel-storeLocation-feature-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    .travel-storeLocation-feature-card {
        background: #f9fafb;
        color: #000;
        padding: 40px;
        border-radius: 16px;
        text-align: center;
        transition: box-shadow 0.3s ease, transform 0.3s ease, opacity 0.8s ease-out;
        position: relative;
        z-index: 1;
    }

    .travel-storeLocation-feature-card:hover {
        box-shadow: 0 20px 40px rgba(231, 0, 0, 0.25);
        transform: translateY(-5px);
    }

    .travel-storeLocation-icon-box {
        width: 64px;
        height: 64px;
        background: #ff0000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px;
        padding: 12px;
    }
    .travel-storeLocation-icon-box img {
        height: 100%;
        width: 100%;
    }

    /* Enrichment Block */
    .travel-storeLocation-enrichment {
        background: #f9fafb;
        border-radius: 32px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    @media (min-width: 992px) {
        .travel-storeLocation-enrichment {
            flex-direction: row;
        }
    }

    .travel-storeLocation-enrichment-left {
        padding: 60px;
        flex: 1;
        border-left: 4px solid #ff0000;
    }

    .travel-storeLocation-enrichment-left .heading-2 {
        color: #000;
        text-align: left;
    }

    .travel-storeLocation-enrichment-right {
        /* background: linear-gradient(135deg, #f9fafb 0%, #ff0000 200%); */
        background: linear-gradient(135deg, #F6F7F8 -145%, #FF0000 200%);
        flex: 1.5;
        padding: 60px 40px;
        color: white;
        position: relative;
        overflow: hidden;
    }

    /* Timeline */
    .travel-storeLocation-timeline {
        position: relative;
        padding: 40px 0;
    }

    .travel-storeLocation-timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: #ff0000;
        transform: translateX(-50%);
    }

    .travel-storeLocation-timeline-item {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        margin-bottom: 40px;
        position: relative;
    }

    .travel-storeLocation-timeline-dot {
        position: absolute;
        left: 50%;
        top: 10px;
        width: 16px;
        height: 16px;
        background: #ff0000;
        border-radius: 50%;
        transform: translateX(-50%);
        z-index: 2;
    }

    .travel-storeLocation-timeline-content {
        padding: 10px;
        transition: all 0.8s ease-out;
    }

    .travel-storeLocation-align-right {
        text-align: right;
    }

    .travel-storeLocation-align-left {
        text-align: left;
    }

    @media (max-width: 767px) {
        .travel-storeLocation-timeline::before {
            left: 20px;
        }

        .travel-storeLocation-timeline-dot {
            left: 20px;
        }

        .travel-storeLocation-timeline-item {
            grid-template-columns: 1fr;
            padding-left: 50px;
            text-align: left;
        }

        .travel-storeLocation-align-right {
            text-align: left;
        }
    }


    /* SECTION 1: Hotel Location Data (Subscription) */
    .travel-storeLocation-section-subscription {
        padding: 8rem 0;
        /* Padding top accounts for fixed header */
        background-color: white;
        overflow: hidden;
    }

    .travel-storeLocation-sub-grid {
        display: grid;
        gap: 5rem;
        align-items: center;
    }

    .travel-storeLocation-section-subscription .heading-2 {
        text-align: left;
    }

    @media (min-width: 1024px) {
        .travel-storeLocation-sub-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    .travel-storeLocation-visual-card {
        /* border-radius: 1rem; */
        /* height: 345px; */
        /* position: relative; */
        /* z-index: 10; */
        /* border: 1px solid #f9fafb; */
        /* overflow: hidden; */
    }
    .travel-storeLocation-visual-card img {
        width: 100%;
        border-radius: 20px;
    }

    .travel-storeLocation-visual-bg-glow {
        position: absolute;
        inset: -1rem;
        background-color: rgba(231, 0, 0, 0.1);
        filter: blur(40px);
        z-index: -1;
        transition: all 0.3s;
    }

    /* SECTION 2: Use Cases */
    .travel-storeLocation-section-usecases {
        padding: 6rem 0;
        background-color: #f9fafb;
        border-radius: 25px;
    }

    .travel-storeLocation-usecase-grid {
        display: grid;
        gap: 1.5rem;
        margin-top: 50px;
    }

    @media (min-width: 768px) {
        .travel-storeLocation-usecase-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1024px) {
        .travel-storeLocation-usecase-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .travel-storeLocation-card {
        background-color: white;
        padding: 2rem;
        border-radius: 0.75rem;
        border: 1px solid #f3f4f6;
        transition: all 0.3s ease;
    }

    .travel-storeLocation-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        border-top: 4px solid #ff0000;
    }

    .travel-storeLocation-icon-lg {
        font-size: 1.875rem;
        color: #ff0000;
        margin-bottom: 1rem;
        display: block;
    }

    .travel-storeLocation-card-title {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
    }

    .travel-storeLocation-card-text {
        color: #4b5563;
        font-size: 0.875rem;
    }

    /* SECTION 3: Real-Time Intelligence */
    .travel-storeLocation-section-intelligence {
        padding: 6rem 0;
        background-color: white;
    }

    .travel-storeLocation-tabs-container {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 3rem;
        border-bottom: 1px solid #f3f4f6;
    }

    .travel-storeLocation-tab-btn {
        padding: 1rem 1.5rem;
        font-weight: 700;
        font-size: 17px;
        color: #6b7280;
        background-color: transparent;
        border: none;
        transition: all 0.3s;
    }

    .travel-storeLocation-tab-btn:hover {
        color: #e07676;
    }

    .travel-storeLocation-tab-btn.storeLocationActive {
        color: #ff0000;
        border-bottom: 2px solid #ff0000;
    }

    .travel-storeLocation-use-case-tab-content {
        display: none;
    }

    .travel-storeLocation-use-case-tab-content.storeLocationActive {
        width: 100%;
        display: flex;
        justify-content: space-between;
        gap: 50px;
    }
    .travel-storeLocation-use-case-tab-content-image {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 600px;
    }
    .travel-storeLocation-use-case-tab-content-image img {
        width: 100%;
    }

    @media (max-width: 1200px) {
        .travel-storeLocation-use-case-tab-content-image {
            max-width: 400px;
        }
    }
    @media (max-width: 992px) {
        .travel-storeLocation-use-case-tab-content.storeLocationActive {
            flex-direction: column;
        }
        .travel-storeLocation-use-case-tab-content-image {
            max-width: unset;
        }
    }

    .travel-storeLocation-content-box {
        background-color: #f9fafb;
        padding: 2.5rem;
        border-radius: 1.5rem;
        min-height: 300px;
        display: flex;
        align-items: center;
        transition: all 0.5s ease;
    }

    .travel-storeLocation-enrichment-section {
        padding: 80px 0px;
        color: #000;
        max-width: 1100px;
        margin: auto;
        overflow: hidden;
    }

    .travel-storeLocation-enrichment-slide {
        text-align: center;
    }

    .travel-storeLocation-enrichment-number {
        font-size: 9rem;
        font-weight: 900;
        margin-bottom: 12px;
    }

    .travel-storeLocation-enrichment-text {
        font-size: 20px;
        opacity: 0.9;
        color: #000;
    }

    /* Slick arrows override */
    /* Common Arrow Style */
    .travel-storeLocation-enrichment-section .slick-prev,
    .travel-storeLocation-enrichment-section .slick-next {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        border: 1px solid #000;
        background: transparent;
        display: flex !important;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 5;
    }

    /* Hover Effect */
    .travel-storeLocation-enrichment-section .slick-prev:hover,
    .travel-storeLocation-enrichment-section .slick-next:hover {
        background: transparent;
        border-color: #000;
    }

    /* Remove default slick arrow */
    .travel-storeLocation-enrichment-section .slick-prev:before,
    .travel-storeLocation-enrichment-section .slick-next:before {
        content: '';
    }

    /* Apply Font Awesome properly */
    .travel-storeLocation-enrichment-section .slick-prev::after,
    .travel-storeLocation-enrichment-section .slick-next::after {
        font-family: "Font Awesome 6 Free";
        /* MUST */
        font-weight: 900;
        /* Solid icons */
        font-size: 18px;
        color: #000;
        display: block;
    }

    /* Left Arrow */
    .travel-storeLocation-enrichment-section .slick-prev::after {
        content: "\f053";
    }

    /* Right Arrow */
    .travel-storeLocation-enrichment-section .slick-next::after {
        content: "\f054";
    }

    /* Position Adjust (optional tweak) */
    .travel-storeLocation-enrichment-section .slick-prev {
        left: 20px;
    }

    .travel-storeLocation-enrichment-section .slick-next {
        right: 20px;
    }

    .download-data-btn {
        padding: 10px 18px;
        border-radius: 100px;
        background-color: #ff0000;
        font-weight: 600;
        color: #ffffff;
        text-decoration: none;
    }

    .download-data-btn:hover {
        color: #ffffff;
    }

    .heading-2 {
        font-size: 35px;
        font-weight: 700;
        font-style: normal;
        color: #000;
        line-height: 54px;
        text-align: center;
        display: block;
    }

    .travel-storeLocation-list-of-dataField {
        display: flex;
        justify-content: space-around;
        margin-top: 35px;
    }

    .travel-storeLocation-list-of-dataField-list {
        list-style-type: none;
    }

    .travel-storeLocation-list-of-dataField-list li {
        position: relative;
        padding-left: 25px;
        margin-top: 10px;
        color: #000;
    }

    .travel-storeLocation-list-of-dataField-list li::before {
        content: "\f058";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: #ff0000;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

    @media screen and (max-width: 992px) {
        .heading-2 {
            font-size: 30px !important;
            line-height: 1.25
        }

        .travel-storeLocation-tabs-container {
            overflow: scroll;
            justify-content: start;
            padding-bottom: 10px;
            gap: 0;
        }

        .travel-storeLocation-tab-btn {
            min-width: unset;
            width: max-content;
            white-space: nowrap;
        }
    }

    @media screen and (max-width: 768px) {
        .travel-storeLocation-section {
            padding: 40px 0;
        }

        .travel-storeLocation-section-subscription {
            padding: 40px 0;
        }

        .travel-storeLocation-section-usecases {
            padding: 40px 0;
        }

        .travel-storeLocation-section-intelligence {
            padding: 40px 0;
        }

        .travel-storeLocation-timeline-item:nth-child(3) {
            margin-bottom: 0;
        }

        .empty-div {
            display: none;
        }

        #travel-storeLocation-hero {
            padding-top: 40px;
        }

        .travel-storeLocation-hero-title {
            font-size: 36px;
        }

        .travel-storeLocation-counter-grid {
            grid-template-columns: repeat(1, 1fr);
        }

        .travel-storeLocation-sub-grid {
            gap: 2rem;
        }

        .travel-storeLocation-enrichment-left {
            padding: 30px;
        }

        .travel-storeLocation-enrichment-number {
            font-size: 4rem;
        }

        .travel-storeLocation-enrichment-right {
            padding-block: 0;
        }

        .travel-storeLocation-enrichment-section {
            overflow: unset;
        }

        .travel-storeLocation-enrichment-number {
            margin-bottom: 25px;
        }

        .travel-storeLocation-enrichment-section .slick-prev,
        .travel-storeLocation-enrichment-section .slick-next {
            height: 35px;
            width: 35px;
        }

        .travel-storeLocation-enrichment-section .slick-prev::after,
        .travel-storeLocation-enrichment-section .slick-next::after {
            font-size: 16px;
        }

        .travel-storeLocation-enrichment-section .slick-prev {
            left: -20px;
        }

        .travel-storeLocation-enrichment-section .slick-next {
            right: -20px;
        }

        .travel-storeLocation-list-of-dataField {
            flex-direction: column;
        }
    }