:root {
    --ctc-primary: #6366f1;
    --ctc-secondary: #8b5cf6;
    --ctc-success: #10b981;
    --ctc-warning: #f59e0b;
    --ctc-error: #ef4444;

    --ctc-bg-start: #667eea;
    --ctc-bg-end: #764ba2;

    --ctc-radius-btn: 12px;
    --ctc-radius-card: 16px;

    --ctc-blur: 20px;
    --ctc-opacity: 0.15;
    --ctc-text: #1f2937;
    --ctc-text-light: #6b7280;
    --ctc-bg: #f3f4f6;
    --ctc-white: #ffffff;
    --ctc-border: rgba(255, 255, 255, 0.3);
    --ctc-shadow: rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
}

.ctc-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 20px;
    background: linear-gradient(135deg, var(--ctc-bg-start) 0%, var(--ctc-bg-end) 100%);
    min-height: 100vh;
    position: relative;
}

/* Progress Bar */
.ctc-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #0f172a;
    padding: 10px 20px;
    z-index: 2000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ctc-progress-steps {
    display: flex;
    justify-content: center;
    gap: 24px;
    align-items: center;
}

.ctc-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s;
    flex: 1;
    max-width: 100px;
}

.ctc-progress-step.active,
.ctc-progress-step.completed {
    opacity: 1;
}

.ctc-progress-step:hover {
    opacity: 0.8;
}

.ctc-progress-step.disabled {
    cursor: not-allowed;
    pointer-events: none;
}

.ctc-progress-step-number {
    display: none;
}

.ctc-progress-step.active .ctc-progress-step-number {
    background: var(--ctc-white);
    color: var(--ctc-primary);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.ctc-progress-step.completed .ctc-progress-step-number {
    background: var(--ctc-success);
    color: var(--ctc-white);
}

.ctc-progress-step-label {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.85;
}
.ctc-progress-step.active .ctc-progress-step-label,
.ctc-progress-step.completed .ctc-progress-step-label {
    opacity: 1;
    border-bottom: 2px solid var(--ctc-success);
}

.ctc-progress-line { display: none; }

.ctc-progress-line-fill {
    height: 100%;
    background: var(--ctc-success);
    transition: width 0.5s ease;
    width: 0%;
}

/* Steps Container */
.ctc-steps-container {
    margin-bottom: 100px;
}

.ctc-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.ctc-step.active {
    display: block;
    padding: 190px 0 0 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.ctc-step-title {
    color: var(--ctc-white);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Glassmorphism Card */
.ctc-glass-card {
    background: rgba(255, 255, 255, var(--ctc-opacity));
    backdrop-filter: blur(var(--ctc-blur));
    -webkit-backdrop-filter: blur(var(--ctc-blur));
    border: 1px solid var(--ctc-border);
    border-radius: var(--ctc-radius-card);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ctc-glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: var(--ctc-white);
}

.ctc-glass-card.selected {
    border: 3px solid var(--ctc-white);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

/* Cards Slider */
.ctc-cards-slider {
    display: flex;
    justify-content: center;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 5px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.ctc-cards-slider::-webkit-scrollbar {
    height: 8px;
}

.ctc-cards-slider::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.ctc-cards-slider::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

/* Trip Type Cards */
.ctc-trip-type-card {
    flex: 0 0 228px;
  
    scroll-snap-align: start;
}

.ctc-card-title {
    color: var(--ctc-white);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Destination Cards - 3:2 ratio with special border radius */
.ctc-destination-card {
    flex: 0 0 228px;
    width: 228px;
    height: 320px;
    min-width: 228px;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    border-radius: 300px 300px 24px 24px;
    transform-style: preserve-3d;
    transform-origin: center center;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid #e5e7eb;
    box-shadow: inset 0 0 0 10px #ffffff;
}

/*.ctc-destination-card .ctc-card-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
} */

.ctc-destination-card .ctc-card-media {
flex: 0 0 228px;
    width: 228px;
    height: 320px;
    min-width: 228px;
    position: relative;
    overflow: hidden;
    border-radius: 300px 300px 24px 24px;
    cursor: pointer;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ctc-destination-card .ctc-card-image,
.ctc-destination-card .ctc-card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.ctc-destination-card .ctc-card-video {
    opacity: 0;
    transition: opacity 0.3s;
}

.ctc-destination-card:hover .ctc-card-video {
    opacity: 1;
}

.ctc-destination-card .ctc-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 16px;
    text-align: center;
    color: var(--ctc-white);
    background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.25), rgba(0,0,0,0));
    z-index: 1;
}

.ctc-destination-card .ctc-card-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.ctc-destinations-container {
    justify-content: center;
}

.ctc-dest-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.ctc-dest-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #111827;
    cursor: pointer;
}

.ctc-dest-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Sub Destination Cards - Square with hover */
.ctc-sub-destination-card {
    width: 228px;
    height: 320px;
    min-width: 228px;
    position: relative;
    overflow: hidden;
    border-radius: 300px 300px 24px 24px;
    transform-style: preserve-3d;
    transform-origin: center center;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    border: 1px solid #e5e7eb;
    box-shadow: inset 0 0 0 10px #ffffff;
}

.ctc-sub-destination-card .ctc-card-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ctc-sub-destination-card .ctc-card-image,
.ctc-sub-destination-card .ctc-card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    position: absolute;
    inset: 0;
}

.ctc-sub-destination-card .ctc-card-video {
    opacity: 0;
    transition: opacity 0.3s;
}

.ctc-sub-destination-card:hover .ctc-card-video {
    opacity: 1;
}

.ctc-sub-destination-card .ctc-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 14px;
    text-align: center;
    color: var(--ctc-white);
    background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.25), rgba(0,0,0,0));
    z-index: 1;
}

.ctc-sub-destination-card .ctc-card-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

.ctc-sub-destination-card .ctc-card-days {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

.ctc-sub-destination-card .ctc-remove-stop {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--ctc-error);
    color: var(--ctc-white);
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 10;
}

.ctc-itinerary-container .ctc-sub-destination-card .ctc-remove-stop {
    display: flex !important;
}

/* Small cards inside itinerary */
.ctc-itinerary-container .ctc-sub-destination-card {
    width: 114px;
    height: 160px;
    overflow: visible;
}

/* Day Range Cards */
.ctc-day-range-card,
.ctc-trip-type-card,
.ctc-hotel-type-card {
    flex: 0 0 228px;
    width: 228px;
    height: 320px;
    min-width: 228px;
    position: relative;
    overflow: hidden;
    border-radius: 300px 300px 24px 24px;
    cursor: pointer;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ctc-day-range-card:hover,
.ctc-trip-type-card:hover,
.ctc-hotel-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.12);
}

.ctc-day-range-card .ctc-card-media,
.ctc-trip-type-card .ctc-card-media,
.ctc-hotel-type-card .ctc-card-media {
    height: 205px;
    border-radius: 260px 260px 18px 18px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.ctc-day-range-card .ctc-card-image,
.ctc-trip-type-card .ctc-card-image,
.ctc-hotel-type-card .ctc-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 240px 240px 14px 14px;
    display: block;
}

.ctc-day-range-card .ctc-card-content,
.ctc-trip-type-card .ctc-card-content,
.ctc-hotel-type-card .ctc-card-content {
    padding: 0 8px;
    text-align: center;
    color: var(--ctc-text);
}

.ctc-day-range-card .ctc-card-title,
.ctc-trip-type-card .ctc-card-title,
.ctc-hotel-type-card .ctc-card-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #111827;
    text-shadow: none;
}

.ctc-day-range-card .ctc-card-subtitle,
.ctc-trip-type-card .ctc-card-subtitle,
.ctc-hotel-type-card .ctc-card-subtitle {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.35;
    color: #6b7280;
}

.ctc-day-range-card.selected,
.ctc-trip-type-card.selected,
.ctc-hotel-type-card.selected {
    border-color: var(--ctc-success);
}

.ctc-day-range-card.selected::after,
.ctc-trip-type-card.selected::after,
.ctc-hotel-type-card.selected::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 74px solid transparent;
    border-bottom: 74px solid var(--ctc-success);
    z-index: 2;
}

.ctc-day-range-card.selected::before,
.ctc-trip-type-card.selected::before,
.ctc-hotel-type-card.selected::before {
    content: "✓";
    position: absolute;
    right: 14px;
    bottom: 10px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    z-index: 3;
}

/* Vehicle Cards */
.ctc-vehicle-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 180px;
}

.ctc-vehicle-card .ctc-card-image {
    aspect-ratio: 16 / 10;
    width: 100%;
    object-fit: cover;
}

.ctc-vehicle-card.selected {
    border-color: var(--ctc-success);
}

/* Room Allocation */
.ctc-rooms-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.ctc-room-block {
    background: var(--ctc-white);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 18px;
    color: var(--ctc-text);
}

.ctc-room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.ctc-room-title {
    color: #6b7280;
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    background: #fff7ed;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    display: inline-block;
    padding: 6px 10px;
}

.ctc-remove-room {
    background: var(--ctc-error);
    color: var(--ctc-white);
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
}

.ctc-counter-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 10px;
}

.ctc-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.ctc-counter-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-left: auto;
}

.ctc-counter-label {
    color: var(--ctc-text);
    font-size: 15px;
    min-width: 120px;
}

.ctc-counter-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #111827;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.ctc-counter-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.ctc-counter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ctc-counter-value {
    color: var(--ctc-text);
    font-size: 20px;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.ctc-children-ages {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.ctc-child-age {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 15px;
}

.ctc-child-age label {
    color: rgb(0 0 0);
    font-size: 12px;
    display: block;
    margin-bottom: 5px;
}

.ctc-child-age select {
    background: #0E172A;
    border: 1px solid var(--ctc-border);
    border-radius: 6px;
    color: var(--ctc-white);
    padding: 6px 10px;
    font-size: 14px;
}

.ctc-child-age select option {
    color: var(--ctc-text);
}

/* Hotel Types */
.ctc-hotel-types-container {
    background: rgba(255, 255, 255, var(--ctc-opacity));
    backdrop-filter: blur(var(--ctc-blur));
    -webkit-backdrop-filter: blur(var(--ctc-blur));
    border: 1px solid var(--ctc-border);
    border-radius: var(--ctc-radius-card);
    padding: 25px;
}

.ctc-hotel-types-container h3 {
    text-align: center;
    color: var(--ctc-white);
    margin: 0 0 20px;
}

.ctc-hotel-types-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 5px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.ctc-hotel-types-list::-webkit-scrollbar {
    height: 8px;
}

.ctc-hotel-types-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.ctc-hotel-types-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.ctc-hotel-type-card {
    flex: 0 0 228px;
    scroll-snap-align: start;
}

.ctc-hotel-type-option {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--ctc-border);
    border-radius: 25px;
    padding: 10px 20px;
    color: var(--ctc-white);
    cursor: pointer;
    transition: all 0.2s;
}

.ctc-hotel-type-option:hover {
    background: rgba(255, 255, 255, 0.2);
}

.ctc-hotel-type-option.selected {
    background: var(--ctc-white);
    color: var(--ctc-primary);
    border-color: var(--ctc-white);
}

.ctc-hotel-type-option input {
    display: none;
}

/* Calendar */
.ctc-calendar-container {
    background: rgba(255, 255, 255, var(--ctc-opacity));
    backdrop-filter: blur(var(--ctc-blur));
    -webkit-backdrop-filter: blur(var(--ctc-blur));
    border: 1px solid var(--ctc-border);
    border-radius: 16px;
    padding: 25px;
}

.ctc-calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.ctc-calendar-nav button {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid var(--ctc-border);
    border-radius: 8px;
    padding: 10px 20px;
    color: var(--ctc-white);
    cursor: pointer;
    transition: all 0.2s;
}

.ctc-calendar-nav button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.ctc-calendar-months {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ctc-calendar-month {
    text-align: center;
}

.ctc-month-title {
    color: var(--ctc-white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.ctc-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.ctc-weekday {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-align: center;
}

.ctc-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.ctc-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ctc-white);
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.ctc-calendar-day:not(.disabled):hover {
    background: rgba(255, 255, 255, 0.3);
}

.ctc-calendar-day.selected {
    background: var(--ctc-white);
    color: var(--ctc-primary);
    font-weight: 600;
}

.ctc-calendar-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.ctc-calendar-day.other-month {
    opacity: 0.3;
}

/* Airport Search */
.ctc-airport-container {
    max-width: 600px;
    margin: 0 auto;
}

.ctc-airport-search-wrapper {
    position: relative;
    
    border-radius: 50%;
}

.ctc-airport-search {
    width: 100%;
    padding: 18px 20px;
    font-size: 16px;
    border: 1px solid var(--ctc-border);
    border-radius: 120px !important;
    background: rgba(255, 255, 255, 0.9);
    color: var(--ctc-text);
}

.ctc-airport-search:focus {
    outline: none;
    border-color: var(--ctc-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.ctc-airport-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ctc-white);
    border-radius: 12px;
    margin-top: 5px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 100;
    padding-bottom: 60px;
}

.ctc-airport-dropdown::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 70%, rgba(255,255,255,1) 100%);
}

.ctc-airport-dropdown.show {
    display: block;
}

.ctc-airport-option {
    padding: 15px 20px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.ctc-airport-option:last-child {
    border-bottom: none;
}

.ctc-airport-option:hover {
    background: #f3f4f6;
}

.ctc-airport-option-city {
    font-weight: 600;
    color: var(--ctc-text);
}

.ctc-airport-option-name {
    font-size: 13px;
    color: var(--ctc-text-light);
}

.ctc-airport-option-code {
    float: right;
    font-weight: 600;
    color: var(--ctc-primary);
}

.ctc-manual-airport-btn {
    display: block;
    margin: 20px auto;
}

.ctc-manual-airport-form {
    background: rgba(255, 255, 255, var(--ctc-opacity));
    backdrop-filter: blur(var(--ctc-blur));
    -webkit-backdrop-filter: blur(var(--ctc-blur));
    border: 1px solid var(--ctc-border);
    border-radius: 16px;
    padding: 25px;
    margin-top: 20px;
}

.ctc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

/* Sub Destinations Layout */
.ctc-step[data-step="7"] .ctc-days-indicator {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.85);
    color: var(--ctc-white);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1000;
    min-width: 640px;
}

.ctc-step[data-step="8"] .ctc-days-indicator {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.85);
    color: var(--ctc-white);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1000;
    min-width: 640px;
}

@media (max-width: 768px) {
    .ctc-step[data-step="7"] .ctc-days-indicator,
    .ctc-step[data-step="8"] .ctc-days-indicator {
        min-width: 0;
        width: calc(100vw - 24px);
    }
}

.ctc-days-indicator.hidden {
    display: none !important;
}

.ctc-days-indicator .ctc-indicator-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ctc-days-indicator .ctc-indicator-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.5);
}

.ctc-days-indicator .ctc-indicator-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ctc-days-indicator .ctc-indicator-thumb.ctc-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    color: var(--ctc-white);
    font-weight: 600;
}

.ctc-days-indicator .ctc-indicator-thumb.ctc-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    color: var(--ctc-white);
    font-weight: 700;
}

.ctc-days-indicator .ctc-indicator-text {
    flex: 1;
    color: rgba(255,255,255,0.9);
}

.ctc-days-indicator .ctc-indicator-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ctc-days-indicator.warning {
    border-color: var(--ctc-warning);
    background: rgba(245, 158, 11, 0.2);
}

.ctc-days-indicator.error {
    border-color: var(--ctc-error);
    background: rgba(239, 68, 68, 0.2);
}

.ctc-days-indicator.success {
    display: flex;
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: var(--ctc-white);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    min-width: 640px;
}

.ctc-sub-destinations-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.ctc-sub-search-wrapper {
    margin: 20px auto 10px;
    max-width: 720px;
}

.ctc-sub-search {
    width: 100%;
    padding: 16px 18px;
    border-radius: 100px !important;
    font-size: 16px;
    border-radius: 12px;
    border: 2px solid var(--ctc-success);
    background: rgba(255,255,255,0.9);
    color: var(--ctc-text);
    box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
}

.ctc-sub-search::placeholder {
    color: #9ca3af;
}

/* Edit Stops Modal */
.ctc-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.ctc-modal {
    background: var(--ctc-white);
    color: var(--ctc-text);
    border-radius: 16px;
    width: 720px;
    max-width: 92vw;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    padding: 20px 24px;
}

.ctc-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.ctc-modal-header h3 {
    margin: 0;
    font-size: 20px;
    color: var(--ctc-text);
}

.ctc-modal-close {
    background: rgb(148 0 0);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    padding: 0px !important;
}

.ctc-modal-subtext {
    text-align: center;
    color: #6b7280;
    margin: 8px 0 16px;
}

.ctc-edit-stops-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ctc-edit-stop-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.ctc-edit-stop-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ctc-edit-stop-thumb {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: #f3f4f6;
}

.ctc-edit-stop-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ctc-edit-stop-title {
    font-weight: 600;
    color: var(--ctc-text);
}

.ctc-edit-stop-subtitle {
    color: #6b7280;
    font-size: 13px;
}

.ctc-remove-stop-modal,
.ctc-remove-activity-modal {
    width: 36px;
    height: 36px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f3f4f6;
    color: #111827;
    cursor: pointer;
    padding: 0px !important;
}

.ctc-available-stops h3,
.ctc-selected-stops h3 {
    color: var(--ctc-white);
    margin: 0 0 15px;
}

.ctc-selected-stops {
}

.ctc-selected-stops .ctc-itinerary-container {
    display: grid;
    grid-template-columns: repeat(3, 114px);
    justify-content: space-between;
    align-items: start;
    gap: 15px;
    padding: 15px;
}

.ctc-sub-destinations-container,
.ctc-itinerary-container {
    min-height: 200px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.ctc-sub-destinations-container {
    display: grid;
    grid-template-columns: repeat(4, 228px);
    gap: 20px;
    justify-content: center;
    justify-items: center;
}

.ctc-sub-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.ctc-sub-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #111827;
    cursor: pointer;
}

.ctc-sub-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ctc-sub-nav.hidden {
    display: none !important;
}

.ctc-itinerary-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    background: rgba(16, 185, 129, 0.1);
    border: 2px dashed rgba(16, 185, 129, 0.3);
}

.ctc-step[data-step="8"] .ctc-activities-container,
.ctc-step[data-step="9"] .ctc-vehicle-types-container {
    display: grid;
    grid-template-columns: repeat(3, 228px);
    gap: 20px;
    justify-content: center;
    justify-items: center;
    min-height: 200px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.ctc-step[data-step="8"] .ctc-activity-card,
.ctc-step[data-step="9"] .ctc-vehicle-card {
    width: 228px;
    height: 320px;
    min-width: 228px;
    position: relative;
    overflow: hidden;
    border-radius: 300px 300px 24px 24px;
    cursor: pointer;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ctc-step[data-step="8"] .ctc-activity-card:hover,
.ctc-step[data-step="9"] .ctc-vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.12);
}

.ctc-step[data-step="8"] .ctc-activity-card .ctc-card-media,
.ctc-step[data-step="9"] .ctc-vehicle-card .ctc-card-media {
    height: 205px;
    border-radius: 260px 260px 18px 18px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.ctc-step[data-step="8"] .ctc-activity-card .ctc-card-image,
.ctc-step[data-step="9"] .ctc-vehicle-card .ctc-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 240px 240px 14px 14px;
    display: block;
}

.ctc-step[data-step="8"] .ctc-activity-card .ctc-card-content,
.ctc-step[data-step="9"] .ctc-vehicle-card .ctc-card-content {
    position: static;
    padding: 0 8px;
    text-align: center;
    background: transparent;
    color: var(--ctc-text);
}

.ctc-step[data-step="8"] .ctc-activity-card .ctc-card-title,
.ctc-step[data-step="9"] .ctc-vehicle-card .ctc-card-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #111827;
    text-shadow: none;
}

.ctc-step[data-step="8"] .ctc-activity-card .ctc-card-subtitle,
.ctc-step[data-step="9"] .ctc-vehicle-card .ctc-card-subtitle {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.35;
    color: #6b7280;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ctc-step[data-step="8"] .ctc-activity-card.selected,
.ctc-step[data-step="9"] .ctc-vehicle-card.selected {
    border-color: var(--ctc-success);
}

.ctc-step[data-step="8"] .ctc-activity-card.selected::after,
.ctc-step[data-step="9"] .ctc-vehicle-card.selected::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 74px solid transparent;
    border-bottom: 74px solid var(--ctc-success);
    z-index: 2;
}

.ctc-step[data-step="8"] .ctc-activity-card.selected::before,
.ctc-step[data-step="9"] .ctc-vehicle-card.selected::before {
    content: "✓";
    position: absolute;
    right: 14px;
    bottom: 10px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    z-index: 3;
}

@media (max-width: 992px) {
    .ctc-step[data-step="8"] .ctc-activities-container,
    .ctc-step[data-step="9"] .ctc-vehicle-types-container {
        grid-template-columns: repeat(2, 228px);
    }
}

@media (max-width: 768px) {
    .ctc-step[data-step="8"] .ctc-activities-container,
    .ctc-step[data-step="9"] .ctc-vehicle-types-container {
        grid-template-columns: 1fr;
        justify-items: stretch;
    }

    .ctc-step[data-step="8"] .ctc-activity-card,
    .ctc-step[data-step="9"] .ctc-vehicle-card {
        width: 100%;
        min-width: 0;
        max-width: 420px;
        justify-self: center;
    }
}
/* Vehicle Types */
.ctc-vehicle-types-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

/* Guest Form */
.ctc-guest-form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, var(--ctc-opacity));
    backdrop-filter: blur(var(--ctc-blur));
    -webkit-backdrop-filter: blur(var(--ctc-blur));
    border: 1px solid var(--ctc-border);
    border-radius: 16px;
    padding: 30px;
}

.ctc-form-group {
    margin-bottom: 20px;
}

.ctc-form-group label {
    display: block;
    color: var(--ctc-white);
    font-weight: 500;
    margin-bottom: 8px;
}

.ctc-input {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 1px solid var(--ctc-border);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--ctc-text);
    transition: all 0.2s;
}

.ctc-input:focus {
    outline: none;
    border-color: var(--ctc-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.ctc-input.error {
    border-color: var(--ctc-error);
}

.ctc-input-error {
    color: #fca5a5;
    font-size: 13px;
    margin-top: 5px;
}

/* Buttons */
.ctc-btn {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--ctc-radius-btn);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ctc-btn-primary {
    background: var(--ctc-white);
    color: var(--ctc-primary);
}

.ctc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.ctc-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--ctc-white);
    border: 1px solid var(--ctc-border);
}

.ctc-btn-link {
    background: none;
    color: var(--ctc-white);
    text-decoration: underline;
    padding: 10px;
}

.ctc-add-room {
   /* margin-bottom: 30px;*/
    background: none;
    border: 2px solid var(--ctc-success);
    color: var(--ctc-success);
}

.ctc-btn-success {
    background: var(--ctc-success);
    color: #fff;
}

.ctc-room-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 10px;
}


.ctc-step2-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.ctc-step2-left {
    flex: 2;
    min-width: 0;
}

.ctc-step2-right {
    flex: 1;
    min-width: 0;
}

/* Navigation */
.ctc-navigation {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

/* Success Message */
.ctc-success-step {
    text-align: center;
    padding: 60px 20px;
}

.ctc-success-message {
    background: rgba(255, 255, 255, var(--ctc-opacity));
    backdrop-filter: blur(var(--ctc-blur));
    -webkit-backdrop-filter: blur(var(--ctc-blur));
    border: 1px solid var(--ctc-border);
    border-radius: 20px;
    padding: 50px;
    max-width: 500px;
    margin: 0 auto;
}

.ctc-success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--ctc-success);
    color: var(--ctc-white);
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.ctc-success-message h2 {
    color: var(--ctc-white);
    font-size: 20px;
    margin: 0 0 15px;
}

.ctc-request-number {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

/* Loading Overlay */
.ctc-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.ctc-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--ctc-white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 992px) {
    .ctc-calendar-months {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ctc-sub-destinations-wrapper {
        grid-template-columns: 1fr;
    }
    
    .ctc-trip-type-card,
    .ctc-day-range-card,
    .ctc-vehicle-card {
        flex: 0 0 calc(50% - 10px);
    }
    
    .ctc-destination-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .ctc-container {
        padding: 15px;
    }
    
    .ctc-progress-steps {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .ctc-progress-step {
        max-width: none;
    }
    
    .ctc-progress-step-label {
        display: none;
    }
    
    .ctc-progress-line {
        display: none;
    }
    
    .ctc-step-title {
        font-size: 22px;
.ctc-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 20px;
    background: linear-gradient(135deg, var(--ctc-bg-start) 0%, var(--ctc-bg-end) 100%);
    min-height: 100vh;
    position: relative;
}
    }
    
    .ctc-calendar-months {
        grid-template-columns: 1fr;
    }
    
    .ctc-form-row {
        grid-template-columns: 1fr;
    }
    
    .ctc-counter-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .ctc-trip-type-card,
    .ctc-day-range-card,
    .ctc-vehicle-card,
    .ctc-destination-card {
        flex: 0 0 calc(100% - 10px);
        min-width: 250px;
    }
    
    .ctc-navigation {
        padding: 12px 15px;
    }
    
    .ctc-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

#ctc-trip-builder.ctc-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    margin: 0;
    padding: 80px 20px 20px;
    background: linear-gradient(135deg, var(--ctc-bg-start) 0%, var(--ctc-bg-end) 100%);
    z-index: 999999;
    overflow-y: auto;
    display: block;
}

body.ctc-fullscreen {
    overflow: hidden;
}
