﻿/* =========================================================
   TAXICAB - TRAVEL PARTNER MARKETPLACE
   BLUE + WHITE + NAVY
========================================================= */

:root {
    --navy: #071A35;
    --navy-2: #0B2448;
    --navy-3: #102F59;
    --blue: #1769E0;
    --blue-2: #2F80ED;
    --blue-dark: #0B4AA2;
    --blue-light: #EAF3FF;
    --blue-soft: #F4F8FF;
    --white: #FFFFFF;
    --bg: #F5F8FC;
    --text: #17243A;
    --muted: #394452;
    --border: #DDE6F0;
    --green: #16A34A;
    --green-bg: #EAF8EF;
    --orange: #F59E0B;
    --shadow: 0 12px 35px rgba(7,26,53,.07);
    --shadow-hover: 0 18px 45px rgba(7,26,53,.13);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 15px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}
/* Section */

.section-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
}

.section-title h2 {
    font-size: 26px;
}
.section-title {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 20px;
}
.btn-d {
    max-width: 200px !important;
    text-align: center;
}

/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min( 1180px, calc(100% - 28px) );
    margin: auto;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    height: 70px;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 23px;
    font-weight: 950;
    letter-spacing: -.7px;
    color: var(--navy);
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: linear-gradient( 135deg, var(--blue-2), #0B3D91 );
    color: white;
    font-size: 19px;
    box-shadow: 0 5px 14px rgba(23,105,224,.22);
}
.label {
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo span:last-child {
    color: var(--blue);
}

.nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav a {
        padding: 9px 11px;
        border-radius: 7px;
        color: #52657D;
        font-size: 12px;
        font-weight: 800;
}

.nav a:hover {
            color: var(--blue);
            background: var(--blue-light);
}

.nav-partner {
    padding: 9px 14px !important;
    color: var(--blue) !important;
    border: 1px solid #CFE0F5;
    background: white;
}

.mobile-menu {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: white;
    font-size: 19px;
    color: var(--navy);
}
.book-btn {
    width: 100%;
    min-height: 49px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #2f80ed, #0b3d91);
    color: white;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 9px 25px rgba(23, 105, 224, .22);
    transition: .2s;
}
    .book-btn:hover {
        background: linear-gradient( 135deg, #4795ff, #1769e0 );
        transform: translateY(-1px);
    }

.booking-note {
    text-align: center;
    color: #404143; /*#8a98aa;*/
    font-size: 11px;
    margin-top: 9px;
}
.taxih1 {
    font-size: 22px;
    font-weight: normal;
    margin-bottom: 20px;
    text-align: center;
}
.policy-card {
    background: var(--white);
    border-radius: 16px;
    padding: 45px;
    box-shadow: 0 12px 40px rgba(21, 101, 216, 0.10);
}

.updated {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 30px;
    font-weight: 600;
}

.policy-card h2 {
    color: #0d47a1;
    font-size: 24px;
    margin: 35px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.policyhero {
    background: linear-gradient(135deg, #1565d8, #0d47a1);
    color: white;
    padding: 70px 20px;
    text-align: center;
}
/* =====================================================
   FORM SECTION
===================================================== */

.form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.form-info {
    padding-top: 10px;
}

    .form-info .label {
        color: var(--blue);
        font-size: 10px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .form-info h2 {
        color: var(--navy);
        font-size: 31px;
        line-height: 1.18;
        letter-spacing: -.6px;
        margin-top: 8px;
    }

    .form-info p {
        color: var(--muted);
        font-size: 12px;
        line-height: 1.7;
        margin-top: 10px;
    }

.form-checklist {
    margin-top: 20px;
    display: grid;
    gap: 11px;
}

.check {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #198754; /*#53657D;*/
    font-size: 11px;
    line-height: 1.5;
    font-weight:bold;
}

.check-icon {
    width: 21px;
    height: 21px;
    flex: none;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: var(--green-bg);
    color: var(--green);
    font-size: 10px;
    font-weight: 900;
}
/* =====================================================
   SUBMIT
===================================================== */

.submit-btn {
    width: 100%;
    height: 50px;
    margin-top: 15px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient( 135deg, var(--blue-2), #0B3D91 );
    color: white;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 9px 22px rgba(23, 105, 224, .17);
    transition: .2s;
}

.submit-btn:hover {
        background: linear-gradient( 135deg, #3F91FF, var(--blue) );
        transform: translateY(-1px);
}
.submit-btn:disabled {
        cursor: not-allowed;
        transform: none;
}
/* =====================================================
   SUCCESS MESSAGE
===================================================== */

.success-message {
    display: none;
    margin-top: 14px;
    padding: 14px;
    border-radius: 10px;
    background: var(--green-bg);
    border: 1px solid #BFE8CC;
    color: #23713D;
    font-size: 11px;
    line-height: 1.6;
}

.success-message strong {
        display: block;
        color: #12652F;
        margin-bottom: 3px;
}

/* =====================================================
   PROCESS
===================================================== */

.process-section {
    background: var(--navy);
    width: 100%;
    color: white;
}

.process {
    width: min( 1180px, calc(100% - 28px) );
    margin: auto;
    padding: 55px 0;
}

.process-heading {
    text-align: center;
    margin-bottom: 30px;
}

    .process-heading h2 {
        font-size: 28px;
    }

    .process-heading p {
        color: #AFC0D6;
        font-size: 11px;
        margin-top: 7px;
    }

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin: 0 auto 11px;
    border-radius: 50%;
    background: rgba(47, 128, 237, .18);
    border: 1px solid rgba(47, 128, 237, .35);
    color: #65A5FF;
    font-size: 11px;
    font-weight: 900;
}

.step h3 {
    font-size: 13px;
}

.step p {
    margin-top: 5px;
    color: #A9BBD1;
    font-size: 10px;
    line-height: 1.6;
}

/* =====================================================
   FAQ
===================================================== */

.faq {
    display: grid;
    gap: 9px;
    max-width: 800px;
    margin: auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 11px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 15px;
    border: 0;
    background: white;
    color: var(--navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 13px;
    font-weight: 900;
    gap: 15px;
}

    .faq-question span {
        color: var(--blue);
        font-size: 14px;
        line-height: 1;
    }

.faq-answer {
    display: none;
    padding: 0 15px 15px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.faq-item.open
.faq-answer {
    display: block;
}

.faq-item.open
.faq-question {
    color: var(--blue);
}




/* =====================================================
   TERMS
===================================================== */

.terms {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 15px;
    color: #687991;
    font-size: 10px;
    line-height: 1.6;
}

.terms input {
        margin-top: 3px;
        accent-color: var(--blue);
        width: 15px;
        height: 15px;
        flex: none;
}

.terms a {
        color: var(--blue);
        font-weight: 800;
}


/* =====================================================
   WHY PARTNERS
===================================================== */

.why-section {
    margin-top: 55px;
    padding: 50px 0;
    border-top: 1px solid var(--border);
}
.why-heading {
    text-align:center;
    margin-bottom: 25px;   
}
.why-heading .label {
        color: var(--blue);
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 1px;
}
.why-heading h2 {
        margin-top: 6px;
        color: var(--navy);
        font-size: 29px;
        letter-spacing: -.6px;
}
.why-heading p {
        margin-top: 7px;
        color: var(--muted);
        font-size: 12px;
        line-height: 1.7;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.why-card {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: white;
}
.why-icon {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: var(--blue-light);
    font-size: 18px;
    margin-bottom: 10px;
}
.why-card h3 {
    color: var(--navy);
    font-size: 13px;
}
.why-card p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.65;
}

/* =====================================================
   OUR STORY
===================================================== */

.story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.story-copy .label {
    margin-bottom: 8px;
}

.story-copy h2 {
    color: var(--navy);
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -.8px;
}

.story-copy p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

    .story-copy p strong {
        color: var(--navy);
    }


/* Story visual */

.story-visual {
    min-height: 330px;
    padding: 25px;
    display: flex;
    align-items: flex-end;
    border-radius: 20px;
    background: linear-gradient( 145deg, #0B3B76, #071A35 );
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

    .story-visual::before {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(47,128,237,.2);
        right: -90px;
        top: -90px;
    }

.story-road {
    position: absolute;
    left: 50px;
    right: 50px;
    bottom: 65px;
    height: 4px;
    background: repeating-linear-gradient( 90deg, white 0 30px, transparent 30px 60px );
    opacity: .5;
}

.story-car {
    position: absolute;
    left: 50%;
    bottom: 85px;
    transform: translateX(-50%);
    font-size: 70px;
    filter: drop-shadow( 0 12px 15px rgba(0,0,0,.3) );
}

.story-quote {
    position: relative;
    z-index: 2;
    max-width: 390px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.1);
    color: #D4E1EF;
    font-size: 13px;
    line-height: 1.65;
}


/* =====================================================
   MOBILE NAV
===================================================== */

.mobile-nav {
    display: none;
}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width: 800px) {

    .content {
        display:block !important;
      /* grid-template-columns: 1fr;*/
    }

    .filters {
       width:100% !important;
    }
}


@media(max-width: 600px) {

    .header {
        height: 62px;
    }

    .logo {
        font-size: 18px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .page {
        width: calc(100% - 20px);
        margin-top: 20px;
        margin-bottom: 85px;
    }
    .page-title{
        text-align:center !important;

    }

    .page-title h1 {
        font-size: 26px;
    }

    .search-summary {
        grid-template-columns: 1fr 1fr;
        padding: 9px;
        margin-top: 18px;
    }

    .summary-item {
        min-width: 0;
        padding: 8px;
    }

    .summary-icon {
        display: none;
    }

    .summary-value {
        font-size: 9px;
    }

    .results-header h2 {
        font-size: 16px;
    }

    .results-header span {
        display: none;
    }

    .travel-card {
        padding: 13px;
    }

    .travel-top {
        grid-template-columns: 64px 1fr;
        gap: 10px;
    }

    .travel-logo {
        width: 64px;
        height: 60px;
        font-size: 20px;
    }

    .travel-name {
        font-size: 13px;
    }

    .travel-location {
        font-size: 9px;
    }

    .travel-features {
        margin-top: 6px;
    }

    .travel-price {
        grid-column: 2;
        text-align: left;
        margin-top: -3px;
    }

        .travel-price strong {
            font-size: 17px;
        }

    .travel-bottom {
       /* flex-wrap: wrap;*/
        align-items: center;
    }

    .view-btn {
    
        margin-top: 2px;
    }

    .trust-bar {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px;
    }

    .mobile-nav {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 200;
        padding: 7px 10px calc( 7px + env(safe-area-inset-bottom) );
        background: rgba(255,255,255,.97);
        border-top: 1px solid var(--border);
        box-shadow: 0 -8px 25px rgba(0,0,0,.07);
    }

    .mobile-nav-inner {
        display: grid;
        grid-template-columns: repeat(3,1fr);
    }

    .mobile-nav a {
        text-align: center;
        color: #7A899E;
        font-size: 9px;
        font-weight: 800;
    }

        .mobile-nav a:first-child {
            color: var(--blue);
        }

    .mobile-icon {
        display: block;
        font-size: 18px;
        margin-bottom: 2px;
    }
}


/* =====================================================
   SMALL PHONES
===================================================== */

@media(max-width:380px) {

    .search-summary {
        gap: 6px;
    }

    .summary-item {
        padding: 7px;
    }

    .travel-name {
        font-size: 12px;
    }
}
.page-title h1 {
    color: var(--navy);
    font-size: 31px;
    letter-spacing: -1px;
}

.page-title p {
    color: var(--muted);
    font-size: 13px;
    margin-top: 5px;
}

/* =====================================================
   SEARCH SUMMARY
===================================================== */

.search-summary {
    margin-top: 22px;
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 1.3fr 1.3fr .8fr .8fr;
    gap: 10px;
    padding: 13px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 17px;
    box-shadow: var(--shadow);
}

.summary-item {
    min-height: 56px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 11px;
    border-radius: 10px;
    background: #F8FBFF;
    border: 1px solid #E7EEF7;
}

.summary-icon {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 13px;
    flex-shrink: 0;
}

.summary-label {
    display: block;
    color: #8A98AA;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.summary-value {
    display: block;
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* =====================================================
   CONTENT
===================================================== */

.content {
    display: grid;
    grid-template-columns: 235px 1fr;
    gap: 20px;
}
 

/* =====================================================
   FILTER PANEL
===================================================== */

.filters {
    height: max-content;
    background: white;
    border: 1px solid var(--border);
    border-radius: 17px;
    padding: 18px;
    box-shadow: var(--shadow);
}

    .filters h3 {
        color: var(--navy);
        font-size: 15px;
        margin-bottom: 17px;
    }

.filter-section {
    padding: 15px 0;
    border-top: 1px solid var(--border);
}

    .filter-section:first-of-type {
        border-top: 0;
        padding-top: 0;
    }

.filter-title {
    color: #52647C;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 11px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 9px 0;
    color: #667890;
    font-size: 11px;
}

    .filter-option input {
        accent-color: var(--blue);
    }
/* =====================================================
   BENEFITS
===================================================== */

.benefits-section {
    background: white;
    width: 100%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.benefits {
    width: min( 1180px, calc(100% - 28px) );
    margin: auto;
    padding: 58px 0;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.benefit {
    padding: 19px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #FBFCFE;
}

.benefit-number {
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
}

.benefit h3 {
    color: var(--navy);
    font-size: 14px;
    margin-top: 8px;
}

.benefit p {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.65;
    margin-top: 5px;
}



/* =====================================================
   RESULTS HEADER
===================================================== */

.results-header {
    /* display: flex;
    align-items: center;
    justify-content: space-between;*/
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 12px;
}

    .results-header h2 {
        color: var(--navy);
        font-size: 18px;
    }

    .results-header span {
        color: var(--muted);
        font-size: 10px;
    }


/* =====================================================
   TRAVEL CARD
===================================================== */

.travel-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 17px;
    padding: 16px;
    margin-bottom: 12px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

    .travel-card:hover {
        transform: translateY(-2px);
        border-color: #B8D4F7;
        box-shadow: var(--shadow);
    }


/* CARD TOP */

.travel-top {
    display: grid;
    grid-template-columns: 82px 1fr auto;
    gap: 14px;
    align-items: center;
}
/* LOGO */

.travel-logo {
    width: 82px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: linear-gradient( 135deg, #EDF5FF, #DCEBFF );
    border: 1px solid #D6E6F8;
    color: var(--blue);
    font-size: 24px;
    font-weight: 900;
}

    .travel-logo img {
        max-width: 65px;
        max-height: 48px;
        object-fit: contain;
    }


/* NAME */

.travel-name {
    color: var(--navy);
    font-size: 15px;
    font-weight: 900;
}

.verified {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-left: 5px;
    padding: 3px 6px;
    border-radius: 5px;
    background: #EAF8EF;
    color: var(--green);
    font-size: 7px;
    font-weight: 900;
    vertical-align: middle;
}

.travel-location {
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px;
}

.travel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 8px;
}

.feature {
    padding: 4px 7px;
    border-radius: 5px;
    background: #F3F7FC;
    color: #607089;
    font-size: 10px;
    font-weight: 700;
}


/* PRICE */

.travel-price {
    text-align: right;
}

    .travel-price small {
        display: block;
        color: #424446;
        font-size: 9px;
    }

    .travel-price strong {
        display: block;
        color: var(--navy);
        font-size: 19px;
        margin-top: 2px;
    }


/* CARD BOTTOM */

.travel-bottom {
    /*display: flex;
    align-items: center;
    justify-content: space-between;*/
    display: grid;
    grid-template-columns: 1fr;
    justify-items: end;
    gap: 10px;
    margin-top: 15px;
    padding-top: 13px;
    border-top: 1px solid var(--border);
}

.rating {
    color: var(--orange);
    font-size: 11px;
}

    .rating span {
        color: var(--muted);
        font-size: 9px;
        margin-left: 4px;
    }

.availability {
    color: var(--green);
    font-size: 9px;
    font-weight: 800;
    margin-top: 3px;
}

.view-btn {
    min-width: 125px;
    padding: 10px 15px;
    border: 0;
    border-radius: 9px;
    background: linear-gradient( 135deg, #0060ff, #0B3D91 );
    color: white;
    font-size: 10px;
    font-weight: 900;
    box-shadow: 0 7px 18px rgba(23,105,224,.18);
}

    .view-btn:hover {
        background: linear-gradient( 135deg, #4795FF, var(--blue) );
    }

/* =====================================================
   TRUST BAR
===================================================== */

.trust-bar {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-top: 20px;
    padding: 16px;
    background: linear-gradient( 135deg, var(--navy), var(--navy2) );
    border-radius: 15px;
    color: white;
    background-color:#041126;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
}

.trust-icon {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255,255,255,.1);
    color: #6EAEFF;
    font-size: 13px;
}

.trust-item strong {
    display: block;
    font-size: 10px;
}

.trust-item span {
    display: block;
    color: #AABCD4;
    font-size: 8px;
    margin-top: 2px;
}


/* =========================================================
   HERO
========================================================= */

 .hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient( 135deg, #06162E 0%, #0B2F5B 55%, #0B4AA2 100% );
    color: white;
}

.hero::before {
        content: "";
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        right: -240px;
        top: -330px;
        background: rgba(47,128,237,.17);
}

.hero::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        left: -180px;
        bottom: -230px;
        background: rgba(255,255,255,.035);
} 
/*.hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 90% 10%, rgba(71, 145, 255, .30), transparent 28%), radial-gradient(circle at 5% 90%, rgba(23, 105, 224, .18), transparent 30%), linear-gradient(135deg, #071a35 0%, #0b3d91 58%, #1769e0 100%);
    color: white;*/
   /* padding: 72px 0 85px;*/
/*}*/
/*.hero-inner {
    min-height: 535px;
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: 55px;
    align-items: center;
    position: relative;
    z-index: 2;
}*/
.hero-inner {
    width: min( 1180px, calc(100% - 28px) );
    min-height: 430px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding: 65px 0;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 7px;
    background: rgba(255,255,255,.07);
    color: #C6D8ED;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-label::before {
        content: "";
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #4C97FF;
    }

.hero h1 {
    max-width: 730px;
    font-size: 48px;
    line-height: 1.08;
    letter-spacing: -1.7px;
    font-weight: 950;
}

.hero h1 span {
        color: #62A4FF;
}

.hero-description {
    max-width: 650px;
    margin-top: 18px;
    color: #C5D4E6;
    font-size: 15px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.hero-button {
    min-height: 48px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 900;
}

.hero-button-primary {
    background: white;
    color: var(--navy);
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.hero-button-secondary {
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.05);
    color: white;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 23px;
    color: #B6C9E0;
    font-size: 10px;
}

.hero-trust span {
        display: flex;
        align-items: center;
        gap: 5px;
}
.hero-message {
    padding: 24px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 55px rgba(0,0,0,.14);
}

.hero-message-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: rgba(47,128,237,.2);
    font-size: 25px;
    margin-bottom: 17px;
}

.hero-message h3 {
    font-size: 18px;
    line-height: 1.3;
}

.hero-message p {
    margin-top: 9px;
    color: #B8C9DD;
    font-size: 12px;
    line-height: 1.7;
}

.hero-message strong {
    color: white;
}
/* ====================================================
    Login
    =====================================================*/
.circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

    .circle.one {
       /* width: 420px;*/
        height: 420px;
        background: rgba(18, 97, 214, .07);
        top: -180px;
        left: -150px;
    }

    .circle.two {
      /*  width: 360px;*/
        height: 360px;
        background: rgba(25, 118, 255, .06);
        bottom: -170px;
        right: -120px;
    }

/* Main container */
.login-wrapper {
   /* width: min(1100px, 92%);*/
    min-height: 650px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(19, 62, 117, .14);
    position: relative;
    z-index: 2;
}

/* Left panel */
.welcome-panel {
    background: linear-gradient(145deg, rgba(9, 69, 163, .96), rgba(18, 97, 214, .94)), #1261d6;
    color: white;
    padding: 55px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .welcome-panel::before {
        content: "";
        position: absolute;
      /*  width: 420px;*/
        height: 420px;
        border: 1px solid rgba(255,255,255,.13);
        border-radius: 50%;
        top: -210px;
        right: -170px;
    }

    .welcome-panel::after {
        content: "";
        position: absolute;
      /*  width: 300px;*/
        height: 300px;
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 50%;
        bottom: -170px;
        left: -130px;
    }

.brand {
    position: absolute;
    top: 35px;
    left: 45px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: .2px;
}

    .brand span {
        color: #9fd0ff;
    }

.welcome-content {
    position: relative;
    z-index: 2;
    max-width: 440px;
}

.travel-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: rgba(255,255,255,.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 28px;
    border: 1px solid rgba(255,255,255,.16);
}

.welcome-content h1 {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.welcome-content p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,.84);
    margin-bottom: 30px;
}
.features {
    list-style: none;
}
.features li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 15px 0;
        color: rgba(255,255,255,.92);
        font-size: 14px;
}

 

/* Right panel */
.form-panel {
    padding: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.login-box {
    width: 100%;
    max-width: 410px;
}

    .login-box h2 {
        font-size: 32px;
        margin-bottom: 9px;
        color: #101828;
    }
.login-button {
    width: 100%;
    height: 52px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--blue), #0b78ee);
    color: white;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 9px 20px rgba(18, 97, 214, .20);
    transition: .2s ease;
}

    .login-button:hover {
        transform: translateY(-1px);
        box-shadow: 0 12px 24px rgba(18, 97, 214, .28);
    }

    .login-button:active {
        transform: translateY(0);
    }
.remember {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #667085;
    cursor: pointer;
}

    .remember input {
        width: 15px;
        height: 15px;
        accent-color: var(--blue);
    }

.forgot {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
}

    .forgot:hover {
        text-decoration: underline;
    }
.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 28px 0;
    color: #98a2b3;
    font-size: 12px;
}

    .divider::before,
    .divider::after {
        content: "";
        height: 1px;
        flex: 1;
        background: #e6ebf2;
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 8px;
        color: #344054;
    }

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #8a99ad;
    font-size: 17px;
    pointer-events: none;
}

.form-control {
    width: 100%;
    height: 52px;
    padding: 0 45px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fbfdff;
    color: var(--text);
    font-size: 14px;
    outline: none;
    transition: .2s ease;
}
/*.form-control {
    width: 100%;
    height: 43px;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 11px;
    padding: 0 12px;
    outline: none;
    color: var(--text);
}*/

    .form-control:focus {
        border-color: var(--blue);
        background: #fff;
        box-shadow: 0 0 0 4px rgba(18, 97, 214, .10);
    }


/* =====================================================
   HERO CARD
===================================================== */

.hero-card {
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .14);
}

.hero-card-title {
    color: #AFC3DB;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 13px;
}

.partner-preview {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px;
    border-radius: 11px;
    background: rgba(255, 255, 255, .08);
}

.preview-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(47, 128, 237, .22);
    font-size: 21px;
}

.partner-preview strong {
    display: block;
    font-size: 14px;
}

.partner-preview span {
    display: block;
    margin-top: 4px;
    color: #AFC0D6;
    font-size: 10px;
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 10px;
}

.preview-stat {
    padding: 10px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .055);
}

.preview-stat small {
        display: block;
        color: #94A9C2;
        font-size: 9px;
        text-transform: uppercase;
}

.preview-stat strong {
        display: block;
        margin-top: 4px;
        color: white;
        font-size: 13px;
}

/* =====================================================
   PARTNER TYPES
===================================================== */
.stat-number {
    color: white;
    font-size: 25px;
    font-weight: 900;
}
.hero-stats {
    display: grid;
    gap: 10px;
}
.stat-card {
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 13px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(10px);
}
.partner-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.partner-card {
    padding: 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    transition: transform .2s, box-shadow .2s;
}

    .partner-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-hover);
    }

.partner-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 21px;
    margin-bottom: 13px;
}

.partner-card h3 {
    color: var(--navy);
    font-size: 15px;
}

.partner-card p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.65;
}




/* =========================================================
   SERVICES
========================================================= */

.services {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
}

.service {
    padding: 22px 18px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: .2s;
    box-shadow: 0 5px 20px rgba(20,50,90,.04);
}

    .service:hover {
        transform: translateY(-4px);
        border-color: #b8d5fb;
        box-shadow: var(--shadow);
    }

.service-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    margin: 0 auto 13px;
    border-radius: 16px;
    background: var(--blue-light);
    font-size: 24px;
}

.service h3 {
    color: var(--navy);
    font-size: 15px;
    margin-bottom: 5px;
}

.service p {
    color: var(--text-light);
    font-size: 11px;
}


/* =========================================================
   HERO SEARCH CARD
========================================================= */

/*.search-card {
    padding: 21px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 17px;
    background: rgba(255,255,255,.09);
    backdrop-filter: blur(14px);
    box-shadow: 0 25px 60px rgba(0,0,0,.18);
}*/
/*.search-submit {
    min-height: 48px;
    border: 0;
    border-radius: 9px;
    background: white;
    color: var(--navy);
    font-size: 12px;
    font-weight: 950;
    transition: .2s;
}*/
.search-card {
    position: relative;
    z-index: 5;
    background: white;
    color: var(--text);
    border-radius: 22px;
    padding: 23px;
    box-shadow: var(--shadow-lg);
}

.search-card-heading {
    margin-bottom: 14px;
}

    .search-card-heading h2 {
        font-size: 19px;
        font-weight: 900;
    }

    .search-card-heading p {
        margin-top: 3px;
        color: #181d22;
        font-size: 12px;
    }

.search-form {
    display: grid;
    gap: 9px;
}

.form-field {
    min-height: 49px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 12px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 9px;
    background: rgba(255,255,255,.08);
}

.form-field-icon {
    font-size: 17px;
}

.form-field-content {
    flex: 1;
}

.form-field label {
    display: block;
    color: #2f3944; /*#91A7C0*/
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.form-field input,
.form-field select {
    width: 100%;
    margin-top: 1px;
    border: 0;
    outline: none;
    background: transparent;
    color: #333;
    font-size: 14px !important;
    font-weight: 700;
}

    .form-field select option {
        color: var(--text);
    }



    .search-submit:hover {
        transform: translateY(-1px);
    }


/* =========================================================
   QUICK CATEGORIES
========================================================= */

/*.categories {
    padding: 32px 0 8px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 9px;
}

.category-card {
    min-height: 82px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: white;
    box-shadow: 0 5px 17px rgba(7,26,53,.04);
    transition: .2s;
}

    .category-card:hover {
        transform: translateY(-3px);
        border-color: #BFD5F1;
        box-shadow: var(--shadow);
    }

.category-icon {
    font-size: 20px;
}

.category-card strong {
    color: var(--navy);
    font-size: 11px;
}

.category-card small {
    color: var(--muted);
    font-size: 12px !important;
}*/


/* =========================================================
   SECTION HEADER
========================================================= */

/*.section {
    padding: 53px 0;
}*/
.section {
    width: min( 1180px, calc(100% - 28px) );
    margin: auto;
    padding: 65px 0;
}

.section-heading {
    max-width: 90vw;
    margin-bottom: 21px; 
    margin: 0 auto 35px;
    text-align: center;
}
.section-label {
    color: var(--blue);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-top: 6px;
    color: var(--navy);
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -.7px;
}

.section-heading p {
    margin-top: 7px;
    color: var(--muted);
    font-size: 12px !important;
    line-height: 1.7;
}
/* =====================================================
   MISSION CARDS
===================================================== */

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
}

.mission-card {
    padding: 22px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    transition: .2s;
}

    .mission-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-hover);
    }

.mission-icon {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: var(--blue-light);
    font-size: 22px;
    margin-bottom: 15px;
}

.mission-card h3 {
    color: var(--navy);
    font-size: 16px;
}

.mission-card p {
    margin-top: 7px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}



/* =========================================================
   FEATURED PARTNERS
========================================================= */

.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
}

.partner-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: white;
    box-shadow: var(--shadow);
    transition: .2s;
}

    .partner-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
    }

.partner-cover {
    min-height: 120px;
    padding: 17px;
    position: relative;
    background: linear-gradient( 135deg, #0B3D91, #1769E0 );
    color: white;
}

    .partner-cover::after {
        content: "";
        position: absolute;
        width: 130px;
        height: 130px;
        border-radius: 50%;
        right: -55px;
        top: -65px;
        background: rgba(255,255,255,.08);
    }

.partner-logo {
    width: 51px;
    height: 51px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: white;
    color: var(--blue);
    font-size: 22px;
    box-shadow: 0 7px 17px rgba(0,0,0,.13);
}

.partner-type {
    position: absolute;
    top: 17px;
    right: 15px;
    padding: 5px 8px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 5px;
    background: rgba(255,255,255,.1);
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
}

.partner-body {
    padding: 17px;
}

.partner-name {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--navy);
    font-size: 16px;
    font-weight: 950;
}

.verified {
    width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    font-size: 10px;
}

.partner-location {
    margin-top: 4px;
    color: #738399;
    font-size: 10px;
}

.partner-description {
    margin-top: 10px;
    color: var(--muted);
    font-size: 12px !important; 
    line-height: 1.65;
}

.partner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 12px;
}

.tag {
    padding: 5px 7px;
    border-radius: 5px;
    background: #F1F5F9;
    color: #5B6C80;
    font-size: 8px;
    font-weight: 800;
}

    .tag.green {
        background: var(--green-bg);
        color: #228044;
    }

.partner-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 13px;
    border-top: 1px solid #EEF2F6;
}

.rating {
    color: #B77900;
    font-size: 10px;
    font-weight: 900;
}

    .rating span {
        color: #78879A;
    }

.partner-link {
    min-height: 37px;
    padding: 0 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D7E3EF;
    border-radius: 8px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
}

    .partner-link:hover {
        background: var(--blue-light);
    }


/* =========================================================
   HOW IT WORKS
========================================================= */

.how {
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.step {
    position: relative;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg);
}

.step-number {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 12px;
    font-weight: 950;
    margin-bottom: 12px;
}

.step h3 {
    color: var(--navy);
    font-size: 14px;
}

.step p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}


/* =========================================================
   TWO SIDED MARKETPLACE
========================================================= */

.marketplace {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

.market-card {
    padding: 27px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: white;
    box-shadow: var(--shadow);
}

    .market-card.partner {
        background: linear-gradient( 145deg, #071A35, #0B3D91 );
        color: white;
        border: 0;
    }

.market-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: var(--blue-light);
    font-size: 21px;
    margin-bottom: 13px;
}

.market-card.partner .market-icon {
    background: rgba(255,255,255,.1);
}

.market-card h3 {
    color: var(--navy);
    font-size: 21px;
}

.market-card.partner h3 {
    color: white;
}

.market-card p {
    margin-top: 7px;
    color: var(--muted);
    font-size: 12px !important;
    line-height: 1.7;
}

.market-card.partner p {
    color: #C5D4E6;
}

.market-list {
    display: grid;
    gap: 7px;
    margin-top: 16px;
    list-style: none;
}

    .market-list li {
        display: flex;
        gap: 7px;
        color: #53657B;
        font-size: 10px;
        font-weight: 700;
    }

.market-card.partner .market-list li {
    color: #C7D7EA;
}

.market-list li::before {
    content: "✓";
    color: var(--blue);
    font-weight: 950;
}

.market-card.partner .market-list li::before {
    color: #65A7FF;
}

.market-action {
    display: inline-flex;
    min-height: 43px;
    margin-top: 19px;
    padding: 0 14px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--blue);
    color: white;
    font-size: 10px;
    font-weight: 900;
}

.market-card.partner .market-action {
    background: white;
    color: var(--navy);
}


/* =========================================================
   TRUST SECTION
========================================================= */

.trust {
    text-align: center;
    padding: 48px 0 20px;
}

    .trust h2 {
        color: var(--navy);
        font-size: 27px;
        letter-spacing: -.5px;
    }

    .trust p {
        max-width: 650px;
        margin: 7px auto 0;
        color: var(--muted);
        font-size: 13px;
        line-height: 1.7;
    }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 23px;
}

.trust-card {
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: white;
}

.trust-icon {
    font-size: 20px;
    margin-bottom: 7px;
}

.trust-card strong {
    display: block;
    color: var(--navy);
    font-size: 12px;
}

.trust-card span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}


/* =========================================================
   CTA
========================================================= */

.cta {
    margin-top: 45px;
    padding: 45px 25px;
    border-radius: 17px;
    overflow: hidden;
    position: relative;
    text-align: center;
    color: white;
    background: linear-gradient( 135deg, #071A35, #0B3D91 );
}

.cta::before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        right: -120px;
        top: -180px;
        background: rgba(47,128,237,.18);
}

.cta h2 {
        position: relative;
        z-index: 1;
        font-size: 29px;
        letter-spacing: -.6px;
}

.cta p {
        max-width: 650px;
        position: relative;
        z-index: 1;
        margin: 8px auto 0;
        color: #C6D6E9;
        font-size: 12px;
        line-height: 1.7;
}

.cta-buttons {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 19px;
}

.cta-button {
    min-height: 45px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 900;
}
.cta-primary,
.cta-secondary {
    min-height: 44px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 900;
}

.cta-primary {
    background: white;
    color: var(--navy);
}

.cta-secondary {
    border: 1px solid rgba(255,255,255,.2);
    color: white;
    background: rgba(255,255,255,.05);
}
 


/* =========================================================
   FOOTER
========================================================= */

.footer {
    margin-top: 55px;
    padding: 34px 0;
    background: #041126;
    color: #9BAEC5;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-logo {
    color: white;
    font-size: 20px;
    font-weight: 950;
}

    .footer-logo span {
        color: #4C97FF;
    }

.footer-description {
    margin-top: 4px;
    font-size: 12px;
    width:50vw;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
    font-size: 11px;
}

    .footer-links a:hover {
        color: white;
    }

.footer-copy {
    margin-top: 20px;
    padding-top: 17px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #647993;
    font-size: 12px;
    text-align: center;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 45px;
    }

    .hero-content {
        padding-bottom: 0;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 700px) {

    .header {
        height: 64px;
    }

    .container {
        width: calc(100% - 24px);
    }

    .nav {
        display: none;
    }

    .mobile-menu {
        display: grid;
        place-items: center;
    }


    /* Hero */

    .hero-inner {
        min-height: auto;
        gap: 18px;
    }

    .hero-content {
        padding: 42px 0 0;
    }

    .hero h1 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 13px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-button {
        width: 100%;
    }

    .hero-trust {
        gap: 9px;
        font-size: 9px;
    }

    .search-card {
        margin-bottom: 3px;
    }


    /* Categories */

    .categories {
        padding-top: 25px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .category-card {
        min-height: 78px;
    }


    /* Sections */

    .section {
        padding: 43px 0;
    }

    .section-heading h2 {
        font-size: 27px;
    }

    .section-heading p {
        font-size: 11px;
    }


    /* Partners */

    .partner-grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .partner-name {
        font-size: 17px;
    }

    .partner-description {
        font-size: 12px !important;
    }

    .partner-link {
        min-height: 40px;
        padding: 0 14px;
        font-size: 11px;
    }


    /* Steps */

    .steps {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .step h3 {
        font-size: 15px;
    }

    .step p {
        font-size: 10px;
    }


    /* Marketplace */

    .marketplace {
        grid-template-columns: 1fr;
    }

    .market-card {
        padding: 23px;
    }

        .market-card h3 {
            font-size: 21px;
        }

        .market-card p {
            font-size: 11px;
        }


    /* Trust */

    .trust h2 {
        font-size: 25px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }


    /* CTA */

    .cta {
        margin-top: 30px;
        padding: 35px 17px;
    }

        .cta h2 {
            font-size: 25px;
        }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        min-height: 47px;
    }


    /* Footer */

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 420px) {

    .logo {
        font-size: 20px;
    }

    .logo-icon {
        width: 37px;
        height: 37px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-description {
        font-size: 12px;
    }

    .section-heading h2 {
        font-size: 25px;
    }

    .category-card strong {
        font-size: 10px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   SMALL ANIMATION
========================================================= */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.partner-card,
.category-card,
.step,
.market-card {
    animation: fadeUp .35s ease both;
}
.section.white {
    background: white;
}
.section-title {
    text-align: center;
    margin-bottom: 30px;
    margin-top:20px;
}
/*.eyebrow {
    margin-bottom: 6px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}*/

.eyebrow {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, .13);
    background: rgba(255, 255, 255, .07);
    color: #687f9c;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}


.section-title h2 {
    color: var(--navy);
    font-size: clamp(27px, 4vw, 39px);
    letter-spacing: -.8px;
}
.section-title p {
    max-width: 650px;
    margin: 8px auto 0;
    color: var(--text-light);
    font-size: 13px;
}
/* =====================================================
   CONTACT
===================================================== */

.contact-section {
    width: min( 1180px, calc(100% - 28px) );
    margin: auto;
    padding: 65px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 40px;
    align-items: start;
}


/* Contact information */

.contact-info {
    padding-top: 8px;
}

    .contact-info h2 {
        margin-top: 8px;
        color: var(--navy);
        font-size: 34px;
        line-height: 1.15;
    }

    .contact-info > p {
        margin-top: 11px;
        color: var(--muted);
        font-size: 12px;
        line-height: 1.75;
    }

.contact-methods {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.contact-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: white;
}

.contact-icon {
    width: 39px;
    height: 39px;
    flex: none;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 17px;
}

.contact-card small {
    display: block;
    color: #8493A6;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.contact-card strong {
    display: block;
    margin-top: 3px;
    color: var(--navy);
    font-size: 13px;
}

.contact-card a:hover {
    color: var(--blue);
}


/* Contact form */

.contact-form {
    padding: 23px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: white;
    box-shadow: var(--shadow);
}

    .contact-form h3 {
        color: var(--navy);
        font-size: 19px;
    }

    .contact-form > p {
        margin-top: 5px;
        margin-bottom: 20px;
        color: var(--muted);
        font-size: 11px;
    }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .field.full {
        grid-column: 1 / -1;
    }

    .field label {
        color: #42546C;
        font-size: 10px;
        font-weight: 900;
        text-transform: uppercase;
    }

        .field label span {
            color: var(--danger);
        }

    .field input,
    .field select,
    .field textarea {
        width: 100%;
        border: 1px solid #D7E1EC;
        border-radius: 9px;
        background: #FBFCFE;
        color: var(--navy);
        outline: none;
        padding: 10px 12px;
        font-size: 14px;
        transition: .15s;
    }

    .field input,
    .field select {
        height: 46px;
    }

    .field textarea {
        min-height: 120px;
        resize: vertical;
    }

        .field input:focus,
        .field select:focus,
        .field textarea:focus {
            background: white;
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(23,105,224,.08);
        }

.send-button {
    width: 100%;
    height: 50px;
    margin-top: 15px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient( 135deg, var(--blue-2), #0B3D91 );
    color: white;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 9px 22px rgba(23,105,224,.18);
}

    .send-button:hover {
        filter: brightness(1.06);
    }

.form-success {
    display: none;
    margin-top: 13px;
    padding: 13px;
    border-radius: 9px;
    background: var(--green-bg);
    border: 1px solid #BFE8CC;
    color: #23713D;
    font-size: 11px;
    line-height: 1.6;
}

.form-success strong {
        display: block;
        margin-bottom: 3px;
        color: #12652F;
}

/* =====================================================
   FINAL CTA
===================================================== */

.final-cta {
    width: min( 1180px, calc(100% - 28px) );
    margin: 0 auto 65px;
    padding: 42px 30px;
    border-radius: 18px;
    background: linear-gradient( 135deg, var(--blue), #0B3D91 );
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .final-cta::after {
        content: "";
        position: absolute;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        right: -90px;
        top: -130px;
    }

    .final-cta h2 {
        position: relative;
        z-index: 1;
        font-size: 30px;
    }

    .final-cta p {
        max-width: 650px;
        margin: 8px auto 0;
        position: relative;
        z-index: 1;
        color: #D8E7FA;
        font-size: 12px;
        line-height: 1.7;
    }

    .final-cta a {
        display: inline-flex;
        position: relative;
        z-index: 2;
        margin-top: 18px;
        min-height: 45px;
        padding: 0 18px;
        align-items: center;
        border-radius: 9px;
        background: white;
        color: var(--navy);
        font-size: 12px;
        font-weight: 900;
    }

/* =====================================================
   SEARCH BAR
===================================================== */

.search-panel {
    padding: 18px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 32px;
}

.search-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.search-field {
    height: 46px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    border: 1px solid #D8E2ED;
    border-radius: 9px;
    background: #FBFCFE;
}

.search-field span {
        font-size: 16px;
}

.search-field input,
.search-field select {
        width: 100%;
        height: 100%;
        border: 0;
        outline: none;
        background: transparent;
        color: var(--navy);
        font-size: 13px;
}

.search-button {
    min-width: 105px;
    border: 0;
    border-radius: 9px;
    background: linear-gradient( 135deg, var(--blue-2), #0B3D91 );
    color: white;
    font-size: 12px;
    font-weight: 900;
}



/* =====================================================
   WHO SHOULD JOIN
===================================================== */

.join-section {
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.join-grid {
    width: min( 1180px, calc(100% - 28px) );
    margin: auto;
    padding: 65px 0;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 45px;
    align-items: center;
}

.join-heading h2 {
    margin-top: 8px;
    color: var(--navy);
    font-size: 34px;
    line-height: 1.15;
}

.join-heading p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.join-heading .join-button {
    display: inline-flex;
    margin-top: 20px;
    min-height: 46px;
    padding: 0 18px;
    align-items: center;
    border-radius: 9px;
    background: linear-gradient( 135deg, var(--blue-2), #0B3D91 );
    color: white;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 9px 22px rgba(23,105,224,.18);
}

.join-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.join-item {
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #FBFCFE;
}

.join-item-icon {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: var(--blue-light);
    margin-bottom: 9px;
}

.join-item h3 {
    color: var(--navy);
    font-size: 14px;
}

.join-item p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.6;
}


/* =========================================================
   OPERATORS
========================================================= */

.operators {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
}

.operator-card {
    padding: 18px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: .2s;
}

    .operator-card:hover {
        border-color: #b7d2f7;
        transform: translateY(-3px);
        box-shadow: var(--shadow);
    }

.operator-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.operator-logo {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--blue-light);
    font-size: 23px;
}

.operator-name {
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
}

.stars {
    color: var(--orange);
    font-size: 11px;
    margin-top: 2px;
}

.operator-location {
    min-height: 36px;
    margin: 15px 0;
    color: var(--text-light);
    font-size: 11px;
}

.operator-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.btn {
    min-height: 40px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    transition: .2s;
}

.btn-outline {
    background: white;
    border: 1px solid var(--border);
    color: #52647c;
}

    .btn-outline:hover {
        border-color: var(--blue);
        color: var(--blue);
        background: var(--blue-light);
    }

.btn-blue {
    background: linear-gradient( 135deg, #2f80ed, #0b3d91 );
    border: 0;
    color: white;
}
.btn-primary,
.btn-secondary {
    min-height: 47px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 900;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width:950px) {

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .booking-card {
        width: 100%;
        max-width: 650px;
        margin: auto;
    }
    .form-group {
        width: 100%;
        margin: auto;
    }
    .services {
        grid-template-columns: repeat(2,1fr);
    }

    .operators {
        grid-template-columns: repeat(2,1fr);
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width:680px) {
    /* OPERATORS */
    .booking-card {
       /* max-width: 650px;*/
        width: 100%;
        margin: auto;
    }
    .form-group {
        width: 100%;
        margin: auto;
       
    }
    .operators {
        grid-template-columns: 1fr;
    }
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mission-card h3 {
        font-size: 16px;
    }

    .mission-card p {
        font-size: 11px;
    }
    /* Why */

    .why-section {
        margin-top: 42px;
        padding: 42px 0;
    }

    .why-heading h2 {
        font-size: 26px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .why-card h3 {
        font-size: 14px;
    }

    .why-card p {
        font-size: 10px;
    }
    /* Partner cards */

    .partner-types {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .partner-card {
        padding: 17px;
        border-radius: 12px;
    }

    .partner-icon {
        width: 42px;
        height: 42px;
    }

    .partner-card h3 {
        font-size: 15px;
    }

    .partner-card p {
        font-size: 11px;
    }
    /* Benefits */

    .benefits {
        width: calc(100% - 24px);
        padding: 44px 0;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .benefit h3 {
        font-size: 14px;
    }

    .benefit p {
        font-size: 11px;
    }
    /* Form */

    .form-section {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .form-info h2 {
        font-size: 28px;
    }

    .form-info p {
        font-size: 12px;
    }

    .check {
        font-size: 11px;
    }

    .form-card {
        padding: 18px;
        border-radius: 14px;
    }

        .form-card h3 {
            font-size: 17px;
        }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
     
    .field.full {
        /*grid-column: auto;
        width:100%;*/
        grid-template-columns: 1fr;
    }

    .field label {
        font-size: 10px;
    }

    .field input,
    .field select,
    .field textarea {
        font-size: 14px;
    }

    .field input,
    .field select {
        height: 46px;
    }

    .field textarea {
        min-height: 105px;
    }

    .radio-group {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .radio label {
        font-size: 10px;
    }

    .terms {
        font-size: 10px;
    }

    .submit-btn {
        height: 50px;
        font-size: 12px;
    }
    .login-wrapper {
        grid-template-columns: 1fr;
        /*max-width: 520px;*/
        min-height: auto;
    }

    .welcome-panel {
        min-height: 300px;
        padding: 45px 35px;
    }
    .footer-description{
        width:100%;
    }
    .travel-card {
        width: 100%;
    }
    .travel-card {
        width: 100%;
    }
    .flw {
        width: 100%;
    }

}
.herobooking {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 85% 20%, rgba(245, 184, 0, .25), transparent 30%), linear-gradient(135deg, #0f172a, #172554 60%, #111827);
    color: white;
    padding: 55px 0 80px;
}
.location-box {
    border: 1px solid var(--border);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 14px;
}

.location-row {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 13px;
}

.location-row + .location-row {
        border-top: 1px solid var(--border);
}

.location-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 16px;
}
.field-wrap {
    flex: 1;
}

    .field-wrap label {
        display: block;
        color: var(--muted);
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 1px;
    }

    .field-wrap input {
        width: 100%;
        border: 0;
        outline: 0;
        color: var(--text);
        background: transparent;
        font-size: 14px;
    }

.location-action {
    border: 0;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 9px;
    padding: 8px;
    font-size: 15px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
}

.form-group {
    margin-bottom: 11px;
}

    .form-group.full {
        grid-column: 1 / -1;
    }

    .form-group label {
        display: block;
        font-size: 11px;
        font-weight: 700;
        color: #475569;
        margin-bottom: 5px;
    }


.form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(245,184,0,.12);
}
.booking-card {
    background: white;
    color: var(--text);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 25px 70px rgba(0,0,0,.25);
}
.booking-header {
    margin-bottom: 18px;
}
.booking-header h2 {
        font-size: 22px;
        margin-bottom: 3px;
}
.booking-header p {
        color: var(--muted);
        font-size: 13px;
}
.success-icon {
    width: 67px;
    height: 67px;
    display: grid;
    place-items: center;
    margin: 0 auto 13px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 2px solid rgba(255, 255, 255, .32);
    color: #69E39A;
    font-size: 29px;
    position: relative;
    z-index: 1;
}
.herostatusMsg {
    background: linear-gradient(135deg, var(--navy), #0D376C);
    border-radius: 20px;
    padding: 27px 22px;
    text-align: center;
    color: white;
    box-shadow: 0 18px 45px rgba(7, 26, 53, .16);
    position: relative;
    overflow: hidden;
    margin-bottom: 14px;
}
.status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 6px 10px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .1);
    color: #BFEBCF;
    font-size: 11px;
    font-weight:normal;
    position: relative;
    z-index: 1;
}
.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #43D17C;
}
.current-travel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    margin-bottom: 10px;
   /* background: #F4F8FD;*/
    border: 1px solid #DFEAF6;
    border-radius: 11px;
    
}
.current-travel-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* CAB CARD */

.cab-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 17px;
    padding: 17px;
    margin-bottom: 12px;
    transition: .2s;
}

.cab-card:hover {
        border-color: #b8d4f7;
        box-shadow: var(--shadow);
        transform: translateY(-2px);
}

.cab-top {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    align-items: center;
    gap: 15px;
}

.car-image {
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: linear-gradient(135deg,#eef6ff,#dbeafe);
    font-size: 49px;
}

.cab-name {
    color: var(--navy);
    font-size: 15px;
    font-weight: 900;
}

.cab-type {
    margin-top: 3px;
    color: var(--muted);
    font-size: 10px;
}

.cab-features {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 8px;
}
/* CARD BOTTOM */

.cab-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 13px;
    border-top: 1px solid var(--border);
}
.price {
    text-align: right;
}

.price strong {
        display: block;
        color: var(--navy);
        font-size: 19px;
 }

.price span {
        color: #8997aa;
        font-size: 9px;
}
.book {
    min-width: 105px;
    padding: 10px 15px;
    border: 0;
    border-radius: 9px;
    color: white;
    background: linear-gradient(135deg, #2f80ed, #0b3d91);
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 7px 18px rgba(23, 105, 224, .18);
}
/*.table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.responsive-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

    .responsive-table th,
    .responsive-table td {
        padding: 8px 12px;
        border: 1px solid #ddd;
        text-align: left;
        white-space: nowrap;
    }

    .responsive-table th {
        background-color: #f5f5f5;
    } */

.responsive-table {
    width: 100%;
}

    .responsive-table table {
        width: 100%;
        border-collapse: collapse;
        background: #fff;
    }

    .responsive-table th,
    .responsive-table td {
        padding: 10px 12px;
        border: 1px solid #ddd;
        text-align: left;
    }

    .responsive-table th {
        background: #f5f5f5;
        font-weight: 600;
    }

/* Mobile */
@media (max-width: 768px) {

    .responsive-table table,
    .responsive-table thead,
    .responsive-table tbody,
    .responsive-table th,
    .responsive-table td,
    .responsive-table tr {
        display: block;
    }

    /* Hide table header */
    .responsive-table thead {
        display: none;
    }

    .responsive-table tbody tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 8px 0;
        background: #fff;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }

    .responsive-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        border: none;
        border-bottom: 1px solid #eee;
        padding: 10px 12px;
        text-align: right;
        white-space: normal;
    }

        .responsive-table td:last-child {
            border-bottom: none;
        }

        /* Column name */
        .responsive-table td::before {
            content: attr(data-label);
            font-weight: 600;
            color: #555;
            text-align: left;
            flex: 0 0 40%;
        }

    .responsive-table td {
        flex: 1;
    }
    .story {
        display: grid;
        grid-template-columns: 1fr;
    }
    .join-grid {
        display: grid;
        grid-template-columns: 1fr;
    }
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr;
    }
    .terms {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        align-items: start;
    }
    .current-travel {
        display: grid;
        grid-template-columns: 1fr;
    }
    .btnhide{
        display:none;
    }
    .search-row {
        display: grid;
        grid-template-columns: 1fr;        
    }
}