/* ═══════════════════════════════════════════════
   Home Cab Booking v2.0 — Frontend Styles
   ═══════════════════════════════════════════════ */

:root {
    --hcb-primary: #00E5FF;
    --hcb-primary-dark: #00b8d4;
    --hcb-primary-light: #e0f7fa;
    --hcb-secondary: #ffb300;
    --hcb-secondary-dark: #ffa000;
    --hcb-success: #2e7d32;
    --hcb-danger: #c62828;
    --hcb-warning: #f9a825;
    --hcb-text: #1e293b;
    --hcb-text-light: #64748b;
    --hcb-text-muted: #94a3b8;
    --hcb-bg: #fff;
    --hcb-bg-light: #f8fafc;
    --hcb-border: #e2e8f0;
    --hcb-radius: 14px;
    --hcb-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    --hcb-font: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ── Base ── */
.hcb-booking-panel,
.hcb-search-results,
.hcb-booking-form-wrap,
.hcb-packages-section,
.hcb-related-packages,
.hcb-slider-section,
.hcb-dashboard-wrap,
.hcb-status-checker {
    max-width: 900px;
    margin: 30px auto;
    font-family: var(--hcb-font);
    color: var(--hcb-text);
    line-height: 1.6;
}

/* ── Headings ── */
.hcb-heading {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--hcb-border);
    color: var(--hcb-text);
}

/* ═══════════ BOOKING PANEL ═══════════ */
@keyframes hcbFadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes hcbFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

@keyframes hcbPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes hcbBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes hcbShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.hcb-anim-fade-in { animation: hcbFadeInUp 0.8s ease-out forwards; }
.hcb-anim-icon-float { display: inline-block; animation: hcbFloat 3s ease-in-out infinite; }
.hcb-anim-icon-pulse { display: inline-block; animation: hcbPulse 2s ease-in-out infinite; }
.hcb-anim-icon-bounce { display: inline-block; animation: hcbBounce 2s ease-in-out infinite; }

.hcb-gradient-text {
    background: linear-gradient(135deg, #00E5FF 0%, #0077ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-weight: 800;
}

.hcb-underline-anim {
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00E5FF, #ffb300);
    margin: 8px auto 0;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.hcb-underline-anim::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: hcbShimmer 2s infinite linear;
}

.hcb-booking-panel {
    background: rgba(10, 15, 30, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 32px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: hcbFadeInUp 0.6s ease-out forwards;
}

.hcb-panel-header {
    text-align: center;
    margin-bottom: 28px;
    position: relative;
}

.hcb-panel-title {
    font-size: 2.2rem;
    margin: 0 0 10px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
}

.hcb-panel-subtitle {
    margin: 0;
    opacity: 0.9;
    font-size: 1.05rem;
}

/* Trip Type Selector */
.hcb-trip-types {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.hcb-trip-type {
    cursor: pointer;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
}

.hcb-trip-type input {
    display: none;
}

.hcb-trip-type.active,
.hcb-trip-type:hover {
    background: var(--hcb-primary);
    color: #0f172a;
    border-color: var(--hcb-primary);
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
}

.hcb-btn-tours {
    background: var(--hcb-warning);
    color: #000;
    border-color: var(--hcb-warning);
}
.hcb-btn-tours:hover {
    background: #fdd835;
    color: #000;
    border-color: #fdd835;
}

/* Panel Fields -> Horizontal Strip */
.hcb-panel-fields {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 16px;
}

.hcb-booking-panel .hcb-field {
    flex: 1 1 180px;
    min-width: 0;
    margin-bottom: 0;
}

.hcb-booking-panel .hcb-row {
    display: flex;
    gap: 16px;
    flex: 2 1 280px;
}

.hcb-booking-panel .hcb-field label {
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

/* New Input Wrap Styles */
.hcb-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.hcb-input-icon {
    position: absolute;
    left: 14px;
    font-style: normal;
    font-size: 1.1rem;
    color: var(--hcb-text-muted);
    pointer-events: none;
}

.hcb-booking-panel .hcb-field input {
    width: 100%;
    background: #fff;
    border: 2px solid transparent;
    padding: 14px 16px 14px 42px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--hcb-text);
    transition: all 0.2s ease;
}

.hcb-booking-panel .hcb-field input:focus {
    outline: none;
    border-color: var(--hcb-primary);
    box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.15);
}

/* Action Buttons inside strip */
.hcb-panel-actions {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex: 1 1 200px;
}

.hcb-btn-strip {
    height: 48px;
    padding: 0 20px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.hcb-panel-contact-wrap {
    text-align: center;
    margin-top: 16px;
}

/* ═══════════ BUTTONS ═══════════ */
.hcb-btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
    line-height: 1.4;
}

.hcb-btn-primary {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #1e293b;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.hcb-btn-primary:hover {
    background: linear-gradient(135deg, #ffca28 0%, #fb8c00 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.5);
}

.hcb-btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: hcbPulse 1.5s infinite;
}

.hcb-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hcb-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
    border-color: #fff;
}

.hcb-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.hcb-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
}

.hcb-btn-sm {
    padding: 6px 14px;
    font-size: 0.82rem;
    border-radius: 6px;
}

.hcb-btn-full {
    width: 100%;
    padding: 14px;
    font-size: 1.05rem;
}

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

.hcb-btn-pay:hover {
    background: #1b5e20;
}

.hcb-btn-cancel {
    background: var(--hcb-danger);
    color: #fff;
}

.hcb-btn-cancel:hover {
    background: #b71c1c;
}

.hcb-btn-invoice {
    background: var(--hcb-primary);
    color: #fff;
}

.hcb-btn-invoice:hover {
    background: var(--hcb-primary-dark);
}

/* ═══════════ FORMS ═══════════ */
.hcb-form {
    background: var(--hcb-bg-light);
    padding: 24px;
    border-radius: var(--hcb-radius);
    border: 1px solid var(--hcb-border);
}

.hcb-field {
    margin-bottom: 16px;
    position: relative;
}

.hcb-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.88rem;
    color: var(--hcb-text-light);
}

.hcb-field input,
.hcb-field select,
.hcb-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.95rem;
    box-sizing: border-box;
    transition: border-color 0.2s;
    background: #fff;
}

.hcb-field input:focus,
.hcb-field select:focus {
    outline: none;
    border-color: var(--hcb-primary);
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.hcb-row {
    display: flex;
    gap: 16px;
}

.hcb-half {
    flex: 1;
}

/* ═══════════ NOTICES ═══════════ */
.hcb-notice {
    padding: 12px 18px;
    border-radius: 8px;
    margin: 12px 0;
    font-size: 0.92rem;
}

.hcb-notice a {
    font-weight: 600;
    text-decoration: underline;
}

.hcb-notice-warning {
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    color: #856404;
}

.hcb-notice-success {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    color: #2e7d32;
}

.hcb-notice-error {
    background: #ffebee;
    border-left: 4px solid #f44336;
    color: #c62828;
}

/* ═══════════ AUTOSUGGEST ═══════════ */
.hcb-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 999;
    display: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.hcb-suggest-item {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #000000;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.15s;
}

.hcb-suggest-item:last-child {
    border-bottom: none;
}

.hcb-suggest-item:hover,
.hcb-suggest-item.active {
    background: var(--hcb-primary-light);
}

/* ═══════════ CAB SEARCH RESULTS ═══════════ */
.hcb-route-info {
    padding: 12px 18px;
    background: var(--hcb-primary-light);
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--hcb-primary-dark);
    font-weight: 500;
}

.hcb-cab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.hcb-cab-card {
    background: #fff;
    border: 1px solid var(--hcb-border);
    border-radius: var(--hcb-radius);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.hcb-cab-card:hover {
    box-shadow: var(--hcb-shadow);
    transform: translateY(-3px);
}

.hcb-cab-img {
    height: 150px;
    background-color: #f0f4f8;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.hcb-cab-body {
    padding: 16px;
}

.hcb-cab-name {
    font-size: 1.1rem;
    margin: 0 0 8px;
    font-weight: 700;
    color: var(--hcb-text);
}

.hcb-cab-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.hcb-cab-meta span {
    background: var(--hcb-bg-light);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    color: var(--hcb-text-light);
}

.hcb-cab-desc {
    font-size: 0.85rem;
    color: var(--hcb-text-muted);
    margin-bottom: 12px;
    line-height: 1.4;
}

.hcb-cab-fare {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--hcb-success);
    margin-bottom: 12px;
}

/* ═══════════ FARE DISPLAY ═══════════ */
.hcb-fare-display {
    padding: 14px;
    background: #e8f5e9;
    border-radius: 8px;
    margin: 16px 0;
    font-size: 1.1rem;
    text-align: center;
    color: var(--hcb-success);
    border: 1px solid #c8e6c9;
}

/* ═══════════ PACKAGE CARDS ═══════════ */
.hcb-package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 10px;
}

.hcb-package-card {
    background: #fff;
    border: 1px solid var(--hcb-border);
    border-radius: var(--hcb-radius);
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.hcb-package-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.hcb-package-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: var(--hcb-primary-light);
}

.hcb-package-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.hcb-package-body {
    padding: 16px;
}

.hcb-package-title {
    font-size: 1.1rem;
    margin: 0 0 10px;
    color: var(--hcb-primary);
    font-weight: 700;
}

.hcb-package-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.hcb-package-meta span {
    background: var(--hcb-bg-light);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    color: var(--hcb-text-light);
    font-weight: 500;
}

.hcb-package-desc {
    font-size: 0.88rem;
    color: var(--hcb-text-muted);
    margin-bottom: 12px;
}

.hcb-package-actions {
    display: flex;
    gap: 8px;
}

/* Package Scroll (related_packages) */
.hcb-package-scroll {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
}

.hcb-package-scroll .hcb-package-card {
    min-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

/* ═══════════ PACKAGE SLIDER ═══════════ */
.hcb-package-slider {
    position: relative;
    overflow: hidden;
}

.hcb-slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.hcb-slider-track::-webkit-scrollbar {
    display: none;
}

.hcb-slider-track .hcb-package-card {
    min-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.hcb-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: background 0.2s;
}

.hcb-slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.hcb-slider-prev {
    left: 8px;
}

.hcb-slider-next {
    right: 8px;
}

/* ═══════════ STATUS BADGES ═══════════ */
.hcb-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hcb-badge-pending {
    background: #fff9c4;
    color: #f9a825;
    border: 1px solid #f9a825;
}

.hcb-badge-approved {
    background: #c8e6c9;
    color: #2e7d32;
    border: 1px solid #4caf50;
}

.hcb-badge-paid {
    background: #c8e6c9;
    color: #1b5e20;
    border: 1px solid #2e7d32;
}

.hcb-badge-rejected {
    background: #ffcdd2;
    color: #c62828;
    border: 1px solid #ef5350;
}

.hcb-badge-cancelled {
    background: #f5f5f5;
    color: #757575;
    border: 1px solid #bdbdbd;
}

.hcb-badge-payment_failed {
    background: #ffcdd2;
    color: #c62828;
    border: 1px solid #ef5350;
}

.hcb-badge-active {
    background: #c8e6c9;
    color: #2e7d32;
    border: 1px solid #4caf50;
}

.hcb-badge-inactive {
    background: #f5f5f5;
    color: #757575;
    border: 1px solid #bdbdbd;
}

/* ═══════════ TABLES ═══════════ */
.hcb-table-responsive {
    overflow-x: auto;
    margin-top: 10px;
}

.hcb-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.hcb-table th,
.hcb-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid var(--hcb-border);
}

.hcb-table th {
    background: var(--hcb-bg-light);
    font-weight: 600;
    color: var(--hcb-text-light);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.hcb-table tr:hover {
    background: #fafafa;
}

/* ═══════════ STATUS RESULT ═══════════ */
.hcb-status-result {
    margin-top: 20px;
    padding: 20px;
    background: #fff;
    border-radius: var(--hcb-radius);
    border: 1px solid var(--hcb-border);
    box-shadow: var(--hcb-shadow);
}

.hcb-status-result h4 {
    margin: 0 0 12px;
    font-size: 1.1rem;
}

.hcb-status-result .hcb-status-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.hcb-status-result .hcb-status-row:last-child {
    border-bottom: none;
}

.hcb-status-result .hcb-status-label {
    color: var(--hcb-text-muted);
}

/* ═══════════ MODAL ═══════════ */
.hcb-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hcb-modal-content {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hcb-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--hcb-text-muted);
}

.hcb-modal-close:hover {
    color: var(--hcb-danger);
}

/* Invoice */
.hcb-invoice {
    font-size: 0.9rem;
}

.hcb-invoice h3 {
    margin: 0 0 4px;
    color: var(--hcb-primary);
}

.hcb-invoice .hcb-inv-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #f5f5f5;
}

.hcb-invoice .hcb-inv-total {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--hcb-success);
    border-top: 2px solid var(--hcb-border);
    margin-top: 8px;
    padding-top: 10px;
}

.hcb-invoice-print {
    margin-top: 16px;
}

/* ═══════════ EMPTY STATE ═══════════ */
.hcb-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--hcb-text-muted);
    font-size: 1rem;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 768px) {
    .hcb-booking-panel {
        padding: 20px !important;
        border-radius: 16px !important;
        margin-top: 80px !important;
    }

    .hcb-panel-title {
        font-size: 1.4rem !important;
    }

    .hcb-trip-types {
        gap: 8px !important;
        justify-content: center !important;
    }

    .hcb-trip-type {
        padding: 8px 12px !important;
        font-size: 0.85rem !important;
        flex: 1 1 auto !important;
        text-align: center !important;
    }

    .hcb-panel-fields {
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 20px !important;
        gap: 16px !important;
        display: flex !important;
    }

    .hcb-booking-panel .hcb-field {
        flex: none !important;
        margin-bottom: 0 !important;
        width: 100% !important;
        min-height: auto !important;
    }

    .hcb-booking-panel .hcb-row {
        flex-direction: column !important;
        display: flex !important;
        gap: 16px !important;
        flex: none !important;
    }

    .hcb-panel-actions {
        flex-direction: column !important;
        width: 100% !important;
        flex: none !important;
        margin-top: 8px !important;
    }

    .hcb-btn-strip {
        width: 100% !important;
    }

    .hcb-panel-actions .hcb-btn {
        width: 100% !important;
    }

    .hcb-row {
        flex-direction: column !important;
        gap: 16px !important;
    }

    .hcb-cab-grid,
    .hcb-package-grid {
        grid-template-columns: 1fr !important;
    }

    .hcb-table {
        font-size: 0.8rem !important;
    }

    .hcb-table th,
    .hcb-table td {
        padding: 6px 8px !important;
    }

    .hcb-form-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ══════════════════════════════════════
   Round Trip Booking Form
   ══════════════════════════════════════ */
.hcb-round-trip-form-wrap {
    max-width: 720px;
    margin: 2rem auto;
    font-family: 'Inter', sans-serif;
}

.hcb-round-trip-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.hcb-round-trip-header {
    background: linear-gradient(135deg, var(--hcb-primary, #6366f1) 0%, var(--hcb-primary-dark, #4f46e5) 100%);
    color: #fff;
    padding: 24px 28px;
}

.hcb-round-trip-header h2 {
    margin: 0 0 4px;
    font-size: 1.5rem;
    font-weight: 700;
}

.hcb-round-trip-header p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.85;
}

.hcb-round-trip-form {
    padding: 28px;
}

.hcb-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.hcb-form-group {
    position: relative;
}

.hcb-form-group-full {
    grid-column: 1 / -1;
}

.hcb-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.hcb-form-group label .required {
    color: #ef4444;
}

.hcb-form-group input,
.hcb-form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.hcb-form-group input:focus,
.hcb-form-group textarea:focus {
    outline: none;
    border-color: var(--hcb-primary, #6366f1);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background: #fff;
}

.hcb-form-group textarea {
    resize: vertical;
    min-height: 72px;
}

.hcb-form-actions {
    margin-top: 24px;
    text-align: center;
}

.hcb-btn-lg {
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s;
}

.hcb-btn-lg:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

#hcb-round-trip-notice {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    text-align: center;
}

/* Suggestions inside round trip form */
.hcb-form-group .hcb-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    list-style: none;
    margin: 4px 0 0;
    padding: 4px 0;
}

.hcb-form-group .hcb-suggestions li {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #1f2937;
    transition: background 0.15s;
}

.hcb-form-group .hcb-suggestions li:hover {
    background: rgba(99, 102, 241, 0.08);
    color: var(--hcb-primary, #6366f1);
}

/* ══════════════════════════════════════
   Local Packages Section
   ══════════════════════════════════════ */
.hcb-local-packages-section {
    margin-top: 24px;
    padding: 20px 0 0;
}

.hcb-local-packages-section .hcb-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
}

.hcb-local-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.hcb-local-package-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.hcb-local-package-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hcb-lp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.hcb-lp-duration {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

.hcb-lp-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--hcb-primary, #6366f1);
}

.hcb-lp-body {
    margin-bottom: 14px;
}

.hcb-lp-pickup,
.hcb-lp-time {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 4px;
}

.hcb-lp-book {
    width: 100%;
}

.hcb-no-results {
    text-align: center;
    padding: 24px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Return Date field transition */
#hcb_return_date_field {
    overflow: hidden;
}