/* ========================================
   TTB Transfers - Modern CSS Complete
   Professional Transfer Booking System
   ======================================== */

/* Reset & Base Styles */
.ttb-transfers-wrapper {
    font-family: var(--font-primary);
    color: #2d3748;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ttb-transfers-wrapper * {
    box-sizing: border-box;
}

.ttb-transfers-wrapper p {
    margin: 0 0 1rem;
}

/* Container */
.ttb-transfers-wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Loading Overlay */
.ttb-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.ttb-loading-overlay.show {
    display: flex;
}

.ttb-loader {
    text-align: center;
}

.ttb-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    border: 3px solid #e2e8f0;
    border-top-color: #1565C0;
    border-radius: 50%;
    animation: ttb-spin 1s linear infinite;
}

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

/* Hero Section */
.ttb-hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.ttb-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.4"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.ttb-hero-content {
    position: relative;
    z-index: 1;
}

.ttb-hero-header {
    text-align: center;
    margin-bottom: 40px;
    color: white;
    animation: fadeInUp 0.6s ease-out;
}

.ttb-hero-title {
    font-size: var(--text-h1-size, 2.5rem);
    font-weight: var(--font-weight-bold, 700);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    color:#fff;
}

.ttb-hero-subtitle {
    font-size: var(--text-body-large-size, 1.125rem);
    opacity: 0.9;
    margin-bottom: 20px;
    color:#fff;
}

.ttb-hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ttb-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.875rem;
}

/* Booking Container */
.ttb-booking-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 32px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Progress Steps */
.ttb-steps-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.ttb-step {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ttb-step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #718096;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.ttb-step-text {
    font-size: 0.875rem;
    color: #718096;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ttb-step.active .ttb-step-number {
    background: #1565C0;
    color: white;
}

.ttb-step.active .ttb-step-text {
    color: #2d3748;
}

.ttb-step.completed .ttb-step-number {
    background: #48bb78;
    color: white;
}

.ttb-step-line {
    width: 60px;
    height: 2px;
    background: #e2e8f0;
    margin: 0 16px;
}

/* Transfer Type Selector */
.ttb-transfer-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.ttb-transfer-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ttb-transfer-type:hover {
    border-color: #cbd5e0;
    transform: translateY(-2px);
}

.ttb-transfer-type.active {
    background: #03a9f412;
    border-color: #1565C0;
    color: #1565C0;
}

.ttb-transfer-type i {
    font-size: 24px;
}

.ttb-transfer-type span {
    font-size: 0.875rem;
    font-weight: 600;
}

/* Form Styles */
.ttb-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ttb-locations-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: end;
}

.ttb-multi-transfers .ttb-locations-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: end;
}

.ttb-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ttb-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4a5568;
}

.ttb-label i {
    color: #718096;
}

.ttb-required {
    color: #e53e3e;
}

.ttb-optional {
    color: #718096;
    font-weight: 400;
}

.ttb-input-container {
    position: relative;
}

.ttb-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.ttb-input:focus {
    outline: none;
    border-color: #1565C0;
    box-shadow: 0 0 0 3px rgba(235, 102, 43, 0.1);
}

.ttb-input.ttb-error {
    border-color: #e53e3e;
}

/* Location Suggestions */
.ttb-location-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    max-height: 300px;
    overflow-y: auto;
    z-index: 100;
    display: none;
}

.ttb-suggestions-header {
    padding: 12px 16px;
    background: #f7fafc;
    font-size: 0.75rem;
    font-weight: 600;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #e2e8f0;
}

.ttb-suggestions-category {
    padding: 8px 16px;
    background: #f7fafc;
    font-size: 0.75rem;
    font-weight: 600;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ttb-suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.ttb-suggestion-item:hover {
    background: #f7fafc;
}

.ttb-suggestion-icon {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.ttb-suggestion-content {
    flex: 1;
}

.ttb-suggestion-name {
    font-weight: 600;
    color: #2d3748;
    display: block;
}

.ttb-suggestion-address {
    font-size: 0.875rem;
    color: #718096;
}

/* Switch Button */
.ttb-switch-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #718096;
}

.ttb-switch-btn:hover {
    border-color: #1565C0;
    color: #1565C0;
    transform: rotate(180deg);
}

/* Multi Transfer Routes */
.ttb-multi-routes-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ttb-multi-transfer {
    padding: 24px;
    background: #f7fafc;
    border-radius: 12px;
    position: relative;
    animation: slideIn 0.3s ease;
}

.ttb-multi-transfer-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
}

.ttb-remove-transfer {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #e53e3e;
}

.ttb-remove-transfer:hover {
    background: #e53e3e;
    color: white;
    transform: scale(1.1);
}

.ttb-add-transfer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: transparent;
    border: 2px dashed #cbd5e0;
    border-radius: 12px;
    color: #718096;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ttb-add-transfer-btn:hover {
    border-color: #1565C0;
    color: #1565C0;
    background: #fff5f0;
}

/* Passengers Selector */
.ttb-passengers-row {
    display: flex;
    justify-content: center;
    margin: 24px 0;
}

.ttb-passengers-selector {
    display: flex;
    align-items: center;
    background: #f7fafc;
    border-radius: 12px;
    padding: 8px;
}

.ttb-passenger-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #4a5568;
}

.ttb-passenger-btn:hover:not(:disabled) {
    background: #1565C0;
    color: white;
}

.ttb-passenger-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#ttb-passengers {
    width: 60px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0 12px;
}

.ttb-passenger-text {
    font-weight: 500;
    color: #4a5568;
    margin-right: 12px;
}

/* Search Button */
.ttb-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: #1565C0;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ttb-search-btn:hover {
    background: #0D47A1;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(235, 102, 43, 0.3);
}

/* Popular Routes */
.ttb-popular-routes {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid #e2e8f0;
}

.ttb-popular-title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 24px;
}

.ttb-popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.ttb-popular-route-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ttb-popular-route-card:hover {
    border-color: #1565C0;
    background: #fff5f0;
    transform: translateY(-2px);
}

.ttb-route-icon {
    font-size: 32px;
}

.ttb-route-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ttb-route-from,
.ttb-route-to {
    font-weight: 600;
    color: #2d3748;
}

.ttb-route-time {
    font-size: 0.875rem;
    color: #718096;
    font-weight: 500;
}

/* Vehicle Selection (Step 2) */
.ttb-step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
}

.ttb-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #4a5568;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ttb-back-btn:hover {
    border-color: #cbd5e0;
    background: #f7fafc;
}

.ttb-trip-summary {
    text-align: right;
}

.ttb-summary-route {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.ttb-summary-details {
    display: flex;
    gap: 16px;
    font-size: 0.875rem;
    color: #718096;
}

.ttb-summary-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Vehicle Cards */
.ttb-vehicles-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ttb-vehicle-card {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 24px;
    padding: 24px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.ttb-vehicle-card:hover {
    border-color: #1565C0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.ttb-vehicle-image {
    width: 100%;
    height: 140px;
    background: #f7fafc;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ttb-vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ttb-vehicle-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ttb-vehicle-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.ttb-vehicle-features {
    display: flex;
    gap: 24px;
    margin-bottom: 12px;
}

.ttb-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #718096;
}

.ttb-feature-icon {
    color: #a0aec0;
}

.ttb-vehicle-description {
    color: #718096;
    line-height: 1.5;
}

.ttb-vehicle-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ttb-price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1565C0;
    margin-bottom: 16px;
}

.ttb-currency {
    font-size: 1.5rem;
    margin-right: 4px;
}

.ttb-select-vehicle {
    padding: 12px 32px;
    background: #1565C0;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ttb-select-vehicle:hover {
    background: #0D47A1;
    transform: translateY(-2px);
}

/* Booking Details (Step 3) */
.ttb-booking-details {
    margin: 0 auto;
}

.ttb-booking-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 32px;
    text-align: center;
}

.ttb-booking-summary-card {
    background: #f7fafc;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.ttb-booking-summary-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
}

.ttb-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.ttb-summary-row:last-child {
    border-bottom: none;
}

.ttb-summary-label {
    color: #718096;
}

.ttb-summary-value {
    font-weight: 600;
    color: #2d3748;
}

.ttb-total-row {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 2px solid #cbd5e0;
}

.ttb-price {
    font-size: 1.5rem;
    color: #1565C0;
}

/* Transfer Details Form */
.ttb-transfer-details {
    margin-bottom: 32px;
}

.ttb-transfer-details h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
}

.ttb-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.ttb-book-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: #1565C0;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ttb-book-btn:hover {
    background: #0D47A1;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(235, 102, 43, 0.3);
}

/* Mobile Location Sheet */
.ttb-mobile-sheet {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    pointer-events: none; /* Tıklamaları geçir */
}

.ttb-mobile-sheet.active {
    display: block;
    pointer-events: auto; /* Aktif olduğunda tıklamaları yakala */
}

.ttb-mobile-sheet.active {
    display: block;
}

.ttb-sheet-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none; /* Varsayılan olarak gizli */
}

.ttb-mobile-sheet.active .ttb-sheet-backdrop {
    display: block;
    opacity: 1;
}

.ttb-sheet-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 24px 24px 0 0;
    max-height: 90vh;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.ttb-mobile-sheet.active .ttb-sheet-content {
    transform: translateY(0);
}

.ttb-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.ttb-sheet-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
}

.ttb-sheet-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7fafc;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.ttb-sheet-search {
    padding: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.ttb-sheet-suggestions {
    height: calc(90vh - 140px);
    overflow-y: auto;
    padding: 8px;
}

/* Notification */
.ttb-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #2d3748;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 10001;
}

.ttb-notification.show {
    transform: translateX(0);
}

.ttb-notification.error {
    background: #e53e3e;
}

.ttb-notification.success {
    background: #48bb78;
}

/* Why Choose Us Section */
/* Enhanced Why Choose Us Section */
.ttb-why-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.ttb-why-us::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(235, 102, 43, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.ttb-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ttb-section-subtitle {
    font-size: 1.125rem;
    color: #718096;
    margin-top: 10px;
}

/* Feature Cards */
.ttb-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.ttb-feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ttb-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #EB662B 0%, #d54e15 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.ttb-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.ttb-feature-card:hover::before {
    transform: translateX(0);
}

.ttb-feature-icon {
    width: 32px;
    height: 32px;
    background: #1E88E5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    transition: all 0.3s ease;
}

.ttb-feature-card:hover .ttb-feature-icon {
    background: #1E88E5;
    transform: scale(1.1) rotate(5deg);
}

.ttb-feature-icon i {
    font-size: 16px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.ttb-feature-card:hover .ttb-feature-icon i {
    color: white;
}

.ttb-feature-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.ttb-feature-card p {
    color: #718096;
    line-height: 1.7;
    margin-bottom: 20px;
}

.ttb-feature-footer {
    margin-top: auto;
}

.ttb-feature-badge {
    display: inline-block;
    padding: 6px 12px;
    background: #e6fffa;
    color: #065f46;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Trust Indicators */
.ttb-trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 60px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.ttb-trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.ttb-trust-item i {
    font-size: 48px;
    color: #EB662B;
    opacity: 0.8;
}

.ttb-trust-content {
    display: flex;
    flex-direction: column;
}

.ttb-trust-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1;
    margin-bottom: 5px;
}

.ttb-trust-text {
    font-size: 1rem;
    color: #718096;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ttb-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ttb-feature-card {
        padding: 30px 25px;
    }
    
    .ttb-trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 20px;
        gap: 30px;
    }
    
    .ttb-trust-item {
        flex-direction: column;
        text-align: center;
    }
    
    .ttb-trust-item i {
        font-size: 36px;
    }
    
    .ttb-trust-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .ttb-trust-indicators {
        grid-template-columns: 1fr;
    }
}

/* Animation on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ttb-feature-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.ttb-feature-card:nth-child(1) { animation-delay: 0.1s; }
.ttb-feature-card:nth-child(2) { animation-delay: 0.2s; }
.ttb-feature-card:nth-child(3) { animation-delay: 0.3s; }
.ttb-feature-card:nth-child(4) { animation-delay: 0.4s; }
.ttb-feature-card:nth-child(5) { animation-delay: 0.5s; }
.ttb-feature-card:nth-child(6) { animation-delay: 0.6s; }

/* How It Works */
.ttb-how-it-works {
    padding: 80px 0;
    background: white;
}

.ttb-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    position: relative;
}

.ttb-process-step {
    text-align: center;
    position: relative;
}

.ttb-process-number {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: #1565C0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.ttb-process-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.ttb-process-content p {
    color: #718096;
    line-height: 1.6;
}

/* Popular Destinations */
.ttb-destinations {
    padding: 80px 0;
    background: #f7fafc;
}

.ttb-destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.ttb-destination-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ttb-destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.ttb-destination-image {
    height: 200px;
    background: #e2e8f0;
    overflow: hidden;
}

.ttb-destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ttb-destination-content {
    padding: 24px;
}

.ttb-destination-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.ttb-destination-content p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 16px;
}

.ttb-destination-routes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ttb-route-tag {
    padding: 4px 12px;
    background: #e6fffa;
    color: #234e52;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* FAQ Section */
/* FAQ Section - Modern Design */
.ttb-faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.ttb-faq::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(235, 102, 43, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.ttb-faq-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.ttb-section-subtitle {
    font-size: 1.125rem;
    color: #718096;
    margin-top: 10px;
}

.ttb-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ttb-faq-item {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ttb-faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.12);
    border-color: #1565C0;
}

.ttb-faq-question {
    width: 100%;
    padding: 25px 30px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.ttb-faq-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ttb-faq-icon i {
    color: white;
    font-size: 20px;
}

.ttb-faq-question:hover .ttb-faq-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(235, 102, 43, 0.3);
}

.ttb-faq-question span {
    flex: 1;
    text-align: left;
    line-height: 1.4;
}

.ttb-faq-toggle {
    color: #a0aec0;
    transition: transform 0.3s ease;
    font-size: 18px;
}

.ttb-faq-question.active .ttb-faq-toggle {
    transform: rotate(180deg);
    color: #1565C0;
}

.ttb-faq-question.active {
    background: #fff5f0;
}

.ttb-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
    background: #fafafa;
}

.ttb-faq-answer.active {
    max-height: 500px;
    padding: 25px 30px;
}

.ttb-faq-answer p {
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ttb-faq {
        padding: 60px 0;
    }
    
    .ttb-faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ttb-faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .ttb-faq-icon {
        width: 40px;
        height: 40px;
    }
    
    .ttb-faq-icon i {
        font-size: 18px;
    }
    
    .ttb-faq-answer {
        padding: 0 20px;
    }
    
    .ttb-faq-answer.active {
        padding: 20px;
    }
}

/* Animation for smooth opening */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ttb-faq-answer.active p {
    animation: fadeInUp 0.3s ease;
}

/* Hover effects for better interactivity */
.ttb-faq-question:hover {
    background: #f7fafc;
}

.ttb-faq-question:active {
    transform: scale(0.98);
}

/* Focus styles for accessibility */
.ttb-faq-question:focus {
    outline: 3px solid rgba(235, 102, 43, 0.3);
    outline-offset: 2px;
}

/* Gradient overlay for active items */
.ttb-faq-item.active {
    position: relative;
}

.ttb-faq-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1565C0 0%, #0D47A1 100%);
}

/* SEO Content */
/* Enhanced SEO Content Section */
.ttb-seo-content {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.ttb-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Content Header */
.ttb-content-header {
    text-align: center;
    margin-bottom: 60px;
}

.ttb-content-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.3;
}

.ttb-content-lead {
    font-size: 1.25rem;
    color: #4a5568;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Content Blocks */
.ttb-content-block {
    margin-bottom: 60px;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.ttb-content-block h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ttb-content-block h3 i {
    color: #1565C0;
    font-size: 1.5rem;
}

/* Features Row */
.ttb-features-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.ttb-feature-box {
    text-align: center;
    padding: 30px 20px;
    background: #f7fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.ttb-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ttb-feature-box i {
    font-size: 3rem;
    color: #1565C0;
    margin-bottom: 20px;
}

.ttb-feature-box h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.ttb-feature-box p {
    color: #718096;
    line-height: 1.6;
}

/* Airport Grid */
.ttb-airport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.ttb-airport-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.ttb-airport-card:hover {
    border-color: #1565C0;
    transform: translateY(-3px);
}

.ttb-airport-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ttb-airport-card h4 i {
    color: #1565C0;
}

.ttb-airport-card > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ttb-airport-card > ul > li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.ttb-airport-card > ul > li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.ttb-airport-card strong {
    color: #1a202c;
    font-size: 1.1rem;
}

.ttb-routes {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 20px;
}

.ttb-routes li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #718096;
    font-size: 0.95rem;
}

.ttb-routes li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1565C0;
}

/* Vehicle Types */
.ttb-vehicle-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.ttb-vehicle-type {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid #fed7cc;
    transition: all 0.3s ease;
}

.ttb-vehicle-type:hover {
    transform: scale(1.05);
    border-color: #1565C0;
}

.ttb-vehicle-type i {
    font-size: 2.5rem;
    color: #1565C0;
    margin-bottom: 15px;
}

.ttb-vehicle-type h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.ttb-vehicle-type p {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.5;
}

/* Services Grid */
.ttb-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.ttb-service-card {
    padding: 30px;
    background: white;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.ttb-service-card:hover {
    border-color: #1565C0;
    box-shadow: 0 5px 20px rgba(235, 102, 43, 0.1);
}

.ttb-service-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.ttb-service-card p {
    color: #718096;
    line-height: 1.6;
}

/* Process List */
.ttb-process-list {
    margin-top: 30px;
}

.ttb-process-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: #f7fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.ttb-process-item:hover {
    background: #fff5f0;
    transform: translateX(10px);
}

.ttb-process-numbers {
    width: 50px;
    height: 50px;
    background: #1565C0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.ttb-process-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.ttb-process-item p {
    color: #718096;
    line-height: 1.6;
}

/* CTA Section */
.ttb-content-cta {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    border-radius: 16px;
    color: white;
    margin-top: 60px;
}

.ttb-content-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color:#fff;
}

.ttb-content-cta p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    opacity: 0.95;
    color:#fff!important;
}

.ttb-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: white;
    color: #1565C0;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ttb-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .ttb-content-title {
        font-size: 1.75rem;
    }
    
    .ttb-content-lead {
        font-size: 1.1rem;
    }
    
    .ttb-content-block {
        padding: 25px;
    }
    
    .ttb-content-block h3 {
        font-size: 1.5rem;
    }
    
    .ttb-airport-grid,
    .ttb-features-row,
    .ttb-vehicle-types,
    .ttb-services-grid {
        grid-template-columns: 1fr;
    }
    
    .ttb-process-item {
        flex-direction: column;
        text-align: center;
    }
    
    .ttb-content-cta {
        padding: 40px 20px;
    }
    
    .ttb-cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Typography Enhancement */
.ttb-content-wrapper p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 0 auto;
}

.ttb-content-wrapper ul {
    padding-left: 20px;
    margin: 20px 0;
}

.ttb-content-wrapper li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #4a5568;
}

.ttb-content-wrapper strong {
    color: #2d3748;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ttb-hero-title {
        font-size: 2rem;
    }
    
    .ttb-destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .ttb-hero {
        padding: 40px 0 20px;
    }
    
    .ttb-booking-container {
        padding: 24px 16px;
    }
    
    .ttb-steps-nav {
        margin-bottom: 24px;
    }
    
    .ttb-step-text {
        display: none;
    }
    
    .ttb-step-line {
        width: 40px;
        margin: 0 8px;
    }
    
    .ttb-transfer-types {
        grid-template-columns: 1fr;
    }
    
    .ttb-locations-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .ttb-switch-btn {
        display:none;
    }
    
    .ttb-popular-grid {
        grid-template-columns: 1fr;
    }
    
    .ttb-vehicle-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ttb-vehicle-image {
        margin: 0 auto;
        max-width: 200px;
    }
    
    .ttb-vehicle-features {
        justify-content: center;
    }
    
    .ttb-form-row {
        grid-template-columns: 1fr;
    }
    
    .ttb-features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .ttb-process-steps {
        grid-template-columns: 1fr;
    }
    
    .ttb-destinations-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Sheet Styles */
    .ttb-mobile-sheet {
        display: block;
    }

    .ttb-multi-transfers .ttb-locations-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: end;
}
    
    /* Show mobile sheet for location inputs on mobile */
    @media (max-width: 767px) {
        .ttb-location-input {
            cursor: pointer;
        }
    }
}

@media (max-width: 480px) {
    .ttb-hero-title {
        font-size: 1.5rem;
    }
    
    .ttb-hero-subtitle {
        font-size: 1rem;
    }
    
    .ttb-hero-badges {
        gap: 10px;
    }
    
    .ttb-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .ttb-passengers-group {
        min-width: 100%;
    }
    
    .ttb-notification {
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
    }
    
    .ttb-notification.show {
        transform: translateY(0);
    }
}

/* Print Styles */
@media print {
    .ttb-hero-bg,
    .ttb-back-btn,
    .ttb-switch-btn,
    .ttb-add-transfer-btn,
    .ttb-remove-transfer {
        display: none !important;
    }
    
    .ttb-booking-container {
        box-shadow: none;
        border: 1px solid #e2e8f0;
    }
}

/* Step 3 - Booking Grid Layout */
.ttb-booking-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 30px;
    align-items: start;
    margin-top: 30px;
}

.ttb-booking-left {
    position: sticky;
    top: 80px;
}

.ttb-booking-summary-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.ttb-booking-summary-card h3 {
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    padding-bottom: 15px;
    border-bottom: 2px solid #1565C0;
}

.ttb-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.ttb-summary-row:last-child {
    border-bottom: none;
}

.ttb-summary-label {
    font-weight: 500;
    color: #6c757d;
    font-size: 14px;
}

.ttb-summary-value {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.ttb-total-row {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.ttb-total-row .ttb-summary-label {
    font-size: 18px;
    color: #2c3e50;
}

.ttb-total-row .ttb-price {
    font-size: 24px;
    color: #1565C0;
    font-weight: 700;
}

/* Security Badges */
.ttb-security-badges {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    justify-content: center;
}

.ttb-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6c757d;
}

.ttb-badge-item i {
    color: #28a745;
    font-size: 16px;
}

/* Form Section */
.ttb-booking-form {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.ttb-transfer-details {
    margin-bottom: 30px;
}

.ttb-transfer-details h3 {
    margin: 0 0 20px;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.ttb-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .ttb-booking-grid {
        grid-template-columns: 1fr;
    }
    
    .ttb-booking-left {
        position: static;
        margin-bottom: 20px;
    }
    
    .ttb-security-badges {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .ttb-form-row {
        grid-template-columns: 1fr;
    }
    
    .ttb-security-badges {
        flex-direction: column;
        align-items: center;
    }
}
/* Mobile input styles */
@media (max-width: 767px) {
    .ttb-location-input[readonly] {
        background-color: #fff !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
    
    .ttb-location-input[readonly]:focus {
        outline: none !important;
        border-color: #e2e8f0 !important;
        box-shadow: none !important;
    }
}

/* Mobile Touch Improvements */
@media (max-width: 767px) {
    /* Increase touch targets */
    .ttb-transfer-type,
    .ttb-passenger-btn,
    .ttb-search-btn,
    .ttb-select-vehicle,
    .ttb-book-btn,
    .ttb-popular-route-card,
    #ttb-switch-direction,
    #ttb-add-transfer,
    .ttb-remove-transfer {
        min-height: 44px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    /* Prevent iOS zoom on input focus */
    input[type="text"],
    input[type="number"],
    select,
    textarea {
        font-size: 16px !important;
    }
    
    /* Better button states */
    button:active,
    .ttb-transfer-type:active,
    .ttb-popular-route-card:active {
        opacity: 0.7;
        transform: scale(0.98);
    }
}

/* Prevent double-tap zoom on iOS */
.ttb-transfers-wrapper {
    touch-action: manipulation;
}

/* Fix for mobile touch delays */
.ttb-transfers-wrapper button,
.ttb-transfers-wrapper a,
.ttb-transfers-wrapper input,
.ttb-transfers-wrapper .ttb-popular-route-card,
.ttb-transfers-wrapper .ttb-suggestion-item {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

@media (max-width: 768px) {
    /* Trip Summary Mobile Optimization */
    .ttb-trip-summary {
        text-align: left;
        padding: 15px;
        background: #f7fafc;
        border-radius: 8px;
        margin-bottom: 20px;
    }
    
    .ttb-summary-route {
        font-size: 1rem;
        font-weight: 600;
        color: #2d3748;
        margin-bottom: 12px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    /* From location */
    .ttb-summary-route span:first-child {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    /* Hide arrow icon on mobile */
    .ttb-summary-route > i.fa-arrow-right {
        display: none;
    }
    
    /* To location with custom icon */
    .ttb-summary-route span:last-child {
        display: flex;
        align-items: center;
        gap: 8px;
        position: relative;
        padding-left: 20px;
    }
    
    /* Add down arrow for mobile */
    .ttb-summary-route span:last-child::before {
        content: "↓";
        position: absolute;
        left: 0;
        font-size: 16px;
        color: #1565C0;
    }
    
    /* Alternative: Add "From:" and "To:" labels */
    .ttb-summary-route span:first-child::before {
        content: "From: ";
        font-weight: 400;
        color: #718096;
    }
    
    .ttb-summary-route span:last-child::before {
        content: "To: ";
        font-weight: 400;
        color: #718096;
        position: relative;
        padding: 0;
    }
    
    .ttb-summary-details {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        font-size: 0.875rem;
        color: #718096;
        padding-top: 12px;
        border-top: 1px solid #e2e8f0;
    }
    
    .ttb-summary-item {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .ttb-summary-item i {
        font-size: 14px;
        color: #a0aec0;
    }
    
    /* Step header mobile adjustments */
    .ttb-step-header {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding-bottom: 20px;
    }
    
    .ttb-back-btn {
        align-self: flex-start;
        margin-bottom: 10px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .ttb-summary-details {
        grid-template-columns: 1fr;
    }
}