/*-- -------------------------- -->
<---       Breadcrumb           -->
<--- -------------------------- -*/

@media only screen and (min-width: 0rem) {
    #breadcrumb {
        background-color: #f9f9f9;
        border-bottom: 1px solid #eee;
    }

    .breadcrumb-container {
        max-width: 80rem;
        margin: 0 auto;
        padding: 0.75rem 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1rem;
        color: var(--bodyTextColor);
    }

    .breadcrumb-container a {
        color: var(--secondary);
        text-decoration: none;
        transition: color 0.2s;
    }

    .breadcrumb-container a:hover {
        color: var(--primary);
    }

    .breadcrumb-sep {
        color: #bbb;
    }
}

/*-- -------------------------- -->
<---       Image Slider         -->
<--- -------------------------- -*/

@media only screen and (min-width: 0rem) {
    #boat-hero {
        background-color: #000;
    }

    .slider-wrap {
        width: 100%;
    }

    .slider-overflow {
        position: relative;
        overflow: hidden;
        width: 100%;
    }

    .slider-track {
        display: flex;
        transition: transform 0.4s ease;
        will-change: transform;
    }

    .slide {
        min-width: calc(100% / 2.5);
        flex-shrink: 0;
        padding: 0 2px;
    }

    .slide img {
        width: 100%;
        height: 24rem;
        object-fit: cover;
        display: block;
    }

    .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.92);
        border: none;
        border-radius: 50%;
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.6rem;
        line-height: 1;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--headerColor);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
        transition: background-color 0.2s;
        z-index: 20;
    }

    .slider-btn:hover {
        background: #e8e8e8;
    }

    .slider-btn:disabled {
        opacity: 0.35;
        cursor: default;
        pointer-events: none;
    }

    .slider-prev {
        left: 0.75rem;
    }

    .slider-next {
        right: 0.75rem;
    }
}

@media only screen and (max-width: 63.9375rem) {
    .slide {
        min-width: calc(100% / 1.7);
    }

    .slide img {
        height: 18rem;
    }
}

@media only screen and (max-width: 39.9375rem) {
    .slide {
        min-width: 100%;
        padding: 0;
    }

    .slide img {
        height: 16rem;
    }
}

/*-- -------------------------- -->
<---      Boat Content          -->
<--- -------------------------- -*/

@media only screen and (min-width: 0rem) {
    #boat-content {
        padding: 3rem 1rem 5rem;
        background-color: #fff;
    }

    .boat-content-container {
        max-width: 80rem;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 22rem;
        gap: 3.5rem;
        align-items: start;
    }
}

@media only screen and (max-width: 63.9375rem) {
    .boat-content-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/*-- -------------------------- -->
<---       Boat Header          -->
<--- -------------------------- -*/

@media only screen and (min-width: 0rem) {
    .boat-header {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #eee;
        text-align: center;
    }

    .boat-header h1 {
        font-size: 3rem;
        color: var(--headerColor);
        line-height: 1.2;
        margin-bottom: 0.25rem;
    }

    .boat-type-label {
        font-size: var(--bodyFontSize);
        color: var(--bodyTextColor);
        font-weight: 500;
        margin-bottom: 1.25rem;
        display: block;
    }

    .boat-availability-btn {
        display: inline-block;
        background-color: var(--primary);
        color: #fff;
        padding: 0.85rem 2rem;
        border-radius: 4px;
        font-weight: 700;
        font-size: 1rem;
        text-decoration: none;
        transition: background-color 0.3s, transform 0.2s;
    }

    .boat-availability-btn:hover {
        background-color: #01579B;
        transform: translateY(-2px);
    }
}

@media only screen and (max-width: 40rem) {
    .boat-header h1 {
        font-size: 2rem;
    }

    .boat-type-label {
        font-size: 1rem;
    }
}

/*-- -------------------------- -->
<---        Boat Stats          -->
<--- -------------------------- -*/

@media only screen and (min-width: 0rem) {
    .boat-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        margin-bottom: 2.5rem;
        padding: 1.5rem;
        background-color: #f9f9f9;
        border-radius: 8px;
        border: 1px solid #eee;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
    }

    .stat-label {
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--bodyTextColor);
    }

    .stat-value {
        font-size: var(--bodyFontSize);
        font-weight: 700;
        color: var(--headerColor);
        line-height: 1.4;
    }
}

@media only screen and (max-width: 63.9375rem) {
    .boat-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 40rem) {
    .stat-value {
        font-size: 1rem;
    }
}

/*-- -------------------------- -->
<---      Boat Sections         -->
<--- -------------------------- -*/

@media only screen and (min-width: 0rem) {
    .boat-section {
        margin-bottom: 2.5rem;
        padding-bottom: 2.5rem;
        border-bottom: 1px solid #eee;
    }

    .boat-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .boat-section h2 {
        font-size: 1.4rem;
        color: var(--headerColor);
        margin-bottom: 0.75rem;
    }

    .boat-section p {
        color: var(--bodyTextColor);
        line-height: 1.8;
        font-size: var(--bodyFontSize);
        margin-bottom: 1rem;
    }

    .boat-section p:last-child {
        margin-bottom: 0;
    }

    .included-list {
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }

    .included-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        font-size: var(--bodyFontSize);
        color: var(--bodyTextColor);
        line-height: 1.5;
    }

    .included-list li::before {
        content: "✓";
        color: var(--primary);
        font-weight: 700;
        flex-shrink: 0;
    }
}

@media only screen and (max-width: 40rem) {
    .boat-section p,
    .included-list li {
        font-size: 1rem;
    }
}

/*-- -------------------------- -->
<---       Pricing Range        -->
<--- -------------------------- -*/

@media only screen and (min-width: 0rem) {
    .pricing-range-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #f9f9f9;
        border: 1px solid #eee;
        border-radius: 8px;
        padding: 1rem 1.25rem;
        margin-bottom: 0.75rem;
    }

    .pricing-range-label {
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--bodyTextColor);
    }

    .pricing-range-value {
        font-size: 1.2rem;
        font-weight: 900;
        color: var(--primary);
    }

    .pricing-note {
        font-size: 0.9rem;
        color: var(--bodyTextColor);
        line-height: 1.6;
        font-style: italic;
        margin-top: 0.75rem;
    }

    .good-to-know {
        margin-top: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .good-to-know h3 {
        font-size: 1rem;
        color: var(--headerColor);
        margin-bottom: 0.75rem;
        font-weight: 700;
    }

    .gtk-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .gtk-item {
        background-color: #f9f9f9;
        border: 1px solid #eee;
        border-radius: 8px;
        padding: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
    }

    .gtk-label {
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--bodyTextColor);
    }

    .gtk-value {
        font-size: 1rem;
        font-weight: 700;
        color: var(--primary);
    }

    .gtk-note {
        font-size: 0.85rem;
        color: var(--bodyTextColor);
        line-height: 1.4;
    }
}

/*-- -------------------------- -->
<---       Trip Cards           -->
<--- -------------------------- -*/

@media only screen and (min-width: 0rem) {
    .trips-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .trip-card {
        border: 1px solid #eee;
        border-radius: 8px;
        padding: 1.25rem;
        background-color: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .trip-card-header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .trip-card-header h3 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--headerColor);
        line-height: 1.3;
    }

    .trip-duration {
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--bodyTextColor);
        background-color: #f9f9f9;
        border: 1px solid #eee;
        padding: 0.2rem 0.6rem;
        border-radius: 4px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .trip-price {
        font-size: 1.3rem;
        font-weight: 900;
        color: var(--primary);
        margin-bottom: 0.3rem;
    }

    .trip-note {
        font-size: 0.85rem;
        color: var(--bodyTextColor);
        font-style: italic;
        margin-bottom: 0.75rem;
    }

    .trip-highlights {
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
        border-top: 1px solid #eee;
        padding-top: 0.75rem;
        margin-top: 0.25rem;
    }

    .trip-highlights li {
        font-size: 0.9rem;
        color: var(--bodyTextColor);
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
        line-height: 1.4;
    }

    .trip-highlights li::before {
        content: "–";
        color: var(--primary);
        font-weight: 700;
        flex-shrink: 0;
    }
}

@media only screen and (max-width: 40rem) {
    .trips-grid {
        grid-template-columns: 1fr;
    }
}

/*-- -------------------------- -->
<---       Boat Sidebar         -->
<--- -------------------------- -*/

@media only screen and (min-width: 0rem) {
    .boat-sidebar {
        position: sticky;
        top: 5rem;
    }

    .inquiry-card {
        background-color: #fff;
        border: 1px solid #eee;
        border-radius: 8px;
        padding: 1.75rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    }

    .inquiry-card h3 {
        font-size: 1.2rem;
        color: var(--headerColor);
        margin-bottom: 0.5rem;
    }

    .inquiry-card > p {
        font-size: 0.9rem;
        color: var(--bodyTextColor);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .inquiry-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
    }

    .form-group label {
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--headerColor);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.65rem 0.85rem;
        border: 1.5px solid #ddd;
        border-radius: 4px;
        font-family: var(--bodyFontFamily);
        font-size: 0.9rem;
        color: var(--headerColor);
        background-color: #fff;
        transition: border-color 0.2s;
        outline: none;
        width: 100%;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--primary);
    }

    .inquiry-form .btn-primary {
        width: 100%;
        text-align: center;
        padding: 0.85rem;
        border: none;
        cursor: pointer;
        font-family: var(--bodyFontFamily);
        font-size: 1rem;
    }

    .btn-primary {
        display: inline-block;
        background-color: var(--primary);
        color: #fff;
        padding: 0.85rem 2rem;
        border-radius: 4px;
        font-weight: 700;
        font-size: 1rem;
        transition: background-color 0.3s, transform 0.2s;
        border: none;
        cursor: pointer;
        text-decoration: none;
    }

    .btn-primary:hover {
        background-color: #01579B;
        transform: translateY(-2px);
    }
}

@media only screen and (max-width: 63.9375rem) {
    .boat-sidebar {
        position: static;
    }
}