/* ========== OUR STORY — SECTION 5: REFINED TRAVEL ========== */

.os-travel-section {
    background: #0d0a04;
    padding: 6vh 5vw 10vh;
    /* Added 10vh bottom padding */
    position: relative;
}

.os-travel-container {
    max-width: 1498px;
    margin: 0 auto;
    background: #0d0a04;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 70px 60px;
    position: relative;
    overflow: visible;
    /* Changed from hidden so the car can break out */
}

.os-travel-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 90px;
}

/* LEFT: Content Column */
.os-travel-content {
    flex: 0 0 556px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 10px;
}

.os-travel-subtitle {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    display: block;
    margin-bottom: 5px;
}

.os-travel-title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
    max-width: 530px;
}

.os-travel-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0 0 20px 0;
    max-width: 530px;
}

/* CTA Button Styling */
.os-travel-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: transparent;
    border: 1px solid rgba(220, 169, 89, 0.5);
    /* Gold outline */
    color: #ffffff;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    padding: 0 6px 0 24px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    width: 260px;
    height: 64px;
    justify-content: space-between;
}

.os-travel-cta:hover {
    border-color: #dca959;
    background-color: rgba(220, 169, 89, 0.1);
}

.os-travel-cta-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.os-travel-cta-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* RIGHT: Pictures Column */
.os-travel-pics {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
    /* Align image to the right of the container */
    align-items: center;
}

.os-travel-main-pic {
    width: 120%;
    /* Allow image to be larger than container space to break out */
    max-width: 1000px;
    position: absolute;
    right: -100px;
    /* Break out of the box on the right */
    top: 50%;
    transform: translateY(-50%);
    box-shadow: none;
    /* Removed box shadow as it's a deep-etched car object usually */
    pointer-events: none;
    /* Let clicks pass through empty parts of png */
}

.os-travel-main-pic img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* LINKER */
.os-travel-linker-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 3vh 0 2vh 0;
    /* Add some space around the linker */
    background: #0d0a04;
}

.os-travel-linker {
    width: 32px;
    height: 52px;
    object-fit: contain;
}

/* ---- Mobile Responsiveness ---- */
@media (max-width: 1200px) {
    .os-travel-section {
        padding: 60px 24px 0;
    }

    .os-travel-container {
        padding: 60px 30px 100px;
        /* Add bottom padding to account for image breakout */
        border-radius: 40px;
        overflow: visible;
    }

    .os-travel-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 60px;
    }

    .os-travel-content {
        flex: none;
        width: 100%;
        align-items: center;
    }

    .os-travel-desc {
        max-width: 100%;
    }

    .os-travel-pics {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
    }

    .os-travel-main-pic {
        width: 130%;
        /* Oversize it slightly on mobile to break edges */
        max-width: none;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .os-travel-section {
        padding: 40px 16px 10vh;
        /* Re-added bottom spacing for mobile */
    }

    .os-travel-container {
        padding: 40px 24px 60px;
        border-radius: 30px;
    }

    .os-travel-title {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
        line-height: 1.1;
        /* Pull subtitle and title closer together */
    }

    .os-travel-subtitle {
        font-size: clamp(2rem, 6vw, 2.6rem);
        line-height: 1.1;
        margin-bottom: 2px;
        /* Reduce gap under "Refined" */
    }

    .os-travel-desc {
        font-size: 15px;
    }

    .os-travel-cta {
        width: 100%;
        max-width: 300px;
        justify-content: space-between;
    }
}