/* =========================================================
   TRAVEL ENQUIRY
========================================================= */

.travel-enquiry-section {
    position: relative;
    padding: 100px 20px;
    background: #f7f9fc;
    overflow: hidden;
}

.travel-enquiry-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    top: -200px;
    left: -180px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.025);
    pointer-events: none;
}

.travel-enquiry-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    bottom: -180px;
    right: -120px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.025);
    pointer-events: none;
}

.travel-enquiry-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.travel-enquiry-header {
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
}

.travel-enquiry-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-color, #0d6efd);
}

.travel-enquiry-header h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    font-weight: 800;
    color: var(--heading-color, #111827);
}

.travel-enquiry-header h2 span {
    color: var(--primary-color, #0d6efd);
}

.travel-enquiry-header p {
    max-width: 600px;
    margin: 18px auto 0;
    color: #667085;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   MAIN CARD
========================================================= */

.travel-enquiry-card {
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, 0.07);
    border-radius: 28px;
    box-shadow: 0 25px 70px rgba(16, 24, 40, 0.09);
    overflow: hidden;
}


/* =========================================================
   PROGRESS
========================================================= */

.travel-progress {
    padding: 28px 40px;
    background: #fbfcfe;
    border-bottom: 1px solid #edf0f5;
}

.travel-progress-top {
    display: flex;
    align-items: center;
    width: 100%;
}

.travel-progress-step {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: #98a2b3;
}

.progress-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #eef1f5;
    color: #667085;
    font-size: 13px;
    font-weight: 700;
    transition: all .3s ease;
}

.progress-label {
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.travel-progress-step.active {
    color: var(--primary-color, #0d6efd);
}

.travel-progress-step.active .progress-number {
    background: var(--primary-color, #0d6efd);
    color: #fff;
    box-shadow: 0 5px 15px rgba(13, 110, 253, .25);
}

.travel-progress-step.completed {
    color: var(--primary-color, #0d6efd);
}

.travel-progress-step.completed .progress-number {
    background: var(--primary-color, #0d6efd);
    color: #fff;
}

.travel-progress-line {
    height: 2px;
    flex: 1;
    min-width: 25px;
    margin: 0 15px;
    background: #e8ebf0;
    overflow: hidden;
}

.travel-progress-line span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--primary-color, #0d6efd);
    transition: width .4s ease;
}


/* =========================================================
   FORM
========================================================= */

.travel-form-step {
    display: none;
    padding: 48px;
    animation: travelStepIn .35s ease;
}

.travel-form-step.active {
    display: block;
}

@keyframes travelStepIn {
    from {
        opacity: 0;
        transform: translateX(15px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* =========================================================
   STEP HEADING
========================================================= */

.step-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 38px;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(13, 110, 253, .08);
    color: var(--primary-color, #0d6efd);
    font-size: 21px;
}

.step-kicker {
    display: block;
    margin-bottom: 5px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #98a2b3;
}

.step-heading h3 {
    margin: 0;
    font-size: 25px;
    line-height: 1.25;
    font-weight: 800;
    color: #101828;
}

.step-heading p {
    margin: 5px 0 0;
    color: #667085;
    font-size: 14px;
}


/* =========================================================
   SERVICE GRID
========================================================= */

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.service-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    min-height: 86px;
    padding: 16px 18px;
    border: 1px solid #e4e7ec;
    border-radius: 16px;
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: all .25s ease;
}

.service-option:hover {
    border-color: var(--primary-color, #0d6efd);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 24, 40, .07);
}

.service-option.selected {
    border-color: var(--primary-color, #0d6efd);
    background: rgba(13, 110, 253, .035);
    box-shadow: 0 8px 25px rgba(13, 110, 253, .08);
}

.service-option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 13px;
    background: #f2f4f7;
    color: #475467;
    font-size: 19px;
    transition: all .25s ease;
}

.service-option.selected .service-option-icon {
    background: var(--primary-color, #0d6efd);
    color: #fff;
}

.service-option-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-option-content strong {
    color: #101828;
    font-size: 15px;
    font-weight: 750;
}

.service-option-content small {
    color: #98a2b3;
    font-size: 12px;
}

.service-option-check {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color, #0d6efd);
    color: #fff;
    font-size: 9px;
    opacity: 0;
    transform: scale(.7);
    transition: all .25s ease;
}

.service-option.selected .service-option-check {
    opacity: 1;
    transform: scale(1);
}


/* =========================================================
   SERVICE FIELDS
========================================================= */

.service-fields {
    display: none;
}

.service-fields.active {
    display: block;
    animation: travelStepIn .3s ease;
}


/* =========================================================
   FIELDS
========================================================= */

.field-row {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.field-row.one {
    grid-template-columns: 1fr;
}

.field-row.two {
    grid-template-columns: repeat(2, 1fr);
}

.field-row.three {
    grid-template-columns: repeat(3, 1fr);
}

.field-group {
    min-width: 0;
}

.field-group label {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    color: #344054;
    font-size: 13px;
    font-weight: 700;
}

.optional {
    color: #98a2b3;
    font-size: 11px;
    font-weight: 500;
}

.input-icon {
    position: relative;
}

.input-icon > i {
    position: absolute;
    top: 50%;
    left: 15px;
    z-index: 1;
    color: #98a2b3;
    font-size: 14px;
    transform: translateY(-50%);
    pointer-events: none;
}

.input-icon input {
    padding-left: 44px;
}

.field-group input,
.field-group select,
.field-group textarea {
    width: 100%;
    border: 1px solid #dfe3e8;
    border-radius: 12px;
    background: #fff;
    color: #101828;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: all .2s ease;
    box-sizing: border-box;
}

.field-group input,
.field-group select {
    height: 50px;
    padding: 0 15px;
}

.field-group textarea {
    min-height: 130px;
    padding: 14px 15px;
    resize: vertical;
    line-height: 1.6;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
    color: #b0b7c3;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
    border-color: var(--primary-color, #0d6efd);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, .08);
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "\f107";
    position: absolute;
    top: 50%;
    right: 15px;
    color: #98a2b3;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transform: translateY(-50%);
    pointer-events: none;
}

.select-wrapper select {
    appearance: none;
    padding-right: 40px;
}


/* =========================================================
   RADIO
========================================================= */

.choice-group {
    display: flex;
    gap: 10px;
}

.choice-option {
    position: relative;
    margin: 0 !important;
    cursor: pointer;
}

.choice-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 50px;
    padding: 0 18px;
    border: 1px solid #dfe3e8;
    border-radius: 12px;
    color: #475467;
    font-size: 13px;
    font-weight: 650;
    transition: all .2s ease;
}

.choice-option input:checked + span {
    border-color: var(--primary-color, #0d6efd);
    background: rgba(13, 110, 253, .06);
    color: var(--primary-color, #0d6efd);
}


/* =========================================================
   COUNTER
========================================================= */

.counter {
    display: flex;
    align-items: center;
    height: 50px;
    border: 1px solid #dfe3e8;
    border-radius: 12px;
    overflow: hidden;
}

.counter button {
    width: 48px;
    height: 100%;
    border: 0;
    background: #f8f9fb;
    color: #475467;
    font-size: 19px;
    cursor: pointer;
    transition: all .2s ease;
}

.counter button:hover {
    background: var(--primary-color, #0d6efd);
    color: #fff;
}

.counter input {
    flex: 1;
    width: auto;
    height: 100%;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-align: center;
    font-weight: 700;
}


/* =========================================================
   PREFERENCES
========================================================= */

.preference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 22px;
}

.textarea-group {
    margin-top: 5px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 20px;
    margin-bottom: 30px;
}


/* =========================================================
   PRIVACY
========================================================= */

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    cursor: pointer;
    color: #667085;
    font-size: 12px;
    line-height: 1.6;
}

.privacy-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 19px;
    height: 19px;
    margin-top: 1px;
    border: 1px solid #d0d5dd;
    border-radius: 5px;
    color: #fff;
    font-size: 9px;
    transition: all .2s ease;
}

.privacy-check input:checked + .custom-checkbox {
    border-color: var(--primary-color, #0d6efd);
    background: var(--primary-color, #0d6efd);
}


/* =========================================================
   NAVIGATION
========================================================= */

.form-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 38px;
    padding-top: 28px;
    border-top: 1px solid #edf0f5;
}

.form-navigation.right {
    justify-content: flex-end;
}

.travel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
    transition: all .25s ease;
}

.travel-btn.primary {
    background: var(--primary-color, #0d6efd);
    color: #fff;
    box-shadow: 0 8px 20px rgba(13, 110, 253, .18);
}

.travel-btn.primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(13, 110, 253, .25);
}

.travel-btn.primary:disabled {
    opacity: .45;
    cursor: not-allowed;
    box-shadow: none;
}

.travel-btn.secondary {
    border: 1px solid #dfe3e8;
    background: #fff;
    color: #475467;
}

.travel-btn.secondary:hover {
    border-color: #c5cad2;
    background: #f8f9fb;
}


/* =========================================================
   SUCCESS
========================================================= */

.travel-success {
    display: none;
    padding: 70px 40px;
    text-align: center;
    animation: travelStepIn .4s ease;
}

.travel-success.active {
    display: block;
}

.success-animation {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: rgba(16, 185, 129, .1);
    color: #10b981;
    font-size: 30px;
    animation: successPop .5s ease;
}

@keyframes successPop {
    0% {
        transform: scale(.5);
        opacity: 0;
    }

    70% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-kicker {
    color: #10b981;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.travel-success h3 {
    margin: 10px 0 12px;
    color: #101828;
    font-size: 28px;
}

.travel-success p {
    max-width: 520px;
    margin: 0 auto 30px;
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   TRUST
========================================================= */

.travel-enquiry-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
    margin-top: 25px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #98a2b3;
    font-size: 12px;
}

.trust-item i {
    color: var(--primary-color, #0d6efd);
}


/* =========================================================
   VALIDATION
========================================================= */

.travel-field-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, .08) !important;
}

.travel-error-message {
    display: block;
    margin-top: 6px;
    color: #ef4444;
    font-size: 11px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .travel-enquiry-section {
        padding: 75px 16px;
    }

    .travel-form-step {
        padding: 35px 28px;
    }

    .travel-progress {
        padding: 22px 28px;
    }

    .progress-label {
        display: none;
    }

    .travel-progress-step {
        gap: 0;
    }

    .travel-progress-line {
        margin: 0 10px;
    }

}


@media (max-width: 700px) {

    .travel-enquiry-section {
        padding: 60px 12px;
    }

    .travel-enquiry-header {
        margin-bottom: 30px;
    }

    .travel-enquiry-header h2 {
        font-size: 34px;
    }

    .travel-enquiry-card {
        border-radius: 20px;
    }

    .travel-progress {
        padding: 18px;
    }

    .travel-progress-top {
        justify-content: space-between;
    }

    .travel-progress-line {
        min-width: 15px;
        margin: 0 6px;
    }

    .travel-form-step {
        padding: 28px 20px;
    }

    .step-heading {
        align-items: flex-start;
        margin-bottom: 28px;
    }

    .step-heading h3 {
        font-size: 21px;
    }

    .service-grid,
    .field-row.two,
    .field-row.three,
    .preference-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .choice-group {
        flex-direction: column;
    }

    .choice-option span {
        width: 100%;
        box-sizing: border-box;
    }

    .form-navigation {
        margin-top: 28px;
    }

    .travel-btn {
        flex: 1;
    }

    .travel-enquiry-trust {
        flex-direction: column;
        gap: 12px;
    }

}


@media (max-width: 420px) {

    .travel-progress-step .progress-number {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }

    .travel-progress-line {
        min-width: 8px;
        margin: 0 4px;
    }

    .service-option {
        min-height: 75px;
        padding: 12px;
    }

    .service-option-icon {
        width: 42px;
        height: 42px;
    }

    .service-option-content strong {
        font-size: 13px;
    }

    .service-option-content small {
        font-size: 10px;
    }

}

/* =========================================================
   INPUT ICON FIX
   Prevent icons from overlapping input text
========================================================= */

.travel-enquiry-section .input-icon {
    position: relative;
    width: 100%;
}

.travel-enquiry-section .input-icon > i {
    position: absolute !important;
    top: 50% !important;
    left: 16px !important;
    z-index: 2 !important;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;

    margin: 0 !important;
    padding: 0 !important;

    color: #98a2b3;
    font-size: 14px;
    line-height: 1;

    transform: translateY(-50%);
    pointer-events: none;
}

/* Normal text / tel / email / time / number inputs */
.travel-enquiry-section .input-icon > input[type="text"],
.travel-enquiry-section .input-icon > input[type="tel"],
.travel-enquiry-section .input-icon > input[type="email"],
.travel-enquiry-section .input-icon > input[type="time"],
.travel-enquiry-section .input-icon > input[type="number"] {
    padding-left: 48px !important;
}

/* Date inputs */
.travel-enquiry-section .input-icon > input[type="date"] {
    padding-left: 48px !important;
}

/* Search-like inputs */
.travel-enquiry-section .input-icon > input {
    box-sizing: border-box !important;
}

/* Placeholder */
.travel-enquiry-section .input-icon > input::placeholder {
    opacity: 1;
    color: #98a2b3;
}

/* Focus icon */
.travel-enquiry-section .input-icon:focus-within > i {
    color: var(--primary-color, #0d6efd);
}


/* =========================================================
   DATE INPUT
========================================================= */

/*
 * Keep the browser's calendar button on the right
 * while our Font Awesome icon stays on the left.
 */

.travel-enquiry-section input[type="date"] {
    position: relative;
    min-width: 0;
}

.travel-enquiry-section input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 14px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}


/* =========================================================
   COUNTER INPUT
   Don't apply icon padding to counter inputs
========================================================= */

.travel-enquiry-section .counter input {
    padding-left: 0 !important;
    padding-right: 0 !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .travel-enquiry-section .input-icon > input[type="text"],
    .travel-enquiry-section .input-icon > input[type="tel"],
    .travel-enquiry-section .input-icon > input[type="email"],
    .travel-enquiry-section .input-icon > input[type="time"],
    .travel-enquiry-section .input-icon > input[type="number"],
    .travel-enquiry-section .input-icon > input[type="date"] {
        padding-left: 46px !important;
    }

}


/* =====================================================
   ABOUT US INTRO
===================================================== */

.tt-about-intro {
    position: relative;

    overflow: hidden;

    padding: 110px 0;

    /* background: var(--tt-lighter); */
}


/* =====================================================
   LEFT VISUAL
===================================================== */

.tt-about-visual {
    position: relative;

    width: 100%;

    max-width: 570px;

    min-height: 560px;

    margin: 0 auto;
}


/* =====================================================
   MAIN IMAGE
===================================================== */

.tt-about-main-image {
    position: absolute;

    left: 20px;

    top: 75px;

    width: 365px;

    height: 435px;

    overflow: hidden;

    border-radius:
        170px 0 0 0;

    box-shadow: var(--tt-shadow-lg);

    background: var(--tt-light);

    animation: ttAboutImageReveal 0.9s ease both;
}


.tt-about-main-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s ease;
}


.tt-about-main-image:hover img {
    transform: scale(1.06);
}


@keyframes ttAboutImageReveal {

    from {
        opacity: 0;

        transform:
            translateX(-35px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0);
    }

}


/* =====================================================
   EXPERIENCE CARD
===================================================== */

.tt-about-experience {
    position: absolute;

    z-index: 4;

    top: 20px;

    left: 340px;

    width: 245px;

    min-height: 155px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 24px 30px;

    color: var(--tt-lighter);

    background: var(--tt-accent);

    border-radius:
        var(--tt-radius)
        var(--tt-radius)
        0
        var(--tt-radius);

    box-shadow:
        0 15px 35px rgba(212, 160, 60, 0.20);

    animation:
        ttAboutCardIn 0.8s ease 0.15s both;
}


.tt-about-experience strong {
    display: block;

    margin-bottom: 2px;

    font-family: var(--tt-font);

    font-size: 34px;

    font-weight: 800;

    line-height: 1.1;
}


.tt-about-experience span {
    font-family: var(--tt-font);

    font-size: 17px;

    font-weight: 600;
}


@keyframes ttAboutCardIn {

    from {
        opacity: 0;

        transform:
            translateY(-20px)
            scale(0.96);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }

}


/* =====================================================
   TRAVELER CIRCLE
===================================================== */

.tt-about-traveler {
    position: absolute;

    z-index: 5;

    left: 330px;

    top: 160px;

    width: 190px;
    height: 190px;

    padding: 13px;

    background: var(--tt-lighter);

    border-radius: 50%;

    box-shadow:
        0 12px 35px rgba(0,0,0,0.12);

    animation:
        ttAboutTravelerIn 0.9s ease 0.3s both;
}


.tt-about-traveler img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 50%;
}


@keyframes ttAboutTravelerIn {

    from {
        opacity: 0;

        transform:
            scale(0.7);
    }

    to {
        opacity: 1;

        transform:
            scale(1);
    }

}


/* =====================================================
   HAPPY CLIENTS
===================================================== */

.tt-about-clients {
    position: absolute;

    z-index: 4;

    left: 205px;

    bottom: 15px;

    width: 260px;

    min-height: 155px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 24px 35px;

    color: var(--tt-lighter);

    background: var(--tt-primary);

    border-radius:
        var(--tt-radius)
        var(--tt-radius)
        var(--tt-radius)
        0;

    box-shadow:
        0 15px 35px rgba(13,17,123,0.20);

    animation:
        ttAboutClientIn 0.8s ease 0.25s both;
}


.tt-about-clients strong {
    display: block;

    margin-bottom: 3px;

    font-family: var(--tt-font);

    font-size: 34px;

    font-weight: 800;

    line-height: 1.1;
}


.tt-about-clients span {
    font-family: var(--tt-font);

    font-size: 17px;

    font-weight: 600;
}


@keyframes ttAboutClientIn {

    from {
        opacity: 0;

        transform:
            translateY(25px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =====================================================
   DECORATIVE DOTS
===================================================== */

.tt-about-dot {
    position: absolute;

    z-index: 6;

    width: 11px;
    height: 11px;

    border-radius: 50%;

    background: var(--tt-accent);

    animation:
        ttAboutDotFloat 4s ease-in-out infinite;
}


.tt-about-dot-1 {
    left: 0;

    top: 185px;
}


.tt-about-dot-2 {
    right: 30px;

    bottom: 100px;

    width: 8px;
    height: 8px;

    background: var(--tt-primary);

    animation-delay: -2s;
}


@keyframes ttAboutDotFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-8px);
    }

}


/* =====================================================
   RIGHT CONTENT
===================================================== */

.tt-about-content {
    max-width: 610px;

    padding-left: 20px;
}


.tt-about-eyebrow {
    display: inline-flex;

    align-items: center;

    margin-bottom: 13px;

    color: var(--tt-accent);

    font-family: var(--tt-font);

    font-size: 15px;

    font-weight: 700;
}


.tt-about-eyebrow::before {
    content: "";

    width: 26px;
    height: 2px;

    margin-right: 9px;

    background: var(--tt-accent);

    border-radius: 5px;
}


/* =====================================================
   TITLE
===================================================== */

.tt-about-title {
    max-width: 600px;

    margin: 0 0 22px;

    color: var(--tt-dark);

    font-family: var(--tt-font-display);

    font-size: clamp(42px, 4vw, 58px);

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -1.5px;
}


.tt-about-title span {
    display: block;

    color: var(--tt-primary);
}


/* =====================================================
   DESCRIPTION
===================================================== */

.tt-about-description {
    max-width: 600px;

    margin: 0 0 25px;

    color: var(--tt-text);

    font-family: var(--tt-font);

    font-size: 14px;

    line-height: 1.85;
}


/* =====================================================
   BENEFITS
===================================================== */

.tt-about-benefits {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    column-gap: 30px;

    row-gap: 13px;

    margin-bottom: 30px;
}


.tt-about-benefit {
    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--tt-text);

    font-family: var(--tt-font);

    font-size: 12px;

    line-height: 1.4;
}


/* =====================================================
   BENEFIT ICON
===================================================== */

.tt-benefit-icon {
    width: 19px;
    height: 19px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--tt-lighter);

    background: var(--tt-accent);

    border-radius: 50%;

    font-size: 8px;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.tt-about-benefit:hover .tt-benefit-icon {
    transform:
        scale(1.15)
        rotate(-8deg);

    background: var(--tt-primary);
}


/* =====================================================
   BUTTON
===================================================== */

.tt-about-button {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 13px 18px 13px 22px;

    color: var(--tt-lighter);

    background: var(--tt-accent);

    border-radius: var(--tt-radius);

    font-family: var(--tt-font);

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 8px 20px rgba(212,160,60,0.18);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.tt-about-button i {
    width: 29px;
    height: 29px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--tt-accent);

    background: var(--tt-lighter);

    border-radius: 50%;

    font-size: 9px;

    transition:
        transform 0.3s ease;
}


.tt-about-button:hover {
    color: var(--tt-lighter);

    background: var(--tt-accent-dark);

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(212,160,60,0.25);
}


.tt-about-button:hover i {
    transform: translateX(4px);
}


/* =====================================================
   LARGE TABLET
===================================================== */

@media (max-width: 1199px) {

    .tt-about-visual {
        transform: scale(0.9);

        transform-origin: center left;
    }


    .tt-about-content {
        padding-left: 0;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .tt-about-intro {
        padding: 80px 0;
    }


    .tt-about-visual {
        margin-bottom: 20px;

        transform:
            scale(0.9)
            translateX(5%);
    }


    .tt-about-content {
        max-width: 700px;

        margin: 0 auto;

        padding: 0;
    }


    .tt-about-title {
        font-size: 48px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .tt-about-intro {
        padding: 65px 0;
    }


    .tt-about-visual {
        width: 100%;

        min-height: 470px;

        transform: none;

        margin-bottom: 20px;
    }


    .tt-about-main-image {
        left: 0;

        top: 55px;

        width: 67%;

        height: 360px;

        border-radius:
            140px 0 0 0;
    }


    .tt-about-experience {
        top: 0;

        right: 0;

        left: auto;

        width: 48%;

        min-height: 120px;

        padding: 20px;

        border-radius: var(--tt-radius);
    }


    .tt-about-experience strong {
        font-size: 25px;
    }


    .tt-about-experience span {
        font-size: 13px;
    }


    .tt-about-traveler {
        top: 170px;

        left: 53%;

        width: 145px;
        height: 145px;

        padding: 9px;
    }


    .tt-about-clients {
        left: 22%;

        bottom: 5px;

        width: 52%;

        min-height: 115px;

        padding: 20px 25px;

        border-radius: var(--tt-radius);
    }


    .tt-about-clients strong {
        font-size: 25px;
    }


    .tt-about-clients span {
        font-size: 13px;
    }


    .tt-about-title {
        font-size: 39px;

        letter-spacing: -1px;
    }


    .tt-about-description {
        font-size: 13px;
    }


    .tt-about-benefits {
        grid-template-columns: 1fr;

        row-gap: 11px;
    }


    .tt-about-benefit {
        font-size: 11px;
    }


    .tt-about-eyebrow {
        font-size: 13px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .tt-about-visual {
        min-height: 420px;
    }


    .tt-about-main-image {
        width: 70%;

        height: 325px;
    }


    .tt-about-experience {
        width: 49%;

        min-height: 105px;

        padding: 15px;
    }


    .tt-about-experience strong {
        font-size: 22px;
    }


    .tt-about-experience span {
        font-size: 11px;
    }


    .tt-about-traveler {
        top: 150px;

        left: 53%;

        width: 125px;
        height: 125px;
    }


    .tt-about-clients {
        min-height: 100px;

        padding: 16px 20px;
    }


    .tt-about-clients strong {
        font-size: 22px;
    }


    .tt-about-clients span {
        font-size: 11px;
    }


    .tt-about-title {
        font-size: 34px;
    }

}


/* =====================================================
   TESTIMONIALS SECTION
===================================================== */

.tt-testimonials-section {
    position: relative;

    overflow: hidden;

    padding: 105px 0 95px;

    /* background: var(--tt-primary-light); */
}


/* =====================================================
   BACKGROUND
===================================================== */

.tt-testimonials-bg {
    position: absolute;

    inset: 0;

    overflow: hidden;

    pointer-events: none;
}


.tt-testimonial-orb {
    position: absolute;

    border-radius: 50%;

    filter: blur(60px);

    opacity: .25;

    animation:
        ttTestimonialOrb 10s ease-in-out infinite;
}


.tt-orb-1 {
    width: 350px;
    height: 350px;

    left: -180px;
    top: 80px;

    background: var(--tt-accent-light);
}


.tt-orb-2 {
    width: 300px;
    height: 300px;

    right: -150px;
    bottom: -80px;

    background: rgba(13,17,123,.12);

    animation-delay: -5s;
}


@keyframes ttTestimonialOrb {

    0%,
    100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(30px,-20px);
    }

}


/* =====================================================
   BACKGROUND QUOTE
===================================================== */

.tt-testimonial-quote-bg {
    position: absolute;

    right: 4%;

    top: 30px;

    color: rgba(13,17,123,.035);

    font-family: Georgia, serif;

    font-size: 280px;

    line-height: 1;

    animation:
        ttQuoteFloat 8s ease-in-out infinite;
}


@keyframes ttQuoteFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

}


/* =====================================================
   DECORATIVE STARS
===================================================== */

.tt-testimonial-star {
    position: absolute;

    color: var(--tt-accent);

    opacity: .45;

    animation:
        ttTestStar 4s ease-in-out infinite;
}


.tt-test-star-1 {
    left: 12%;

    top: 100px;

    font-size: 18px;
}


.tt-test-star-2 {
    right: 15%;

    top: 170px;

    font-size: 12px;

    animation-delay: -1.5s;
}


.tt-test-star-3 {
    left: 20%;

    bottom: 100px;

    font-size: 10px;

    animation-delay: -2.5s;
}


@keyframes ttTestStar {

    0%,
    100% {
        transform: translateY(0) scale(1);

        opacity: .3;
    }

    50% {
        transform: translateY(-10px) scale(1.25);

        opacity: .75;
    }

}


/* =====================================================
   HEADER
===================================================== */

.tt-testimonials-header {
    position: relative;

    z-index: 2;

    max-width: 650px;

    margin: 0 auto 50px;

    text-align: center;
}


.tt-testimonials-header .tt-pretitle {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--tt-accent);

    font-family: var(--tt-font);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


.tt-testimonials-header .tt-title {
    margin: 0 0 15px;

    color: var(--tt-dark);

    font-family: var(--tt-font-display);

    font-size: clamp(40px, 4vw, 56px);

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -1.5px;
}


.tt-testimonials-header .tt-title .accent {
    color: var(--tt-primary);

    font-style: italic;
}


.tt-testimonials-header p {
    max-width: 530px;

    margin: auto;

    color: var(--tt-text-muted);

    font-family: var(--tt-font);

    font-size: 13px;

    line-height: 1.8;
}


/* =====================================================
   SLIDER
===================================================== */

.tt-testimonials-slider {
    position: relative;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 18px;
}


.tt-testimonial-viewport {
    width: 100%;

    overflow: hidden;

    padding: 8px 3px 18px;
}


.tt-testimonial-track {
    display: flex;

    gap: 22px;

    transition:
        transform .65s cubic-bezier(.22,.61,.36,1);
}


/* =====================================================
   CARD
===================================================== */

.tt-testimonial-card {
    position: relative;

    flex: 0 0 calc((100% - 44px) / 3);

    min-height: 330px;

    display: flex;

    flex-direction: column;

    padding: 27px;

    overflow: hidden;

    background: var(--tt-lighter);

    border: 1px solid rgba(13,17,123,.07);

    border-radius: var(--tt-radius-lg);

    box-shadow: var(--tt-shadow);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


.tt-testimonial-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 4px;
    height: 0;

    background: var(--tt-accent);

    border-radius: 0 0 5px 5px;

    transition:
        height .4s ease;
}


.tt-testimonial-card:hover {
    transform: translateY(-7px);

    border-color: rgba(212,160,60,.20);

    box-shadow: var(--tt-shadow-lg);
}


.tt-testimonial-card:hover::before {
    height: 70px;
}


/* =====================================================
   CARD TOP
===================================================== */

.tt-testimonial-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;
}


.tt-testimonial-stars {
    display: flex;

    gap: 3px;
}


.tt-testimonial-stars i {
    color: var(--tt-accent);

    font-size: 11px;
}


.tt-testimonial-number {
    color: var(--tt-text-muted);

    font-family: var(--tt-font);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1px;

    opacity: .6;
}


/* =====================================================
   QUOTE
===================================================== */

.tt-testimonial-quote {
    position: absolute;

    right: 25px;

    top: 42px;

    color: var(--tt-primary);

    font-family: Georgia, serif;

    font-size: 62px;

    font-weight: 700;

    line-height: .7;

    opacity: .07;

    transition:
        opacity .3s ease,
        transform .3s ease;
}


.tt-testimonial-card:hover .tt-testimonial-quote {
    opacity: .13;

    transform:
        translateY(-3px);
}


/* =====================================================
   TEXT
===================================================== */

.tt-testimonial-text {
    position: relative;

    z-index: 2;

    margin: 30px 0 25px;

    color: var(--tt-text);

    font-family: var(--tt-font);

    font-size: 13px;

    line-height: 1.85;
}


/* =====================================================
   AUTHOR
===================================================== */

.tt-testimonial-author {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: auto;

    padding-top: 20px;

    border-top: 1px solid var(--tt-border);
}


.tt-testimonial-author img {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: block;

    object-fit: cover;

    border: 2px solid var(--tt-accent-light);

    border-radius: 50%;

    transition:
        transform .35s ease,
        border-color .35s ease;
}


.tt-testimonial-card:hover
.tt-testimonial-author img {
    transform:
        scale(1.08)
        rotate(-4deg);

    border-color: var(--tt-accent);
}


.tt-testimonial-name {
    margin-bottom: 4px;

    color: var(--tt-dark);

    font-family: var(--tt-font);

    font-size: 12px;

    font-weight: 700;
}


.tt-testimonial-location {
    display: flex;

    align-items: center;

    gap: 5px;

    color: var(--tt-text-muted);

    font-family: var(--tt-font);

    font-size: 10px;
}


.tt-testimonial-location i {
    color: var(--tt-accent);

    font-size: 9px;
}


/* =====================================================
   ARROWS
===================================================== */

.tt-testimonial-arrow {
    position: relative;

    z-index: 5;

    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--tt-primary);

    background: var(--tt-lighter);

    border: 1px solid var(--tt-border);

    border-radius: 50%;

    box-shadow: var(--tt-shadow-sm);

    cursor: pointer;

    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}


.tt-testimonial-arrow:hover {
    color: var(--tt-lighter);

    background: var(--tt-primary);

    border-color: var(--tt-primary);

    transform: translateY(-2px);
}


.tt-testimonial-arrow:active {
    transform: scale(.94);
}


.tt-testimonial-arrow:disabled {
    opacity: .35;

    cursor: not-allowed;

    transform: none;
}


/* =====================================================
   CONTROLS
===================================================== */

.tt-testimonial-controls {
    position: relative;

    z-index: 3;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 22px;
}


/* =====================================================
   DOTS
===================================================== */

.tt-testimonial-dots {
    display: flex;

    align-items: center;

    gap: 6px;
}


.tt-testimonial-dots button {
    width: 7px;
    height: 7px;

    padding: 0;

    border: 0;

    background: var(--tt-border);

    border-radius: 10px;

    cursor: pointer;

    transition:
        width .3s ease,
        background .3s ease;
}


.tt-testimonial-dots button.active {
    width: 25px;

    background: var(--tt-accent);
}


/* =====================================================
   RATING
===================================================== */

.tt-testimonial-rating {
    display: flex;

    align-items: center;

    gap: 9px;
}


.tt-rating-icon {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--tt-lighter);

    background: var(--tt-accent);

    border-radius: 50%;

    font-size: 10px;
}


.tt-testimonial-rating strong {
    display: block;

    color: var(--tt-dark);

    font-family: var(--tt-font);

    font-size: 11px;
}


.tt-testimonial-rating span {
    display: block;

    margin-top: 2px;

    color: var(--tt-text-muted);

    font-family: var(--tt-font);

    font-size: 9px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .tt-testimonials-section {
        padding: 80px 0;
    }


    .tt-testimonial-card {
        flex-basis: calc((100% - 22px) / 2);
    }


    .tt-testimonials-header {
        margin-bottom: 40px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .tt-testimonials-section {
        padding: 65px 0 70px;
    }


    .tt-testimonials-header {
        margin-bottom: 30px;
    }


    .tt-testimonials-header .tt-title {
        font-size: 38px;
    }


    .tt-testimonials-header p {
        padding: 0 10px;

        font-size: 12px;
    }


    .tt-testimonials-slider {
        gap: 8px;
    }


    .tt-testimonial-card {
        flex-basis: 100%;

        min-height: 315px;

        padding: 23px;
    }


    .tt-testimonial-track {
        gap: 15px;
    }


    .tt-testimonial-arrow {
        width: 36px;
        height: 36px;

        font-size: 10px;
    }


    .tt-testimonial-text {
        font-size: 12px;
    }


    .tt-testimonial-controls {
        margin-top: 18px;
    }


    .tt-testimonial-rating {
        display: none;
    }


    .tt-testimonial-quote-bg {
        font-size: 180px;

        right: -10px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .tt-testimonials-header .tt-title {
        font-size: 34px;
    }


    .tt-testimonial-card {
        min-height: 305px;

        padding: 20px;
    }

}