* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0066FF;
    --primary-dark: #0052cc;
    --primary-light: #e8f0ff;
    --secondary: #00C896;
    --dark: #1a1a2e;
    --text: #2d3436;
    --text-light: #636e72;
    --border: #e1e8ed;
    --bg: #f8fafc;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --radius: 20px;
    --radius-md: 16px;
    --radius-sm: 12px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.tb-booking-wrapper {
    min-height: 100vh;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tb-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.tb-header {
    text-align: center;
    margin-bottom: 30px;
}

.tb-title {
    font-size: 42px;
    font-weight: 800;
    color: rgb(0, 0, 0);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.tb-subtitle {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.9);
}

.tb-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 30px;
}

.tb-tabs {
    display: flex;
    gap: 8px;
    padding: 20px 24px 0;
    border-bottom: 1px solid var(--border);
}

.tb-tab {
    padding: 12px 32px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    transition: all 0.3s;
}

.tb-tab.active {
    color: var(--primary);
    background: var(--primary-light);
    position: relative;
}

.tb-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.tb-form {
    padding: 24px;
}

.tb-form-group {
    margin-bottom: 16px;
}

.tb-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.tb-select, .tb-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: all 0.3s;
    background: var(--white);
}

.tb-select:focus, .tb-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,102,255,0.1);
}

.tb-swap-container {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.tb-swap-btn {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: var(--primary);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tb-swap-btn:hover {
    background: var(--primary);
    color: white;
    transform: rotate(180deg);
}

.tb-form-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.tb-return-row {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.tb-btn-primary {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.tb-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,102,255,0.3);
}

.tb-vehicles-container h2, 
.tb-contact-container h2 {
    padding: 20px 24px 0;
    font-size: 20px;
}

.tb-vehicles-list {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tb-vehicle-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s;
    cursor: pointer;
}

.tb-vehicle-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.tb-vehicle-image {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.tb-vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tb-vehicle-icon {
    font-size: 64px;
    min-width: 80px;
    text-align: center;
}

.tb-vehicle-info {
    flex: 2;
}

.tb-vehicle-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.tb-vehicle-info p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.tb-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tb-feature {
    font-size: 12px;
    color: var(--text-light);
    background: var(--bg);
    padding: 4px 12px;
    border-radius: 20px;
}

.tb-vehicle-price {
    text-align: right;
    min-width: 180px;
}

.tb-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.tb-price-label {
    font-size: 12px;
    color: var(--text-light);
    margin: 5px 0;
}

.tb-price-note {
    font-size: 11px;
    color: var(--secondary);
}

.tb-select-btn {
    margin-top: 12px;
    padding: 10px 24px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.tb-select-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.tb-summary {
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin: 20px;
}

.summary-route {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
}

.summary-details {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

.summary-return {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed var(--border);
    font-size: 13px;
    color: var(--secondary);
}

.tb-form-section {
    padding: 0 20px 20px;
}

.tb-form-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--dark);
}

.tb-form-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tb-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tb-field-full {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tb-field label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.tb-field input, .tb-field textarea {
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
}

.tb-field input:focus, .tb-field textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.tb-message {
    margin: 20px;
    padding: 15px;
    border-radius: var(--radius-sm);
    display: none;
}

.tb-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.tb-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

.tb-confirmation {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.tb-confirmation .tb-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
}

.tb-success-icon {
    width: 80px;
    height: 80px;
    background: #d4edda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 48px;
    color: #28a745;
}

.tb-booking-details {
    text-align: left;
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin: 20px 0;
}

.tb-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.tb-detail-row:last-child {
    border-bottom: none;
}

.tb-price {
    color: var(--primary);
    font-size: 18px;
}

@media (max-width: 768px) {
    .tb-booking-wrapper {
        padding: 20px 16px;
    }
    
    .tb-title {
        font-size: 28px;
    }
    
    .tb-subtitle {
        font-size: 14px;
    }
    
    .tb-tabs {
        padding: 16px 16px 0;
    }
    
    .tb-tab {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .tb-form {
        padding: 20px;
    }
    
    .tb-form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .tb-vehicle-card {
        flex-direction: column;
        text-align: center;
    }
    
    .tb-vehicle-price {
        text-align: center;
        width: 100%;
    }
    
    .tb-features {
        justify-content: center;
    }
    
    .tb-form-fields {
        grid-template-columns: 1fr;
    }
    
    .tb-vehicle-image {
        margin: 0 auto;
    }
    
    .tb-detail-row {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .tb-price {
        font-size: 28px;
    }
    
    .tb-vehicle-icon {
        font-size: 48px;
    }
    
    .tb-vehicle-info h3 {
        font-size: 18px;
    }
}

/* Add these styles to your existing style.css */

/* Full Screen Modal Styles */
.tb-fullscreen-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 999999;
    overflow-y: auto;
    animation: tbFadeIn 0.3s ease;
}

@keyframes tbFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tb-fullscreen-modal .tb-modal-header {
    position: sticky;
    top: 0;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.tb-fullscreen-modal .tb-modal-header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}

.tb-fullscreen-modal .tb-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 48px;
    cursor: pointer;
    padding: 0 15px;
    transition: transform 0.3s;
    line-height: 1;
}

.tb-fullscreen-modal .tb-modal-close:hover {
    transform: scale(1.1);
}

.tb-fullscreen-modal .tb-modal-body {
    padding: 30px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.tb-loading {
    text-align: center;
    padding: 60px;
    font-size: 20px;
    color: white;
}

.tb-no-results {
    text-align: center;
    padding: 60px;
    color: white;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
}

/* Vehicle Cards in Modal */
.tb-vehicles-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tb-vehicle-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    gap: 24px;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.tb-vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: #0066FF;
}

.tb-vehicle-image {
    width: 140px;
    height: 140px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tb-vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tb-vehicle-icon {
    font-size: 80px;
    min-width: 120px;
    text-align: center;
}

.tb-vehicle-info {
    flex: 2;
}

.tb-vehicle-info h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.tb-vehicle-info p {
    color: #666;
    margin-bottom: 12px;
    font-size: 14px;
}

.tb-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tb-feature {
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #333;
}

.tb-vehicle-price {
    text-align: right;
    min-width: 200px;
}

.tb-vehicle-price .tb-price {
    font-size: 36px;
    font-weight: 800;
    color: #0066FF;
    line-height: 1;
}

.tb-vehicle-price .tb-price-label {
    font-size: 12px;
    color: #666;
    margin: 5px 0;
}

.tb-vehicle-price .tb-price-note {
    font-size: 11px;
    color: #00C896;
}

.tb-select-btn {
    margin-top: 15px;
    padding: 12px 28px;
    background: #0066FF;
    color: white;
    border: none;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.tb-select-btn:hover {
    background: #0052cc;
    transform: translateY(-2px);
}

/* Enquiry Modal */
.tb-enquiry-modal .tb-modal-body {
    max-width: 600px;
}

.tb-summary {
    background: rgba(0,102,255,0.1);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    border-left: 4px solid #0066FF;
}

.summary-route {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    word-break: break-word;
}

.summary-details {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Continue from previous CSS */

.summary-return {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed rgba(0,102,255,0.3);
    font-size: 13px;
    color: #00C896;
}

.tb-form-section {
    margin-bottom: 20px;
}

.tb-form-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.tb-form-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.tb-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tb-field-full {
    grid-column: 1 / -1;
}

.tb-field label {
    font-weight: 600;
    font-size: 13px;
    color: #333;
}

.tb-field input,
.tb-field textarea {
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: inherit;
}

.tb-field input:focus,
.tb-field textarea:focus {
    outline: none;
    border-color: #0066FF;
    box-shadow: 0 0 0 3px rgba(0,102,255,0.1);
}

.tb-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    display: none;
    font-size: 14px;
}

.tb-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
    border: 1px solid #c3e6cb;
}

.tb-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
    border: 1px solid #f5c6cb;
}

.tb-message.info {
    background: #d1ecf1;
    color: #0c5460;
    display: block;
    border: 1px solid #bee5eb;
}

/* Confirmation Page */
.tb-confirmation {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.tb-confirmation .tb-card {
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
}

.tb-success-icon {
    width: 80px;
    height: 80px;
    background: #d4edda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 48px;
    color: #28a745;
}

.tb-confirmation h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.tb-booking-details {
    text-align: left;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.tb-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e1e8ed;
}

.tb-detail-row:last-child {
    border-bottom: none;
}

.tb-detail-row span {
    font-weight: 600;
    color: #666;
}

.tb-detail-row strong {
    color: #1a1a2e;
}

.tb-price {
    color: #0066FF;
    font-size: 20px;
}

/* Mobile Responsive for Modal */
@media (max-width: 768px) {
    .tb-fullscreen-modal .tb-modal-header {
        padding: 15px 20px;
    }
    
    .tb-fullscreen-modal .tb-modal-header h2 {
        font-size: 20px;
    }
    
    .tb-fullscreen-modal .tb-modal-close {
        font-size: 36px;
    }
    
    .tb-vehicle-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .tb-vehicle-image {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    
    .tb-vehicle-icon {
        font-size: 60px;
        min-width: auto;
    }
    
    .tb-vehicle-price {
        text-align: center;
        width: 100%;
    }
    
    .tb-features {
        justify-content: center;
    }
    
    .tb-form-fields {
        grid-template-columns: 1fr;
    }
    
    .tb-vehicle-info h3 {
        font-size: 22px;
    }
    
    .tb-vehicle-price .tb-price {
        font-size: 32px;
    }
    
    .tb-summary {
        padding: 15px;
    }
    
    .summary-route {
        font-size: 16px;
    }
    
    .tb-detail-row {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .tb-fullscreen-modal .tb-modal-body {
        padding: 20px 15px;
    }
    
    .tb-vehicle-image {
        width: 80px;
        height: 80px;
    }
    
    .tb-vehicle-icon {
        font-size: 50px;
    }
    
    .tb-vehicle-info h3 {
        font-size: 18px;
    }
    
    .tb-vehicle-price .tb-price {
        font-size: 28px;
    }
    
    .tb-select-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .tb-confirmation .tb-card {
        padding: 25px;
    }
    
    .tb-success-icon {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }
    
    .tb-confirmation h2 {
        font-size: 22px;
    }
}