:root {
    --primary: #0052FF;        /* Modern Tech Blue */
    --secondary: #00C2FF;      /* Light Cyan */
    --dark: #0A192F;           /* Deep Navy */
    --text: #475569;           /* Slate Gray */
    --bg: #F8FAFC;             /* Off White Background */
    --white: #FFFFFF;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -1px;
    font-family: 'Readex Pro', sans-serif;
}

.logo span { color: var(--primary); }

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-secondary {
    color: var(--primary);
    text-decoration: none;
    margin-right: 20px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0A192F 0%, #0052FF 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    font-family: 'Readex Pro', sans-serif;
    margin-bottom: 15px;
}

.hero p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.search-box {
    background: var(--white);
    padding: 10px;
    border-radius: 50px;
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.search-input {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-right: 1px solid #eee;
}

.search-input i { color: var(--primary); margin-right: 10px; }

.search-input select, .search-input input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
    background: transparent;
}

.btn-search {
    background: var(--dark);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
}

/* Categories Bar */
.categories-bar {
    padding: 20px 0;
    overflow-x: auto;
    white-space: nowrap;
    background: var(--white);
}

.cat-item {
    display: inline-block;
    padding: 10px 25px;
    margin-right: 10px;
    background: #f1f5f9;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

.cat-item.active, .cat-item:hover {
    background: var(--primary);
    color: white;
}

/* Clinic Cards */
.section-title { margin: 40px 0 20px; }
.section-title h2 { font-size: 32px; font-family: 'Readex Pro'; }

.clinic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.clinic-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    position: relative;
    border: 1px solid #f1f5f9;
}

.clinic-card:hover { transform: translateY(-10px); }

.badge-premium {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FFD700;
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    z-index: 10;
}

.clinic-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.clinic-content { padding: 25px; }

.rating { color: #f59e0b; font-weight: 700; margin-bottom: 10px; font-size: 14px; }

.clinic-content h3 { font-size: 22px; margin-bottom: 10px; }

.location { color: var(--text); font-size: 15px; margin-bottom: 15px; }

.tags span {
    background: #eef2ff;
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    margin-right: 5px;
    font-weight: 600;
}

.card-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price { font-size: 14px; color: var(--text); }
.price b { font-size: 20px; color: var(--dark); display: block; }

.btn-view {
    background: #f1f5f9;
    color: var(--dark);
    padding: 10px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-view:hover { background: var(--primary); color: white; }

/* Loader */
.loader-container {
    text-align: center;
    padding: 40px;
    display: none; /* JS ile açılacak */
}

.spinner {
    width: 40px; height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Mobile Viewport Optimization (Webview Friendly) */
@media (max-width: 768px) {
    .hero h1 { font-size: 28px; }
    .search-box { flex-direction: column; border-radius: 20px; }
    .search-input { border-right: none; border-bottom: 1px solid #eee; padding: 15px; }
    .clinic-grid { grid-template-columns: 1fr; }
    .nav-menu .btn-secondary { display: none; } /* Mobil de sadeleştirme */
}






/* Clinic Detail Specific Styles */
.clinic-hero {
    position: relative;
    height: 350px;
    color: white;
    display: flex;
    align-items: flex-end;
}

.hero-bg {
    position: absolute; top:0; left:0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    filter: brightness(0.6);
    z-index: -1;
}

.profile-area {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 30px;
}

.profile-img {
    width: 100px; height: 100px;
    border-radius: 20px;
    border: 4px solid var(--white);
    overflow: hidden;
    background: white;
}
.profile-img img { width: 100%; height: 100%; object-fit: cover; }

.profile-info h1 { font-family: 'Readex Pro'; font-size: 32px; }

.rating-badge { background: rgba(0,0,0,0.5); padding: 5px 15px; border-radius: 50px; font-size: 14px; }
.rating-badge i { color: #FFD700; }

/* Sticky Reservation Bar */
.sticky-booking-bar {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 70px; /* Header altı */
    z-index: 99;
}

.btn-book-large {
    width: 100%;
    background: linear-gradient(135deg, #0052FF 0%, #00C2FF 100%);
    color: white;
    border: none;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 82, 255, 0.2);
}

/* Tabs */
.clinic-tabs-nav {
    background: var(--white);
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.tab-list {
    display: flex;
    list-style: none;
    overflow-x: auto;
}

.tab-link {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
    border-bottom: 3px solid transparent;
    transition: 0.3s;
    white-space: nowrap;
}

.tab-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-content { display: none; animation: fadeIn 0.4s; }
.tab-content.active { display: block; }

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

/* Services Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.service-item {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid #f1f5f9;
}

/* Two-Color Icon Style */
.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Review Cards */
.review-section { margin-top: 50px; padding-top: 30px; border-top: 2px solid #eee; }
.review-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    margin-top: 20px;
    border: 1px solid #e2e8f0;
}
.review-badge-verified {
    display: inline-block;
    margin-top: 10px;
    color: #059669;
    font-size: 12px;
    font-weight: 700;
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.gallery-item img {
    width: 100%;
    border-radius: 12px;
}
.gallery-actions { margin-top: 8px; font-size: 14px; color: var(--text); }
.gallery-actions span { margin-right: 15px; cursor: pointer; }

/* Mobile Optimizations */
@media (max-width: 768px) {
    .clinic-hero { height: 250px; }
    .profile-area { flex-direction: column; text-align: center; }
    .btn-book-large { font-size: 16px; }
}



/* Forms & Containers */
.form-container {
    max-width: 600px;
    margin: 40px auto;
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.form-header { text-align: center; margin-bottom: 30px; }
.form-header h2 { font-family: 'Readex Pro'; color: var(--dark); }

.modern-form .form-step { margin-bottom: 20px; }
.modern-form label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 14px; color: var(--text); }

.modern-form input, .modern-form select, .modern-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    font-size: 16px;
    transition: 0.3s;
}

.modern-form input:focus { border-color: var(--primary); outline: none; }

.btn-submit {
    width: 100%;
    background: var(--dark);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover { background: var(--primary); }

/* Dashboard Layout */
.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
    background: #f8fafc;
}

.dashboard-sidebar {
    width: 280px;
    background: var(--white);
    border-right: 1px solid #e2e8f0;
    padding: 30px 20px;
}

.user-brief { text-align: center; margin-bottom: 40px; }
.user-brief img { width: 80px; height: 80px; border-radius: 50%; margin-bottom: 10px; }

.side-nav a {
    display: flex;
    align-items: center;
    padding: 15px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    border-radius: 12px;
    margin-bottom: 5px;
}

.side-nav a i { margin-right: 12px; width: 20px; }
.side-nav a.active { background: var(--primary); color: white; }
.side-nav a.logout { color: #e11d48; margin-top: 50px; }

.dashboard-content { flex: 1; padding: 40px; }

/* Appointment Cards */
.appointment-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 5px solid #cbd5e1;
}

.appointment-card.pending { border-left-color: #f59e0b; }
.appointment-card.confirmed { border-left-color: #10b981; }

.status-indicator { font-size: 12px; font-weight: 800; text-transform: uppercase; padding: 4px 10px; border-radius: 50px; background: #f1f5f9; }

.btn-sm { padding: 8px 16px; border-radius: 8px; border: none; font-weight: 600; cursor: pointer; }
.btn-cancel { background: #fee2e2; color: #b91c1c; }
.btn-msg { background: #25d366; color: white; }

/* Onboarding */
.onboarding-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 80px 0;
}

.onboarding-text h1 span { color: var(--primary); }
.benefit-list { list-style: none; margin-top: 30px; }
.benefit-list li { margin-bottom: 15px; font-size: 18px; }
.benefit-list i { color: #10b981; margin-right: 10px; }

/* Mobile Dashboard */
@media (max-width: 768px) {
    .dashboard-wrapper { flex-direction: column; }
    .dashboard-sidebar { width: 100%; border-right: none; border-bottom: 1px solid #eee; }
    .appointment-card { flex-direction: column; align-items: flex-start; gap: 15px; }
    .onboarding-grid { grid-template-columns: 1fr; text-align: center; }
}



/* Admin Layout */
.admin-dashboard {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: var(--dark);
    color: white;
    padding: 30px 0;
    position: fixed;
    height: 100vh;
}

.admin-logo {
    padding: 0 30px 40px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -1px;
}
.admin-logo span { color: var(--secondary); }

.admin-nav a {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
}

.admin-nav a:hover, .admin-nav a.active {
    color: white;
    background: rgba(255,255,255,0.05);
    border-left: 4px solid var(--primary);
}

.admin-nav a i { margin-right: 15px; width: 20px; }

.admin-main {
    flex: 1;
    margin-left: 260px;
    padding: 40px;
    background: #f1f5f9;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

/* Edit Tabs Nav */
.edit-tabs-nav {
    display: flex;
    background: white;
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 30px;
    gap: 10px;
}

.edit-tabs-nav .tab-link {
    flex: 1;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
    transition: 0.3s;
}

.edit-tabs-nav .tab-link.active {
    background: var(--primary);
    color: white;
}

/* Form Styles */
.card-layout {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--dark); }

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
}

/* Services Grid in Admin */
.services-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.check-item input { display: none; }
.check-box {
    display: block;
    padding: 15px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    transition: 0.3s;
}

.check-item input:checked + .check-box {
    border-color: var(--primary);
    background: #eff6ff;
    color: var(--primary);
}

/* Photo Upload Boxes */
.photo-upload-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.drop-zone {
    height: 150px;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.drop-zone input {
    position: absolute; width: 100%; height: 100%; opacity: 0; cursor: pointer;
}

.drop-zone i { font-size: 30px; color: var(--primary); margin-bottom: 10px; }

.btn-primary-large {
    width: 100%;
    padding: 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    margin-top: 30px;
    cursor: pointer;
}

/* Mobile Admin */
@media (max-width: 992px) {
    .admin-sidebar { display: none; }
    .admin-main { margin-left: 0; padding: 20px; }
    .edit-tabs-nav { flex-direction: column; }
    .photo-upload-section { grid-template-columns: 1fr; }
}



/* Dashboard Genel Yapı */
.dashboard-body { background: #f0f2f5; margin: 0; }

.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.dashboard-sidebar {
    width: 300px;
    background: #ffffff;
    border-right: 1px solid #e4e6eb;
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
}

.user-brief {
    text-align: center;
    margin-bottom: 40px;
}

.avatar-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.avatar-wrapper img {
    width: 90px; height: 90px;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.online-status {
    position: absolute; bottom: -5px; right: -5px;
    width: 18px; height: 18px;
    background: #10b981;
    border: 3px solid #fff;
    border-radius: 50%;
}

.side-nav .nav-link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
    border-radius: 14px;
    margin-bottom: 8px;
    transition: 0.3s;
}

.side-nav .nav-link i { margin-right: 15px; font-size: 20px; }
.side-nav .nav-link.active, .side-nav .nav-link:hover {
    background: #eff6ff;
    color: #0052FF;
}

/* Content Sections */
.dashboard-content {
    flex: 1;
    padding: 40px;
    max-width: 1000px;
}

.content-section {
    display: none; /* Varsayılan kapalı */
    animation: slideUp 0.4s ease-out;
}

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

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

.section-header { margin-bottom: 30px; }
.section-header h2 { font-size: 28px; font-family: 'Readex Pro'; color: #1e293b; }

/* Appointment Card */
.appointment-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

/* Service Grid Edit */
.services-edit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.service-checkbox input { display: none; }
.s-card {
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.3s;
}

.service-checkbox input:checked + .s-card {
    border-color: #0052FF;
    background: #f0f7ff;
    color: #0052FF;
}

/* Form Card */
.form-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
}

.input-group { margin-bottom: 20px; }
.input-group label { display: block; margin-bottom: 10px; font-weight: 600; }
.input-group textarea, .input-group input, .modern-select {
    width: 100%; padding: 15px; border: 1px solid #e2e8f0; border-radius: 12px; font-size: 16px;
}

.btn-save {
    background: #0052FF; color: #fff; border: none; padding: 15px 30px; border-radius: 12px; font-weight: 700; cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .dashboard-wrapper { flex-direction: column; }
    .dashboard-sidebar { width: 100%; border-right: none; border-bottom: 1px solid #e2e8f0; }
    .side-nav { display: flex; overflow-x: auto; padding-bottom: 10px; }
    .side-nav .nav-link { white-space: nowrap; margin-right: 10px; padding: 12px 18px; }
    .dashboard-content { padding: 20px; }
}



/* Clinic Detail Hero */
.clinic-profile-hero {
    position: relative;
    padding-top: 180px;
    background: var(--dark);
}

.hero-cover {
    position: absolute; top: 0; left: 0; width: 100%; height: 280px;
    background-size: cover; background-position: center;
    filter: brightness(0.7);
}

.hero-profile-box {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 25px;
    padding-bottom: 30px;
}

.profile-avatar {
    width: 140px; height: 140px;
    border-radius: 24px;
    border: 5px solid #fff;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }

.profile-title h1 {
    font-size: 32px; color: #fff; font-family: 'Readex Pro';
    margin-bottom: 10px;
}

.profile-badges { display: flex; gap: 10px; }
.badge-star { background: #FFD700; color: #000; padding: 5px 15px; border-radius: 50px; font-weight: 700; font-size: 14px; }
.badge-verified { background: #10b981; color: #fff; padding: 5px 15px; border-radius: 50px; font-weight: 600; font-size: 14px; }

/* Sticky CTA */
.sticky-cta-bar {
    position: sticky; top: 0; z-index: 1000;
    background: #fff; padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.btn-reservation-large {
    width: 100%; padding: 18px;
    background: linear-gradient(135deg, #0052FF 0%, #00C2FF 100%);
    color: #fff; border: none; border-radius: 16px;
    font-size: 18px; font-weight: 700; cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 82, 255, 0.3);
}

/* Tabs */
.details-tab-nav {
    background: #fff; border-bottom: 1px solid #e2e8f0;
    margin-bottom: 30px;
}
.tabs-scroll-wrapper { display: flex; overflow-x: auto; gap: 10px; }
.tab-btn {
    padding: 20px 30px; border: none; background: none;
    font-size: 16px; font-weight: 600; color: #64748b;
    cursor: pointer; border-bottom: 3px solid transparent;
    white-space: nowrap;
}
.tab-btn.active { color: #0052FF; border-bottom-color: #0052FF; }

/* Section Visibility */
.detail-section { display: none; animation: fadeIn 0.4s ease; }
.detail-section.active { display: block; }

/* Services Grid */
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}
.service-card-item {
    background: #fff; padding: 30px; border-radius: 20px;
    text-align: center; border: 1px solid #f1f5f9;
}
.s-icon { font-size: 40px; color: #0052FF; margin-bottom: 15px; }

/* Gallery */
.gallery-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.gallery-card { position: relative; border-radius: 15px; overflow: hidden; }
.gallery-card img { width: 100%; height: 250px; object-fit: cover; }
.gallery-overlay {
    position: absolute; bottom: 0; left:0; width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 15px; color: #fff; display: flex; gap: 15px;
}

/* Reviews */
.patient-reviews { margin-top: 50px; padding-top: 30px; border-top: 1px solid #e2e8f0; }
.review-card {
    background: #fff; padding: 25px; border-radius: 20px; margin-top: 20px;
}
.review-user-info { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.review-user-info img { width: 50px; height: 50px; border-radius: 50%; }
.review-tag-verified { margin-left: auto; color: #10b981; font-weight: 700; font-size: 13px; }

@media (max-width: 768px) {
    .hero-profile-box { flex-direction: column; align-items: center; text-align: center; }
    .gallery-layout { grid-template-columns: 1fr; }
}


/* Tab Navigation Fix */
.tab-btn {
    padding: 15px 25px;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    color: #94a3b8; /* Soft gray */
    cursor: pointer;
    position: relative;
    transition: 0.3s all ease;
    border-bottom: 3px solid transparent;
}

.tab-btn.active {
    color: #0052FF;
    border-bottom: 3px solid #0052FF;
}

/* Add Review & Rate Button Styling */
.btn-add-review {
    background: #ffffff;
    color: #0052FF;
    border: 2px solid #0052FF;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 82, 255, 0.1);
}

.btn-add-review i {
    font-size: 18px;
}

.btn-add-review:hover {
    background: #0052FF;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 82, 255, 0.2);
}

/* Section Heading Style */
.section-heading {
    font-family: 'Readex Pro', sans-serif;
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 25px;
    border-left: 5px solid #0052FF;
    padding-left: 15px;
}


/* Search Page Specifics */
.search-header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.search-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-sm { font-weight: 800; text-decoration: none; color: var(--dark); font-size: 20px; }
.logo-sm span { color: var(--primary); }

.header-search-bar {
    display: flex;
    background: #f1f5f9;
    padding: 8px 15px;
    border-radius: 50px;
    gap: 15px;
    border: 1px solid #e2e8f0;
}

.h-input { font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 8px; color: #475569; }
.btn-refresh { border: none; background: var(--primary); color: #fff; width: 30px; height: 30px; border-radius: 50%; cursor: pointer; }

/* Layout */
.search-layout {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.search-sidebar {
    width: 300px;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    height: fit-content;
}

.results-feed { flex: 1; }

/* Filters */
.filter-group { margin-bottom: 25px; border-bottom: 1px solid #f1f5f9; padding-bottom: 20px; }
.filter-group h4 { margin-bottom: 15px; font-size: 16px; font-family: 'Readex Pro'; }

.filter-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text);
}

.filter-check input { width: 18px; height: 18px; accent-color: var(--primary); }

.price-inputs { display: flex; align-items: center; gap: 10px; }
.price-inputs input { width: 100%; padding: 8px; border-radius: 8px; border: 1px solid #cbd5e1; }

.btn-apply-filters {
    width: 100%; background: var(--dark); color: #fff; padding: 12px; border: none; border-radius: 12px; font-weight: 700; cursor: pointer;
}

/* Results Cards */
.results-info { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.results-info h2 span { color: var(--primary); }

.clinic-search-card {
    background: #fff;
    display: flex;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 25px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.clinic-search-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }

.card-img { width: 300px; position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.badge-promo { position: absolute; top: 15px; left: 15px; background: #00C2FF; color: #fff; padding: 5px 12px; border-radius: 50px; font-size: 12px; font-weight: 700; }

.card-details { padding: 25px; flex: 1; display: flex; flex-direction: column; }

.card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px; }
.clinic-score { text-align: right; }
.clinic-score strong { display: block; font-size: 20px; color: #f59e0b; }
.clinic-score span { font-size: 12px; color: #94a3b8; }

.clinic-desc { font-size: 14px; color: #64748b; margin-bottom: 20px; line-height: 1.5; }

.included-services { display: flex; gap: 15px; margin-bottom: 20px; }
.included-services span { font-size: 13px; font-weight: 600; color: #0f172a; background: #f1f5f9; padding: 4px 10px; border-radius: 6px; }

.card-pricing { margin-top: auto; display: flex; justify-content: space-between; align-items: center; }
.price-val small { display: block; color: #94a3b8; font-size: 12px; }
.price-val strong { font-size: 24px; color: var(--dark); }

.btn-view-profile { background: var(--primary); color: #fff; padding: 12px 25px; border-radius: 12px; text-decoration: none; font-weight: 700; transition: 0.3s; }

/* Mobile */
@media (max-width: 992px) {
    .search-layout { flex-direction: column; }
    .search-sidebar {
        position: fixed; top: 0; left: -100%; width: 100%; height: 100%; z-index: 2000;
        transition: 0.3s; overflow-y: auto; border-radius: 0;
    }
    .search-sidebar.open { left: 0; }
    .clinic-search-card { flex-direction: column; }
    .card-img { width: 100%; height: 200px; }
    .header-search-bar { display: none; }
    .btn-close-filter { display: block; position: absolute; top: 20px; right: 20px; border: none; font-size: 24px; background: none; }
}

/* Ana Renk Paleti Güncellemesi */
:root {
    --primary-gradient: linear-gradient(135deg, #0052FF 0%, #00C2FF 100%);
    --glow-shadow: 0 0 20px rgba(0, 194, 255, 0.3);
    --dark-navy: #0F172A;
    --soft-blue: #E2E8F0;
}

/* Sidebar Filtrelerini Modernleştirme */
.search-sidebar {
    border: 1px solid rgba(0, 82, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    background: #ffffff;
}

/* Custom Checkbox Tasarımı (Standart checkbox yerine) */
.filter-check {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 15px;
    user-select: none;
    display: flex;
    align-items: center;
}

.filter-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0; width: 0;
}

.checkmark {
    position: absolute;
    top: 0; left: 0;
    height: 22px; width: 22px;
    background-color: #f1f5f9;
    border-radius: 6px;
    border: 2px solid #e2e8f0;
    transition: 0.3s;
}

.filter-check:hover input ~ .checkmark { background-color: #e2e8f0; }

.filter-check input:checked ~ .checkmark {
    background: var(--primary-gradient);
    border-color: transparent;
    box-shadow: var(--glow-shadow);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.filter-check input:checked ~ .checkmark:after { display: block; }

.filter-check .checkmark:after {
    left: 7px; top: 3px;
    width: 5px; height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Filtre Uygula Butonu (Black yerine Glowy Blue) */
.btn-apply-filters {
    background: var(--primary-gradient);
    box-shadow: 0 4px 15px rgba(0, 82, 255, 0.2);
    border-radius: 14px;
    padding: 15px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: 0.3s;
    border: none;
}

.btn-apply-filters:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 82, 255, 0.4);
    filter: brightness(1.1);
}

/* Klinik Kartları & Glow Efekti */
.clinic-search-card {
    border: 1px solid rgba(226, 232, 240, 0.8);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.clinic-search-card.featured {
    border-left: 6px solid #0052FF;
    background: linear-gradient(to right, #ffffff, #f0f7ff);
}

/* Hizmet Etiketleri (Hotel, Transfer, Lang) */
.included-services span {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    transition: 0.3s;
}

.included-services span i {
    color: #0052FF; /* İkonlar mavi */
}

.included-services span:hover {
    border-color: #0052FF;
    color: #0052FF;
    transform: translateY(-1px);
}

/* Fiyat Alanı - Glowy */
.price-val strong {
    background: linear-gradient(135deg, #1E293B 0%, #0052FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 28px;
    font-weight: 800;
}

/* View Details Butonu - Gradient & Glow */
.btn-view-profile {
    background: var(--primary-gradient);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 82, 255, 0.2);
    transition: 0.4s;
}

.btn-view-profile:hover {
    box-shadow: 0 8px 25px rgba(0, 82, 255, 0.4);
    transform: scale(1.03);
}

/* Aktif Taglar */
.active-tags .tag {
    background: #eff6ff;
    color: #0052FF;
    border: 1px solid #bfdbfe;
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 600;
}

.active-tags .tag i:hover { color: #ef4444; }



/* 1. Sağ Üstteki Filters Butonu (Mobile/Compact) */
.btn-filter-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.btn-filter-mobile:hover {
    background: var(--primary-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--glow-shadow);
}

.btn-filter-mobile i {
    font-size: 14px;
    color: var(--primary);
}

.btn-filter-mobile:hover i { color: #fff; }

/* 2. Sort By (Sıralama) Dropdown Modeli */
.sorting-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sorting-box span {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.modern-select-sm {
    appearance: none; /* Standart ok işaretini kaldır */
    background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230052FF'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E") no-repeat right 12px center;
    background-size: 16px;
    border: 1px solid #e2e8f0;
    padding: 10px 35px 10px 15px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: 0.3s;
    outline: none;
    min-width: 160px;
}

.modern-select-sm:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 82, 255, 0.1);
}

/* 3. Active Tags & Clear All */
.active-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px; /* Klinik kartları ile aradaki boşluk */
    padding-bottom: 10px;
}

.btn-clear-all {
    background: #f1f5f9;
    color: #64748b;
    border: none;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-clear-all:hover {
    background: #fee2e2;
    color: #ef4444;
}

/* 4. Etiket (Tag) Stili */
.tag {
    background: #eff6ff;
    color: #0052FF;
    border: 1px solid #bfdbfe;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: default;
}

.tag i {
    cursor: pointer;
    font-size: 12px;
    opacity: 0.6;
    transition: 0.2s;
}

.tag i:hover {
    opacity: 1;
    transform: scale(1.2);
    color: #ef4444;
}

/* 5. Header Search Spacing Fix */
.search-nav {
    padding: 0 20px;
}



/* About Hero */
.about-hero {
    background: linear-gradient(135deg, #0f172a 0%, #0052FF 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
}

.about-hero h1 {
    font-size: 48px;
    font-family: 'Readex Pro';
    margin-bottom: 20px;
}

.about-hero h1 span { color: #00C2FF; }

.about-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #e2e8f0;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 82, 255, 0.1);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 25px;
    box-shadow: var(--glow-shadow);
}

/* Why Us Section */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-content h2 { font-size: 36px; font-family: 'Readex Pro'; margin-bottom: 20px; }
.why-us-content h2 span { color: var(--primary); }

.feature-list { list-style: none; margin-top: 30px; }
.feature-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 16px;
}

.feature-list i { color: #10b981; font-size: 20px; margin-top: 3px; }

.img-glow {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Contact Card */
.contact-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.contact-info-box {
    background: #0f172a;
    color: white;
    padding: 60px;
}

.contact-info-box h3 { font-size: 30px; margin-bottom: 20px; }

.contact-links { margin-top: 40px; }
.contact-links a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 20px;
    font-size: 18px;
    transition: 0.3s;
}

.contact-links a:hover { color: #00C2FF; }
.contact-links i { margin-right: 15px; color: #00C2FF; }

.contact-form-box { padding: 60px; }

.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }

.btn-submit-glow {
    width: 100%;
    background: var(--primary-gradient);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    box-shadow: var(--glow-shadow);
    transition: 0.3s;
}

.btn-submit-glow:hover { transform: scale(1.02); filter: brightness(1.1); }

/* Responsive */
@media (max-width: 992px) {
    .steps-grid, .why-us-grid, .contact-card { grid-template-columns: 1fr; }
    .input-row { grid-template-columns: 1fr; }
    .about-hero h1 { font-size: 32px; }
}

/* Blog Hero */
.blog-hero {
    background: linear-gradient(135deg, #0A192F 0%, #0052FF 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}
.blog-hero h1 { font-size: 42px; font-family: 'Readex Pro'; margin-bottom: 15px; }
.blog-hero h1 span { color: #00C2FF; text-shadow: 0 0 15px rgba(0, 194, 255, 0.4); }

/* Filter Bar */
.blog-filter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.blog-cat-btn {
    background: transparent;
    border: none;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    border-radius: 12px;
    transition: 0.3s;
}

.blog-cat-btn.active, .blog-cat-btn:hover {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--glow-shadow);
}

.blog-search {
    position: relative;
    width: 250px;
}
.blog-search input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
}
.blog-search i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid #f1f5f9;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 82, 255, 0.1);
}

.blog-card-img {
    position: relative;
    height: 220px;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }

.blog-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.9);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    backdrop-filter: blur(5px);
}

.blog-card-content { padding: 25px; display: flex; flex-direction: column; flex: 1; }

.blog-meta {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.blog-card-content h3 {
    font-size: 20px;
    font-family: 'Readex Pro';
    line-height: 1.4;
    margin-bottom: 15px;
    color: #1e293b;
}

.blog-card-content p {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-read-more {
    margin-top: auto;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-read-more:hover { gap: 12px; color: #00C2FF; }

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.btn-page {
    width: 40px; height: 40px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-page.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    box-shadow: var(--glow-shadow);
}

@media (max-width: 768px) {
    .blog-filter-wrapper { flex-direction: column; gap: 15px; }
    .blog-categories { width: 100%; overflow-x: auto; white-space: nowrap; display: flex; }
    .blog-search { width: 100%; }
}

/* Appointment Page Specifics */
.appointment-page-body {
    background: radial-gradient(circle at top right, #f0f7ff, #f8fafc);
}

.simple-nav {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}
.simple-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.btn-back {
    text-decoration: none;
    color: #64748b;
    font-weight: 600;
    font-size: 14px;
}

.appointment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-top: 30px;
}

/* Left Side Styling */
.badge-tech {
    background: #eff6ff;
    color: #0052FF;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.appointment-info-side h1 {
    font-family: 'Readex Pro';
    font-size: 42px;
    margin: 20px 0;
    line-height: 1.2;
}
.appointment-info-side h1 span { color: #0052FF; }

.trust-list { list-style: none; margin-top: 30px; }
.trust-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #475569;
}
.trust-list i { color: #10b981; font-size: 18px; }

.appointment-clinic-mini {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}
.mini-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-top: 10px;
}
.mini-card img { width: 50px; height: 50px; border-radius: 10px; object-fit: cover; }

/* Form Card Styling (Glow) */
.form-container-glow {
    background: #ffffff;
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 82, 255, 0.08);
    border: 1px solid rgba(0, 82, 255, 0.1);
    position: relative;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}
.input-with-icon i {
    position: absolute;
    left: 15px;
    color: #94a3b8;
    font-size: 18px;
}
.input-with-icon input, .input-with-icon select, .input-with-icon textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    font-size: 16px;
    background: #f8fafc;
    transition: 0.3s;
}
.input-with-icon input:focus {
    border-color: #0052FF;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 82, 255, 0.1);
    outline: none;
}

.btn-submit-glow-large {
    width: 100%;
    background: linear-gradient(135deg, #0052FF 0%, #00C2FF 100%);
    color: white;
    padding: 20px;
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 82, 255, 0.3);
    margin-top: 20px;
    transition: 0.3s;
}
.btn-submit-glow-large:hover { transform: translateY(-3px); filter: brightness(1.1); }

.form-footer-note {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #94a3b8;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .appointment-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .appointment-info-side { text-align: center; }
    .trust-list { display: inline-block; text-align: left; }
}



