/* TRANSFER SAAS - REZERVASYON v2.0 - CSS Prefix: .rez- */
* { margin: 0; padding: 0; box-sizing: border-box; }
        
        html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
        
        body.rez-body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--rez-bg);
            color: var(--rez-text);
            min-height: 100vh;
            min-height: -webkit-fill-available;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        
        /* ===== HEADER ===== */
        .rez-header {
            background: var(--rez-primary);
            padding: 12px 16px;
            position: relative;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .rez-header-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }
        
        .rez-logo {
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }
        
        .rez-logo i { color: var(--rez-accent); }
        
        .rez-header-actions {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        /* Dil Dropdown */
        .rez-lang-dropdown {
            position: relative;
        }
        
        .rez-lang-btn {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: #fff;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            min-height: 44px;
            transition: all 0.2s;
        }
        
        .rez-lang-btn:hover {
            background: rgba(255,255,255,0.2);
        }
        
        .rez-lang-menu {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 4px;
            background: var(--rez-card);
            border-radius: 8px;
            box-shadow: var(--rez-shadow);
            min-width: 140px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s;
            z-index: 1001;
            overflow: hidden;
        }
        
        .rez-lang-dropdown.active .rez-lang-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .rez-lang-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            color: var(--rez-text);
            text-decoration: none;
            font-size: 14px;
            transition: background 0.2s;
        }
        
        .rez-lang-option:hover {
            background: var(--rez-bg);
        }
        
        .rez-lang-option.active {
            background: rgba(14, 165, 233, 0.1);
            color: var(--rez-accent);
        }
        
        /* Header Buttons */
        .rez-header-btn {
            width: 44px;
            height: 44px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
        }
        
        .rez-header-btn.phone {
            background: rgba(255,255,255,0.1);
        }
        
        .rez-header-btn.whatsapp {
            background: var(--rez-whatsapp);
        }
        
        .rez-header-btn:hover {
            transform: scale(1.05);
        }
        
        /* ===== MAIN LAYOUT ===== */
        .rez-main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 16px;
            display: grid;
            gap: 16px;
            min-height: calc(100vh - 140px);
        }
        
        /* Mobile: Tek sütun */
        @media (max-width: 991px) {
            .rez-main {
                grid-template-columns: 1fr;
            }
            .rez-map-container { order: 3; }
            .rez-form-container { order: 1; display: flex; flex-direction: column; }
            .rez-form-container > .rez-card:first-child { order: 2; }
            .rez-form-container > .rez-step-content#rezStep2 { order: 1; }
            .rez-form-container > .rez-step-content { order: 3; }
        }
        
        /* Desktop: 2 sütun */
        @media (min-width: 992px) {
            .rez-main {
                grid-template-columns: 1fr 400px;
                padding: 24px;
                gap: 24px;
            }
        }
        
        /* ===== HARİTA ===== */
        .rez-map-container {
            background: var(--rez-card);
            border-radius: var(--rez-radius);
            overflow: hidden;
            box-shadow: var(--rez-shadow);
        }
        
        /* Mobile: Harita üstte, daraltılabilir */
        @media (max-width: 991px) {
            .rez-map-container {
                position: relative;
                max-width: 100%;
                overflow: hidden;
            }
            .rez-map-summary, .rez-map-stats, .rez-map-header {
                max-width: 100%;
                overflow: hidden;
            }
            
            .rez-map-container.collapsed .rez-map {
                height: 0;
            }
            
            .rez-map-container.collapsed .rez-map-summary {
                border-radius: var(--rez-radius);
            }
        }
        
        /* Desktop: Harita sağda, sticky */
        @media (min-width: 992px) {
            .rez-map-container {
                position: sticky;
                top: 80px;
                height: fit-content;
                order: 2;
            }
        }
        
        .rez-map-header {
            padding: 12px 16px;
            background: var(--rez-primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .rez-map-title {
            font-size: 14px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .rez-map-toggle {
            background: rgba(255,255,255,0.2);
            border: none;
            color: #fff;
            width: 32px;
            height: 32px;
            border-radius: 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }
        
        @media (min-width: 992px) {
            .rez-map-toggle { display: none; }
        }
        
        .rez-map {
            height: 250px;
            transition: height 0.3s ease;
        }
        
        @media (min-width: 992px) {
            .rez-map { height: 400px; }
        }
        
        .rez-map-summary {
            padding: 16px;
            background: linear-gradient(135deg, var(--rez-primary), #2d2d4a);
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 12px;
            align-items: center;
            color: #fff;
        }
        
        .rez-map-point {
            text-align: center;
        }
        
        .rez-map-point-label {
            font-size: 10px;
            opacity: 0.7;
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .rez-map-point-name {
            font-size: 13px;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 120px;
            margin: 0 auto;
        }
        
        .rez-map-arrow {
            color: var(--rez-accent);
            font-size: 20px;
        }
        
        .rez-map-stats {
            display: flex;
            justify-content: center;
            gap: 24px;
            padding: 12px;
            background: var(--rez-primary);
        }
        
        .rez-map-stat {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #ffffff;
            font-size: 14px;
        }
        
        .rez-map-stat i {
            color: var(--rez-accent);
        }
        
        .rez-map-stat strong {
            font-weight: 700;
            color: #ffffff;
        }
        
        /* ===== FORM CONTENT ===== */
        .rez-form-container {
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 100%;
            overflow-x: hidden;
        }
        
        @media (min-width: 992px) {
            .rez-form-container {
                order: 1;
            }
        }
        
        /* ===== CARDS ===== */
        .rez-card {
            background: var(--rez-card);
            border-radius: var(--rez-radius);
            padding: 20px;
            box-shadow: var(--rez-shadow);
        }
        
        .rez-card-title {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--rez-text);
        }
        
        .rez-card-title-lg {
            font-size: 20px;
            margin-bottom: 20px;
        }
        
        .rez-card-title-lg i {
            font-size: 22px;
        }
        
        .rez-card-title i {
            color: var(--rez-accent);
            font-size: 18px;
        }
        
        /* ===== ROUTE SUMMARY ===== */
        .rez-route-summary {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border: 1px solid var(--rez-border);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 16px;
        }
        
        .rez-route-point {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        
        .rez-route-point-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }
        
        .rez-route-point-pickup {
            background: rgba(34, 197, 94, 0.15);
            color: #16a34a;
        }
        
        .rez-route-point-dropoff {
            background: rgba(245, 158, 11, 0.15);
            color: #d97706;
        }
        
        .rez-route-point-info { text-align: center;
            flex: 1;
            min-width: 0;
        }
        
        .rez-route-point-label {
            display: block;
            font-size: 11px;
            color: var(--rez-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 2px;
        }
        
        .rez-route-point-name {
            display: block;
            font-size: 15px;
            font-weight: 600;
            color: var(--rez-text);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .rez-route-arrow {
            text-align: center;
            padding: 8px 0;
            color: var(--rez-muted);
            font-size: 14px;
        }
        
        /* ===== DISTANCE INFO ===== */
        .rez-distance-info {
            display: flex;
            justify-content: center;
            gap: 32px;
            background: var(--rez-primary);
            border-radius: 10px;
            padding: 16px;
            margin-bottom: 20px;
        }
        
        .rez-distance-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #ffffff;
            font-size: 16px;
        }
        
        .rez-distance-item i {
            color: var(--rez-accent);
            font-size: 18px;
        }
        
        .rez-distance-item strong {
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
        }
        
        /* ===== STEP INDICATOR ===== */
        .rez-steps {
            display: flex;
            justify-content: space-between;
            padding: 0 10px;
            margin-bottom: 8px;
        }
        
        .rez-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            flex: 1;
            position: relative;
        }
        
        .rez-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 16px;
            left: 50%;
            width: 100%;
            height: 2px;
            background: var(--rez-border);
            z-index: 0;
        }
        
        .rez-step.active:not(:last-child)::after,
        .rez-step.completed:not(:last-child)::after {
            background: var(--rez-accent);
        }
        
        .rez-step-num {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #e2e8f0;
            color: var(--rez-muted);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 600;
            position: relative;
            z-index: 1;
            transition: all 0.3s;
        }
        
        .rez-step.active .rez-step-num,
        
        
        .rez-step.completed .rez-step-num {
            background: var(--rez-success);
            color: #fff;
        }
        
        .rez-step-label {
            font-size: 11px;
            color: var(--rez-muted);
            text-align: center;
            max-width: 70px;
        }
        
        .rez-step.active .rez-step-label {
            color: var(--rez-text);
            font-weight: 600;
        }
        
        /* ===== STEP CONTENT ===== */
        .rez-step-content {
            display: none;
        }
        
        .rez-step-content.active {
            display: block;
            animation: rezFadeIn 0.3s ease;
        }
        
        @keyframes rezFadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* ===== TRIP DETAILS ===== */
        .rez-trip-details {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        
        @media (min-width: 480px) {
            .rez-trip-details {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .rez-trip-item {
            background: var(--rez-bg);
            padding: 12px;
            border-radius: 8px;
            text-align: center;
        }
        
        .rez-trip-item i {
            color: var(--rez-accent);
            font-size: 16px;
            margin-bottom: 6px;
        }
        
        .rez-trip-item-label {
            font-size: 10px;
            color: var(--rez-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }
        
        .rez-trip-item-value {
            font-size: 14px;
            font-weight: 600;
        }
        
        /* ===== VEHICLES ===== */
        .rez-vehicles {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .rez-vehicle {
            border: 2px solid var(--rez-border);
            border-radius: var(--rez-radius);
            padding: 16px;
            cursor: pointer;
            transition: all 0.2s;
            display: grid;
            grid-template-columns: 130px 1fr;
            gap: 16px;
            align-items: center;
        }
        
        @media (min-width: 480px) {
            .rez-vehicle {
                grid-template-columns: 140px 1fr auto;
            }
        }
        
        .rez-vehicle:hover {
            border-color: var(--rez-accent);
        }
        
        .rez-vehicle.selected {
            border-color: var(--rez-accent);
            background: rgba(14, 165, 233, 0.05);
        }
        
        
        .rez-vehicle-img-wrap { position: relative; }
        .rez-vehicle-img-wrap::after { content: '\f00e'; font-family: 'Font Awesome 5 Free'; font-weight: 900; position: absolute; bottom: 4px; right: 4px; background: rgba(0,0,0,0.5); color: #fff; width: 22px; height: 22px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 10px; pointer-events: none; }
        .rez-vehicle-img {
            width: 100%;
            height: 85px;
            object-fit: contain;
            border-radius: 8px;
            background: var(--rez-bg);
        }
        
        @media (min-width: 480px) {
            .rez-vehicle-img {
                height: 90px;
            }
        }
        
        .rez-vehicle-info h4 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 6px;
        }
        
        .rez-vehicle-specs {
            display: flex;
            gap: 12px;
            margin-bottom: 8px;
        }
        
        .rez-vehicle-spec {
            font-size: 12px;
            color: var(--rez-muted);
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .rez-vehicle-spec i {
            color: var(--rez-accent);
            font-size: 11px;
        }
        
        .rez-vehicle-features {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
        }
        
        .rez-vehicle-feature {
            background: var(--rez-bg);
            padding: 3px 8px;
            border-radius: 20px;
            font-size: 10px;
            color: var(--rez-muted);
        }
        
        .rez-vehicle-price {
            text-align: right;
            grid-column: span 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 8px;
            padding-top: 12px;
            border-top: 1px solid var(--rez-border);
        }
        
        @media (min-width: 480px) {
            .rez-vehicle-price {
                grid-column: auto;
                flex-direction: column;
                justify-content: center;
                margin-top: 0;
                padding-top: 0;
                border-top: none;
                gap: 8px;
            }
        }
        
        .rez-vehicle-price-amount {
            font-size: 22px;
            font-weight: 700;
            color: var(--rez-primary);
        }
        
        .rez-vehicle-price-amount small {
            font-size: 12px;
            font-weight: 400;
            color: var(--rez-muted);
        }
        
        .rez-vehicle-select-btn {
            padding: 10px 20px;
            background: var(--rez-accent);
            color: #ffffff;
            border: none;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
        }
        
        .rez-vehicle.selected .rez-vehicle-select-btn {
            background: var(--rez-success);
            color: #fff;
        }
        
        /* ===== EXTRAS ===== */
        .rez-extras {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
        }
        
        @media (min-width: 480px) {
            .rez-extras {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .rez-extra {
            border: 2px solid var(--rez-border);
            border-radius: 10px;
            padding: 14px;
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .rez-extra:hover {
            border-color: var(--rez-accent);
        }
        
        .rez-extra.selected {
            border-color: var(--rez-accent);
            background: rgba(14, 165, 233, 0.05);
        }
        
        .rez-extra-check {
            width: 24px;
            height: 24px;
            border: 2px solid var(--rez-border);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.2s;
        }
        
        .rez-extra.selected .rez-extra-check {
            background: var(--rez-accent);
            border-color: var(--rez-accent);
        }
        
        .rez-extra-check i {
            color: #ffffff;
            font-size: 12px;
            opacity: 0;
        }
        
        .rez-extra.selected .rez-extra-check i {
            opacity: 1;
        }
        
        .rez-extra-info {
            flex: 1;
            min-width: 0;
        }
        
        .rez-extra-name {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 2px;
        }
        
        .rez-extra-desc {
            font-size: 11px;
            color: var(--rez-muted);
        }
        
        .rez-extra-price {
            font-size: 14px;
            font-weight: 700;
            color: var(--rez-accent);
            white-space: nowrap;
        }
        
        /* ===== FORM INPUTS ===== */
        .rez-form-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }
        
        @media (min-width: 480px) {
            .rez-form-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .rez-form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        
        .rez-form-group.full {
            grid-column: 1 / -1;
        }
        
        .rez-form-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--rez-text);
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .rez-form-label .required {
            color: var(--rez-error);
        }
        
        .rez-form-input {
            padding: 14px 16px;
            border: 2px solid var(--rez-border);
            border-radius: 10px;
            font-size: 15px;
            font-family: inherit;
            transition: all 0.2s;
            min-height: 50px;
            background: #fff;
        }
        
        .rez-form-input:focus {
            outline: none;
            border-color: var(--rez-accent);
            box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
        }
        
        .rez-form-input::placeholder {
            color: var(--rez-muted);
        }
        
        textarea.rez-form-input {
            min-height: 100px;
            resize: vertical;
        }
        
        /* ===== PRICE SUMMARY ===== */
        .rez-price-summary {
            background: var(--rez-primary);
            border-radius: var(--rez-radius);
            padding: 20px;
            color: #fff;
            margin-top: 20px;
        }
        
        .rez-price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;
        }
        
        .rez-price-row:last-child {
            border-bottom: none;
        }
        
        .rez-price-row.total {
            font-size: 18px;
            font-weight: 700;
            padding-top: 16px;
            margin-top: 8px;
            border-top: 2px solid var(--rez-accent);
            border-bottom: none;
        }
        
        .rez-price-row.total .rez-price-value {
            color: var(--rez-accent);
            font-size: 24px;
        }
        
        /* ===== BUTTONS ===== */
                .rez-btn-outline {
            background: transparent;
            border: 2px solid var(--rez-primary);
            color: var(--rez-primary);
            padding: 12px 24px;
            border-radius: var(--rez-radius);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .rez-btn-outline:hover {
            background: var(--rez-primary);
            color: #fff;
        }
        .rez-success-actions {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 20px;
        }
.rez-btn-group {
            padding-bottom: 80px;
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }
        
        .rez-btn {
            flex: 1;
            padding: 16px 24px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 54px;
            text-decoration: none;
        }
        
        .rez-btn-primary {
            background: var(--rez-accent);
            color: #ffffff;
            font-weight: 700;
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
        }
        
        .rez-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(14, 165, 233, 0.35);
        }
        
        .rez-btn-primary:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        /* Harita stat renkleri */
        .rez-map-stat strong {
            color: #fff !important;
        }
        
        .rez-btn-secondary {
            background: var(--rez-bg);
            color: var(--rez-text);
            flex: 0 0 auto;
            padding: 16px 20px;
        }
        
        .rez-btn-secondary:hover {
            background: var(--rez-border);
        }
        
        /* ===== WHATSAPP STICKY ===== */
        /* Floating Fiyat Bari */
        .rez-floating-price {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            animation-fill-mode: forwards;
            width: 680px;
            max-width: calc(100% - 40px);
            background: linear-gradient(135deg, #0a2540, #1e6091);
            border: 1px solid rgba(255,255,255,0.15);
            color: #fff;
            padding: 18px 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 9998;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.4);
            backdrop-filter: blur(20px);
            animation: slideUp 0.3s ease;
        }
        @keyframes slideUp { from { transform: translateX(-50%) translateY(30px); opacity: 0; } to { transform: translateX(-50%) translateY(0); opacity: 1; } }
        .rez-float-left { display: flex; flex-direction: column; gap: 4px; }
        .rez-float-vehicle { font-weight: 700; font-size: 14px; color: rgba(255,255,255,0.9); }
        .rez-float-detail { font-size: 12px; color: rgba(255,255,255,0.5); }
        .rez-float-total { font-size: 26px; font-weight: 800; color: var(--rez-accent, #4fc3f7); }
        @media (max-width: 768px) {
            .rez-floating-price { bottom: 15px; padding: 14px 18px; }
            .rez-float-total { font-size: 20px; }
            .rez-float-vehicle { font-size: 13px; }
        }

        .rez-whatsapp-sticky {
            position: fixed;
            bottom: 150px;
            right: 20px;
            z-index: 999;
            transition: bottom 0.3s ease;
        }
        
        .rez-whatsapp-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--rez-whatsapp);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s;
            animation: rezPulse 2s infinite;
        }
        
        .rez-whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
        }
        
        @keyframes rezPulse {
            0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
            50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
        }
        
        .rez-whatsapp-tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--rez-card);
            color: var(--rez-text);
            padding: 10px 16px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 500;
            white-space: nowrap;
            box-shadow: var(--rez-shadow);
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s;
        }
        
        .rez-whatsapp-sticky:hover .rez-whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
        }
        
        /* ===== SUCCESS ===== */
        .rez-success {
            text-align: center;
            padding: 40px 20px;
        }
        
        .rez-success-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(34, 197, 94, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .rez-success-icon i {
            font-size: 40px;
            color: var(--rez-success);
        }
        
        .rez-success-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .rez-success-text {
            color: var(--rez-muted);
            margin-bottom: 16px;
        }
        
        .rez-success-code {
            display: inline-block;
            background: linear-gradient(135deg, #0ea5e9, #06b6d4);
            padding: 18px 40px;
            border-radius: 12px;
            font-size: 26px;
            font-weight: 700;
            letter-spacing: 3px;
            color: #fff;
            margin-bottom: 8px;
        }
        
        .rez-success-note {
            font-size: 13px;
            color: var(--rez-muted);
            margin-bottom: 24px;
        }
        
        .rez-success-wa-btn {
            background: var(--rez-whatsapp);
            color: #fff;
            padding: 16px 32px;
            margin-bottom: 16px;
        }
        
        .rez-success-wa-btn:hover {
            background: #1faa59;
        }
        
        .rez-success-wa-note {
            font-size: 12px;
            color: var(--rez-muted);
            margin-bottom: 24px;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .rez-success-actions {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .rez-success-actions .rez-btn {
            flex: 0 0 auto;
        }
        
        /* ===== LOADING ===== */
        .rez-loading {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }
        
        .rez-loading i {
            font-size: 32px;
            color: var(--rez-accent);
            animation: rezSpin 1s linear infinite;
        }
        
        @keyframes rezSpin {
            to { transform: rotate(360deg); }
        }
        
        /* ===== NO DATA ===== */
        /* ===== SINGLE PAYMENT ===== */
        .rez-payment-single {
            border: 2px solid var(--rez-accent);
            border-radius: 10px;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(14, 165, 233, 0.08);
        }
        
        .rez-payment-single .rez-payment-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--rez-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #ffffff;
        }
        
        .rez-payment-single .rez-payment-label {
            font-size: 15px;
            font-weight: 600;
            color: var(--rez-text);
        }
        
        /* ===== WHATSAPP WARNING BOX ===== */
        .rez-whatsapp-warning {
            background: linear-gradient(135deg, #e8f8f0 0%, #d4f5e5 100%);
            border: 2px solid #25D366;
            border-radius: 16px;
            padding: 20px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }
        
        .rez-whatsapp-warning-icon {
            width: 56px;
            height: 56px;
            min-width: 56px;
            border-radius: 50%;
            background: #25D366;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: #fff;
            animation: rezWhatsappPulse 2s ease-in-out infinite;
        }
        
        @keyframes rezWhatsappPulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
        }
        
        .rez-whatsapp-warning-content {
            flex: 1;
        }
        
        .rez-whatsapp-warning-badge {
            display: inline-block;
            background: #ef4444;
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 4px;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }
        
        .rez-whatsapp-warning h4 {
            font-size: 16px;
            font-weight: 700;
            color: #1a5d38;
            margin-bottom: 6px;
        }
        
        .rez-whatsapp-warning p {
            font-size: 13px;
            color: #2d7a4d;
            line-height: 1.5;
            margin: 0;
        }
        
        @media (max-width: 480px) {
            .rez-whatsapp-warning {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }
        
        /* ===== PAYMENT OPTIONS ===== */
        .rez-payment-options {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }
        
        @media (max-width: 480px) {
            .rez-payment-options {
                grid-template-columns: 1fr;
            }
        }
        
        .rez-payment-option {
            border: 2px solid var(--rez-border);
            border-radius: 10px;
            padding: 16px 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.2s;
            text-align: center;
        }
        
        .rez-payment-option:hover {
            border-color: var(--rez-accent);
        }
        
        .rez-payment-option.selected {
            border-color: var(--rez-accent);
            background: rgba(14, 165, 233, 0.08);
        }
        
        .rez-payment-option input {
            display: none;
        }
        
        .rez-payment-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--rez-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--rez-muted);
            transition: all 0.2s;
        }
        
        .rez-payment-option.selected .rez-payment-icon {
            background: var(--rez-accent);
            color: #ffffff;
        }
        
        .rez-payment-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--rez-text);
        }
        
        /* ===== CHECKBOX ===== */
        .rez-checkbox-label {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            cursor: pointer;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .rez-checkbox-label input {
            display: none;
        }
        
        .rez-checkbox-box {
            width: 22px;
            height: 22px;
            min-width: 22px;
            border: 2px solid var(--rez-border);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            margin-top: 2px;
        }
        
        .rez-checkbox-box i {
            font-size: 11px;
            color: #fff;
            opacity: 0;
            transition: all 0.2s;
        }
        
        .rez-checkbox-label input:checked + .rez-checkbox-box {
            background: var(--rez-accent);
            border-color: var(--rez-accent);
        }
        
        .rez-checkbox-label input:checked + .rez-checkbox-box i {
            opacity: 1;
            color: #ffffff;
        }
        
        .rez-checkbox-label a {
            color: var(--rez-accent);
            text-decoration: underline;
        }
        
        /* ===== WHATSAPP MODAL ===== */
        .rez-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .rez-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .rez-modal {
            background: var(--rez-card);
            border-radius: 20px;
            max-width: 440px;
            width: 100%;
            padding: 32px 24px;
            text-align: center;
            transform: scale(0.9);
            transition: all 0.3s;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        
        .rez-modal-overlay.active .rez-modal {
            transform: scale(1);
        }
        
        .rez-modal-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--rez-whatsapp);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .rez-modal-icon i {
            font-size: 36px;
            color: #fff;
        }
        
        .rez-modal-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--rez-text);
        }
        
        .rez-modal-highlight {
            color: var(--rez-whatsapp);
            font-weight: 700;
        }
        
        .rez-modal-text {
            font-size: 14px;
            color: var(--rez-muted);
            margin-bottom: 24px;
            line-height: 1.6;
        }
        
        .rez-modal-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .rez-modal-btn {
            padding: 16px 24px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none;
            transition: all 0.2s;
        }
        
        .rez-modal-btn.whatsapp {
            background: var(--rez-whatsapp);
            color: #fff;
        }
        
        .rez-modal-btn.whatsapp:hover {
            background: #1faa59;
            transform: translateY(-2px);
        }
        
        .rez-modal-btn.later {
            background: var(--rez-bg);
            color: var(--rez-text);
        }
        
        .rez-modal-btn.later:hover {
            background: var(--rez-border);
        }
        
        .rez-modal-note {
            font-size: 12px;
            color: var(--rez-muted);
            margin-top: 16px;
        }
        
        .rez-no-data {
            text-align: center;
            padding: 40px 20px;
            color: var(--rez-muted);
        }
        
        .rez-no-data i {
            font-size: 48px;
            margin-bottom: 16px;
            opacity: 0.5;
        }
        
        /* ===== HIDE ON MOBILE/DESKTOP ===== */
        @media (max-width: 991px) {
            .rez-hide-mobile { display: none !important; }
        }
        
        @media (min-width: 992px) {
            .rez-hide-desktop { display: none !important; }
        }

/* ===== HIZLI BİLGİ ŞERİDİ ===== */
.rez-strip-wrap{background:#0a2540;border-bottom:1px solid rgba(255,255,255,.08);max-width:100%;overflow-x:hidden;}
.rez-strip{max-width:1400px;margin:0 auto;display:flex;align-items:center;gap:0;flex-wrap:wrap;padding:0 24px;}

.rez-strip-route{align-items:center;gap:8px;padding:11px 16px;border-right:1px solid rgba(255,255,255,.1);flex-shrink:0;}
.rez-strip-route i:first-child{color:#4ade80;font-size:13px;}
.rez-strip-from,.rez-strip-to{font-size:13px;font-weight:700;color:#fff;white-space:nowrap;}
.rez-strip-to{color:#4ade80;}
.rez-strip-field{display:flex;align-items:center;gap:8px;padding:10px 14px;border-right:1px solid rgba(255,255,255,.08);cursor:pointer;transition:background .2s;position:relative;user-select:none;}
.rez-strip-field:hover{background:rgba(255,255,255,.06);}
.rez-strip-field.rez-strip-active{background:rgba(255,255,255,.1);}
.rez-strip-field>i{color:rgba(255,255,255,.4);font-size:12px;flex-shrink:0;}
.rez-strip-field.rez-strip-active>i{color:#4ade80;}
.rez-strip-lbl{font-size:11px;color:rgba(255,255,255,.7);text-transform:uppercase;letter-spacing:.8px;display:block;margin-bottom:2px;font-weight:600;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.rez-strip-val{font-size:13px;color:#fff;font-weight:600;white-space:nowrap;display:block;}
.rez-strip-empty .rez-strip-val{color:rgba(255,255,255,.3);font-weight:400;}
.rez-strip-btn{margin-left:auto;background:#e8621a;color:#fff;border:none;border-radius:6px;padding:8px 16px;font-size:13px;font-weight:700;cursor:pointer;white-space:nowrap;transition:all .2s;display:flex;align-items:center;gap:6px;margin-right:12px;flex-shrink:0;}
.rez-strip-btn:hover{background:#d4571a;}
.rez-strip-drop{position:absolute;top:calc(100% + 4px);left:0;background:#fff;border-radius:10px;box-shadow:0 8px 30px rgba(0,0,0,.2);padding:14px;z-index:999;min-width:190px;display:none;}
.rez-strip-field.rez-strip-active .rez-strip-drop{display:block;}
.rez-strip-drop label{font-size:10px;color:#5a6672;text-transform:uppercase;letter-spacing:.8px;display:block;margin-bottom:6px;font-weight:700;}
.rez-strip-drop input,.rez-strip-drop select{width:100%;border:1px solid #dde3ea;border-radius:6px;padding:8px 10px;font-size:13px;color:#0a2540;outline:none;}
.rez-strip-drop input:focus,.rez-strip-drop select:focus{border-color:#1e6091;}
/* mobil strip override kaldirildi - asil kural asagida */

/* ===== STRIP PULSE + TOGGLE ===== */
@keyframes stripPulse {
    0%   { box-shadow: 0 8px 30px rgba(200,80,0,0.7), 0 0 0 0 rgba(255,140,50,0.6); }
    70%  { box-shadow: 0 8px 30px rgba(200,80,0,0.7), 0 0 0 28px rgba(255,140,50,0); }
    100% { box-shadow: 0 8px 30px rgba(200,80,0,0.7), 0 0 0 0 rgba(255,140,50,0); }
}
.rez-strip-wrap {
    animation: stripPulse 2s infinite;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    overflow: visible;
}

.rez-strip-wrap.rez-strip-hidden {
    max-height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}
.rez-strip-toggle-tab {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
    background: transparent;
}
.rez-strip-toggle-btn {
    background: linear-gradient(135deg, #e8621a, #e8621acc);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 10px 28px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: inherit;
    transition: background 0.2s;
    animation: toggleBounce 2s ease-in-out infinite, toggleTabPulse 2s infinite;
    white-space: nowrap;
}
@keyframes toggleBounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}
@keyframes toggleTabPulse {
    0%   { box-shadow: 0 6px 20px rgba(200,80,0,0.6), 0 0 0 0 rgba(255,140,50,0.5); }
    70%  { box-shadow: 0 6px 20px rgba(200,80,0,0.6), 0 0 0 16px rgba(255,140,50,0); }
    100% { box-shadow: 0 6px 20px rgba(200,80,0,0.6), 0 0 0 0 rgba(255,140,50,0); }
}
.rez-strip-toggle-btn:hover { background: #d4571a; }
.rez-strip-toggle-btn i { font-size: 14px; transition: transform 0.3s; }
.rez-strip-toggle-btn.rez-strip-btn-closed i { transform: rotate(180deg); }
@media (max-width: 768px) {
    .rez-strip-wrap { display: block !important; overflow: visible; position: relative; z-index: 100; }
    .rez-strip-wrap.rez-strip-hidden { display: none !important; }
    .rez-strip-toggle-tab { 
        display: block !important; 
        text-align: center;
    }
    .rez-strip-toggle-btn {
        display: inline-flex !important;
        width: 70%;
        justify-content: center;
        border-radius: 0 0 10px 10px;
    }
    .rez-strip {
        padding: 0 8px;
        gap: 0;
        flex-wrap: wrap;
    }
    /* Satir 1: Rota tam genislik, ortali */
    .rez-strip-route {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 0;
        font-size: 16px;
        padding: 12px 12px;
        border-bottom: 1px solid rgba(255,255,255,.12);
        border-right: none !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    .rez-strip-route .rez-strip-from,
    .rez-strip-route .rez-strip-to {
        max-width: 44%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: inline-block;
        font-size: 16px;
        font-weight: 700;
    }
    /* Satir 2-3: Alan genislikleri + siralama */
    .rez-strip-field {
        min-width: 0;
        padding: 6px 8px;
        font-size: 15px;
        border-right: none;
        border-bottom: none;
        border-left: none;
    }
    /* Ust satir: Yon + Tarih + Saat */
    .rez-strip-field:nth-of-type(1) { flex: 1 1 30%; min-width: 0; order: 1; border-left: none; }
    .rez-strip-field:nth-of-type(2) { flex: 1 1 38%; min-width: 0; order: 2; }
    .rez-strip-field:nth-of-type(3) { flex: 1 1 25%; min-width: 0; order: 3; border-right: none; }
    /* Alt satir: Yolcu + Donus */
    .rez-strip-field:nth-of-type(4) { flex: 0 0 35%; order: 5; border-left: none; }
    #rezStripReturn { flex: 0 0 65% !important; order: 6 !important; border-top: 1px solid rgba(255,255,255,.08); border-right: none; }
    .rez-strip .rez-strip-field { border-right: none !important; border-left: none !important; }
    .rez-strip-field.rez-strip-warn { animation: none !important; border: none !important; }
    .rez-strip-field.rez-strip-empty { background: rgba(239,68,68,0.06); }
    /* Guncelle butonu en altta */
    .rez-strip-btn { order: 7 !important; }
    .rez-strip-field:last-of-type { border-right: none; }
    .rez-strip-field label { font-size: 11px; }
    .rez-strip-field .rez-strip-val {
        max-width: none;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: block;
        font-size: 14px;
    }
    /* Guncelle butonu dar, ortali, mavi */
    .rez-strip-btn {
        flex: 0 0 auto !important;
        width: 60%;
        margin: 8px auto;
        border-radius: 8px;
        padding: 10px 20px;
        font-size: 13px;
        background: #2980b9;
        display: flex;
        justify-content: center;
    }
    .rez-strip-btn:hover { background: #2471a3; }
    .rez-strip-btn.rez-strip-btn-done {
        background: #16a34a !important;
    }
    /* Dropdown: strip altinda tam genislik, guzel tasarim */
    .rez-strip-field { overflow: visible !important; position: static !important; }
    .rez-strip { position: relative !important; }
    .rez-strip-drop {
        position: absolute !important;
        top: 100% !important;
        bottom: auto !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 99999 !important;
        max-height: none;
        overflow-y: auto;
        border-radius: 0 0 12px 12px !important;
        padding: 16px 20px !important;
        background: linear-gradient(135deg, #0f3460, #16537e) !important;
        box-shadow: 0 8px 30px rgba(0,0,0,.4) !important;
        border-top: 2px solid #e8621a !important;
    }
    .rez-strip-drop label {
        color: rgba(255,255,255,.7) !important;
        font-size: 11px !important;
        letter-spacing: 1px !important;
        margin-bottom: 8px !important;
    }
    .rez-strip-drop input,
    .rez-strip-drop select {
        width: 100% !important;
        background: rgba(255,255,255,.12) !important;
        border: 1px solid rgba(255,255,255,.25) !important;
        border-radius: 8px !important;
        padding: 12px 14px !important;
        font-size: 15px !important;
        color: #fff !important;
        -webkit-appearance: none !important;
        appearance: none !important;
    }
    .rez-strip-drop input:focus,
    .rez-strip-drop select:focus {
        border-color: #e8621a !important;
        outline: none !important;
        background: rgba(255,255,255,.18) !important;
    }
    .rez-strip-drop select option {
        background: #0f3460;
        color: #fff;
    }
    /* Tarih/saat input tasma duzeltmesi */
    .rez-strip-drop input[type="date"],
    .rez-strip-drop input[type="time"] {
        max-width: 100% !important;
        box-sizing: border-box !important;
        -webkit-appearance: none !important;
        color-scheme: dark !important;
    }
    .rez-strip-wrap {
        overflow: visible !important;
        position: relative !important;
        z-index: 9999 !important;
    }
    .rez-strip {
        overflow: visible !important;
    }
}

/* ===== EKSIK ALAN UYARI ===== */
@keyframes stripFieldWarn {
    0%,100% { border-color: rgba(239,68,68,0.3); background: transparent; }
    50% { border-color: rgba(239,68,68,0.8); background: rgba(239,68,68,0.08); }
}
.rez-strip-field.rez-strip-warn {
    animation: stripFieldWarn 1.5s ease-in-out 3;
    border-right: 2px solid rgba(239,68,68,0.6) !important;
    border-radius: 4px;
}
.rez-strip-field.rez-strip-warn > i { color: #ef4444 !important; }
.rez-strip-field.rez-strip-warn .rez-strip-val { color: #fca5a5 !important; }
@media (max-width: 768px) {
    @keyframes stripFieldWarn { 0%,50%,100% { border-color: transparent; background: transparent; } }
    .rez-strip-field.rez-strip-warn { animation: none !important; border: none !important; }
}

/* ===== STRIP ALAN DURUM IKONLARI ===== */
.rez-strip-field .rez-strip-status {
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 8px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-left: 4px;
    margin-right: 6px;
}
.rez-strip-field.rez-strip-empty .rez-strip-status {
    background: #ef4444;
    color: #fff;
    animation: statusPulse 2s ease-in-out infinite;
}
.rez-strip-field:not(.rez-strip-empty) .rez-strip-status {
    background: #22c55e;
    color: #fff;
    animation: none;
}
@keyframes statusPulse {
    0%,100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* ===== STRIP CONTAINER STICKY ===== */
.rez-strip-container {
    position: sticky;
    top: 0;
    z-index: 990;
}

/* Dropdown secili deger gosterimi */
.rez-strip-drop-current {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    padding: 8px 0 12px;
    border-bottom: 1px solid rgba(255,255,255,.15);
    margin-bottom: 12px;
}

/* MOBIL STRIP EFEKTLER */
@media (max-width: 768px) {
    .rez-strip-field,
    .rez-strip-field.rez-strip-empty,
    .rez-strip-field.rez-strip-warn,
    .rez-strip-field.rez-strip-active,
    .rez-strip .rez-strip-field {
        border: none !important;
        outline: none !important;
    }
    .rez-strip-field.rez-strip-warn {
        animation: stripFieldGlow 2s ease-in-out 3 !important;
    }
    @keyframes stripFieldGlow {
        0%,100% { background: transparent; box-shadow: none; }
        50% { background: rgba(239,68,68,0.12); box-shadow: inset 0 0 12px rgba(239,68,68,0.15); }
    }
}



/* Firma Adi - Header Logo Text */
.rez-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    margin-left: 8px;
    letter-spacing: 0.3px;
}
@media (max-width: 768px) {
    .rez-logo-text {
        font-size: 16px;
        margin-left: 6px;
    }
}

/* Fiyat degisim parlama efekti */
@keyframes rezPriceFlash {
    0% { background: transparent; }
    20% { background: #ff7800; }
    100% { background: transparent; }
}
.rez-float-total.rez-price-flash {
    animation: rezPriceFlash 1.2s ease;
    border-radius: 8px;
}

/* Dil bazli mobil strip font ayarlari */
@media (max-width: 768px) {
    html[lang="en"] .rez-strip-lbl,
    html[lang="de"] .rez-strip-lbl,
    html[lang="ru"] .rez-strip-lbl {
        font-size: 9px;
        letter-spacing: 0.3px;
    }
    html[lang="en"] .rez-strip-val,
    html[lang="de"] .rez-strip-val,
    html[lang="ru"] .rez-strip-val {
        font-size: 12px;
    }
    html[lang="ru"] .rez-strip-lbl {
        font-size: 8px;
        letter-spacing: 0.2px;
    }
    html[lang="ru"] .rez-strip-val {
        font-size: 11px;
    }
    html[lang="en"] .rez-strip-toggle-btn,
    html[lang="de"] .rez-strip-toggle-btn,
    html[lang="ru"] .rez-strip-toggle-btn {
        font-size: 13px;
        padding: 8px 20px;
    }
    html[lang="en"] .rez-strip-btn,
    html[lang="de"] .rez-strip-btn,
    html[lang="ru"] .rez-strip-btn {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* Strip Nereden/Nereye Girisi */
.rez-strip-location {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    flex-direction: row;
}
.rez-strip-loc-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    padding: 10px 14px;
    transition: border-color 0.3s;
}
.rez-strip-loc-field:focus-within {
    border-color: rgba(255,255,255,.35);
    background: rgba(255,255,255,.14);
}
.rez-strip-loc-field i {
    font-size: 16px;
    color: #22c55e;
    flex-shrink: 0;
}
.rez-strip-loc-field:last-of-type i {
    color: #e8621a;
}
.rez-strip-loc-input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    width: 100%;
}
.rez-strip-loc-input::placeholder {
    color: rgba(255,255,255,.5);
    font-weight: 500;
    font-size: 14px;
}
.rez-strip-loc-arrow {
    color: #e8621a;
    font-size: 14px;
    flex-shrink: 0;
}
.rez-map-summary { display: none !important; }
.rez-strip-route { cursor: pointer; }
.rez-strip-route:hover { background: rgba(255,255,255,.04); border-radius: 6px; }
@media (max-width: 768px) {
    .rez-strip-location {
        flex-direction: column;
        gap: 6px;
        padding: 10px 10px;
    }
    .rez-strip-loc-field {
        padding: 10px 12px;
        width: 100%;
        box-sizing: border-box;
    }
    .rez-strip-loc-field i { font-size: 14px; }
    .rez-strip-loc-input { font-size: 14px; }
    .rez-strip-loc-input::placeholder { font-size: 13px; }
    .rez-strip-loc-arrow { transform: rotate(90deg); font-size: 12px; }
    .rez-strip-route { flex-wrap: wrap; justify-content: center; }
}
/* Google Places Autocomplete dropdown */
.pac-container { z-index: 99999 !important; min-width: 280px !important; }
@media (max-width: 768px) {
    .pac-container { width: calc(100vw - 20px) !important; left: 10px !important; }
}
