/* ─────────────────────────────────────────────────
   Speedy VIP Transfer — Frontend CSS v1.0.8 (Neumorphism Matte)
───────────────────────────────────────────────── */

/* Reset & base */
.svt-wrapper, .svt-wrapper * { box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif; }

.svt-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px;
    background: #eef2f6; /* Soft blue-ish white */
    border-radius: 30px;
    box-shadow: 4px 4px 10px rgba(163, 177, 198, 0.3), -4px -4px 10px rgba(255, 255, 255, 0.4);
}

/* ── Adım çubuğu ─────────────────────────────── */
.svt-steps { display: flex; align-items: center; justify-content: center; margin-bottom: 40px; gap: 0; }
.svt-step { display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0.5; transition: all 0.3s; }
.svt-step--active, .svt-step--done { opacity: 1; }

.svt-step__num {
    width: 44px; height: 44px; border-radius: 50%;
    background: #eef2f6; color: #1a1a2e; font-size: 16px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 3px 3px 8px rgba(163, 177, 198, 0.3), -3px -3px 8px rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}
.svt-step--active .svt-step__num { background: #00c6ff; color: #fff; box-shadow: inset 1px 1px 3px rgba(0,0,0,0.1); }
.svt-step--done .svt-step__num { background: #1a1a2e; color: #fff; box-shadow: inset 1px 1px 3px rgba(0,0,0,0.2); }
.svt-step__label { font-size: 12px; font-weight: 600; color: #1a1a2e; text-transform: uppercase; }
.svt-step-line { flex: 1; height: 4px; background: #eef2f6; border-radius: 4px; margin: 0 12px; margin-bottom: 25px; max-width: 80px; box-shadow: inset 1px 1px 2px rgba(163, 177, 198, 0.3), inset -1px -1px 2px rgba(255, 255, 255, 0.5); }

/* ── Panel & Kart ────────────────────────────── */
.svt-panel { display: none; }
.svt-panel--active { display: block; animation: svtFadeIn 0.4s ease; }
@keyframes svtFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.svt-card { background: #eef2f6; border-radius: 24px; padding: 24px; margin-bottom: 16px; box-shadow: 3px 3px 8px rgba(163, 177, 198, 0.3), -3px -3px 8px rgba(255, 255, 255, 0.5); }
.svt-card__title { font-size: 20px; font-weight: 800; letter-spacing: 1.5px; color: #1a1a2e; text-transform: uppercase; margin: 0 0 12px; }
.svt-card__divider { height: 2px; border-radius: 2px; margin-bottom: 24px; background: #eef2f6; box-shadow: inset 1px 1px 2px rgba(163, 177, 198, 0.3), inset -1px -1px 2px rgba(255, 255, 255, 0.5); }

/* ── Inputlar ────────────────────────────────── */
.svt-field { margin-bottom: 16px; position: relative; }
.svt-label { display: block; font-size: 13px; font-weight: 600; color: #1a1a2e; margin-bottom: 8px; padding-left: 4px; }
.svt-req { color: #00c6ff; }
.svt-opt { font-weight: 400; color: #888; font-size: 11px; }

.svt-input, .svt-textarea, .svt-input-line {
    width: 100%;
    background: #eef2f6 !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    font-size: 15px; color: #1a1a2e !important; outline: none;
    box-shadow: inset 2px 2px 5px rgba(163, 177, 198, 0.4), inset -2px -2px 5px rgba(255, 255, 255, 0.6) !important;
    transition: all 0.2s ease-in-out;
}
.svt-input::placeholder, .svt-textarea::placeholder { color: #a0a5aa; }
.svt-input:focus, .svt-textarea:focus, .svt-input-line:focus { box-shadow: inset 3px 3px 6px rgba(163, 177, 198, 0.5), inset -3px -3px 6px rgba(255, 255, 255, 0.7) !important; }
.svt-textarea { resize: vertical; min-height: 100px; }

/* Custom Select Dropdown Arrow */
.svt-select-wrapper { position: relative; }
.svt-select-wrapper::after { content: '▼'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); pointer-events: none; font-size: 12px; color: #1a1a2e; }
.svt-select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 40px; }

/* ── Hizmet tipi seçimi ─────────────────────── */
.svt-service-types {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 920px;
    margin: 0 auto 26px;
}
.svt-service-type {
    --svt-service-accent: #2f6df6;
    min-width: 0;
    min-height: 106px;
    background: #e8e6e1;
    border: none;
    border-radius: 28px;
    padding: 18px 22px;
    cursor: pointer;
    color: #2f3135;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    text-align: left;
    box-shadow: 12px 12px 26px rgba(182, 178, 169, 0.34), -12px -12px 26px rgba(255, 255, 255, 0.92);
    transition: color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.svt-service-type[data-service-type="transfer"] { --svt-service-accent: #2f6df6; }
.svt-service-type[data-service-type="hourly"] { --svt-service-accent: #1f9f8b; }
.svt-service-type[data-service-type="daily"] { --svt-service-accent: #9a6bff; }
.svt-service-type[data-service-type="tour"] { --svt-service-accent: #e08835; }
.svt-service-type:focus-visible {
    outline: 3px solid rgba(47, 109, 246, 0.22);
    outline-offset: 4px;
}
.svt-service-type:hover {
    color: var(--svt-service-accent);
    transform: translateY(-1px);
    box-shadow: 14px 14px 28px rgba(182, 178, 169, 0.36), -14px -14px 28px rgba(255, 255, 255, 0.95);
}
.svt-service-type--active {
    background: linear-gradient(145deg, #f2f0eb 0%, #e4e1db 100%);
    color: var(--svt-service-accent);
    box-shadow: inset 6px 6px 12px rgba(182, 178, 169, 0.24), inset -6px -6px 12px rgba(255, 255, 255, 0.95), 0 0 0 1px rgba(255, 255, 255, 0.72);
    transform: translateY(0);
}
.svt-service-type--active:hover {
    color: var(--svt-service-accent);
    box-shadow: inset 7px 7px 14px rgba(182, 178, 169, 0.26), inset -7px -7px 14px rgba(255, 255, 255, 0.96), 0 0 0 1px rgba(255, 255, 255, 0.72);
}
.svt-service-type__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ece9e4;
    font-size: 21px;
    line-height: 1;
    color: var(--svt-service-accent);
    flex: 0 0 auto;
    box-shadow: 6px 6px 12px rgba(182, 178, 169, 0.24), -6px -6px 12px rgba(255, 255, 255, 0.92);
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.svt-service-type--active .svt-service-type__icon {
    background: rgba(255, 255, 255, 0.9);
    color: var(--svt-service-accent);
    box-shadow: inset 2px 2px 4px rgba(182, 178, 169, 0.16), inset -2px -2px 4px rgba(255, 255, 255, 0.94);
}
.svt-service-type__body {
    min-width: 0;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 2px;
}
.svt-service-type__title {
    display: block;
    min-width: 0;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: none;
    white-space: nowrap;
    color: #2f3135;
}
.svt-service-type__meta {
    display: block;
    min-width: 0;
    font-size: 13px;
    line-height: 1.7;
    color: #5f6166;
    white-space: normal;
}
.svt-service-type__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.74);
    color: #595c62;
    font-size: 24px;
    line-height: 1;
    flex: 0 0 auto;
    box-shadow: 4px 4px 10px rgba(182, 178, 169, 0.2), -4px -4px 10px rgba(255, 255, 255, 0.86);
}
.svt-service-type--active .svt-service-type__arrow {
    background: rgba(255, 255, 255, 0.92);
    color: var(--svt-service-accent);
}
.svt-service-fields {
    margin: -4px 0 24px;
    padding: 22px;
    background: #eef2f6;
    border-radius: 22px;
    box-shadow: inset 4px 4px 9px rgba(163, 177, 198, 0.34), inset -4px -4px 9px rgba(255, 255, 255, 0.7);
}
.svt-service-fields .svt-field { margin-bottom: 0; }

.svt-tour-preview {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #eef2f6;
    box-shadow: inset 3px 3px 7px rgba(163, 177, 198, 0.24), inset -3px -3px 7px rgba(255, 255, 255, 0.72);
}

.svt-tour-preview__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.svt-tour-preview__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: #2b3342;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 3px 3px 8px rgba(163, 177, 198, 0.2), -3px -3px 8px rgba(255, 255, 255, 0.76);
}

.svt-tour-preview__text {
    margin: 0;
    color: #687282;
    font-size: 12px;
    line-height: 1.5;
}

@media (max-width: 860px) { .svt-service-types { grid-template-columns: 1fr; max-width: 560px; } }
@media (max-width: 520px) { .svt-service-type { min-height: 96px; padding: 14px 16px; gap: 12px; } .svt-service-type__icon { width: 40px; height: 40px; font-size: 19px; } .svt-service-type__title { font-size: 14px; } .svt-service-type__meta { font-size: 11px; line-height: 1.6; } .svt-service-type__arrow { width: 32px; height: 32px; font-size: 21px; } .svt-service-fields { padding: 18px; } .svt-tour-preview { padding: 12px 14px; } }

/* ── Grid ────────────────────────────────────── */
.svt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; }
@media (max-width: 580px) { .svt-grid { grid-template-columns: 1fr; } .svt-wrapper { padding: 20px; border-radius: 20px; } .svt-card { padding: 20px; } }

/* ── Tek Satır Rota (Adım 1) ─────────────────── */
.svt-route-row { display: flex; gap: 16px; align-items: flex-end; margin-bottom: 0; }
.svt-route-row .svt-field { flex: 1; margin-bottom: 0; }
.svt-route-row .svt-field:nth-child(3) { flex: 0 0 160px; }
.svt-route-row .svt-field--button { flex: 0 0 180px; }
.svt-route-row .svt-btn { height: 44px; margin-top: 0; display: flex; align-items: center; justify-content: center; border-radius: 12px !important; }

@media (max-width: 768px) {
    .svt-route-row { flex-direction: column; align-items: stretch; }
    .svt-route-row .svt-field, .svt-route-row .svt-field:nth-child(3) { margin-bottom: 16px; flex: auto; }
    .svt-route-row .svt-field--button { flex: 1 1 auto; margin-bottom: 0; }
}

/* ── Autocomplete ────────────────────────────── */
.svt-suggestions { position: absolute; top: calc(100% + 10px); left: 0; right: 0; background: #eef2f6; border-radius: 12px; box-shadow: 4px 4px 10px rgba(163, 177, 198, 0.3), -4px -4px 10px rgba(255, 255, 255, 0.4); z-index: 999; overflow: hidden; display: none; border: none; }
.svt-suggestions.open { display: block; }
.svt-suggestion-item { padding: 14px 20px; font-size: 14px; cursor: pointer; color: #1a1a2e; transition: background 0.2s; border-bottom: 1px solid rgba(163, 177, 198, 0.2); }
.svt-suggestion-item:last-child { border-bottom: none; }
.svt-suggestion-item:hover { background: rgba(163, 177, 198, 0.1); color: #00c6ff; }

/* ── Ara durak ───────────────────────────────── */
.svt-stop-item { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.svt-stop-item .svt-input { margin: 0; flex: 1; }
.svt-stop-remove { background: #eef2f6; border: none; color: #e53e3e; width: 44px; height: 44px; border-radius: 50%; font-size: 18px; cursor: pointer; box-shadow: 2px 2px 5px rgba(163, 177, 198, 0.3), -2px -2px 5px rgba(255, 255, 255, 0.5); transition: all 0.2s; }
.svt-stop-remove:hover { color: #c00; box-shadow: inset 1px 1px 3px rgba(163, 177, 198, 0.3), inset -1px -1px 3px rgba(255, 255, 255, 0.5); }

/* ── Araç kartları ───────────────────────────── */
.svt-vehicles { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px; margin-top: 8px; }
.svt-vehicle { background: #eef2f6; border: none; border-radius: 16px; padding: 24px 20px; cursor: pointer; box-shadow: 3px 3px 8px rgba(163, 177, 198, 0.3), -3px -3px 8px rgba(255, 255, 255, 0.5); transition: all 0.2s ease; text-align: center; }
.svt-vehicle:hover { box-shadow: 4px 4px 10px rgba(163, 177, 198, 0.4), -4px -4px 10px rgba(255, 255, 255, 0.6); transform: translateY(-1px); }
.svt-vehicle--selected { box-shadow: inset 2px 2px 5px rgba(163, 177, 198, 0.4), inset -2px -2px 5px rgba(255, 255, 255, 0.6); }
.svt-vehicle--selected .svt-vehicle__name { color: #00c6ff; }
.svt-vehicle__name { font-size: 16px; font-weight: 800; color: #1a1a2e; margin-bottom: 8px; transition: color 0.2s; }
.svt-vehicle__meta { font-size: 13px; color: #666; font-weight: 500; }
.svt-vehicle__desc { font-size: 12px; color: #aaa; margin-top: 10px; }

/* ── Checkbox ────────────────────────────────── */
.svt-check { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: #1a1a2e; margin-bottom: 12px; cursor: pointer; }
.svt-check input[type="checkbox"] { width: 22px; height: 22px; margin-top: 0; flex-shrink: 0; appearance: none; -webkit-appearance: none; background: #eef2f6; border: none; border-radius: 6px; position: relative; cursor: pointer; outline: none; box-shadow: inset 2px 2px 4px rgba(163, 177, 198, 0.4), inset -2px -2px 4px rgba(255, 255, 255, 0.6); transition: all 0.2s; }
.svt-check input[type="checkbox"]:checked { background: #00c6ff; box-shadow: inset 1px 1px 2px rgba(0,0,0,0.2); }
.svt-check input[type="checkbox"]:checked::after { content: '✓'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #fff; font-size: 14px; font-weight: 900; }
.svt-contracts { margin-top: 30px; padding-top: 30px; border-top: 1px dashed rgba(163, 177, 198, 0.3); }
.svt-contract-link { color: #00c6ff; text-decoration: none; font-weight: 600; }
.svt-contract-link:hover { text-decoration: underline; }

/* ── Butonlar ────────────────────────────────── */
.svt-btn { display: inline-block; padding: 12px 32px; border-radius: 12px; font-size: 14px; font-weight: 800; letter-spacing: 1px; line-height: 1.7; text-transform: uppercase; cursor: pointer; border: none; transition: all 0.3s; text-align: center; background: #eef2f6; color: #1a1a2e; box-shadow: 3px 3px 8px rgba(163, 177, 198, 0.3), -3px -3px 8px rgba(255, 255, 255, 0.5); }
.svt-btn:hover { box-shadow: 4px 4px 10px rgba(163, 177, 198, 0.4), -4px -4px 10px rgba(255, 255, 255, 0.6); transform: translateY(-1px); color: #00c6ff; }
.svt-btn:active { box-shadow: inset 2px 2px 5px rgba(163, 177, 198, 0.4), inset -2px -2px 5px rgba(255, 255, 255, 0.6); transform: translateY(0); }

.svt-btn--primary, .svt-btn--black { background: #00c6ff !important; color: #fff !important; box-shadow: 2px 2px 5px rgba(0, 198, 255, 0.3); }
.svt-btn--primary:hover, .svt-btn--black:hover { background: #00a0e0 !important; color: #fff !important; box-shadow: 3px 3px 6px rgba(0, 198, 255, 0.4); }
.svt-btn--primary:active, .svt-btn--black:active { box-shadow: inset 1px 1px 3px rgba(0,0,0,0.2) !important; }

.svt-btn--full { width: 100%; margin-top: 30px; }
.svt-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.svt-btn-row { display: flex; gap: 20px; margin-top: 24px; justify-content: space-between; }

/* ── Özet kutusu ─────────────────────────────── */
#svt-summary { background: #eef2f6; border-radius: 16px; padding: 30px; margin-bottom: 30px; box-shadow: inset 2px 2px 5px rgba(163, 177, 198, 0.4), inset -2px -2px 5px rgba(255, 255, 255, 0.6); border: none; }
#svt-summary table { width: 100%; border-collapse: collapse; }
#svt-summary td { padding: 12px 0; font-size: 15px; border-bottom: 1px dashed rgba(163, 177, 198, 0.3); color: #1a1a2e; }
#svt-summary tr:last-child td { border-bottom: none; }
#svt-summary td:first-child { color: #888; font-weight: 600; font-size: 13px; text-transform: uppercase; width: 40%; }

.svt-price-box { background: #eef2f6; border-radius: 16px; padding: 24px 30px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; box-shadow: inset 2px 2px 5px rgba(163, 177, 198, 0.4), inset -2px -2px 5px rgba(255, 255, 255, 0.6); color: #1a1a2e; }
.svt-price-box__label { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: #888; }
.svt-price-box__value { font-size: 32px; font-weight: 800; color: #00c6ff; }
.svt-error { color: #e53e3e; font-size: 12px; margin-top: 8px; display: block; min-height: 16px; font-weight: 500; }

/* ── Modal / Overlay ─────────────────────────── */
.svt-overlay { position: fixed; inset: 0; background: rgba(238, 242, 246, 0.8); z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(4px); }
.svt-modal { background: #eef2f6; border-radius: 24px; max-width: 620px; width: 100%; max-height: 80vh; overflow-y: auto; padding: 40px; position: relative; box-shadow: 4px 4px 10px rgba(163, 177, 198, 0.3), -4px -4px 10px rgba(255, 255, 255, 0.4); }
.svt-modal__close { position: absolute; top: 20px; right: 24px; background: #eef2f6; border: none; width: 40px; height: 40px; border-radius: 50%; font-size: 18px; cursor: pointer; color: #1a1a2e; box-shadow: 2px 2px 5px rgba(163, 177, 198, 0.3), -2px -2px 5px rgba(255, 255, 255, 0.5); display: flex; align-items: center; justify-content: center; }
.svt-modal__close:active { box-shadow: inset 1px 1px 3px rgba(163, 177, 198, 0.3), inset -1px -1px 3px rgba(255, 255, 255, 0.5); }
.svt-modal__title { font-size: 20px; font-weight: 800; margin: 0 0 20px; color: #1a1a2e; }
.svt-modal__body { font-size: 14px; line-height: 1.8; color: #444; }
.svt-btn--loading::after { content: ''; display: inline-block; width: 16px; height: 16px; border: 3px solid rgba(255, 255, 255, 0.3); border-top-color: #ffffff; border-radius: 50%; animation: svt-spin 0.7s linear infinite; margin-left: 10px; vertical-align: middle; }
@keyframes svt-spin { to { transform: rotate(360deg); } }

/* ── Yazdırma ───────────────── */
@media print {
    body * { visibility: hidden; }
    .svt-wrapper, .svt-wrapper * { visibility: visible; }
    .svt-wrapper { position: absolute; left: 0; top: 0; width: 100%; margin: 0 !important; padding: 0 !important; background: transparent !important; box-shadow: none !important; }
    .svt-steps, .svt-btn-row, .svt-overlay, header, footer, #wpadminbar, nav, aside { display: none !important; }
    .svt-card, .svt-price-box { box-shadow: none !important; border: none !important; padding: 0 !important; background: transparent !important; }
    body { background: #fff !important; }
    .svt-price-box { border: 2px solid #000; color: #000; padding: 15px !important; margin-top: 20px; }
    .svt-price-box__value { color: #000; }
}


/* ─────────────────────────────────────────────────
   SVT OVERRIDE — Wide Light Service Buttons v1.1.36
   Kullanıcı isteği: açık gri/beyaz butonlar, siyah yazı,
   yatayda daha geniş kapsül butonlar.
───────────────────────────────────────────────── */
.svt-wrapper .svt-service-types {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(200px, 1fr)) !important;
    gap: 24px !important;
    max-width: 1100px !important;
    margin: 0 auto 28px !important;
    align-items: stretch !important;
}

.svt-wrapper .svt-service-type {
    width: 100% !important;
    min-width: 200px !important;
    min-height: 112px !important;
    height: 112px !important;
    padding: 0 34px !important;
    border-radius: 30px !important;
    background: linear-gradient(180deg, #f8f9fb 0%, #eef1f5 100%) !important;
    color: #111111 !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 0 !important;
    box-shadow: 0 12px 28px rgba(154, 166, 181, 0.20), 0 3px 10px rgba(154, 166, 181, 0.10) !important;
    transform: none !important;
}

.svt-wrapper .svt-service-type:hover {
    background: linear-gradient(180deg, #fbfcfd 0%, #f0f3f7 100%) !important;
    color: #111111 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 14px 30px rgba(154, 166, 181, 0.22), 0 4px 12px rgba(154, 166, 181, 0.12) !important;
}

.svt-wrapper .svt-service-type--active,
.svt-wrapper .svt-service-type--active:hover {
    background: linear-gradient(180deg, #fbfbfc 0%, #f1f3f6 100%) !important;
    color: #111111 !important;
    transform: none !important;
    box-shadow: 0 14px 30px rgba(154, 166, 181, 0.20), 0 4px 12px rgba(154, 166, 181, 0.10) !important;
    position: relative !important;
}

.svt-wrapper .svt-service-type--active::after {
    content: '' !important;
    position: absolute !important;
    bottom: -12px !important;
    left: 22% !important;
    right: 22% !important;
    height: 24px !important;
    background: radial-gradient(ellipse at center, rgba(255, 182, 61, 0.60) 0%, rgba(255, 182, 61, 0.28) 45%, rgba(255, 182, 61, 0) 75%) !important;
    filter: blur(10px) !important;
    border-radius: 999px !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

.svt-wrapper .svt-service-type__title {
    display: block !important;
    width: 100% !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    letter-spacing: 0.18em !important;
    text-transform: none !important;
    color: #111111 !important;
    text-align: center !important;
}

.svt-wrapper .svt-service-type__icon,
.svt-wrapper .svt-service-type__meta,
.svt-wrapper .svt-service-type__arrow,
.svt-wrapper .svt-service-type__glow {
    display: none !important;
}

@media (max-width: 1100px) {
    .svt-wrapper .svt-service-types {
        grid-template-columns: repeat(2, minmax(220px, 1fr)) !important;
    }
}

@media (max-width: 640px) {
    .svt-wrapper .svt-service-types {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }
    .svt-wrapper .svt-service-type {
        min-height: 94px !important;
        height: 94px !important;
        padding: 0 22px !important;
        border-radius: 26px !important;
    }
    .svt-wrapper .svt-service-type__title {
        font-size: 16px !important;
        letter-spacing: 0.12em !important;
    }
}


/* ─────────────────────────────────────────────────
   SVT OVERRIDE — Mockup Match Service Buttons v1.1.37
   Daha birebir mockup uyumu: daha kompakt, daha yumuşak,
   açık butonlar + siyah yazı + seçili butonda alt glow.
───────────────────────────────────────────────── */
.svt-wrapper .svt-service-types {
    display: grid !important;
    grid-template-columns: repeat(4, 176px) !important;
    justify-content: center !important;
    gap: 28px !important;
    max-width: 920px !important;
    margin: 8px auto 34px !important;
    padding: 0 !important;
}

.svt-wrapper .svt-service-type {
    width: 176px !important;
    min-width: 176px !important;
    max-width: 176px !important;
    height: 136px !important;
    min-height: 136px !important;
    padding: 0 20px !important;
    border-radius: 28px !important;
    background: linear-gradient(180deg, #f9fafb 0%, #f1f3f6 100%) !important;
    color: #111111 !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0 !important;
    box-shadow:
        0 14px 30px rgba(180, 189, 201, 0.20),
        0 4px 12px rgba(180, 189, 201, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.85) !important;
    transform: none !important;
    overflow: visible !important;
}

.svt-wrapper .svt-service-type:hover {
    background: linear-gradient(180deg, #fcfcfd 0%, #f3f5f8 100%) !important;
    color: #111111 !important;
    transform: translateY(-1px) !important;
    box-shadow:
        0 16px 34px rgba(180, 189, 201, 0.23),
        0 6px 14px rgba(180, 189, 201, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.88) !important;
}

.svt-wrapper .svt-service-type--active,
.svt-wrapper .svt-service-type--active:hover {
    background: linear-gradient(180deg, #fcfcfd 0%, #f4f6f8 100%) !important;
    color: #111111 !important;
    transform: none !important;
    box-shadow:
        0 16px 34px rgba(180, 189, 201, 0.20),
        0 6px 14px rgba(180, 189, 201, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
    z-index: 1 !important;
}

.svt-wrapper .svt-service-type--active::after {
    content: '' !important;
    position: absolute !important;
    left: 22% !important;
    right: 22% !important;
    bottom: -10px !important;
    height: 18px !important;
    border-radius: 999px !important;
    background: rgba(236, 176, 68, 0.55) !important;
    filter: blur(10px) !important;
    opacity: 1 !important;
    z-index: -1 !important;
    pointer-events: none !important;
}

.svt-wrapper .svt-service-type__title {
    width: 100% !important;
    display: block !important;
    font-size: 19px !important;
    font-weight: 800 !important;
    letter-spacing: 0.16em !important;
    color: #111111 !important;
    text-align: center !important;
    line-height: 1.2 !important;
}

.svt-wrapper .svt-service-type__icon,
.svt-wrapper .svt-service-type__meta,
.svt-wrapper .svt-service-type__arrow,
.svt-wrapper .svt-service-type__glow {
    display: none !important;
}

@media (max-width: 980px) {
    .svt-wrapper .svt-service-types {
        grid-template-columns: repeat(2, 176px) !important;
    }
}

@media (max-width: 520px) {
    .svt-wrapper .svt-service-types {
        grid-template-columns: 1fr !important;
        max-width: 240px !important;
        gap: 18px !important;
    }
    .svt-wrapper .svt-service-type {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        height: 100px !important;
        min-height: 100px !important;
        border-radius: 24px !important;
    }
    .svt-wrapper .svt-service-type__title {
        font-size: 17px !important;
        letter-spacing: 0.12em !important;
    }
}


/* ─────────────────────────────────────────────────
   SVT OVERRIDE — Narrow Single Row Service Buttons v1.1.38
   İstek: Daralt, tek satır yap, varsayılan gri olsun,
   seçilince alttan renkli gölge gelsin.
───────────────────────────────────────────────── */
.svt-wrapper .svt-service-types {
    display: grid !important;
    grid-template-columns: repeat(4, 150px) !important;
    justify-content: center !important;
    gap: 20px !important;
    max-width: 700px !important;
    margin: 8px auto 28px !important;
    padding: 0 !important;
}

.svt-wrapper .svt-service-type {
    --svt-glow-color: rgba(255, 177, 66, 0.55);
    width: 150px !important;
    min-width: 150px !important;
    max-width: 150px !important;
    height: 86px !important;
    min-height: 86px !important;
    padding: 0 16px !important;
    border-radius: 24px !important;
    background: linear-gradient(180deg, #dddddb 0%, #d4d4d2 100%) !important;
    color: #1d1d1d !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0 !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.55),
        0 10px 22px rgba(150, 150, 150, 0.14),
        0 2px 8px rgba(150, 150, 150, 0.10) !important;
    transform: none !important;
    overflow: visible !important;
    position: relative !important;
}

.svt-wrapper .svt-service-type[data-service-type="transfer"] { --svt-glow-color: rgba(255, 174, 45, 0.60); }
.svt-wrapper .svt-service-type[data-service-type="hourly"] { --svt-glow-color: rgba(41, 184, 152, 0.55); }
.svt-wrapper .svt-service-type[data-service-type="daily"] { --svt-glow-color: rgba(152, 104, 255, 0.55); }
.svt-wrapper .svt-service-type[data-service-type="tour"] { --svt-glow-color: rgba(67, 188, 255, 0.55); }

.svt-wrapper .svt-service-type:hover {
    background: linear-gradient(180deg, #e1e1df 0%, #d8d8d6 100%) !important;
    color: #1d1d1d !important;
    transform: translateY(-1px) !important;
}

.svt-wrapper .svt-service-type--active,
.svt-wrapper .svt-service-type--active:hover {
    background: linear-gradient(180deg, #e6e6e4 0%, #dbdbd9 100%) !important;
    color: #111111 !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.65),
        0 12px 24px rgba(150, 150, 150, 0.12),
        0 3px 9px rgba(150, 150, 150, 0.10) !important;
    transform: none !important;
    z-index: 1 !important;
}

.svt-wrapper .svt-service-type--active::after {
    content: '' !important;
    position: absolute !important;
    left: 22% !important;
    right: 22% !important;
    bottom: -10px !important;
    height: 16px !important;
    border-radius: 999px !important;
    background: var(--svt-glow-color) !important;
    filter: blur(11px) !important;
    opacity: 1 !important;
    z-index: -1 !important;
    pointer-events: none !important;
}

.svt-wrapper .svt-service-type__title {
    width: 100% !important;
    display: block !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    letter-spacing: 0.10em !important;
    color: #1b1b1b !important;
    text-align: center !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
}

.svt-wrapper .svt-service-type__icon,
.svt-wrapper .svt-service-type__meta,
.svt-wrapper .svt-service-type__arrow,
.svt-wrapper .svt-service-type__glow {
    display: none !important;
}

/* Desktop tek satır, mobilde kontrollü daralma */
@media (max-width: 760px) {
    .svt-wrapper .svt-service-types {
        grid-template-columns: repeat(2, 150px) !important;
    }
}

@media (max-width: 420px) {
    .svt-wrapper .svt-service-types {
        grid-template-columns: 1fr !important;
        max-width: 170px !important;
        gap: 16px !important;
    }
    .svt-wrapper .svt-service-type {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
    }
}


/* ─────────────────────────────────────────────────
   SVT OVERRIDE — Light Two-Column Spacing v1.1.39
   İstek: Ekrandaki gibi spacing, butonlar siyah olmasın,
   açık gri kalsın; seçilince sadece altta renkli gölge olsun.
───────────────────────────────────────────────── */
.svt-wrapper .svt-service-types {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(320px, 1fr)) !important;
    column-gap: 24px !important;
    row-gap: 22px !important;
    max-width: 1088px !important;
    margin: 10px auto 30px !important;
    padding: 0 !important;
    align-items: stretch !important;
}

.svt-wrapper .svt-service-type {
    --svt-glow-color: rgba(255, 176, 59, 0.55);
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 108px !important;
    min-height: 108px !important;
    padding: 0 26px !important;
    border-radius: 28px !important;
    background: linear-gradient(180deg, #e4e4e2 0%, #dbdbd9 100%) !important;
    color: #1b1b1b !important;
    border: none !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0 !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.60),
        0 10px 24px rgba(163, 170, 180, 0.14),
        0 3px 10px rgba(163, 170, 180, 0.10) !important;
    position: relative !important;
    overflow: visible !important;
    transform: none !important;
}

.svt-wrapper .svt-service-type[data-service-type="transfer"] { --svt-glow-color: rgba(255, 178, 66, 0.60); }
.svt-wrapper .svt-service-type[data-service-type="hourly"]  { --svt-glow-color: rgba(49, 186, 162, 0.55); }
.svt-wrapper .svt-service-type[data-service-type="daily"]   { --svt-glow-color: rgba(146, 110, 255, 0.55); }
.svt-wrapper .svt-service-type[data-service-type="tour"]    { --svt-glow-color: rgba(86, 185, 255, 0.55); }

.svt-wrapper .svt-service-type:hover {
    background: linear-gradient(180deg, #e8e8e6 0%, #dededc 100%) !important;
    color: #151515 !important;
    transform: translateY(-1px) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.65),
        0 12px 26px rgba(163, 170, 180, 0.16),
        0 4px 12px rgba(163, 170, 180, 0.12) !important;
}

.svt-wrapper .svt-service-type--active,
.svt-wrapper .svt-service-type--active:hover {
    background: linear-gradient(180deg, #e7e7e5 0%, #dddddb 100%) !important;
    color: #111111 !important;
    transform: none !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.72),
        0 12px 26px rgba(163, 170, 180, 0.14),
        0 4px 12px rgba(163, 170, 180, 0.10) !important;
}

.svt-wrapper .svt-service-type--active::after {
    content: '' !important;
    position: absolute !important;
    left: 26% !important;
    right: 26% !important;
    bottom: -10px !important;
    height: 16px !important;
    border-radius: 999px !important;
    background: var(--svt-glow-color) !important;
    filter: blur(11px) !important;
    opacity: 1 !important;
    z-index: -1 !important;
    pointer-events: none !important;
}

.svt-wrapper .svt-service-type__title {
    width: 100% !important;
    display: block !important;
    font-size: 19px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    color: #161616 !important;
    text-align: center !important;
    white-space: nowrap !important;
}

.svt-wrapper .svt-service-type__icon,
.svt-wrapper .svt-service-type__meta,
.svt-wrapper .svt-service-type__arrow,
.svt-wrapper .svt-service-type__glow {
    display: none !important;
}

@media (max-width: 860px) {
    .svt-wrapper .svt-service-types {
        grid-template-columns: 1fr !important;
        max-width: 540px !important;
    }
}

@media (max-width: 520px) {
    .svt-wrapper .svt-service-type {
        height: 92px !important;
        min-height: 92px !important;
        border-radius: 24px !important;
        padding: 0 18px !important;
    }
    .svt-wrapper .svt-service-type__title {
        font-size: 17px !important;
        letter-spacing: 0.06em !important;
    }
}


/* ─────────────────────────────────────────────────
   SVT OVERRIDE — Visual Match Long Cards v1.1.40
   Hedef: Verilen görsele daha yakın uzun kartlar,
   açık gri butonlar, kırmızı alt glow, daha iyi spacing.
───────────────────────────────────────────────── */
.svt-wrapper .svt-service-types {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(480px, 1fr)) !important;
    column-gap: 26px !important;
    row-gap: 24px !important;
    max-width: 1120px !important;
    margin: 12px auto 32px !important;
    padding: 0 !important;
    align-items: stretch !important;
}

.svt-wrapper .svt-service-type {
    --svt-glow-color: rgba(227, 54, 54, 0.52);
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 106px !important;
    min-height: 106px !important;
    padding: 0 22px !important;
    border-radius: 24px !important;
    background: linear-gradient(180deg, #e8e8e6 0%, #dfdfdd 100%) !important;
    color: #1d1d1d !important;
    border: none !important;
    display: grid !important;
    grid-template-columns: 64px 1fr 56px !important;
    align-items: center !important;
    gap: 18px !important;
    text-align: left !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.64),
        0 12px 26px rgba(170, 177, 186, 0.14),
        0 3px 10px rgba(170, 177, 186, 0.10) !important;
    position: relative !important;
    overflow: visible !important;
    transform: none !important;
}

.svt-wrapper .svt-service-type:hover {
    background: linear-gradient(180deg, #ececeb 0%, #e3e3e1 100%) !important;
    color: #171717 !important;
    transform: translateY(-1px) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.68),
        0 14px 28px rgba(170, 177, 186, 0.16),
        0 4px 12px rgba(170, 177, 186, 0.12) !important;
}

.svt-wrapper .svt-service-type--active,
.svt-wrapper .svt-service-type--active:hover {
    background: linear-gradient(180deg, #ebebea 0%, #e2e2e0 100%) !important;
    color: #151515 !important;
    transform: none !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.74),
        0 14px 28px rgba(170, 177, 186, 0.14),
        0 4px 12px rgba(170, 177, 186, 0.10) !important;
}

.svt-wrapper .svt-service-type--active::after {
    content: '' !important;
    position: absolute !important;
    left: 32% !important;
    right: 32% !important;
    bottom: -10px !important;
    height: 18px !important;
    border-radius: 999px !important;
    background: var(--svt-glow-color) !important;
    filter: blur(12px) !important;
    opacity: 1 !important;
    z-index: -1 !important;
    pointer-events: none !important;
}

.svt-wrapper .svt-service-type[data-service-type="transfer"] { --svt-glow-color: rgba(231, 56, 56, 0.58); }
.svt-wrapper .svt-service-type[data-service-type="hourly"]  { --svt-glow-color: rgba(231, 56, 56, 0.54); }
.svt-wrapper .svt-service-type[data-service-type="daily"]   { --svt-glow-color: rgba(231, 56, 56, 0.54); }
.svt-wrapper .svt-service-type[data-service-type="tour"]    { --svt-glow-color: rgba(231, 56, 56, 0.54); }

.svt-wrapper .svt-service-type__icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 56px !important;
    height: 56px !important;
    border-radius: 999px !important;
    background: linear-gradient(180deg, #f0f0ee 0%, #e7e7e5 100%) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.76),
        0 6px 14px rgba(170, 177, 186, 0.14) !important;
    font-size: 28px !important;
    line-height: 1 !important;
}

.svt-wrapper .svt-service-type[data-service-type="transfer"] .svt-service-type__icon { color: #4d73ff !important; }
.svt-wrapper .svt-service-type[data-service-type="hourly"]  .svt-service-type__icon { color: #22a387 !important; }
.svt-wrapper .svt-service-type[data-service-type="daily"]   .svt-service-type__icon { color: #8b64ff !important; }
.svt-wrapper .svt-service-type[data-service-type="tour"]    .svt-service-type__icon { color: #f08a36 !important; }

.svt-wrapper .svt-service-type__body {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 6px !important;
    min-width: 0 !important;
}

.svt-wrapper .svt-service-type__title {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    font-size: 19px !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    color: #161616 !important;
    text-align: left !important;
    white-space: nowrap !important;
}

.svt-wrapper .svt-service-type__meta {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 500 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    color: #596273 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.svt-wrapper .svt-service-type__arrow {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 999px !important;
    background: linear-gradient(180deg, #f1f1ef 0%, #e8e8e6 100%) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.76),
        0 6px 14px rgba(170, 177, 186, 0.12) !important;
    color: #6a7280 !important;
    font-size: 34px !important;
    line-height: 1 !important;
    font-weight: 400 !important;
}

.svt-wrapper .svt-service-type__glow {
    display: none !important;
}

@media (max-width: 1040px) {
    .svt-wrapper .svt-service-types {
        grid-template-columns: 1fr !important;
        max-width: 720px !important;
    }
}

@media (max-width: 640px) {
    .svt-wrapper .svt-service-type {
        grid-template-columns: 54px 1fr 44px !important;
        height: 96px !important;
        min-height: 96px !important;
        padding: 0 16px !important;
        border-radius: 22px !important;
        gap: 14px !important;
    }
    .svt-wrapper .svt-service-type__icon {
        width: 46px !important;
        height: 46px !important;
        font-size: 22px !important;
    }
    .svt-wrapper .svt-service-type__arrow {
        width: 40px !important;
        height: 40px !important;
        font-size: 28px !important;
    }
    .svt-wrapper .svt-service-type__title {
        font-size: 17px !important;
        letter-spacing: 0.05em !important;
    }
    .svt-wrapper .svt-service-type__meta {
        font-size: 11px !important;
        letter-spacing: 0.10em !important;
    }
}


/* ─────────────────────────────────────────────────
   SVT OVERRIDE — Exact Match Wide Light Buttons v1.1.41
   Hedef: daha birebir; açık gri, siyah yazı, tek satır,
   butonlar daha dar ve yana uzayan form, seçilince güçlü kırmızı alt gölge.
───────────────────────────────────────────────── */
.svt-wrapper .svt-service-types {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 22px !important;
    max-width: 1020px !important;
    margin: 12px auto 30px !important;
    padding: 0 !important;
    align-items: stretch !important;
}

.svt-wrapper .svt-service-type {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 114px !important;
    min-height: 114px !important;
    padding: 0 18px !important;
    border-radius: 26px !important;
    background: linear-gradient(180deg, #e8e8e7 0%, #dfdfde 100%) !important;
    color: #111111 !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 0 !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.58),
        0 10px 24px rgba(171, 178, 187, 0.16),
        0 3px 10px rgba(171, 178, 187, 0.10) !important;
    position: relative !important;
    overflow: visible !important;
    transform: none !important;
}

.svt-wrapper .svt-service-type:hover {
    background: linear-gradient(180deg, #ececeb 0%, #e3e3e2 100%) !important;
    color: #111111 !important;
    transform: translateY(-1px) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.64),
        0 12px 28px rgba(171, 178, 187, 0.18),
        0 4px 12px rgba(171, 178, 187, 0.11) !important;
}

.svt-wrapper .svt-service-type--active,
.svt-wrapper .svt-service-type--active:hover {
    background: linear-gradient(180deg, #ececeb 0%, #e2e2e1 100%) !important;
    color: #111111 !important;
    transform: none !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.70),
        0 11px 26px rgba(171, 178, 187, 0.14),
        0 4px 10px rgba(171, 178, 187, 0.10) !important;
}

.svt-wrapper .svt-service-type--active::after {
    content: '' !important;
    position: absolute !important;
    left: 18% !important;
    right: 18% !important;
    bottom: -12px !important;
    height: 24px !important;
    border-radius: 999px !important;
    background: rgba(222, 36, 36, 0.92) !important;
    filter: blur(14px) !important;
    opacity: 1 !important;
    z-index: -1 !important;
    pointer-events: none !important;
}

/* mevcut uzun-kart içeriğini sadeleştir */
.svt-wrapper .svt-service-type__icon,
.svt-wrapper .svt-service-type__meta,
.svt-wrapper .svt-service-type__arrow,
.svt-wrapper .svt-service-type__glow {
    display: none !important;
}

.svt-wrapper .svt-service-type__body {
    display: block !important;
    min-width: 0 !important;
    width: 100% !important;
}

.svt-wrapper .svt-service-type__title {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    font-size: 20px !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
    letter-spacing: 0.15em !important;
    color: #101010 !important;
    text-align: center !important;
    white-space: nowrap !important;
}

@media (max-width: 980px) {
    .svt-wrapper .svt-service-types {
        grid-template-columns: repeat(2, minmax(220px, 1fr)) !important;
        max-width: 720px !important;
    }
}

@media (max-width: 520px) {
    .svt-wrapper .svt-service-types {
        grid-template-columns: 1fr !important;
        max-width: 260px !important;
        gap: 16px !important;
    }
    .svt-wrapper .svt-service-type {
        height: 96px !important;
        min-height: 96px !important;
        border-radius: 22px !important;
    }
    .svt-wrapper .svt-service-type__title {
        font-size: 18px !important;
        letter-spacing: 0.10em !important;
    }
}


/* ─────────────────────────────────────────────────
   SVT OVERRIDE — Refined Wide Slim Buttons v1.1.42
   İstek: daha şık font, daha ince ama yana geniş buton,
   daha az gölge, daha kontrollü kırmızı alt glow.
───────────────────────────────────────────────── */
.svt-wrapper .svt-service-types {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
    max-width: 1200px !important;
    margin: 14px auto 30px !important;
    padding: 0 !important;
    align-items: stretch !important;
}

.svt-wrapper .svt-service-type {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 92px !important;
    min-height: 92px !important;
    padding: 0 20px !important;
    border-radius: 22px !important;
    background: linear-gradient(180deg, #e8e8e7 0%, #dfdfde 100%) !important;
    color: #111111 !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 0 !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.52),
        0 6px 14px rgba(171, 178, 187, 0.10),
        0 1px 5px rgba(171, 178, 187, 0.08) !important;
    position: relative !important;
    overflow: visible !important;
    transform: none !important;
}

.svt-wrapper .svt-service-type:hover {
    background: linear-gradient(180deg, #ebebea 0%, #e2e2e1 100%) !important;
    color: #111111 !important;
    transform: translateY(-1px) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.58),
        0 8px 16px rgba(171, 178, 187, 0.12),
        0 2px 6px rgba(171, 178, 187, 0.08) !important;
}

.svt-wrapper .svt-service-type--active,
.svt-wrapper .svt-service-type--active:hover {
    background: linear-gradient(180deg, #ececeb 0%, #e3e3e2 100%) !important;
    color: #111111 !important;
    transform: none !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.64),
        0 7px 15px rgba(171, 178, 187, 0.10),
        0 2px 5px rgba(171, 178, 187, 0.08) !important;
}

.svt-wrapper .svt-service-type--active::after {
    content: '' !important;
    position: absolute !important;
    left: 24% !important;
    right: 24% !important;
    bottom: -9px !important;
    height: 14px !important;
    border-radius: 999px !important;
    background: rgba(224, 46, 46, 0.58) !important;
    filter: blur(10px) !important;
    opacity: 1 !important;
    z-index: -1 !important;
    pointer-events: none !important;
}

.svt-wrapper .svt-service-type__icon,
.svt-wrapper .svt-service-type__meta,
.svt-wrapper .svt-service-type__arrow,
.svt-wrapper .svt-service-type__glow {
    display: none !important;
}

.svt-wrapper .svt-service-type__body {
    display: block !important;
    min-width: 0 !important;
    width: 100% !important;
}

.svt-wrapper .svt-service-type__title {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    font-family: 'Manrope', 'Inter', sans-serif !important;
    font-size: 18px !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
    letter-spacing: 0.12em !important;
    color: #101010 !important;
    text-align: center !important;
    white-space: nowrap !important;
}

@media (max-width: 1040px) {
    .svt-wrapper .svt-service-types {
        grid-template-columns: repeat(2, minmax(220px, 1fr)) !important;
        max-width: 760px !important;
    }
}

@media (max-width: 520px) {
    .svt-wrapper .svt-service-types {
        grid-template-columns: 1fr !important;
        max-width: 280px !important;
        gap: 16px !important;
    }
    .svt-wrapper .svt-service-type {
        height: 82px !important;
        min-height: 82px !important;
        border-radius: 20px !important;
        padding: 0 16px !important;
    }
    .svt-wrapper .svt-service-type__title {
        font-size: 17px !important;
        letter-spacing: 0.08em !important;
    }
}


/* ─────────────────────────────────────────────────
   SVT OVERRIDE — Premium Long Soft Buttons v1.1.43
   İstek: daha lüks/premium font, biraz daha uzun butonlar,
   çok daha soft gölge ve kontrollü kırmızı alt glow.
───────────────────────────────────────────────── */
.svt-wrapper .svt-service-types {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 20px !important;
    max-width: 1280px !important;
    margin: 14px auto 30px !important;
    padding: 0 !important;
    align-items: stretch !important;
}

.svt-wrapper .svt-service-type {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 86px !important;
    min-height: 86px !important;
    padding: 0 22px !important;
    border-radius: 22px !important;
    background: linear-gradient(180deg, #e9e9e8 0%, #e1e1e0 100%) !important;
    color: #111111 !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 0 !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.46),
        0 4px 10px rgba(171, 178, 187, 0.07),
        0 1px 3px rgba(171, 178, 187, 0.05) !important;
    position: relative !important;
    overflow: visible !important;
    transform: none !important;
}

.svt-wrapper .svt-service-type:hover {
    background: linear-gradient(180deg, #ececeb 0%, #e4e4e3 100%) !important;
    color: #111111 !important;
    transform: translateY(-1px) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.52),
        0 5px 12px rgba(171, 178, 187, 0.08),
        0 1px 4px rgba(171, 178, 187, 0.05) !important;
}

.svt-wrapper .svt-service-type--active,
.svt-wrapper .svt-service-type--active:hover {
    background: linear-gradient(180deg, #ededec 0%, #e5e5e4 100%) !important;
    color: #111111 !important;
    transform: none !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.56),
        0 5px 12px rgba(171, 178, 187, 0.07),
        0 1px 4px rgba(171, 178, 187, 0.05) !important;
}

.svt-wrapper .svt-service-type--active::after {
    content: '' !important;
    position: absolute !important;
    left: 28% !important;
    right: 28% !important;
    bottom: -8px !important;
    height: 10px !important;
    border-radius: 999px !important;
    background: rgba(214, 43, 43, 0.34) !important;
    filter: blur(8px) !important;
    opacity: 1 !important;
    z-index: -1 !important;
    pointer-events: none !important;
}

.svt-wrapper .svt-service-type__icon,
.svt-wrapper .svt-service-type__meta,
.svt-wrapper .svt-service-type__arrow,
.svt-wrapper .svt-service-type__glow {
    display: none !important;
}

.svt-wrapper .svt-service-type__body {
    display: block !important;
    min-width: 0 !important;
    width: 100% !important;
}

.svt-wrapper .svt-service-type__title {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    font-family: 'Plus Jakarta Sans', 'Manrope', 'Inter', sans-serif !important;
    font-size: 17px !important;
    line-height: 1.05 !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    color: #111111 !important;
    text-align: center !important;
    white-space: nowrap !important;
    text-rendering: geometricPrecision !important;
}

@media (max-width: 1120px) {
    .svt-wrapper .svt-service-types {
        grid-template-columns: repeat(2, minmax(240px, 1fr)) !important;
        max-width: 780px !important;
    }
}

@media (max-width: 520px) {
    .svt-wrapper .svt-service-types {
        grid-template-columns: 1fr !important;
        max-width: 300px !important;
        gap: 14px !important;
    }
    .svt-wrapper .svt-service-type {
        height: 78px !important;
        min-height: 78px !important;
        border-radius: 18px !important;
        padding: 0 16px !important;
    }
    .svt-wrapper .svt-service-type__title {
        font-size: 16px !important;
        letter-spacing: 0.10em !important;
    }
}


/* ─────────────────────────────────────────────────
   SVT OVERRIDE — Apple Style Compact Wide Buttons v1.1.44
   Apple-style, daha dar-yüksekliği az, yana uzun butonlar,
   premium sistem fontu, seçili butonda kırmızı check,
   pressed/basık görünüm ve performans optimizasyonu.
───────────────────────────────────────────────── */
.svt-wrapper,
.svt-wrapper * {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif !important;
}

.svt-wrapper .svt-service-types {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
    max-width: 1260px !important;
    margin: 10px auto 34px !important;
    padding: 0 !important;
    align-items: stretch !important;
}

.svt-wrapper .svt-service-type {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 72px !important;
    min-height: 72px !important;
    padding: 0 20px !important;
    border-radius: 18px !important;
    background: linear-gradient(180deg, #ebebea 0%, #e4e4e3 100%) !important;
    color: #121212 !important;
    border: 1px solid rgba(255,255,255,0.5) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 0 !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.42),
        0 2px 6px rgba(149, 158, 167, 0.06),
        0 1px 2px rgba(149, 158, 167, 0.05) !important;
    position: relative !important;
    overflow: visible !important;
    transform: none !important;
    transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease !important;
}

.svt-wrapper .svt-service-type:hover {
    background: linear-gradient(180deg, #efefee 0%, #e8e8e7 100%) !important;
    color: #111111 !important;
    transform: translateY(-1px) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.48),
        0 3px 8px rgba(149, 158, 167, 0.07),
        0 1px 2px rgba(149, 158, 167, 0.05) !important;
}

.svt-wrapper .svt-service-type--active,
.svt-wrapper .svt-service-type--active:hover {
    background: linear-gradient(180deg, #dfdfde 0%, #d7d7d6 100%) !important;
    color: #111111 !important;
    transform: translateY(1px) !important;
    box-shadow:
        inset 0 2px 5px rgba(125, 133, 142, 0.16),
        inset 0 -1px 0 rgba(255,255,255,0.30),
        0 1px 2px rgba(149, 158, 167, 0.04) !important;
}

/* Seçili buton altındaki kırmızı check işareti */
.svt-wrapper .svt-service-type--active::after {
    content: '✓' !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: -18px !important;
    width: 24px !important;
    height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: #d93a32 !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    box-shadow: 0 3px 8px rgba(217, 58, 50, 0.16) !important;
    z-index: 2 !important;
}

.svt-wrapper .svt-service-type__icon,
.svt-wrapper .svt-service-type__meta,
.svt-wrapper .svt-service-type__arrow,
.svt-wrapper .svt-service-type__glow {
    display: none !important;
}

.svt-wrapper .svt-service-type__body {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
}

.svt-wrapper .svt-service-type__title {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.05 !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em !important;
    color: #111111 !important;
    text-align: center !important;
    white-space: nowrap !important;
    text-rendering: optimizeLegibility !important;
}

@media (max-width: 1120px) {
    .svt-wrapper .svt-service-types {
        grid-template-columns: repeat(2, minmax(260px, 1fr)) !important;
        max-width: 820px !important;
    }
}

@media (max-width: 560px) {
    .svt-wrapper .svt-service-types {
        grid-template-columns: 1fr !important;
        max-width: 320px !important;
        gap: 14px !important;
    }
    .svt-wrapper .svt-service-type {
        height: 66px !important;
        min-height: 66px !important;
        border-radius: 16px !important;
        padding: 0 16px !important;
    }
    .svt-wrapper .svt-service-type__title {
        font-size: 15px !important;
    }
}


/* ─────────────────────────────────────────────────
   SVT OVERRIDE — Selected Check Asset v1.1.45
   Seçili buton altında kullanıcı referansındaki kırmızı işaret,
   daha küçük boyutta ve optimize edilmiş PNG asset ile.
───────────────────────────────────────────────── */
.svt-wrapper .svt-service-type--active::after,
.svt-wrapper .svt-service-type--active:hover::after {
    content: '' !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: -16px !important;
    width: 18px !important;
    height: 18px !important;
    background: url('../img/check-selected.png') center center / contain no-repeat !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    filter: none !important;
    opacity: 1 !important;
    z-index: 3 !important;
    pointer-events: none !important;
}
