:root {
    --bg: #f4f8fb;
    --bg-soft: #eef4f8;
    --surface: rgba(255,255,255,0.75);
    --surface-strong: #ffffff;
    --surface-border: rgba(255,255,255,0.55);
    --text: #0f172a;
    --muted: #5b6b83;
    --primary: #0ea5e9;
    --primary-2: #2563eb;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --shadow-xl: 0 24px 80px rgba(15, 23, 42, 0.10);
    --shadow-lg: 0 16px 45px rgba(15, 23, 42, 0.08);
    --radius-xl: 28px;
    --radius-lg: 20px;
}

html[data-theme="dark"] {
    --bg: #08111f;
    --bg-soft: #0c1728;
    --surface: rgba(14, 23, 39, 0.76);
    --surface-strong: #0d1728;
    --surface-border: rgba(255,255,255,0.06);
    --text: #e5eefb;
    --muted: #9bb0c7;
    --primary: #38bdf8;
    --primary-2: #60a5fa;
    --shadow-xl: 0 24px 80px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 16px 45px rgba(0, 0, 0, 0.32);
}

* {
    box-sizing: border-box;
}

html, body {
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(14,165,233,0.10), transparent 26%),
        radial-gradient(circle at top right, rgba(34,197,94,0.10), transparent 20%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
    color: var(--text);
    min-height: 100%;
}

a {
    text-decoration: none;
}
img, svg {
    max-width: 100%;
}
.site-shell {
    min-height: 100vh;
}

.topbar-glass {
    backdrop-filter: blur(16px);
    background: rgba(255,255,255,0.35);
    border-bottom: 1px solid rgba(255,255,255,0.30);
}

html[data-theme="dark"] .topbar-glass {
    background: rgba(8,17,31,0.52);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar-brand.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
}

.brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    font-size: 20px;
}

.brand-logo.large {
    width: 58px;
	min-width: 58px;
    height: 58px;
    font-size: 22px;
}

.brand-kicker {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 2px;
}

.nav-link {
    color: var(--text) !important;
    font-weight: 600;
    opacity: 0.85;
}

.nav-link:hover {
    opacity: 1;
}

.custom-toggler {
    border: 0;
    box-shadow: none !important;
}

.btn {
    border-radius: 14px;
    font-weight: 700;
    padding: 0.85rem 1.1rem;
	white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    border: 0;
    box-shadow: var(--shadow-lg);
}

.btn-soft-primary {
    background: rgba(14,165,233,0.10);
    color: var(--primary);
    border: 1px solid rgba(14,165,233,0.18);
}

.btn-theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(148,163,184,0.18);
    background: var(--surface);
    color: var(--text);
    backdrop-filter: blur(16px);
}

.hero-section {
	padding: 0px 0 34px 0;
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(255,255,255,0.78), rgba(255,255,255,0.58));
    border: 1px solid rgba(255,255,255,0.55);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(20px);
}

html[data-theme="dark"] .hero-card {
    background: linear-gradient(135deg, rgba(14,23,39,0.85), rgba(14,23,39,0.68));
    border: 1px solid rgba(255,255,255,0.06);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(14,165,233,0.10);
    border: 1px solid rgba(14,165,233,0.18);
    color: var(--primary);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 4.8rem);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--success));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-desc {
    font-size: 1.05rem;
    color: #ffffff;
    max-width: 720px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 16px;
}

.metric-card {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    backdrop-filter: blur(16px);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow-lg);
}

.metric-card .value {
    font-size: 1.65rem;
    font-weight: 900;
    margin-bottom: 4px;
}

.metric-card .label {
    color: var(--muted);
    font-size: 0.95rem;
}

.section-space {
    padding: 34px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-bottom: 20px;
}

.section-kicker {
    color: var(--primary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 800;
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin: 0;
}

.section-subtitle {
    color: var(--muted);
    max-width: 700px;
    line-height: 1.8;
}

.glass-card {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-lg);
    border-radius: 26px;
    backdrop-filter: blur(18px);
}

.trust-grid,
.destination-grid,
.blog-grid {
    display: grid;
    gap: 18px;
}

.trust-grid {
    grid-template-columns: repeat(4, minmax(0,1fr));
}

.destination-grid,
.blog-grid {
    grid-template-columns: repeat(3, minmax(0,1fr));
}

.trust-item,
.destination-card,
.blog-card,
.clinic-card-mini,
.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 24px;
    padding: 22px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
    height: 100%;
}

.icon-chip {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(14,165,233,0.16), rgba(37,99,235,0.18));
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 20px;
}

.trust-item h5,
.destination-card h5,
.blog-card h5,
.clinic-card-mini h5 {
    font-weight: 800;
    margin-bottom: 10px;
}

.text-muted-strong {
    color: var(--muted);
}

.clinic-image {
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(14,165,233,0.12), rgba(34,197,94,0.12));
}

.clinic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rating-pill,
.city-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15,23,42,0.05);
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

html[data-theme="dark"] .rating-pill,
html[data-theme="dark"] .city-pill {
    background: rgba(255,255,255,0.08);
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
}

.cta-panel {
    padding: 28px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(14,165,233,0.14), rgba(34,197,94,0.12));
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: var(--shadow-xl);
}

.footer-wrap {
    padding-bottom: 32px;
}

.footer-card {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-xl);
    border-radius: 30px;
    padding: 28px;
    backdrop-filter: blur(18px);
}

.footer-brand {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.footer-title {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links li + li {
    margin-top: 10px;
}

.footer-links a {
    color: var(--muted);
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-separator {
    margin: 28px 0 18px;
    border-color: rgba(148,163,184,0.16);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    background: rgba(148,163,184,0.10);
}

.auth-shell {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.auth-card {
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 34px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(18px);
}

.auth-aside {
    padding: 38px;
    height: 100%;
    background:
        radial-gradient(circle at top left, rgba(14,165,233,0.20), transparent 30%),
        radial-gradient(circle at bottom right, rgba(34,197,94,0.18), transparent 35%),
        linear-gradient(135deg, rgba(15,23,42,0.92), rgba(15,23,42,0.74));
    color: #fff;
}

.auth-form-wrap {
    padding: 38px;
}

.form-label {
    font-weight: 700;
    margin-bottom: 10px;
}

.form-control,
.form-select,
.select2-container--bootstrap4 .select2-selection,
.note-editor.note-frame,
.note-toolbar,
.note-editor.note-frame .note-editing-area .note-editable {
    border-radius: 16px !important;
}

.form-control,
.form-select {
    min-height: 50px;
    border: 1px solid rgba(148,163,184,0.22);
    background: rgba(255,255,255,0.72);
    color: var(--text);
    box-shadow: none !important;
}

html[data-theme="dark"] .form-control,
html[data-theme="dark"] .form-select {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
    color: var(--text);
}

.form-control::placeholder {
    color: #94a3b8;
}

.select2-container {
    width: 100% !important;
}

.select2-container--bootstrap4 .select2-selection {
    min-height: 50px !important;
    display: flex !important;
    align-items: center !important;
    border: 1px solid rgba(148,163,184,0.22) !important;
    background: rgba(255,255,255,0.72) !important;
    padding: 0 10px !important;
}

.input-group-glass .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.newsletter-form .btn {
    min-width: 110px;
}

.table-wrap {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 24px;
    padding: 18px;
    box-shadow: var(--shadow-lg);
}

.dt-filter-row input,
.dt-filter-row select {
    width: 100%;
    min-height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(148,163,184,0.22);
    padding: 8px 10px;
    background: #fff;
}

@media (max-width: 991.98px) {
    .metric-row,
    .trust-grid,
    .destination-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .hero-card,
    .footer-card,
    .auth-aside,
    .auth-form-wrap {
        padding: 22px;
    }

    .hero-section {
        padding-top: 34px;
    }
}
.compare-bar {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    width: min(980px, calc(100% - 24px));
    z-index: 1050;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-xl);
    border-radius: 24px;
    backdrop-filter: blur(18px);
    padding: 14px;
    display: none;
}

.compare-bar.active {
    display: block;
}

.compare-items {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.compare-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 16px;
    background: rgba(14,165,233,0.10);
    border: 1px solid rgba(14,165,233,0.18);
    color: var(--text);
    font-weight: 700;
}

.compare-chip button {
    border: 0;
    background: transparent;
    color: var(--danger);
    font-weight: 900;
}

.sticky-booking-card {
    position: sticky;
    top: 100px;
}

.price-compare-card,
.smart-reco-card,
.info-strip-card {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-lg);
    border-radius: 24px;
    backdrop-filter: blur(18px);
    padding: 22px;
}

.mega-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 16px;
}

.mega-stat {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow-lg);
}

.mega-stat .label {
    color: var(--muted);
    font-size: .92rem;
    margin-bottom: 6px;
}

.mega-stat .value {
    font-size: 1.45rem;
    font-weight: 900;
}

.treatment-price-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(148,163,184,0.20);
}

.treatment-price-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.reco-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(34,197,94,0.12);
    border: 1px solid rgba(34,197,94,0.18);
    color: #15803d;
    font-size: 13px;
    font-weight: 800;
}

.compare-table-wrap {
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    min-width: 760px;
    border-collapse: separate;
    border-spacing: 0 12px;
}

.compare-table th {
    color: var(--muted);
    font-weight: 800;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 0 14px 8px;
}

.compare-table td {
    background: var(--surface);
    border-top: 1px solid var(--surface-border);
    border-bottom: 1px solid var(--surface-border);
    padding: 16px 14px;
}

.compare-table td:first-child {
    border-left: 1px solid var(--surface-border);
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
}

.compare-table td:last-child {
    border-right: 1px solid var(--surface-border);
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
}

@media (max-width: 991.98px) {
    .mega-stat-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575.98px) {
    .mega-stat-grid {
        grid-template-columns: 1fr;
    }
}
.hero-search-shell {
    margin-top: 22px;
}

.hero-search-card {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-xl);
    border-radius: 30px;
    backdrop-filter: blur(18px);
    padding: 24px;
}

.hero-search-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.hero-search-title {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 900;
    margin: 0;
    letter-spacing: -0.02em;
}

.hero-search-mini-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-search-mini-stats span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(14,165,233,0.10);
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
}

.hero-search-submit {
    min-height: 50px;
}

.hero-search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-filter-chip {
    border: 1px solid rgba(148,163,184,0.20);
    background: rgba(255,255,255,0.72);
    color: var(--text);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 700;
    transition: all .2s ease;
}

.hero-filter-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(14,165,233,0.28);
    color: var(--primary);
}

.hero-live-results-wrap {
    margin-top: 24px;
}

.hero-results-loader {
    margin-top: 10px;
}

.hero-skeleton-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}

.hero-skeleton-card {
    height: 340px;
    border-radius: 24px;
    background: linear-gradient(
        90deg,
        rgba(148,163,184,0.10) 25%,
        rgba(148,163,184,0.18) 50%,
        rgba(148,163,184,0.10) 75%
    );
    background-size: 200% 100%;
    animation: heroShimmer 1.35s infinite linear;
}

@keyframes heroShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.hero-result-card {
    transition: transform .22s ease, box-shadow .22s ease;
}

.hero-result-card:hover {
    transform: translateY(-6px);
}

.hero-smart-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-smart-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
}

.hero-smart-tag-success {
    background: rgba(34,197,94,0.12);
    color: #15803d;
}

.hero-smart-tag-warning {
    background: rgba(245,158,11,0.14);
    color: #b45309;
}

.hero-smart-tag-primary {
    background: rgba(14,165,233,0.12);
    color: #0369a1;
}

.hero-smart-tag-info {
    background: rgba(59,130,246,0.12);
    color: #1d4ed8;
}

.hero-result-meta {
    display: grid;
    gap: 6px;
    font-size: 14px;
    color: var(--muted);
}

.hero-empty-state {
    text-align: center;
    padding: 36px 20px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-lg);
    border-radius: 26px;
}

.hero-empty-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 16px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: rgba(14,165,233,0.10);
    color: var(--primary);
}

.hero-search-success {
    color: #15803d;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .hero-search-top {
        flex-direction: column;
    }

    .hero-skeleton-grid {
        grid-template-columns: 1fr;
    }
}
.filter-sidebar {
    top:90px;
}

.compare-drawer {
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    background:#fff;
    border-top:1px solid #eee;
    padding:10px;
    display:none;
    z-index:999;
}

.compare-item {
    background:#0ea5e9;
    color:#fff;
    padding:6px 12px;
    border-radius:10px;
    font-size:12px;
}
.clinic-card-mini img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    margin-bottom: 30px;
}
.filter-sidebar {
    top: 90px;
}

.compare-drawer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface);
    border-top: 1px solid var(--surface-border);
    padding: 12px 16px;
    display: none;
    z-index: 999;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(18px);
}

.compare-item {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

#clinicGrid .clinic-card-mini img {
    width: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .filter-sidebar {
        position: relative !important;
        top: 0 !important;
    }
}
.step { display:none; }
.step.active { display:block; }

.progress {
    height:8px;
    border-radius:20px;
}

.progress-bar {
    background:linear-gradient(90deg,#0ea5e9,#22c55e);
}
.badge {
    border-radius:10px;
    padding:6px 10px;
    font-weight:600;
}
/* container */
#slotContainer {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(90px,1fr));
    gap:10px;
}

/* base */
.slot-item{
    border-radius:14px;
    padding:12px;
    text-align:center;
    cursor:pointer;
    transition: all .25s ease;
    backdrop-filter: blur(10px);
    border:1px solid rgba(0,0,0,0.05);
}

/* time */
.slot-time{
    font-weight:700;
    font-size:15px;
}

/* capacity */
.slot-capacity{
    font-size:11px;
    opacity:.7;
}

/* hover */
.slot-item:hover{
    transform: translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

/* active */
.slot-item.active{
    border:2px solid #0ea5e9;
    box-shadow:0 10px 25px rgba(14,165,233,.25);
}

/* HIGH (boş çok) */
.slot-high{
    background:rgba(34,197,94,0.08);
}

/* MEDIUM */
.slot-medium{
    background:rgba(234,179,8,0.08);
}

/* LOW */
.slot-low{
    background:rgba(239,68,68,0.08);
}

/* LOW text */
.slot-low .slot-capacity{
    color:#ef4444;
}

.slot-loading{
    grid-column:1/-1;
    text-align:center;
    padding:20px;
}
.booking-layout{
    display:grid;
    grid-template-columns: 100%;
    gap:20px;
    width:100%;
}

.booking-step{
    margin-bottom:18px;
}


.booking-summary{
    width:100%;
    position:sticky;
    top:100px;
}
.booking-main{
    min-width:0;
}
.summary-item{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
}

.summary-safe{
    font-size:13px;
    opacity:.7;
}

/* mobile */
@media(max-width:991px){
    .booking-layout{
        grid-template-columns:1fr;
    }
	.booking-summary{
        max-width:100%;
        position:relative;
        top:0;
    }
}
/* HEAD */
.summary-head{
    margin-bottom:15px;
}

/* ROW */
.summary-row{
    display:flex;
    justify-content:space-between;
    margin-bottom:12px;
    font-size:14px;
}

/* VALUE */
.summary-row strong{
    font-weight:700;
}

/* DIVIDER */
.summary-divider{
    height:1px;
    background:rgba(0,0,0,0.08);
    margin:15px 0;
}

/* PRICE */
.summary-price{
    display:flex;
    justify-content:space-between;
    font-size:16px;
    margin-bottom:12px;
}

.summary-price strong{
    color:#0ea5e9;
    font-size:18px;
}

/* SAFE */
.summary-safe{
    font-size:13px;
    opacity:.7;
    display:flex;
    align-items:center;
    gap:6px;
}

/* ACTIVE ANIMATION */
.summary-highlight{
    animation: glowPulse .6s ease;
}

@keyframes glowPulse{
    0%{box-shadow:0 0 0 rgba(14,165,233,0);}
    50%{box-shadow:0 0 15px rgba(14,165,233,.4);}
    100%{box-shadow:0 0 0 rgba(14,165,233,0);}
}
/* SLOT GRID */
#slotContainer{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(90px,1fr));
    gap:10px;
}

/* SLOT */
.slot-item{
    border-radius:12px;
    padding:10px;
    text-align:center;
    cursor:pointer;
    transition:.2s;
    border:1px solid rgba(0,0,0,0.05);
}

.slot-item:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

.slot-item.active{
    border:2px solid #0ea5e9;
}

/* COLORS */
.slot-high{ background:rgba(34,197,94,0.08); }
.slot-medium{ background:rgba(234,179,8,0.08); }
.slot-low{ background:rgba(239,68,68,0.08); }

.slot-warning{
    font-size:10px;
    color:#ef4444;
}

/* SUMMARY */
.summary-highlight{
    animation: glow .5s;
}

@keyframes glow{
    0%{box-shadow:0 0 0 rgba(0,0,0,0);}
    50%{box-shadow:0 0 15px rgba(14,165,233,.4);}
    100%{box-shadow:0 0 0 rgba(0,0,0,0);}
}

/* STICKY */
.sticky-booking-bar{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#fff;
    padding:10px;
    box-shadow:0 -5px 20px rgba(0,0,0,0.1);
    z-index:999;
}

.ai-box{
    background:linear-gradient(135deg,#0ea5e9,#3b82f6);
    border-radius:14px;
    padding:12px;
    margin-bottom:12px;
    color:#fff;
}

.ai-title{
    font-size:13px;
    margin-bottom:8px;
    opacity:.9;
}

.ai-options{
    display:flex;
    gap:8px;
}

.ai-option{
    flex:1;
    background:rgba(255,255,255,0.2);
    border-radius:10px;
    padding:8px;
    text-align:center;
    cursor:pointer;
    transition:.2s;
}

.ai-option:hover{
    background:#fff;
    color:#000;
    transform:translateY(-2px);
}

.ai-option strong{
    display:block;
    font-size:14px;
}

.ai-option span{
    font-size:11px;
}
.blog-card-wow{
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    overflow:hidden;
    transition: all .3s ease;
}

.blog-card-wow:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.blog-image img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.blog-meta{
    font-size:12px;
    color:#888;
}

.blog-content{
    line-height:1.8;
    font-size:16px;
}

.related-post{
    padding:10px;
    border-radius:10px;
    transition:.2s;
}

.related-post:hover{
    background:#f3f4f6;
}
.treatment-card {
    border-radius: 20px;
    transition: .3s;
}

.treatment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.treatment-image img {
    width:100%;
    height:160px;
    object-fit:cover;
    border-radius:12px;
}

.price {
    font-size:18px;
    font-weight:700;
    color:#0ea5e9;
}
.treatment-image img {
    height: 280px;
    object-fit: contain;
    object-position: center;
	margin-bottom: 15px;
}

.dest-card {
    display:block;
    border-radius:20px;
    overflow:hidden;
    position:relative;
    background:#fff;
    transition:.4s;
    box-shadow:0 10px 40px rgba(0,0,0,.06);
}

.dest-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 80px rgba(0,0,0,.15);
}

.dest-image img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.dest-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.6),transparent);
}

.dest-content{
    position:absolute;
    bottom:0;
    padding:20px;
    color:#fff;
}

.dest-icon{
    width:40px;height:40px;
    background:rgba(255,255,255,.2);
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.dest-footer{
    display:flex;
    justify-content:space-between;
    margin-top:10px;
    font-size:14px;
}
.dest-detail-hero{
    position:relative;
    height:420px;
    overflow:hidden;
}

.dest-detail-hero img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.dest-detail-hero .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.7),transparent);
}

.hero-inner{
    position:absolute;
    bottom:40px;
    color:#fff;
	width: 100%;
}
.dest-card{
    display:block;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.dest-card:hover{
    transform:translateY(-6px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

/* IMAGE */
.dest-image img{
    width:100%;
    height:220px;
    object-fit:cover;
}

/* BODY */
.dest-body{
    padding:18px;
}

/* ICON */
.dest-icon{
    width:36px;
    height:36px;
    background:#f1f5f9;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* BADGE */
.dest-badge{
    font-size:12px;
    background:#e0f2fe;
    color:#0284c7;
    padding:4px 8px;
    border-radius:8px;
}

/* TITLE */
.dest-body h3{
    font-weight:800;
    margin-bottom:8px;
	color: #000;
}

/* DESC */
.dest-body p{
    font-size:14px;
    color:#64748b;
    margin-bottom:12px;
}

/* FOOTER */
.dest-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:14px;
    font-weight:600;
}
.clinic-card img {
    height: 280px;
    width: 100%;
    object-fit: cover;
}
.dest-card{
    display:block;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    box-shadow:0 10px 30px rgba(15,23,42,.06);
    border:1px solid rgba(148,163,184,.12);
    height:100%;
}

.dest-card:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 80px rgba(15,23,42,.14);
    border-color:rgba(14,165,233,.18);
}

.dest-image{
    overflow:hidden;
    position:relative;
}

.dest-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:transform .6s ease;
    display:block;
}

.dest-card:hover .dest-image img{
    transform:scale(1.06);
}

.dest-body{
    padding:20px;
}

.dest-icon{
    width:40px;
    height:40px;
    background:linear-gradient(180deg,#f8fafc,#eef2ff);
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0f172a;
    flex:0 0 40px;
}

.dest-badge{
    font-size:12px;
    background:#e0f2fe;
    color:#0284c7;
    padding:5px 10px;
    border-radius:999px;
    line-height:1;
    font-weight:600;
}

.dest-rating-badge{
    font-size:12px;
    background:#fff7ed;
    color:#c2410c;
    padding:5px 9px;
    border-radius:999px;
    line-height:1;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:5px;
    white-space:nowrap;
}

.dest-body h3{
    font-weight:800;
    margin-bottom:8px;
    font-size:1.35rem;
    color:#0f172a;
}

.dest-body p{
    font-size:14px;
    color:#64748b;
    margin-bottom:16px;
    min-height:66px;
}

.dest-stats{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    margin-bottom:16px;
}

.dest-stat{
    background:#f8fafc;
    border:1px solid rgba(148,163,184,.12);
    border-radius:14px;
    padding:12px 14px;
}

.dest-stat .label{
    display:block;
    font-size:11px;
    color:#64748b;
    margin-bottom:4px;
    text-transform:uppercase;
    letter-spacing:.04em;
}

.dest-stat strong{
    color:#0f172a;
    font-size:15px;
    font-weight:800;
}

.dest-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:14px;
    font-weight:700;
    color:#0f172a;
    padding-top:4px;
}

.dest-card:hover .dest-footer i{
    transform:translateX(4px);
}

.dest-footer i{
    transition:transform .2s ease;
}

@media (max-width: 767.98px){
    .dest-image img{
        height:220px;
    }

    .dest-body{
        padding:16px;
    }

    .dest-body p{
        min-height:auto;
    }
}

.hero-floating-kpis{
    margin-top:-80px;
    position:relative;
    z-index:3;
}

.hero-kpi-wrap{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
}

.hero-kpi{
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(16px);
    border-radius:18px;
    padding:16px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.hero-kpi .label{
    font-size:11px;
    color:#64748b;
    text-transform:uppercase;
    letter-spacing:.05em;
}

.hero-kpi .value{
    font-size:18px;
    font-weight:800;
    color:#0f172a;
}
.destination-gallery-strip{
    margin-top:40px;
}

.destination-gallery-carousel .gallery-item{
    height:240px;
    overflow:hidden;
    border-radius:16px;
}

.destination-gallery-carousel img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.dest-card{
    display:block;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    box-shadow:0 10px 30px rgba(15,23,42,.06);
    border:1px solid rgba(148,163,184,.12);
    height:100%;
}

.dest-card:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 80px rgba(15,23,42,.14);
    border-color:rgba(14,165,233,.18);
}

.dest-image{
    overflow:hidden;
    position:relative;
    background:#f8fafc;
}

.dest-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:transform .6s ease;
    display:block;
}

.dest-card:hover .dest-image img{
    transform:scale(1.06);
}

.dest-body{
    padding:20px;
}

.dest-icon{
    width:40px;
    height:40px;
    background:linear-gradient(180deg,#f8fafc,#eef2ff);
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0f172a;
    flex:0 0 40px;
}

.dest-badge{
    font-size:12px;
    background:#e0f2fe;
    color:#0284c7;
    padding:5px 10px;
    border-radius:999px;
    line-height:1;
    font-weight:600;
    max-width:170px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.dest-rating-badge{
    font-size:12px;
    background:#fff7ed;
    color:#c2410c;
    padding:5px 9px;
    border-radius:999px;
    line-height:1;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:5px;
    white-space:nowrap;
}

.dest-body h3{
    font-weight:800;
    margin-bottom:8px;
    font-size:1.35rem;
    color:#0f172a;
}

.dest-body p{
    font-size:14px;
    color:#64748b;
    margin-bottom:16px;
    min-height:66px;
}

.dest-stats{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    margin-bottom:16px;
}

.dest-stat{
    background:#f8fafc;
    border:1px solid rgba(148,163,184,.12);
    border-radius:14px;
    padding:12px 14px;
}

.dest-stat .label{
    display:block;
    font-size:11px;
    color:#64748b;
    margin-bottom:4px;
    text-transform:uppercase;
    letter-spacing:.04em;
}

.dest-stat strong{
    color:#0f172a;
    font-size:15px;
    font-weight:800;
}

.dest-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:14px;
    font-weight:700;
    color:#0f172a;
    padding-top:4px;
}

.dest-footer i{
    transition:transform .2s ease;
}

.dest-card:hover .dest-footer i{
    transform:translateX(4px);
}
.hero-slider .hero-slide{
    position:relative;
    height:650px;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero-bg img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    top:0;
    left:0;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(15,23,42,.75), rgba(15,23,42,.35));
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
    color:#fff;
}

.hero-title{
    font-size:3.5rem;
    font-weight:900;
    line-height:1.1;
}

.hero-desc{
    font-size:1.1rem;
    margin:20px 0;
}

.hero-slider .owl-dots{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
}
/* NAV WRAP */
.hero-slider .owl-nav{
    position:absolute;
    top:50%;
    width:100%;
    transform:translateY(-50%);
    pointer-events:none;
}

/* BUTTON BASE */
.hero-nav{
    width:54px;
    height:54px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.25);

    color:#fff;
    font-size:18px;

    transition: all .25s ease;
    pointer-events:auto;
}

/* LEFT */
.hero-prev{
    position:absolute;
    left:28px;
	cursor:pointer;
}

/* RIGHT */
.hero-next{
    position:absolute;
    right:28px;
	cursor:pointer;
}

/* HOVER EFFECT */
.hero-nav:hover{
    background: rgba(255,255,255,0.25);
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

/* ACTIVE CLICK */
.hero-nav:active{
    transform: scale(.95);
}

/* ICON SMOOTH */
.hero-nav i{
    transition: transform .25s ease;
}

.hero-prev:hover i{
    transform: translateX(-3px);
}

.hero-next:hover i{
    transform: translateX(3px);
}

/* MOBILE */
@media(max-width:768px){
    .hero-nav{
        width:42px;
        height:42px;
        font-size:14px;
    }

    .hero-prev{ left:10px; }
    .hero-next{ right:10px; }
}

.select2-container--bootstrap-5 .select2-selection {
    min-height: 45px;
    padding: 6px 12px;
    border-radius: 10px;
}
/* SELECT2 MULTI FIX */
.select2-container--bootstrap-5 .select2-selection--multiple {
    min-height: 45px;
    padding: 6px;
    border-radius: 12px;
}

/* SEÇİLEN TAG */
.select2-container--bootstrap-5 .select2-selection__choice {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;

    background: #e0f2fe !important;
    border: 1px solid #bae6fd !important;
    color: #0369a1 !important;

    border-radius: 999px !important;
    padding: 6px 10px !important;
    font-size: 13px;
    font-weight: 600;
}

/* X BUTONU */
.select2-container--bootstrap-5 .select2-selection__choice__remove {
    position: relative !important;
    margin: 0 !important;
    border: none !important;
    background: transparent !important;
    color: #0369a1 !important;
    font-size: 14px !important;
    line-height: 1 !important;
}

/* X hover */
.select2-container--bootstrap-5 .select2-selection__choice__remove:hover {
    color: #ef4444 !important;
}

/* BOZUK KAREYİ SIFIRLA */
.select2-selection__choice__remove span {
    display: none !important;
}
.select2-container--bootstrap-5 .select2-selection__choice {
    box-shadow: 0 4px 10px rgba(0,0,0,.05);
    transition: all .2s ease;
}

.select2-container--bootstrap-5 .select2-selection__choice:hover {
    transform: translateY(-1px);
}