/* =========================================== */
/* HİZET KARTI KODU - ORJİNAL YAPISI KORUNMUŞ */
/* =========================================== */

/* === TEMEL DEĞİŞKENLER === */
:root {
  --uad-primary: #0099B5;
  --uad-secondary: #1EB53A;
  --uad-accent: #0099b5;
  --uad-whatsapp: #25D366;
  --uad-whatsapp-dark: #128C7E;
  --uad-success: #10b981;
  --uad-error: #dc2626;
  --uad-white: #ffffff;
  --uad-black: #111827;
  --uad-gray-100: #f8fafc;
  --uad-gray-200: #e5e7eb;
  --uad-gray-300: #d1d5db;
  --uad-gray-600: #6b7280;
  --uad-shadow: 0 10px 25px rgba(0,0,0,0.1);
  --uad-shadow-hover: 0 15px 35px rgba(0,0,0,0.15);
}

/* === ORJİNAL YAPIYI KORU - SADECE DÜZENLE === */

/* HİZMET SEÇİM SAYFASI */
.service-selection-container {
    max-width: 900px;
    margin: 20px auto;
    padding: 0 15px;
}

.service-selection-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 20px;
    background: linear-gradient(135deg, var(--uad-primary) 0%, var(--uad-secondary) 100%);
    border-radius: 24px;
    color: var(--uad-white);
    box-shadow: var(--uad-shadow);
}

.service-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
}

.service-selection-header h1 {
    font-size: 28px;
    font-weight: 900;
    margin: 0 0 10px;
    line-height: 1.2;
}

.service-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

/* =========================================
   QUICK HUB — BAŞLIK
   ========================================= */
.uad-quick-header {
    text-align: center;
    padding: 16px 16px 8px;
    animation: uad-fadein-up .35s ease both;
}
.uad-quick-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--uad-black);
    margin: 0 0 6px;
    line-height: 1.2;
    letter-spacing: -.3px;
}
.uad-quick-sub {
    font-size: 13px;
    color: var(--uad-gray-600);
    margin: 0;
    line-height: 1.5;
}

/* =========================================
   SATIŞ KARTLARI — MODERN
   ========================================= */
.sales-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 8px 16px 20px;
    margin-bottom: 0;
}

.sales-card {
    background: var(--uad-white);
    border: 1.5px solid var(--uad-gray-200);
    border-radius: 16px;
    padding: 16px 12px 14px;
    text-align: center;
    text-decoration: none;
    color: var(--uad-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    position: relative;
    overflow: hidden;
    animation: uad-fadein-up .38s ease both;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.sales-card:hover {
    border-color: rgba(0, 153, 181,.30);
    box-shadow: 0 8px 24px rgba(0, 153, 181,.10);
    transform: translateY(-3px);
}
.sales-card:active { transform: translateY(0) scale(.97); }

.sales-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #0099b5;
    border-radius: 3px 3px 0 0;
    opacity: 0;
    transition: opacity .2s ease;
}
.sales-card:hover::before { opacity: 1; }

.sales-card__icon-wrap {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 153, 181,.05);
    border-radius: 14px;
    transition: background .2s ease, transform .2s ease;
}
.sales-card:hover .sales-card__icon-wrap {
    background: rgba(0, 153, 181,.09);
    transform: scale(1.06);
}
.sales-card img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}
.sales-card h3 {
    font-size: 13px;
    font-weight: 800;
    margin: 0;
    color: var(--uad-black);
    line-height: 1.3;
    letter-spacing: -.1px;
}
.sales-card p {
    font-size: 11px;
    color: var(--uad-gray-600);
    margin: 0;
    line-height: 1.4;
}

/* ARA/CALL KARTI — flat yeşil */
.sales-card--call {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}
.sales-card--call:hover {
    background: #1da851;
    border-color: #1da851;
    box-shadow: 0 8px 24px rgba(37,211,102,.28);
    transform: translateY(-3px);
}
.sales-card--call .sales-card__icon-wrap { background: rgba(255,255,255,.18); }
.sales-card--call:hover .sales-card__icon-wrap { background: rgba(255,255,255,.25); }
.sales-card--call::before { background: rgba(255,255,255,.4); }
.sales-card--call h3,
.sales-card--call p { color: #fff; }
.call-emoji { font-size: 28px; line-height: 1; }

@keyframes uad-fadein-up {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media(min-width:480px) { .sales-grid { grid-template-columns: repeat(3,1fr); } }

@media(min-width:768px) {
    .sales-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* FOOTER */
.service-footer {
    background: var(--uad-gray-100);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    border: 1px solid var(--uad-gray-200);
    margin-top: 30px;
}

.service-note {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
}

.service-note strong {
    color: var(--uad-primary);
    font-weight: 700;
}

/* === HİZMET FORMLARI === */
.service-form-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 0 15px;
    animation: fadeIn 0.4s ease;
}

.service-form-header {
    margin-bottom: 30px;
    position: relative;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--uad-gray-600);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 16px;
    padding: 10px 16px;
    min-height: 44px;
    border-radius: 10px;
    background: var(--uad-gray-100);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    border: 1px solid var(--uad-gray-200);
}

.back-button:hover {
    background: var(--uad-gray-200);
    color: var(--uad-black);
    transform: translateX(-3px);
}

.service-title {
    text-align: center;
    padding: 22px 20px;
    background: #fafbfc;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--uad-white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    padding: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border: 2px solid #e2e8f0;
}

.service-icon img {
    width: 70px;
    height: 70px;
}

.service-title h1 {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 8px;
    color: var(--uad-black);
    line-height: 1.3;
}

.service-description {
    font-size: 14px;
    color: var(--uad-gray-600);
    margin: 0;
    line-height: 1.5;
}

.service-form-content {
    background: var(--uad-white);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--uad-gray-200);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* FORM ELEMANLARI */
.form-section {
    margin-bottom: 25px;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--uad-black);
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--uad-gray-100);
}

.flight-route {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.route-input {
    flex: 1;
}

.route-arrow {
    font-size: 24px;
    color: var(--uad-primary);
    font-weight: 700;
    padding-bottom: 10px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.half {
    flex: 1;
}

/* INPUT STİLLERİ */
input, select, textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--uad-gray-200);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    min-height: 44px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: var(--uad-white);
    box-sizing: border-box;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #0099b5;
    box-shadow: 0 0 0 4px rgba(0, 153, 181, 0.12);
}

.airport-input {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.pnr-input {
    font-family: monospace;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* WEIGHT OPTIONS */
.weight-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.weight-option {
    position: relative;
}

.weight-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.weight-option label {
    display: block;
    padding: 18px 15px;
    background: var(--uad-gray-100);
    border: 2px solid var(--uad-gray-200);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.weight-option input:checked + label {
    background: var(--uad-primary);
    border-color: var(--uad-primary);
    color: var(--uad-white);
    transform: scale(1.02);
}

.weight-option label:hover {
    border-color: var(--uad-primary);
    background: var(--uad-gray-200);
}

.weight-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.weight-price {
    display: block;
    font-size: 14px;
    color: var(--uad-gray-600);
}

.weight-option input:checked + label .weight-price {
    color: rgba(255,255,255,0.9);
}

/* CHECKBOX GROUP */
.checkbox-group {
    display: grid;
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--uad-gray-100);
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s;
    border: 1px solid transparent;
}

.checkbox-item:hover {
    background: var(--uad-gray-200);
}

.checkbox-item input[type="checkbox"]:checked + span {
    color: var(--uad-primary);
    font-weight: 600;
}

/* BUTTON */
.submit-button-large {
    background: #25D366;
    color: var(--uad-white);
    border: none;
    padding: 20px 40px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.28);
}

.submit-button-large:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.36);
}

.submit-button-large:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.20);
}

/* Submit yüklenme durumu */
.submit-button-large.is-loading,
.uad-submit.is-loading {
    pointer-events: none;
    opacity: .85;
    position: relative;
}
.submit-button-large.is-loading .button-text,
.uad-submit.is-loading .uad-submit-text {
    opacity: 0;
}
.submit-button-large.is-loading::after,
.uad-submit.is-loading::after {
    content: '';
    position: absolute;
    width: 20px; height: 20px;
    border: 3px solid rgba(255,255,255,.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: uad-btn-spin .7s linear infinite;
}
@keyframes uad-btn-spin { to { transform: rotate(360deg); } }

.button-icon {
    font-size: 22px;
}

.form-note {
    text-align: center;
    font-size: 14px;
    color: var(--uad-gray-600);
    margin: 15px 0 0;
    line-height: 1.5;
}

/* ALERTS */
.alert-error {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: var(--uad-error);
    padding: 18px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-size: 15px;
    font-weight: 500;
}

.alert-loading {
    background: #d1fae5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    padding: 18px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--uad-success);
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.field-error {
    font-size: 13px;
    color: var(--uad-error);
    margin-top: 8px;
    padding: 8px 12px;
    background: #fef2f2;
    border-radius: 8px;
}

/* SUGGESTIONS */
.suggestions {
    position: absolute;
    background: var(--uad-white);
    border: 1px solid var(--uad-gray-200);
    border-radius: 10px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    width: 100%;
    margin-top: 2px;
    display: none;
}

.suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--uad-gray-100);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.suggestion-item:hover {
    background: var(--uad-gray-100);
}

.suggestion-code {
    font-weight: 700;
    color: var(--uad-primary);
    font-size: 15px;
}

.suggestion-name {
    color: var(--uad-gray-600);
    font-size: 13px;
}

/* === UAD COMPONENTLERİ === */

/* UAD_MARQUEE_BAR - ORJİNAL YAPI KORUNDU */
.uad-marquee {
    position: relative;
    width: min(980px, calc(100% - 24px));
    margin: 12px auto 14px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(0, 153, 181,.14);
    box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

.uad-marquee__viewport {
    width: 100%;
    overflow: hidden;
}

.uad-marquee__track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: uad-marquee-scroll 34s linear infinite;
}

.uad-marquee:hover .uad-marquee__track {
    animation-play-state: paused;
}

.uad-marquee__set {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    white-space: nowrap;
}

.uad-pill {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 12.5px;
    letter-spacing: .2px;
    color: var(--uad-secondary);
    background: rgba(0, 153, 181,.08);
    border: 1px solid rgba(0, 153, 181,.12);
}

.uad-msg {
    font-size: 13.5px;
    font-weight: 650;
    color: rgba(28,28,28,.82);
}

.uad-sep {
    color: rgba(0, 153, 181,.35);
    font-weight: 900;
    padding: 0 2px;
}

.uad-marquee__fade {
    position: absolute;
    top: 0; bottom: 0;
    width: 44px;
    pointer-events: none;
    z-index: 2;
}

.uad-marquee__fade--left {
    left: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,0));
}

.uad-marquee__fade--right {
    right: 0;
    background: linear-gradient(270deg, rgba(255,255,255,.95), rgba(255,255,255,0));
}

@keyframes uad-marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* UAD_TIPBAR - ORJİNAL YAPI KORUNDU */
.uad-tipbar {
    margin: 10px 12px 14px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(0, 153, 181,.22) !important;
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.80)) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,.10) !important;
    overflow: hidden !important;
}

.uad-tipbar__viewport {
    overflow: hidden !important;
}

.uad-tipbar__track {
    display: inline-flex !important;
    align-items: center !important;
    gap: 26px !important;
    white-space: nowrap !important;
    padding: 12px 16px !important;
    animation: uad-tipbar-scroll 18s linear infinite !important;
    will-change: transform !important;
}

.uad-tipbar__item {
    font-family: Georgia, "Times New Roman", Times, serif !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    letter-spacing: -0.25px !important;
    color: var(--uad-secondary) !important;
    background: linear-gradient(180deg, var(--uad-primary) 0%, var(--uad-secondary) 80%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: 0 1px 0 rgba(255,255,255,.95),
                 0 0 1px rgba(0,0,0,.22),
                 0 8px 22px rgba(0, 153, 181,.18) !important;
}

/* =========================================
   BAGGAGE ADD PAGE — TAM STİL
   ========================================= */
.uad-baggage-add-page {
    background: var(--uad-white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.uad-baggage-add-page .uad-baggage-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 12px 16px 32px;
}

/* Header */
.uad-baggage-header {
    padding: 12px 0 18px;
}
.uad-baggage-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--uad-gray-600);
    text-decoration: none;
    padding: 8px 14px;
    min-height: 44px;
    border-radius: 10px;
    background: var(--uad-gray-100);
    border: 1px solid var(--uad-gray-200);
    margin-bottom: 14px;
    transition: background .2s ease;
}
.uad-baggage-back:hover { background: var(--uad-gray-200); color: var(--uad-black); }
.uad-baggage-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--uad-black);
    margin: 0 0 6px;
    line-height: 1.25;
}
.uad-baggage-subtitle {
    font-size: 13px;
    color: var(--uad-gray-600);
    margin: 0;
    line-height: 1.5;
}

/* Bölüm */
.uad-baggage-section {
    margin-bottom: 20px;
}
.uad-baggage-h2 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #0099b5;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 153, 181,.10);
}

/* Arama kutusu */
.uad-logo-search {
    width: 100%;
    padding: 11px 14px;
    min-height: 44px;
    border: 2px solid var(--uad-gray-200);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    box-sizing: border-box;
    transition: border-color .2s ease, box-shadow .2s ease;
    margin-bottom: 12px;
}
.uad-logo-search:focus {
    outline: none;
    border-color: #0099b5;
    box-shadow: 0 0 0 4px rgba(0, 153, 181,.10);
}

/* Logo grid */
.uad-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
}
.uad-logo-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 11px;
    min-height: 52px;
    border: 1.5px solid var(--uad-gray-200);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    text-align: left;
    transition: border-color .18s ease, box-shadow .18s ease, transform .15s ease, background .18s ease;
    font-family: inherit;
}
.uad-logo-item:hover {
    border-color: rgba(0, 153, 181,.35);
    box-shadow: 0 3px 12px rgba(0, 153, 181,.09);
    background: rgba(0, 153, 181,.025);
}
.uad-logo-item.is-selected {
    border-color: #0099b5;
    background: rgba(0, 153, 181,.06);
    box-shadow: 0 0 0 3px rgba(0, 153, 181,.12);
}
.uad-logo-item.uad-press,
.uad-logo-item.uad-tap {
    transform: scale(.95);
    opacity: .85;
}
.uad-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    object-fit: contain;
    border: 1px solid rgba(0,0,0,.07);
    background: #f5f5f5;
    flex-shrink: 0;
}
.uad-logo-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--uad-black);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90px;
}
.uad-logo-sub {
    display: block;
    font-size: 10px;
    color: var(--uad-gray-600);
    font-weight: 500;
    margin-top: 1px;
}
.uad-logo-empty {
    font-size: 13px;
    color: var(--uad-gray-600);
    text-align: center;
    padding: 16px 0;
}
.uad-help {
    font-size: 12px;
    color: var(--uad-gray-600);
    margin-top: 10px;
    font-style: italic;
}

/* Form field wrapper */
.uad-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.uad-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--uad-black);
    line-height: 1.4;
}
.uad-hint {
    font-size: 11px;
    color: var(--uad-gray-600);
    margin-top: 4px;
    line-height: 1.4;
}

/* Form ready state (gösterilir airline seçilince) */
.uad-baggage-form {
    transition: opacity .3s ease, transform .3s ease;
}
.uad-baggage-form:not(.is-ready) {
    opacity: .45;
    pointer-events: none;
    transform: translateY(4px);
}
.uad-baggage-form.is-ready {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Alert */
.uad-alert { border-radius: 10px; padding: 12px 14px; font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.uad-alert-error { background: rgba(220,38,38,.08); border: 1px solid rgba(220,38,38,.25); color: #dc2626; }

/* Loading section (HTML) */
.uad-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 0;
}
.uad-loading-icon { width: 64px; height: 64px; animation: uad-bag-spin 1.5s linear infinite; }
@keyframes uad-bag-spin { to { transform: rotate(360deg); } }
.uad-loading-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--uad-gray-600);
}

/* Result wrap (HTML static) */
.uad-result-wrap { margin-top: 16px; animation: uad-bag-fadein .35s ease; }
@keyframes uad-bag-fadein { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
.uad-result-card {
    background: #fff;
    border: 1px solid var(--uad-gray-200);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 4px 18px rgba(0,0,0,.06);
}
.uad-result-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--uad-black);
    margin: 0 0 10px;
    line-height: 1.3;
}
.uad-result-body {
    font-size: 13px;
    color: #374151;
    line-height: 1.6;
}
.uad-rline {
    padding: 4px 0;
    border-bottom: 1px solid var(--uad-gray-200);
    font-size: 13px;
    line-height: 1.5;
}
.uad-rline:last-child { border-bottom: none; }
.uad-after-text {
    font-size: 13px;
    color: var(--uad-gray-600);
    margin: 14px 0 0;
    line-height: 1.55;
    padding: 12px;
    background: rgba(0, 153, 181,.04);
    border-radius: 10px;
    border-left: 3px solid #0099b5;
}

/* === JS TARAFINDAN OLUŞTURULAN ELEMANLAR === */

/* Loading overlay (full-screen) */
.uad-loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 19999;
    background: rgba(0,0,0,.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
.uad-loading-overlay.is-on {
    opacity: 1;
    pointer-events: auto;
}
.uad-loading-overlay .uad-loading-icon {
    width: 72px;
    height: 72px;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,.35));
}

/* Toast */
.uad-toast {
    position: fixed;
    bottom: 88px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    z-index: 20000;
    background: rgba(26,10,14,.92);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 50px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    font-family: 'Inter', -apple-system, sans-serif;
    max-width: calc(100vw - 32px);
    text-align: center;
    box-shadow: 0 8px 28px rgba(0,0,0,.28);
}
.uad-toast.is-on {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Result sheet (bottom sheet) */
.uad-result-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 18000;
    background: #fff;
    border-radius: 22px 22px 0 0;
    padding: 20px 18px 32px;
    box-shadow: 0 -8px 40px rgba(0,0,0,.18);
    transform: translateY(100%);
    transition: transform .35s cubic-bezier(.32,1,.48,1);
    max-height: 80vh;
    overflow-y: auto;
}
.uad-result-sheet.is-on {
    transform: translateY(0);
}
.uad-result-sheet .uad-result-title {
    font-size: 17px;
    font-weight: 900;
    color: var(--uad-black);
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--uad-gray-200);
}
.uad-result-sheet .uad-wa-btn {
    margin-top: 16px;
}

/* Baggage form elemanları orjinal yapıda kaldı */

/* RESPONSIVE DÜZENLEMELER */
@media (max-width: 768px) {
    .service-selection-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card-large {
        padding: 25px 20px;
    }
    
    .service-form-content {
        padding: 25px 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 25px;
    }
    
    .flight-route {
        flex-direction: column;
        gap: 15px;
    }
    
    .route-arrow {
        transform: rotate(90deg);
        padding: 0;
    }
    
    .weight-options {
        grid-template-columns: 1fr;
    }
    
    .uad-marquee {
        margin: 10px auto 12px;
        border-radius: 14px;
    }
    
    .uad-marquee__set {
        padding: 9px 12px;
        gap: 9px;
    }
    
    .uad-tipbar__track {
        padding: 12px 14px !important;
        gap: 22px !important;
    }
    
    .uad-tipbar__item {
        font-size: 20px !important;
    }
}

@media (max-width: 480px) {
    .service-selection-header {
        padding: 25px 15px;
    }
    
    .service-title {
        padding: 20px 15px;
    }
    
    input, select, textarea {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .submit-button-large {
        padding: 18px 30px;
        font-size: 17px;
    }
    
    .sales-card {
        padding: 15px 13px;
        border-radius: 16px;
    }
    
    .sales-card img {
        width: 90px;
        height: 90px;
    }
    
    .sales-card h3 {
        font-size: 16.5px;
    }
    
    .sales-card p {
        font-size: 12.8px;
    }
    
    .uad-tipbar__item {
        font-size: 18px !important;
    }
}

/* ANIMATIONS - ORJİNAL KALDI */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* PERFORMANS İYİLEŞTİRMELERİ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .sales-card,
    .submit-button-large,
    .back-button {
        transition: none !important;
    }
    
    .uad-marquee__track,
    .uad-tipbar__track {
        animation: none !important;
    }
}

/* YAZDIRMA DESTEĞİ */
@media print {
    .sales-card,
    .submit-button-large,
    .uad-marquee,
    .uad-tipbar {
        display: none !important;
    }
    
    .service-form-content {
        box-shadow: none !important;
        border: 1px solid #000 !important;
    }
}

/* =========================================
   FORM LABEL LINE-HEIGHT
   ========================================= */
.form-section label,
.uad-label,
.uad-field > span {
    display: block;
    margin-bottom: 8px;
    line-height: 1.4;
    font-weight: 600;
    font-size: 14px;
}

/* =========================================
   UAD-SUBMIT (bagaj sayfası butonu)
   ========================================= */
.uad-submit {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 52px;
    padding: 14px 24px;
    margin-top: 14px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(37,211,102,.28);
    -webkit-transition: background .2s ease, -webkit-transform .15s ease;
    transition: background .2s ease, transform .15s ease;
}
.uad-submit:hover  { background: #1da851; -webkit-transform: translateY(-1px); transform: translateY(-1px); }
.uad-submit:active { -webkit-transform: translateY(0); transform: translateY(0); }

/* =========================================
   UAD-WA-BTN (bagaj sonuç WA butonu)
   ========================================= */
.uad-wa-btn {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 52px;
    padding: 14px 24px;
    margin-top: 14px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-shadow: 0 4px 16px rgba(37,211,102,.28);
    -webkit-transition: background .2s ease, -webkit-transform .15s ease;
    transition: background .2s ease, transform .15s ease;
}
.uad-wa-btn:hover  { background: #1da851; -webkit-transform: translateY(-1px); transform: translateY(-1px); }
.uad-wa-btn:active { -webkit-transform: translateY(0); transform: translateY(0); }
.uad-wa-btn::before { content: "💬 "; }

/* =========================================
   SÜREÇ AKIŞI (Step-by-step flow)
   ========================================= */
.uad-steps {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 0;
    padding: 16px 4px 20px;
    margin-bottom: 4px;
}
.uad-step {
    -webkit-flex: 1;
    flex: 1;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    text-align: center;
    position: relative;
}
.uad-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 17px;
    left: calc(50% + 20px);
    right: calc(-50% + 20px);
    height: 2px;
    background: rgba(0, 153, 181,.14);
    border-radius: 1px;
}
.uad-step__num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #0099b5;
    color: #fff;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 7px;
    position: relative;
    z-index: 1;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 153, 181,.22);
}
.uad-step__label {
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    line-height: 1.35;
    max-width: 72px;
    padding: 0 4px;
}

/* =========================================
   ORTAK ANİMASYONLAR — tüm hizmet sayfaları
   ========================================= */

/* Sayfa giriş */
.service-form-container,
.uad-baggage-container,
.ntx-card {
    animation: uad-fadein-up .38s ease both;
}

/* Hata kutusu shake */
.alert-error.is-shake,
.uad-alert-error.is-shake,
.field-error.is-shake {
    animation: uad-shake .4s ease;
}
@keyframes uad-shake {
    0%,100% { transform: translateX(0); }
    20%      { transform: translateX(-6px); }
    40%      { transform: translateX(6px); }
    60%      { transform: translateX(-4px); }
    80%      { transform: translateX(4px); }
}

/* Başarı mesajı */
.uad-success-msg {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(37,211,102,.09);
    border: 1px solid rgba(37,211,102,.28);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #15803d;
    margin-top: 14px;
    animation: uad-fadein-up .3s ease both;
}
.uad-success-msg::before {
    content: '✓';
    width: 26px; height: 26px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Input focus micro-lift — tüm form sayfalarında */
.service-form-content input:focus,
.service-form-content select:focus,
.service-form-content textarea:focus,
.uad-baggage-form input:focus,
.uad-baggage-form select:focus,
.uad-baggage-form textarea:focus {
    transform: translateY(-1px);
    transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease;
}

/* Mobil: form-row → tek sütun (küçük ekran taşma düzeltmesi) */
@media (max-width: 400px) {
    .form-row {
        flex-direction: column !important;
        gap: 0 !important;
    }
}