.appointment-wizard {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.step-indicator {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
    flex-wrap: wrap;
    gap: 10px;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: 85%;
    background: #e0e0e0;
    z-index: 1;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 100px;
    max-width: 150px;
    margin: 0 5px;
}

.step {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative;
    z-index: 2;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.step.active {
    background: #e55100;
    color: white;
    border-color: #e55100;
    box-shadow: 0 4px 12px rgba(229, 81, 0, 0.3);
}

.step.completed {
    background: #28a745;
    color: white;
    border-color: #28a745;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.step-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-align: center;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.step.active + .step-label {
    color: #e55100;
    font-weight: bold;
}

.step.completed + .step-label {
    color: #28a745;
    font-weight: bold;
}

.step-content {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.step-content.active {
    display: block;
}

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

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.city-card {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.city-card:hover {
    border-color: #e55100;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background: #f8f9fa;
}

.city-card:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.city-card.selected {
    border-color: #e55100 !important;
    background: #e3f2fd !important;
    color: #e55100 !important;
    font-weight: bold !important;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2) !important;
    transform: translateY(-2px) !important;
}

/* Şehir dropdown seçimi için özel stiller */
.city-selection-wrapper {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
}

.city-selection-wrapper .form-label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.city-selection-wrapper .form-label i {
    color: #e55100;
    margin-right: 8px;
}

/* Şube dropdown seçimi için özel stiller */
.branch-selection-wrapper {
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

.branch-selection-wrapper .form-label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.branch-selection-wrapper .form-label i {
    color: #e55100;
    margin-right: 8px;
}

/* Select2 özelleştirmesi */
.select2-container--default .select2-selection--single {
    height: 50px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    background: white !important;
    display: flex !important;
    align-items: center !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}

.plate-circle {
    width: 25px;
    height: 25px;
    background-color: #2ea3ff;
    color: white;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0.7rem;
}

.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single:focus {
    border-color: #e55100 !important;
    box-shadow: 0 0 0 3px rgba(229, 81, 0, 0.1) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 46px !important;
    padding-left: 15px !important;
    color: #333 !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #666 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
    right: 15px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #666 transparent transparent transparent !important;
    border-width: 6px 6px 0 6px !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #666 transparent !important;
    border-width: 0 6px 6px 6px !important;
}

.select2-dropdown {
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    font-size: 16px !important;
}

.select2-results__option {
    padding: 12px 15px !important;
    font-size: 16px !important;
    transition: all 0.2s ease !important;
}

.select2-results__option--highlighted {
    background-color: #e55100 !important;
    color: white !important;
}

.select2-results__option--selected {
    background-color: #f8f9fa !important;
    color: #333 !important;
}

.select2-search__field {
    border: 1px solid #e0e0e0 !important;
    border-radius: 4px !important;
    padding: 8px 12px !important;
    font-size: 16px !important;
    width: 100% !important;
}

.select2-search__field:focus {
    border-color: #e55100 !important;
    outline: none !important;
}

/* Şube dropdown UTTS badge için stiller */
.utts-badge {
    background-color: #e55100 !important;
    color: white !important;
    padding: 2px 6px !important;
    border-radius: 3px !important;
    height: 31px !important;
    font-size: 10px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    vertical-align: middle !important;
}

.branch-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.branch-card:hover {
    border-color: #e55100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.branch-card.selected {
    border-color: #e55100;
    background: #f8f9fa;
}

.search-box {
    position: relative;
    margin-bottom: 20px;
}

.search-box input {
    width: 100%;
    padding: 12px 40px 12px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.search-box i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.calendar-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.time-slot {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot:hover {
    border-color: #e55100;
}

.time-slot.selected {
    background: #e55100;
    color: white;
    border-color: #e55100;
}

.time-slot.disabled {
    background: #f5f5f5;
    color: #999;
    border-color: #ddd;
    cursor: not-allowed;
    opacity: 0.6;
}

.time-slot.disabled:hover {
    border-color: #ddd;
    background: #f5f5f5;
}

.loading-time-slots {
    text-align: center;
    padding: 20px;
    color: #666;
    font-style: italic;
}

.error-message {
    text-align: center;
    padding: 20px;
    color: #d32f2f;
    background: #ffebee;
    border: 1px solid #ffcdd2;
    border-radius: 5px;
    margin: 10px 0;
}

/* Payment Info Section */
.payment-info-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.payment-info-section .section-title {
    color: #495057;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.payment-info-section .section-title i {
    color: #e55100;
    margin-right: 8px;
}

.payment-info-section .form-group {
    margin-bottom: 15px;
}

.payment-info-section .form-control {
    border-radius: 5px;
    border: 1px solid #ced4da;
    padding: 10px 12px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.payment-info-section .form-control:focus {
    border-color: #e55100;
    box-shadow: 0 0 0 0.2rem rgba(229, 81, 0, 0.25);
}

.payment-info-section .form-control.is-valid {
    border-color: #28a745;
}

.payment-info-section .form-control.is-invalid {
    border-color: #dc3545;
}

.payment-info-section .invalid-feedback {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}

.payment-info-section .required-asterisk {
    color: #dc3545;
    font-weight: bold;
}

/* Package Tabs */
.package-tabs {
    display: flex;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 5px;
    margin-bottom: 30px;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.package-tab {
    flex: 1;
    padding: 0.6rem;
    line-height: 1.4;
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #666;
}

.package-tab.active {
    background: #e55100;
    color: white;
    box-shadow: 0 2px 10px rgba(229, 81, 0, 0.3);
}

.package-tab i {
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
}

.package-tab span {
    font-size: 14px;
}

/* Advanced Package Cards */
.advanced-package-card {
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    overflow: hidden;
}

/* Yeni basit paket kartları */
.simple-package-card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.simple-package-card:hover {
    border-color: #e55100;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(229, 81, 0, 0.15);
}

.simple-package-card.selected {
    border-color: #e55100;
    background: linear-gradient(135deg, #fff5f2 0%, #ffffff 100%);
    box-shadow: 0 4px 20px rgba(229, 81, 0, 0.2);
}

.simple-package-card .package-actions {
    margin-top: 0px;
    text-align: center;
}

.btn-package-details {
    background: transparent;
    border: 1px solid #e55100;
    color: #e55100;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-package-details:hover {
    background: #e55100;
    color: white;
}

.btn-package-details i {
    font-size: 12px;
}

/* Paket detay popup modal */
.package-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.package-modal.show {
    opacity: 1;
    visibility: visible;
}

.package-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.package-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 15px;
    max-width: 700px;
    width: 90%;
    max-height: 82vh;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.package-modal-header {
    padding: 20px 30px;
    background: linear-gradient(135deg, #e55100 0%, #ff6b35 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.package-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.package-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.package-modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.package-modal-body h5 {
    color: #e55100;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

.package-modal-body h6 {
    color: #333;
    margin-bottom: 10px;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
}

.package-modal-body .package-description {
    margin-bottom: 25px;
}

.package-modal-body .package-description p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.package-modal-body .feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin-bottom: 25px;
}

.package-modal-body .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.package-modal-body .feature-item i {
    color: #e55100;
    font-size: 14px;
}

.package-modal-body .feature-item span {
    color: #333;
    font-size: 14px;
}

.package-modal-body .detail-category {
    margin-bottom: 20px;
}

.package-modal-body .detail-category ul {
    margin: 0;
    padding-left: 20px;
    color: #666;
}

.package-modal-body .detail-category li {
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.5;
}

.package-modal-footer {
    padding: 20px 30px;
    background: #f8f9fa;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.btn-modal-close {
    background: #e55100;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-modal-close:hover {
    background: #d44500;
    transform: translateY(-1px);
}

/* Modal responsive */
@media (max-width: 768px) {
    .package-modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .package-modal-header {
        padding: 15px 20px;
    }
    
    .package-modal-header h3 {
        font-size: 18px;
    }
    
    .package-modal-body {
        padding: 20px;
        max-height: 65vh;
    }
    
    .package-modal-body .feature-list {
        grid-template-columns: 1fr;
    }
    
    .package-modal-footer {
        padding: 15px 20px;
    }
}

.advanced-package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #e55100, #ff8c00);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.advanced-package-card:hover {
    border-color: #e55100;
    box-shadow: 0 8px 25px rgba(229, 81, 0, 0.15);
    transform: translateY(-2px);
}

.advanced-package-card:hover::before {
    transform: scaleX(1);
}

.advanced-package-card.selected {
    border-color: #e55100;
    background: linear-gradient(135deg, #fff5f0, #ffffff);
    box-shadow: 0 10px 30px rgba(229, 81, 0, 0.2);
}

.advanced-package-card.selected::before {
    transform: scaleX(1);
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.package-header h4 {
    margin: 0;
    color: #333;
    font-weight: bold;
}

.package-price {
    font-size: 28px;
    font-weight: bold;
    color: #e55100;
    text-shadow: 0 2px 4px rgba(229, 81, 0, 0.1);
}

.package-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.package-features h6 {
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 16px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.feature-item i {
    color: #28a745;
    margin-right: 10px;
    font-size: 14px;
}

.feature-item span {
    color: #555;
    font-size: 14px;
}

/* Package Details Accordion */
.package-details {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.details-toggle {
    background: transparent;
    border: 2px solid #e55100;
    color: #e55100;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.details-toggle:hover {
    background: #e55100;
    color: white;
}

.details-toggle i {
    transition: transform 0.3s ease;
}

.details-toggle.active i {
    transform: rotate(180deg);
}

.details-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 15px;
}

.details-content.active {
    max-height: 1000px;
}

.detail-category {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #e55100;
}

.detail-category h6 {
    color: #e55100;
    font-weight: bold;
    margin-bottom: 10px;
}

.detail-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-category li {
    padding: 5px 0;
    color: #555;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.detail-category li::before {
    content: '•';
    color: #e55100;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* No Package Card */
.no-package-card {
    border-style: dashed !important;
    border-color: #ddd !important;
    background: #f8f9fa !important;
}

.no-package-card h4 {
    color: #666 !important;
    font-size: 16px !important;
}

.no-package-card .package-price {
    color: #999 !important;
}

.no-package-card:hover {
    border-color: #999 !important;
    background: #f0f0f0 !important;
}

.no-package-card .package-actions small {
    color: #888;
    font-style: italic;
}

/* Customer Information Styles */
.customer-info-section,
.vehicle-info-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
}

.section-title {
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e55100;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: #e55100;
    font-size: 18px;
}

.required-asterisk {
    color: #dc3545;
    font-weight: bold;
}

.optional-text {
    color: #6c757d;
    font-weight: normal;
    font-size: 14px;
}

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

.form-group label {
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    border-color: #e55100;
    outline: none;
    box-shadow: 0 0 0 3px rgba(229, 81, 0, 0.1);
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.form-control.is-valid {
    border-color: #28a745;
}

.invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

.form-control.is-invalid + .invalid-feedback {
    display: block;
}

.customer-info-note {
    background: linear-gradient(135deg, #e3f2fd, #f8f9fa);
    border: 1px solid #e55100;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.customer-info-note i {
    color: #e55100;
    font-size: 18px;
}

.customer-info-note span {
    color: #555;
    font-size: 14px;
}

/* Step Descriptions */
.step-content h3 {
    font-weight: bold;
    color: #333;
}

.step-content > p {
    font-size: 16px;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .package-tabs {
        flex-direction: row;
        gap: 5px;
    }
    
    .package-tab span {
        font-size: 12px;
    }
    
    .package-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .package-price {
        font-size: 24px;
    }
    
    /* Simple package cards mobile */
    .simple-package-card {
        padding: 15px;
        min-height: 100px;
    }
    
    .simple-package-card .package-header h4 {
        font-size: 16px;
    }
    
    .simple-package-card .package-actions {
        margin-top: 0px;
    }
    
    .btn-package-details {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .customer-info-section,
    .vehicle-info-section {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .section-title {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn-wizard {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-prev {
    background: #6c757d;
    color: white;
}

.btn-next {
    background: #e55100;
    color: white;
}

.btn-submit {
    background: #28a745;
    color: white;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.badge {
    display: inline-block;
    padding: 0.4em 0.6em;
    font-size: 80%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.badge-success {
    color: #fff;
    background: linear-gradient(135deg, #28a745, #20c997);
    border: 1px solid rgba(255,255,255,0.2);
}

.badge-premium {
    color: #fff;
    background: linear-gradient(135deg, #ffc107, #ff8c00);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.success-modal.show {
    display: flex;
}

.success-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: checkmarkBounce 0.6s ease 0.3s both;
}

@keyframes checkmarkBounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.success-icon i {
    font-size: 36px;
    color: white;
}

.success-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.success-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.appointment-number {
    background: #f8f9fa;
    border: 2px dashed #28a745;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.appointment-number h4 {
    color: #28a745;
    margin-bottom: 5px;
    font-weight: bold;
}

.appointment-number p {
    color: #333;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.success-summary {
    text-align: left;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.success-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.success-summary-item:last-child {
    border-bottom: none;
}

.success-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-success-primary {
    background: linear-gradient(135deg, #e55100, #f5c0ac);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-success-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn-success-secondary {
    background: transparent;
    color: #e55100;
    border: 2px solid #e55100;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-success-secondary:hover {
    background: #e55100;
    color: white;
}

@media (max-width: 768px) {
    .city-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
    
    /* Şehir dropdown mobile stiller */
    .city-selection-wrapper {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    /* Şube dropdown mobile stiller */
    .branch-selection-wrapper {
        padding: 15px;
        margin-top: 15px;
    }
    
    .select2-container--default .select2-selection--single {
        height: 45px !important;
        font-size: 14px !important;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 41px !important;
        padding-left: 12px !important;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 41px !important;
        right: 12px !important;
    }
    
    .select2-results__option {
        padding: 10px 12px !important;
        font-size: 14px !important;
    }
    
    .calendar-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-indicator {
        margin-bottom: 30px;
        gap: 5px;
    }
    
    .step-indicator::before {
        width: 90%;
        top: 20px;
    }
    
    .step-item {
        min-width: 80px;
        max-width: 120px;
        margin: 0 2px;
    }
    
    .step {
        width: 40px;
        height: 40px;
        margin-bottom: 6px;
    }
    
    .step-label {
        font-size: 10px;
    }
    
    .time-slots {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    
    .navigation-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .success-content {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .success-title {
        font-size: 24px;
    }
    
    .success-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-success-primary,
    .btn-success-secondary {
        width: 100%;
    }
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    float: inline-start!important;
    height: 26px!important;
    width: 26px!important;
    margin-right: 0px!important;
    margin-left: 10px!important;
    background-color: #ddd9d9!important;
    border-radius: 50%!important;
    align-items: center!important;
    padding-right: 5px !important;
    color: #4d4d4d!important;
    justify-content: center!important;
}