/* VIP Transfer Form Styles */
.vt-form-container {
    max-width: 1240px;
    min-width: 1240px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
}

.vt-form-header {
    display: none;
}

.vt-form-header h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 600;
}

.vt-form-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 16px;
}

.vt-step {
    padding: 40px 30px;
}

.vt-step-header {
    text-align: center;
    margin-bottom: 30px;
}

.vt-step-header h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}

.vt-step-header p {
    margin: 0;
    color: #666;
    font-size: 16px;
}

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

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

.vt-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #fff;
    font-size: 14px;
}

/* Standardize all form fields */
.vt-form-group input[type="text"],
.vt-form-group input[type="email"],
.vt-form-group input[type="tel"],
.vt-form-group input[type="number"],
.vt-form-group input[type="date"],
.vt-form-group input[type="time"],
.vt-form-group input[type="datetime-local"],
.vt-form-group select,
.vt-form-group textarea {
    width: 100%;
    max-width: 480px;
    padding: 12px 16px;
    border: 1.5px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    background: #fff;
    color: #222;
    margin-bottom: 0;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

/* 3. adımdaki yolcu sayısı alanı için özel stil */
#vt_passengers_step3 {
    background: #f8f9fa;
    border-color: #cbaa5c;
    font-weight: 500;
}

.vt-form-group input:focus,
.vt-form-group select:focus,
.vt-form-group textarea:focus {
    border-color: #cbaa5c;
    outline: none;
}

.vt-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.vt-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e1e5e9;
}

.vt-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    background: #cbaa5c;
    color: #fff;
}

.vt-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.vt-btn-primary {
    background: #cbaa5c;
    color: #fff;
}

.vt-btn-primary:hover:not(:disabled) {
    background: #b89a4f;
    box-shadow: 0 4px 12px rgba(203, 170, 92, 0.3);
}

.vt-btn-secondary {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e1e5e9;
}

.vt-btn-secondary:hover:not(:disabled) {
    background: #e9ecef;
    border-color: #adb5bd;
}

.vt-btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.vt-btn-success:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.vt-btn-select {
    background: #fff;
    color: #cbaa5c;
    border: 2px solid #cbaa5c;
    width: 100%;
    margin: 0;
    border-radius: 0;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
}

.vt-btn-select:hover {
    background: #cbaa5c;
    color: white;
}

/* Rotasyon kartları */
.vt-rotations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
    justify-content: center; /* grid içeriğini ortala */
}

.vt-rotation-card {
    max-width: 400px;      /* kartın maksimum genişliği */
    min-width: 320px;      /* minimum genişlik */
    margin: 0 auto;        /* grid hücresinde ortala */
    background: #fff;
    border: 2px solid #cbaa5c;
    border-radius: 16px;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.vt-rotation-card:hover {
    border-color: #cbaa5c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vt-rotation-card.vt-selected {
    border-color: #cbaa5c;
    background: linear-gradient(135deg, #cbaa5c 0%, #ffffff 100%);
    color: white;
}

.vt-rotation-card.vt-selected .vt-btn-select {
    background: white;
    color: #cbaa5c;
    border-color: white;
}

.vt-vehicle-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.vt-vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vt-rotation-card:hover .vt-vehicle-image img {
    transform: scale(1.05);
}

.vt-rotation-card.vt-selected .vt-vehicle-image img {
    filter: brightness(0.8);
}

/* Araç özellikleri */
.vt-vehicle-features {
    display: flex;
    gap: 10px;
    margin: 10px 0;
    flex-wrap: wrap;
}

.vt-feature {
    background: rgba(102, 126, 234, 0.1);
    color: #cbaa5c;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.vt-rotation-card.vt-selected .vt-feature {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.vt-rotation-header {
    margin-bottom: 15px;
    padding: 20px 20px 0 20px;
    text-align: center;
}

.vt-rotation-header h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.vt-rotation-details {
    padding: 0 20px;
    text-align: center;
}

.vt-rotation-prices {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin: 15px 0;
    padding: 0 0;
    justify-content: center;
}

.vt-price {
    font-size: 14px;
    font-weight: bold;
    color: #cbaa5c;
    padding: 4px 12px;
    background: #f5f1e6;
    border-radius: 8px;
    text-align: center;
    display: inline-block;
}

.vt-currency-selector {
    margin: 15px 0;
    text-align: center;
}

.vt-currency-selector label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #fff;
    font-size: 14px;
}

.vt-currency-select {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 14px;
    background: white;
    transition: all 0.3s ease;
}

.vt-currency-select:focus {
    outline: none;
    border-color: #cbaa5c;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}

/* Yolcu alanları */
.vt-passenger-field {

    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.vt-passenger-field h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #cbaa5c;
    padding-bottom: 8px;
}

.vt-passenger-field .vt-form-row {
    margin-bottom: 0;
}

.vt-passenger-field .vt-form-group {
    margin-bottom: 0;
}

/* Yolcu önizleme */
.vt-passenger-review {
    background: #f8f9fa;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.vt-passenger-review-item {
    padding: 10px 0;
    border-bottom: 1px solid #e1e5e9;
    font-size: 16px;
}

.vt-passenger-review-item:last-child {
    border-bottom: none;
}

.vt-passenger-review-item strong {
    color: #cbaa5c;
    min-width: 80px;
    display: inline-block;
}

.vt-child-review strong {
    color: #ff6b6b;
}

/* Çocuk alanları */
.vt-child-field {

    border-color: #ffeaa7;
}

.vt-child-field h4 {
    color: #856404;
    border-bottom-color: #ff6b6b;
}

/* Section styling */
.vt-section {
    margin-bottom: 30px;
    padding: 20px;
    background: transparent;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
}

.vt-section h4 {
    margin: 0 0 20px 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #cbaa5c;
    padding-bottom: 8px;
}

/* Description text styling */
.vt-form-group .description {
    color: #666;
    font-size: 12px;
    margin-top: 5px;
    display: block;
    font-style: italic;
}

.vt-rotation-card.vt-selected .vt-price {
    color: #cbaa5c;
    background: white;
}

.vt-rotation-details p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.vt-rotation-card.vt-selected .vt-rotation-details p {
    color: rgba(255, 255, 255, 0.9);
}

/* Loading ve durum mesajları */
.vt-loading,
.vt-no-rotations,
.vt-error {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 16px;
}

.vt-error {
    color: #dc3545;
}

/* Özet container */
.vt-summary-container {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.vt-summary-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e1e5e9;
}

.vt-summary-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.vt-summary-section h4 {
    margin: 0 0 15px 0;
    color: #cbaa5c;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #cbaa5c;
    padding-bottom: 8px;
}

.vt-summary-item {
    padding: 8px 0;
    font-size: 16px;
    line-height: 1.5;
}

.vt-summary-item strong {
    color: #333;
    min-width: 140px;
    display: inline-block;
    font-weight: 600;
}

/* Başarı mesajı */
.vt-success-message {
    text-align: center;
    padding: 60px 30px;
}

.vt-success-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.vt-success-message h3 {
    margin: 0 0 15px 0;
    font-size: 24px;
    color: #ffffff;
}

.vt-success-message p {
    margin: 0 0 30px 0;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .vt-form-container {
        margin: 10px 0;
        border-radius: 8px;
        width: 100vw;
        max-width: 100vw;
        min-width: unset;
        box-sizing: border-box;
        padding: 0 2vw;
    }
    
    .vt-form-header {
        padding: 30px 20px;
    }
    
    .vt-form-header h2 {
        font-size: 24px;
    }
    
    .vt-step {
        padding: 30px 20px;
    }
    
    .vt-form-row {
        display: block;
        gap: 10px;
        margin-bottom: 14px;
    }
    
    .vt-rotations-grid {
        grid-template-columns: 1fr;
        width: 100%;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
    }
    
    .vt-rotation-card {
        width: 100%;
        min-width: 0;
        max-width: 100vw;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
    }
    
    .vt-form-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .vt-btn {
        width: 100%;
    }
    .vt-form-group input[type="text"],
    .vt-form-group input[type="email"],
    .vt-form-group input[type="tel"],
    .vt-form-group input[type="number"],
    .vt-form-group input[type="date"],
    .vt-form-group input[type="time"],
    .vt-form-group input[type="datetime-local"],
    .vt-form-group select,
    .vt-form-group textarea {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        padding: 10px 10px;
        font-size: 15px;
    }
    .vt-form-group label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .vt-form-header {
        padding: 25px 15px;
    }
    
    .vt-step {
        padding: 25px 15px;
    }
    
    .vt-form-group input,
    .vt-form-group select,
    .vt-form-group textarea {
        padding: 8px 8px;
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .vt-form-container {
        margin: 0;
        padding: 0 2vw;
        border-radius: 0;
        max-width: 100vw;
        min-width: unset;
        width: 100vw;
        box-sizing: border-box;
    }
    .vt-section {
        padding: 12px 2vw;
        margin-bottom: 18px;
        border-radius: 8px;
    }
    .vt-step-header {
        padding: 0 2vw;
    }
    .vt-form-row, .vt-form-group {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Ödeme seçenekleri */
.vt-payment-option {
    margin-bottom: 15px;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
}

.vt-payment-option:hover {
    border-color: #cbaa5c;
    background-color: #f8f9fa;
}

.vt-payment-option input[type="radio"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.vt-payment-option input[type="radio"]:checked + label {
    color: #cbaa5c;
    font-weight: 600;
}

.vt-payment-option label {
    cursor: pointer;
    margin: 0;
    font-weight: normal;
    display: block;
}

.vt-bank-info {
    margin-top: 10px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
    font-size: 14px;
    color: #666;
    white-space: pre-line;
    border-left: 3px solid #cbaa5c;
}

.vt-payment-option input[type="radio"]:checked ~ .vt-bank-info {
    background-color: #e8f2ff;
    border-left-color: #cbaa5c;
}

.vt-vehicle-features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    width: 100%;
    margin: 0 0 16px 0;
    margin-left: 10px;
}
.vt-feature-row {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 16px;
    font-size: 16px;
    color: #444;
    max-width: 340px;
    margin: 0 auto 0 0;
    padding: 0 0 0 0;
    text-align: left;
}
.vt-feature-count {
    background: #f5ecd7;
    border-radius: 4px;
    padding: 5px 5px;
    min-width: 40px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    color: #cbaa5c;
    margin-right: 8px;
}
.vt-feature-label {
    font-size: 16px;
    color: #444;
    font-weight: 500;
    text-align: left;
}
.vt-btn-select {
    background: #fff;
    color: #cbaa5c;
    border: 2px solid #cbaa5c;
    width: 100%;
    margin: 0;
    border-radius: 0 0 16px 16px;
    padding: 18px 0 14px 0;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: auto;
    transition: background 0.2s, color 0.2s;
}
.vt-btn-select:hover, .vt-rotation-card.vt-selected .vt-btn-select {
    background: #cbaa5c;
    color: #fff;
}
@media (max-width: 1024px) {
    .vt-rotations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .vt-rotations-grid {
        grid-template-columns: 1fr;
    }
}
.vt-accordion {
  margin-left: 5px;
}
.vt-accordion-toggle {
  padding-left: 5px !important;
}
.vt-accordion-content {
  padding-left: 5px !important;
}