.bc-logo img {
    width: 150px;
}

.gap-2 {
    gap: 16px
}

.boat-steps button {
    font-size: 16px;
    color: white;
}

.boat-steps button:focus {
    outline: 3px solid #001871;
}

.boat-steps button.active,
.boat-steps button:hover {
    background: #005edc !important;
}

.boat-steps .nav-link {
    pointer-events: none;
    cursor: default;
}

.boat-steps .nav-link.active {
    pointer-events: auto;
}

.boat-steps {
    background: #f5f5f5;
    padding: 12px;
    position: sticky;
    top: 45px;
    z-index: 10;
    box-shadow: 5px 5px 17px #99939363;
}

.card-wrapper {
    display: flex;
    justify-content: center;
    gap: 16px;
    max-width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
}

.stater-card {
    border: 2px solid #e5e5e5;
    border-radius: 14px !important;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    padding: 0;
    color: black !important;
    overflow: hidden;
    height: fit-content;
    min-width: fit-content;
}

.stater-card.active,
.stater-card:has(input:checked) {
    border: 2px solid gray;
    background-color: rgb(147, 141, 141) !important;
    box-shadow: 0 0 10px 4px #b4b2b2;
}

.stater-card.active .card-bottom,
.stater-card:has(input:checked) .card-bottom {
    background-color: rgb(255 255 255 / 80%);
}

.stater-card img {
    width: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.stater-card h5 {
    margin: 10px 0 5px;
}

.stater-card input {
    display: none;
}

.stater-card:has(input:disabled) {
    cursor: not-allowed;
    opacity: 0.6;
}

/* Selected card */
.stater-card input:checked+img,
.stater-card input:checked~h5,
.stater-card input:checked~p {
    pointer-events: none;
}

/* Button */
#continueToStaterooms {
    width: 200px;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: #f6b756;
    color: #000;
    font-weight: 600;
}

.cabin-stater {
    gap: 16px;
    max-width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
}

/* Stateroom Card */
.stateroom-card {
    /* max-width: 420px; */
    width: 100%;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    /* margin-top: 12px; */
}

.stateroom-card:hover {
    box-shadow: rgba(0, 0, 0, 0.3) 0 10px 20px;
}

/* Room Image */
.room-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.stateroom-card:hover .room-image img {
    transform: scale(1.05);
}

.room-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

/* Room Title Section */
.room-title {
    background: #5192fa33;
    padding: 16px 20px;
    text-align: center;
    color: #001871;
    position: relative;
}

.room-title h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.room-title p {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.95;
    font-weight: 500;
    line-height: 1.5;
}

/* Details Table */
.details-wrapper {
    padding: 14px;
    background: #f8fafc;
}

.room-details-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.room-details-table thead {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.room-details-table thead th {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 12px;
    text-align: center;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    border-bottom: 2px solid #e2e8f0;
}

.room-details-table tbody td {
    padding: 10px;
    text-align: center;
    font-size: 12px;
    color: #1e293b;
    font-weight: 500;
}

.room-details-table tbody td:first-child {
    font-weight: 600;
}

/* Notice Section */
.notice-wrapper {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    margin: 0 20px;
    padding: 10px;
    font-size: 0.8125rem;
    color: #dc2626;
}

.notice-text {
    line-height: 20px;
    text-align: center;
    height: 40px; /* 👈 fix 2 line height */

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
    position: relative;
    margin-bottom: 0 !important;
}

/* 👇 FORCE DOTS */
.notice-text::after {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fef2f2;
    padding-left: 4px;
}

/* Price Section */
.price {
    text-align: center;
    padding: 16px 20px;
    /* background: white; */
}

.price-label {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.price-amount {
    font-size: 48px !important;
    font-weight: 500 !important;
    color: #1A2B48;
    margin: 0;
    letter-spacing: -0.02em;
}

.price-amount sup {
    font-size: 22px;
    top: -20px;
    font-weight: 600
}

/* Book Button */
.book-btn {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 auto 16px;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(30, 41, 59, 0.3);
}

.book-btn:hover {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 41, 59, 0.4);
}

.book-btn:active {
    transform: translateY(0);
}

/* Footer Description */
.card-footer {
    background: #f8fafc;
    padding: 16px 20px;
    border-top: 1px solid #e2e8f0;
}

.card-footer .footer-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-footer .footer-title::before {
    content: '';
    width: 3px;
    height: 14px;
    background: #3b82f6;
    border-radius: 2px;
}

.card-footer .footer-text {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* Badge */
.occupancy-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: #dbeafe;
    color: #1e40af;
    padding: 0.25rem 0.625rem;
    border-radius: 12px;
    font-size: 0.8125rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 480px) {
    .room-image {
        height: 200px;
    }

    .room-title h4 {
        font-size: 1.125rem;
    }

    .room-title p {
        font-size: 0.8125rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .details-wrapper {
        padding: 1.25rem;
    }

    .notice {
        margin: 1rem 1.25rem;
    }
}

.stateroom-card {
    animation: fadeInUp 0.5s ease-out;
}

.summary-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.08);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

/* LEFT SECTION */
.summary-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Table Styles */
.summary-table {
    width: 100%;
    border: 1px solid #e5e5e5;
    border-collapse: collapse;
    background: rgba(0, 0, 0, .04);
    border-radius: 12px;
    overflow: hidden;
}

.summary-table thead {
    background: rgba(0, 0, 0, .04);
}

.summary-table th {
    text-align: left;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px;
    color: #334155;
    letter-spacing: 0.025em;
    border-bottom: 2px solid #e2e8f0;
}

.summary-table tbody tr {
    transition: background-color 0.2s ease;
}

.summary-table tbody tr:hover {
    background: #f1f5f9;
}

.summary-table td {
    padding: 8px;
    font-size: 0.9375rem;
    color: #1e293b;
    font-weight: 500;
}

.summary-table td:first-child {
    font-weight: 600;
    color: #0f172a;
}

/* Cabin Highlights Section */
.highlights-section {
    background-color: rgba(0, 0, 0, .04);
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 10px;
    height: 100%;
}

.highlight-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1A2B48;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-title::before {
    content: '';
    width: 4px;
    height: 16px;
    background: #1A2B48;
    border-radius: 2px;
}

.summary-wrapper .note {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

.summary-wrapper .note strong {
    color: #1e293b;
}

/* RIGHT PRICE BOX */
.summary-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .04);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem 3rem;
    min-width: 280px;
    position: relative;
    overflow: hidden;
}

.summary-wrapper .currency {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.summary-wrapper .price {
    font-size: 48px;
    font-weight: 500;
    color: #1A2B48;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    padding-top: 0;
}

.summary-wrapper .price sup
{
    font-size: 22px;
    top: -20px;
    font-weight: 600;
}

.summary-wrapper .price-label {
    font-size: 0.875rem;
    color: #64748b;
    text-align: center;
    line-height: 1.5;
    font-weight: 500;
}

.summary-wrapper .price-label strong {
    display: block;
    font-size: 0.9375rem;
    color: #334155;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* Badge */
.summary-wrapper .badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    background: #dbeafe;
    color: #1e40af;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .summary-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .summary-right {
        min-width: auto;
        padding: 1.75rem 2rem;
    }

    .summary-wrapper .price {
        font-size: 3rem;
    }
}

@media (max-width: 640px) {

    .summary-table th,
    .summary-table td {
        padding: 0.875rem;
        font-size: 0.875rem;
    }

    .summary-table th {
        font-size: 0.8125rem;
    }

    .summary-right {
        padding: 1.5rem;
    }

    .highlights-section {
        padding: 1rem;
    }
}

/* Optional: Add subtle animation */
.summary-wrapper {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.guest-form-section {
    font-family: Arial, sans-serif;
}

.guest-form-section .form-card {
    /* background: #eff6ffd7; */
    background-color: rgba(0, 0, 0, .04);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Title */
.guest-form-section .form-title {
    background: #203559;
    color: white;
    padding: 12px 1.75rem;
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0;
    border: none;
    position: relative;
}

.guest-form-section .form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #203559;
}

#payNowBtn {
    width: 170px;
    font-size: 16px;
    text-transform: uppercase;
}

/* Form Body */
.guest-form-section .form-body {
    padding: 2rem 1.75rem;
}

/* Label Styling */
.guest-form-section label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.2s ease;
}

.guest-form-section label span {
    color: #ef4444;
    margin-left: 2px;
}

/* Form Control */
.guest-form-section .form-control,
.guest-form-section .form-select {
    height: 44px;
    font-size: 0.9375rem;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    padding: 0.625rem 1rem;
    transition: all 0.2s ease;
    background: white;
    color: #1e293b;
}

.guest-form-section .form-control::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.guest-form-section .form-control:focus,
.guest-form-section .form-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.guest-form-section .form-control:hover:not(:focus),
.guest-form-section .form-select:hover:not(:focus) {
    border-color: #94a3b8;
}

/* Select Dropdown */
.guest-form-section .form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23475569' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

/* Input Date */
.guest-form-section input[type="date"] {
    cursor: pointer;
}

/* Grid Spacing */
.guest-form-section .row.g-2 {
    row-gap: 16px !important;
}

/* Form Group Enhancement */
.guest-form-section .form-group-enhanced {
    position: relative;
}

.guest-form-section .form-group-enhanced .form-control:focus~label,
.guest-form-section .form-group-enhanced .form-select:focus~label {
    color: #3b82f6;
}

/* Optional Field Indicator */
.guest-form-section .optional-badge {
    display: inline-block;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    margin-left: 0.375rem;
    font-style: italic;
}

/* Section Divider */
.guest-form-section .section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
    margin: 1.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .guest-form-section .form-title {
        font-size: 1.125rem;
        padding: 1rem 1.25rem;
    }

    .guest-form-section .form-body {
        padding: 1.5rem 1.25rem;
    }

    .guest-form-section .form-control,
    .guest-form-section .form-select {
        height: 42px;
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .guest-form-section .form-body {
        padding: 1.25rem 1rem;
    }

    .guest-form-section label {
        font-size: 0.8125rem;
    }
}

/* Input Icons (Optional Enhancement) */
.guest-form-section .input-with-icon {
    position: relative;
}

.guest-form-section .input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    pointer-events: none;
}

.guest-form-section .input-with-icon .form-control {
    padding-left: 2.75rem;
}

/* Helper Text */
.guest-form-section .helper-text {
    font-size: 0.8125rem;
    color: #64748b;
    margin-top: 0.375rem;
    display: block;
}

/* Error State */
.guest-form-section .form-control.is-invalid,
.guest-form-section .form-select.is-invalid {
    border-color: #ef4444;
}

.guest-form-section .form-control.is-invalid:focus,
.guest-form-section .form-select.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.guest-form-section .invalid-feedback {
    font-size: 0.8125rem;
    color: #ef4444;
    margin-top: 0.375rem;
}

.fw-bold {
    font-weight: 600
}

.booking-success {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f6f8fb;
    font-family: Arial, sans-serif;
}

.success-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Check icon */
.success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #28a745;
    color: #fff;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text */
.success-card h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.success-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Buttons */
.success-actions {
    display: flex;
    gap: 12px;
}

.success-actions a {
    flex: 1;
    padding: 14px 0;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
}

/* Exit */
.btn-exit {
    background: #e0bb37;
    color: #000;
}

.btn-exit:hover {
    background: #e0a800 !important;
    color: #333 !important
}

/* Book another */
.btn-book {
    background: #007bff;
    color: #fff;
}

.btn-book:hover {
    background: #0056b3;
}

/* Mobile */
@media (max-width: 576px) {
    .success-actions {
        flex-direction: column;
    }
}

.step-btn {
    position: relative;
    width: 100%;
    padding: 14px 20px;
    background: #001871;
    color: #fff;
    border-radius: 0;
    border: none;
    font-size: 16px;
    text-align: center;
    transition: 0.3s;
    clip-path: polygon(0 0,
            calc(100% - 20px) 0,
            100% 50%,
            calc(100% - 20px) 100%,
            0 100%,
            20px 50%);
}

/* Remove left arrow on first */
.boat-steps .nav-item:first-child .step-btn {
    clip-path: polygon(0 0,
            calc(100% - 20px) 0,
            100% 50%,
            calc(100% - 20px) 100%,
            0 100%);
}

/* Remove right arrow on last */
.boat-steps .nav-item:last-child .step-btn {
    clip-path: polygon(0 0,
            100% 0,
            /* top-right flat */
            100% 100%,
            /* bottom-right flat */
            0 100%,
            20px 50%
            /* left arrow tip stays */
        );
}

/* Hover & active */
.step-btn:hover,
.step-btn.active {
    background: #5191fa;
    color: #fff;
}

/* Focus */
.step-btn:focus {
    outline: none;
}

/* Small overlap to connect arrows */
.boat-steps .nav-item:not(:first-child) {
    margin-left: -20px;
}

.step-btn::before {
    content: attr(data-step);
    position: absolute;
    left: 20%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fw-normal {
    font-weight: 400 !important
}

/* WRAPPER */
.itinerary-wrapper {
    display: flex;
    gap: 35px;
}

/* LEFT IMAGE */
.itinerary-left {
    width: 46%;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.map-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e6eaf0;
    padding: 8px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.map-img {
    width: 100%;
    border-radius: 8px;
}

/* RIGHT */
.itinerary-right {
    width: 54%;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 8px;
    scroll-behavior: smooth;
}

/* ROW */
.timeline-row {
    display: flex;
    padding-bottom: 26px;
}

/* TIMELINE COLUMN */
.timeline-line {
    width: 26px;
    position: relative;
}

/* VERTICAL LINE */
.timeline-line::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 0;
    bottom: -40px;
    width: 2px;
    background: #203559;
    z-index: 1;
}

/* LAST LINE HIDE */
.timeline-row:last-child .timeline-line::after {
    display: none;
}

/* DOT SMALL */
.dot {
    width: 8px;
    height: 8px;
    background: #203559;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 9px;
    z-index: 2;
}

/* CONTENT */
.timeline-content {
    flex: 1;
    padding-left: 6px;
}

/* DAY TITLE SMALL + PREMIUM */
.day-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #1c2b39;
    line-height: 1.3;
}

/* ICON SMALL */
.day-title .icon i {
    font-size: 14px;
    margin-right: 6px;
    color: #4d4d4d;
}

/* DATE SMALL LIGHT */
.day-time {
    font-size: 14px;
    color: #555;
    margin-top: 4px;
}
.day-time i {
    margin-right: 6px;
    color: #888;
}

/* TENDER TEXT */
.tender-text {
    font-style: italic;
    color: #2f6fed;
    font-size: 14px;
}

/* HOVER LIGHT */
.timeline-row:hover {
    transform: translateX(2px);
    transition: 0.15s ease;
}

.itinerary-right::-webkit-scrollbar {
    width: 6px;
}

.itinerary-right::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.itinerary-right::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.itinerary-right::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.cruise-summary-card {
    margin-top: 15px;
    background: #fff;
    border: 1px solid #e9edf3;
    border-radius: 10px;
    padding: 12px;
}

.cruise-summary-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.cruise-summary-item:last-child {
    margin-bottom: 0;
}

.cruise-summary-item i {
    font-size: 20px;
    color: #2f6fed;
    margin-top: 2px;
}

.cruise-summary-item .label {
    display: block;
    font-size: 13px;
    color: #8f9aa3;
    margin-bottom: 2px;
}

.cruise-summary-item .value {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1c2b39;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px
}

button:focus {
    outline: none;
}

.tab-btn {
    padding: 12px 22px;
    border: 1px solid #807f7f;
    background: #d5d5d5;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    border-bottom: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    border: 2px solid #203559;
    color: white;
    background-color: #203559;
}

.tab-pane {
    display: none;
    
}

.tab-pane.card-body
{
    background-color: rgba(0, 0, 0, .04);
}

.tab-content.card , .g-faq.card
{
    box-shadow: 5px 5px 17px #99939363;
    border-radius: 10px;
}

.g-faq.card 
{
    background-color: rgba(0, 0, 0, .04);
}

.tab-pane.active {
    display: block;
}

.iti {
    width: 100%;
}

@media (max-width: 992px) {

    .boat-steps button,
    .tab-btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .step-btn::before {
        width: 12px;
        height: 12px;
        left: 14%;
    }

    .cruise-summary-card {
        padding: 14px 0;
    }

    .cruise-summary-item .value,
    .day-title {
        font-size: 13px;
    }

    .itinerary-wrapper {
        gap: 15px
    }

    .timeline-row {
        padding-bottom: 16px;
    }

    .day-time {
        font-size: 12px;
    }

    .room-title h4 {
        font-size: 18px;
    }

    .notice {
        margin: 0 14px;
    }

    .price,
    .card-footer,
    .room-title {
        padding: 14px;
    }

    .book-btn {
        margin: 0 auto 0 !important;
    }

    .summary-wrapper .price {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .itinerary-wrapper {
        display: block;
    }

    .itinerary-left,
    .itinerary-right {
        width: 100%;
        position: relative;
        top: 0;
    }

    .itinerary-right {
        max-height: 400px;
        margin-top: 12px;
    }

    .tab-buttons {
        gap: 5px;
    }

    .boat-steps .step-btn {
        padding: 10px 32px;
    }

    .tab-btn {
        padding: 10px;
    }

    .card-wrapper {
        gap: 10px
    }

    .stater-card img {
        width: 180px;
        height: 120px;
    }

    .stater-card h5,
    .guest-form-section .form-title {
        font-size: 18px;
    }

    .g-faq .item .header {
        padding-top: 3px;
        margin-bottom: 3px;
    }

    .summary-wrapper .price {
        font-size: 30px;
    }

    .summary-wrapper {
        gap: 15px
    }

    .summary-wrapper {
        padding: 18px;
    }

    .summary-table td {
        padding: 8px 12px;
    }

    .summary-table td {
        font-size: 14px;
    }

}

@media (max-width:480px) {
    .tab-btn {
        padding: 8px;
    }

    .boat-steps button,
    .tab-btn,
    .bc_wrap .bc_detail_boat .bc_content .g-overview .description {
        font-size: 12px;
    }

    .stater-card h5 {
        margin-top: 0;
    }

    .guest-form-section .form-title {
        font-size: 16px;
    }

    .summary-wrapper .price {
        font-size: 28px;
    }
}

/* SUCCESS PAGE WRAPPER */
.booking-success-wrapper{
    min-height: 70vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 15px;
}

/* CARD */
.booking-success-card{
    max-width:550px;
    width:100%;
    background:#fff;
    border-radius:16px;
    padding:45px 35px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    border:1px solid #f1f1f1;
}

/* ICON */
.success-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#e9f9ee;
    display:flex;
    align-items:center;
    justify-content:center;
}

.success-icon i{
    font-size:50px;
    color:#28a745;
}

/* TITLE */
.success-title{
    font-weight:700;
    margin-bottom:15px;
}

/* TEXT */
.success-text{
    color:#666;
    line-height:1.6;
    margin-bottom:30px;
}

/* BUTTONS */
.success-actions{
    display:flex;
    gap:15px;
    justify-content:center;
    flex-wrap:wrap;
}

.btn-exit{
    padding:12px 26px;
    border-radius:8px;
    border:1px solid #ddd;
    color:#333;
    text-decoration:none;
    transition:0.3s;
}

.btn-exit:hover{
    background:#f5f5f5;
}

.btn-book{
    padding:12px 26px;
    border-radius:8px;
    background:#001871;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn-book:hover{
    background:#00124f;
    color:#fff;
}

#cruise_info .g-overview , #cruise_info .g-specs , #cruise_info .g-attributes, #ship_info .g-overview
{
    background-color: white;
    padding: 12px;
    border-radius: 10px;
}