.clay-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 16px 32px -4px rgba(163, 178, 201, 0.15),
                0 4px 12px -2px rgba(163, 178, 201, 0.08),
                inset 0 2px 4px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 24px;
    margin-bottom: 24px;
}

.clay-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-brand {
    background-color: #f0f7ff;
    color: #2B7FFF;
    box-shadow: 0 4px 10px rgba(43, 127, 255, 0.1);
}

.badge-success-alt {
    background-color: #ecfdf5;
    color: #059669;
    box-shadow: 0 4px 10px rgba(5, 150, 105, 0.1);
}

.badge-warning-alt {
    background-color: #fffbeb;
    color: #d97706;
    box-shadow: 0 4px 10px rgba(217, 119, 6, 0.1);
}

/* Timeline / Itinerary Styling */
.timeline-container {
    position: relative;
    padding-left: 32px;
    margin-left: 16px;
    border-left: 2px solid #e2e8f0;
}

.timeline-item {
    position: relative;
    margin-bottom: 32px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-node {
    position: absolute;
    left: -45px;
    top: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid #2B7FFF;
    box-shadow: 0 2px 6px rgba(43, 127, 255, 0.2);
    z-index: 2;
    transition: all 0.2s ease-in-out;
}

.timeline-item:hover .timeline-node {
    background: #2B7FFF;
    transform: scale(1.1);
}

/* Sticky Pricing Widget Layout */
@media (min-width: 992px) {
    .sticky-sidebar {
        position: sticky;
        top: 100px;
        z-index: 10;
    }
}

/* Counter buttons */
.counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    background-color: #ffffff;
    font-weight: 700;
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    cursor: pointer;
}

.counter-btn:hover {
    background-color: #f1f5f9;
    border-color: #94a3b8;
}

.counter-btn:active {
    transform: scale(0.95);
}

/* Main Image Carousel Thumbnails */
.carousel-thumb {
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: all 0.2s ease;
    height: 70px;
    object-fit: cover;
}

.carousel-thumb.active, .carousel-thumb:hover {
    border-color: #2B7FFF;
    opacity: 1;
}

.text-brand {
    color: #2B7FFF !important;
}

.btn-brand {
    background-color: #2B7FFF;
    color: #ffffff;
    border-radius: 14px;
    padding: 12px 24px;
    font-weight: 700;
    border: none;
    box-shadow: 0 8px 20px rgba(43, 127, 255, 0.15);
    transition: all 0.2s ease;
}

.btn-brand:hover {
    background-color: #0961de;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(43, 127, 255, 0.25);
}

.btn-brand-outline {
    background-color: transparent;
    color: #475569;
    border: 2px solid #cbd5e1;
    border-radius: 14px;
    padding: 10px 24px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.btn-brand-outline:hover {
    border-color: #2B7FFF;
    color: #2B7FFF;
}

/* Accordion Custom Styling */
.itinerary-accordion-btn {
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #1e293b;
}

.itinerary-accordion-btn:focus {
    outline: none;
    box-shadow: none;
}

.itinerary-accordion-btn .chevron {
    transition: transform 0.2s ease;
    color: #94a3b8;
}

.itinerary-accordion-btn[aria-expanded="true"] .chevron {
    transform: rotate(180deg);
    color: #2B7FFF;
}

/* Radio Buttons layout for Schedules */
.custom-option-radio {
    transition: all 0.2s ease;
    position: relative;
    cursor: pointer;
    border: 2px solid #e2e8f0 !important;
    border-radius: 16px;
    padding: 18px 16px 16px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.custom-option-radio:hover {
    border-color: #cbd5e1 !important;
    background-color: #f8fafc;
}

.custom-option-radio.active {
    border-color: #2B7FFF !important;
    background-color: #f0f7ff !important;
}

.custom-option-radio .form-check-label {
    padding-right: 86px;
}

.custom-option-radio input[type="radio"] {
    cursor: pointer;
    margin-top: 0;
}

.schedule-selected-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #2B7FFF;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateY(-4px);
    transition: all 0.2s ease;
    pointer-events: none;
}

.custom-option-radio.active .schedule-selected-badge {
    opacity: 1;
    transform: translateY(0);
}

.inline-calendar-shell {
    border: 1px solid #dbe7f5;
    border-radius: 22px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    padding: 18px;
}

.selected-date-chip {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    width: 100%;
    margin-bottom: 14px;
    padding: 10px 14px;
    border: 1px solid #d6e4ff;
    border-radius: 14px;
    background: #ffffff;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
}

.inline-travel-calendar .ui-datepicker {
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
}

.inline-travel-calendar .ui-datepicker-header {
    border: none;
    border-radius: 16px;
    background: #eef5ff;
    padding: 12px;
    color: #0f172a;
}

.inline-travel-calendar .ui-datepicker-title {
    font-weight: 700;
}

.inline-travel-calendar .ui-datepicker-prev,
.inline-travel-calendar .ui-datepicker-next {
    top: 10px;
    cursor: pointer;
}

.inline-travel-calendar .ui-datepicker-calendar th {
    padding: 10px 0;
    color: #64748b;
    font-size: 11px;
    text-transform: uppercase;
}

.inline-travel-calendar .ui-datepicker td {
    padding: 4px;
}

.inline-travel-calendar .ui-state-default {
    border: 1px solid transparent;
    border-radius: 12px;
    background: #ffffff;
    color: #0f172a;
    text-align: center;
    padding: 10px 0;
    font-weight: 600;
}

.inline-travel-calendar .date-available .ui-state-default {
    border-color: #2B7FFF;
    color: #2B7FFF;
    background: #ffffff;
}

.inline-travel-calendar .date-available .ui-state-hover,
.inline-travel-calendar .date-available .ui-state-active {
    border-color: #2B7FFF;
    background: #2B7FFF;
    color: #ffffff;
}

/* Today's date — subtle tint only when NOT actually selected */
.inline-travel-calendar .date-available .ui-state-highlight:not(.ui-state-active) {
    border-color: rgba(43, 127, 255, 0.4);
    background: rgba(43, 127, 255, 0.08);
    color: #2B7FFF;
}

.inline-travel-calendar .date-unavailable .ui-state-default,
.inline-travel-calendar .ui-state-disabled {
    opacity: 0.35;
    background: #f8fafc;
    color: #94a3b8;
}

.inline-travel-calendar .ui-datepicker-current-day .ui-state-default {
    box-shadow: 0 0 0 3px rgba(43, 127, 255, 0.16);
}

.inline-travel-calendar.is-invalid {
    border-radius: 18px;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12);
}

.inline-travel-calendar.is-invalid .ui-datepicker {
    border: 1px solid rgba(220, 53, 69, 0.4);
    border-radius: 18px;
    padding: 10px;
    background: #fffafb;
}
