/* Container - Background and Base Layout */
.vessel-hero {
    position: relative;
    width: 92%;
    height: 100vh;
    min-height: 500px;
    background: url('/photos/about-img.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Aligns content to the right side */
.shore-align {
    justify-content: flex-end;
    padding-right: 8%;
}

/* Dark Overlay */
.vessel-curtain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

/* Content Block */
.vessel-manifest {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: #fff;
    text-align: right; /* Aligns text to right */
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Keeps items locked to the right */
}

.vessel-title {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 5px;
}

.ab-text {
    font-size: 20px;
}

.vessel-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 450px;
}

/* Buttons Container */
.vessel-action-group {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* Base Button Style */
.vessel-btn {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

/* Teal Button */
.anchor-teal {
    background-color: #0d7a86;
    color: #fff;
}
.anchor-teal:hover { background-color: #0b6670; }

/* Orange Button */
.anchor-orange {
    background-color: #ff9f43;
    color: #fff;
}
.anchor-orange:hover { background-color: #e68a35; }

.anchor-icon {
    margin-right: 8px;
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 992px) {
    .shore-align {
        padding-right: 5%;
        padding-left: 5%;
        justify-content: center;
    }
    .vessel-manifest {
        text-align: center;
        align-items: center;
    }
    .vessel-action-group {
        justify-content: center;
    }
}

.journey-message {
    width: 100%;
    display: flex;
    justify-content: center; /* Centers the container */
    padding: 40px 0;
    background-color: transparent; /* Or #000 if it's in a dark section */
}

.journey-message p {
    font-family: "Lato", sans-serif; /* Your linked font */
    font-weight: 400; /* lato-regular */
    text-align: center; /* Centers the text lines */
    max-width: 700px; /* Prevents text from being one long line */
    line-height: 1.6; /* Adds breathing room between lines */
    font-size: 1.1rem;
    color: #666; /* Matching the subtitle color from your images */
    margin: 0 auto;
}

.motorius-section {
    position: relative;
    width: 100%;
    padding: 100px 0; /* Increased padding for better vertical spacing */
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Stacks H1 and P vertically */
    align-items: center;
    justify-content: center;
}


.vessel-title-2 {
    font-family: "Lato", sans-serif;
    font-weight: 900; /* lato-black */
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Positioning the cars on the sides */
.car-side {
    position: absolute;
    bottom: 0;
    width: 35%; /* Adjust based on image size */
    z-index: 1;
    pointer-events: none;
}

.car-left { left: -50px; }
.car-right { right: -50px; }

.step-section {
    padding: 70px 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.step-wrapper {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    width: 90%;
}

.step-card {
    flex: 1;
    position: relative;
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 12px;
    padding: 60px 30px 40px;
    text-align: left;
    /* Box shadow for depth without needing lines */
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

/* THE FLOATING NUMBER AREA */
.step-num-container {
    position: absolute;
    top: -45px;
    right: -25px;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-dot-border {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dotted #ddd;
    border-radius: 50%;
}

.step-digit {
    font-size: 65px;
    color: #000;
    z-index: 3;
}

.step-accent-disk {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background-color: #f7df1e; /* Highlight Yellow */
    border-radius: 50%;
    z-index: 2;
}

/* TEXT CONTENT */
.step-label {
    font-size: 12px;
    letter-spacing: 1px;
    color: #444;
    margin: 0;
}

.step-heading {
    font-size: 19px;
    display: inline-block;
    position: relative;
    margin: 8px 0 20px;
    z-index: 1;
}

/* Yellow Underline through the heading */
.step-heading::after {
    content: "";
    position: absolute;
    left: -4px;
    bottom: 3px;
    width: 108%;
    height: 9px;
    background-color: #f7df1e;
    z-index: -1;
}

.step-info {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

.step-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

/* Mobile responsive */
@media (max-width: 900px) {
    .step-wrapper {
        flex-direction: column;
        gap: 80px;
        align-items: center;
    }
    .step-card {
        width: 100%;
        max-width: 400px;
    }
}