
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Nunito+Sans:wght@400;600;700&display=swap');

:root {
  --color-primary: #2E90FF;
  --color-primary-dark: #1D60C7;
  --color-secondary: #00B8A9;
  --color-accent: #6AD2B8;
  --color-bg: #FFFFFF;
  --color-bg-light: #F9FAFB;
  --color-bg-muted: #F3F4F8;
  --color-text: #1F2937;
  --color-muted: #6B7280;
  --color-border: #E5E7EB;
  --color-success: #10B981;
  --color-danger: #EF4444;
  --color-warning: #F59E0B;
  --color-info: #0EA5E9;
  --font-family-base: 'Nunito Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-family-heading: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
  font-family: var(--font-family-base);
  color: var(--color-text);
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-muted) 100%);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: 700;
  color: var(--color-text);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--color-primary-dark);
}

.section-heading {
  margin-bottom: 4rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-heading p {
  margin-top: 1.5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
}

.btn {
  position: relative;
  transition: all 0.25s ease;
  padding: 0.75rem 1.6rem;
  border-radius: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

.btn-light {
  background-color: rgba(255, 255, 255, 0.92);
  border: none;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover {
  background-color: #fff;
  color: var(--color-primary-dark);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
}

.btn-outline-light:hover {
  border-color: #fff;
  color: var(--color-primary);
  background-color: #fff;
}

.btn-outline-primary {
  border: 1px solid rgba(46, 144, 255, 0.4);
  color: var(--color-primary);
  background-color: transparent;
}

.btn-outline-primary:hover {
  background-color: rgba(46, 144, 255, 0.08);
  color: var(--color-primary-dark);
  border-color: rgba(46, 144, 255, 0.6);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #009287 100%);
  border: none;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #009287 0%, var(--color-secondary) 100%);
}

.text-primary { color: var(--color-primary) !important; }
.text-secondary { color: var(--color-secondary) !important; }
.text-accent { color: var(--color-accent) !important; }
.text-muted { color: var(--color-muted) !important; }

.bg-soft-primary {
  background-color: rgba(46, 144, 255, 0.12);
}

.bg-light {
    background-color: var(--color-bg-light) !important;
}

.section-padding {
  padding: 100px 0;
}

.breadcrumb-bar {
  background-color: var(--color-bg-light);
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-border);
}

.navbar-brand {
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: 1.5rem;
    overflow-x:hidden;
}

.navbar.sticky-top {
    transition: all 0.3s ease-in-out;
}

.navbar.scrolled {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98);
}

.navbar .nav-link {
    font-weight: 600;
    color: var(--color-muted);
    padding: 0.75rem 1rem;
    transition: color 0.2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--color-primary);
}

.navbar .nav-link.active {
    color: var(--color-primary);
}

.brand-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(46, 144, 255, 0.16), rgba(0, 184, 169, 0.16));
    color: var(--color-primary);
    font-size: 1.25rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 160px 0 130px;
    background: radial-gradient(120% 120% at 10% 10%, rgba(46, 144, 255, 0.15) 0%, rgba(13, 26, 72, 0.85) 40%, rgba(6, 15, 42, 0.95) 100%);
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(26, 61, 160, 0.9), rgba(3, 10, 30, 0.85));
    mix-blend-mode: screen;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
}

.hero-eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
}

.hero-section h1 {
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-description {
    max-width: 540px;
}

.hero-actions .btn-outline-light {
    backdrop-filter: blur(6px);
}

.hero-highlights {
    margin-bottom: 0;
}

.hero-highlights li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.1rem;
    background-color: rgba(9, 20, 54, 0.7);
    border-radius: 999px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hero-highlights li i {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 520px;
}

.hero-stats .stat {
    padding: 1.4rem 1.6rem;
    border-radius: 1.25rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.stat-value {
    display: block;
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-media {
    position: relative;
}

.hero-image {
    border-radius: 1.75rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-card {
    background-color: #fff;
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(46, 144, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(46, 144, 255, 0.2);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, rgba(46, 144, 255, 0.15), rgba(0, 184, 169, 0.15));
    color: var(--color-primary);
    font-size: 1.5rem;
}

.doctor-showcase {
    position: relative;
}

.doctor-card {
    background: #fff;
    border-radius: 1.75rem;
    overflow: hidden;
    border: 1px solid rgba(46, 144, 255, 0.08);
}

.doctor-card img {
    object-fit: cover;
    width: 100%;
    height: 360px;
}

.doctor-card-body {
    padding: 2rem;
}

.listed-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.2rem;
    border-radius: 1rem;
    border: 1px solid rgba(46, 144, 255, 0.12);
    background-color: rgba(255, 255, 255, 0.6);
}

.listed-feature i {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-top: 0.2rem;
}

.stats-section .stat-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2.25rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(46, 144, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-section .stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--color-muted);
    margin-bottom: 0;
}

.stat-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.appointment-preview {
    border-radius: 2rem;
    background: linear-gradient(135deg, rgba(46, 144, 255, 0.95), rgba(29, 105, 210, 0.95));
    box-shadow: 0 35px 75px rgba(8, 35, 93, 0.25);
}

.contact-card {
    border-radius: 1.5rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 144, 255, 0.12);
    color: var(--color-primary);
    font-size: 1.3rem;
}

.final-cta {
    background-color: #fff;
    border-top: 1px solid rgba(46, 144, 255, 0.12);
}

.floating-card {
    position: absolute;
    bottom: -40px;
    left: 40px;
    border-radius: 1.5rem;
    padding: 1.75rem;
    max-width: 340px;
}

.floating-card-body .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-weight: 700;
}

.avatar {
    width: 48px;
    height: 48px;
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-sm {
    width: 54px;
    height: 54px;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 120px 0 100px;
    }
    .hero-highlights {
        gap: 0.85rem;
    }
    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .floating-card {
        position: relative;
        inset: auto;
        margin-top: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    .hero-highlights li {
        flex-wrap: wrap;
    }
}

.page-hero {
    background: radial-gradient(110% 160% at 0% 0%, rgba(46, 144, 255, 0.45) 0%, rgba(7, 18, 53, 0.92) 45%, rgba(5, 10, 32, 0.95) 100%);
    color: #fff;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 70% at 90% 15%, rgba(0, 184, 169, 0.25), transparent 60%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.hero-metric-card {
    background: rgba(8, 20, 60, 0.75);
    border-radius: 1.75rem;
    padding: 2.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    display: grid;
    gap: 1.25rem;
}

.metric-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.metric-row i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.75);
}

.metric-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
}

.metric-value {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

.metric-value.accent {
    color: var(--color-accent);
}

.breadcrumb-modern {
    margin-top: 3.5rem;
    display: inline-block;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.breadcrumb-modern .breadcrumb {
    margin-bottom: 0;
    --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-modern .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75);
}

.breadcrumb-modern .breadcrumb-item.active {
    color: #fff;
}

.treatment-filter-wrapper {
    background: rgba(46, 144, 255, 0.08);
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(46, 144, 255, 0.12);
}

.filter-scroll {
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: 0.5rem;
}

.filter-scroll::-webkit-scrollbar {
    height: 6px;
}

.filter-scroll::-webkit-scrollbar-thumb {
    background: rgba(46, 144, 255, 0.3);
    border-radius: 4px;
}

.filter-scroll .btn {
    border-radius: 999px;
    font-weight: 600;
    border-width: 1px;
    padding: 0.6rem 1.4rem;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    color: var(--color-primary);
}

.filter-scroll .btn.active,
.filter-scroll .btn:focus,
.filter-scroll .btn:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    border-color: transparent;
}

.treatment-timeline .timeline-card {
    background: #fff;
    border-radius: 1.75rem;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(46, 144, 255, 0.12);
    box-shadow: var(--shadow-sm);
}

.timeline-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.2rem 0;
    border-bottom: 1px dashed rgba(46, 144, 255, 0.2);
}

.timeline-step:last-child {
    border-bottom: none;
}

.step-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(46, 144, 255, 0.25), rgba(0, 184, 169, 0.25));
    color: var(--color-primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.support-card {
    background: #fff;
    border-radius: 1.75rem;
    padding: 2.5rem;
    border: 1px solid rgba(46, 144, 255, 0.12);
    box-shadow: var(--shadow-sm);
}

.cta-link {
    gap: 1.25rem;
    padding: 1rem 1.2rem;
    border-radius: 1.25rem;
    background: rgba(46, 144, 255, 0.06);
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-link:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    color: var(--color-primary);
}

.cta-link .icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 144, 255, 0.14);
    color: var(--color-primary);
    font-size: 1.4rem;
}

.evidence-card {
    background: #fff;
    border-radius: 1.75rem;
    padding: 2.8rem 2.5rem;
    border: 1px solid rgba(46, 144, 255, 0.12);
    box-shadow: var(--shadow-sm);
}

.check-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.12);
    color: #0f9d58;
    font-size: 1.1rem;
}

.testimonial-highlight {
    background: linear-gradient(135deg, rgba(46, 144, 255, 0.1), rgba(0, 184, 169, 0.1));
    border-radius: 1.75rem;
    padding: 2.5rem;
    border: 1px solid rgba(46, 144, 255, 0.12);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.team-intro {
    background: linear-gradient(180deg, rgba(246, 248, 255, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.team-values {
    background: linear-gradient(135deg, rgba(46, 144, 255, 0.08), rgba(0, 184, 169, 0.06));
}

.values-card {
    background: #fff;
    border-radius: 1.75rem;
    padding: 2.6rem 2.3rem;
    border: 1px solid rgba(46, 144, 255, 0.12);
    box-shadow: var(--shadow-sm);
}

.value-feature {
    background: #fff;
    border-radius: 1.5rem;
    padding: 1.6rem;
    border: 1px solid rgba(46, 144, 255, 0.1);
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(46, 144, 255, 0.15);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.quote-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(46, 144, 255, 0.18);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.modal-elevated .modal-content {
    border-radius: 1.75rem;
    border: none;
    box-shadow: 0 30px 70px rgba(8, 28, 72, 0.3);
}

.modal-elevated .modal-body {
    position: relative;
}

.modal-header-info .badge {
    font-weight: 600;
    letter-spacing: 0.08em;
}

.modal-content-body {
    max-height: 350px;
    overflow-y: auto;
    padding-right: 0.25rem;
}

.modal-content-body::-webkit-scrollbar {
    width: 6px;
}

.modal-content-body::-webkit-scrollbar-thumb {
    background: rgba(46, 144, 255, 0.3);
    border-radius: 4px;
}

.blog-search-section {
    margin-top: -110px;
}

.blog-search-card {
    background: #fff;
    border-radius: 2rem;
    padding: 2.5rem;
    border: 1px solid rgba(46, 144, 255, 0.12);
    backdrop-filter: blur(12px);
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    color: var(--color-muted);
    font-size: 1.1rem;
}

#blog-search-input {
    border-radius: 999px;
    padding: 0.85rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

#blog-category-filter {
    border-radius: 999px;
    padding: 0.85rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

#blog-reset-filters {
    box-shadow: var(--shadow-sm);
}

.blog-featured .featured-article-card {
    background: #fff;
    border-radius: 1.75rem;
    padding: 2.6rem 2.3rem;
    border: 1px solid rgba(46, 144, 255, 0.12);
    box-shadow: var(--shadow-sm);
}

.blog-featured .insight-card {
    background: linear-gradient(135deg, rgba(46, 144, 255, 0.08), rgba(0, 184, 169, 0.08));
    border-radius: 1.75rem;
    padding: 2.4rem 2.2rem;
    border: 1px solid rgba(46, 144, 255, 0.12);
    box-shadow: var(--shadow-sm);
}

.blog-detail-hero {
    background: radial-gradient(110% 160% at 10% 0%, rgba(46, 144, 255, 0.5) 0%, rgba(6, 17, 52, 0.94) 55%, rgba(4, 10, 30, 0.95) 100%);
    color: #fff;
    overflow: hidden;
}

.blog-detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 80% at 95% 20%, rgba(0, 184, 169, 0.25), transparent 65%);
    pointer-events: none;
}

.blog-detail-body {
    margin-top: -120px;
}

.blog-article {
    background: #fff;
    border-radius: 2rem;
    padding: 2.8rem 2.5rem;
    border: 1px solid rgba(46, 144, 255, 0.12);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
}

.blog-article-cover img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.blog-article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(46, 144, 255, 0.08);
    font-size: 0.9rem;
}

.blog-article-meta i {
    color: var(--color-primary);
}

.blog-article-content {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--color-text);
}

.blog-article-content p {
    margin-bottom: 1.5rem;
}

.blog-article-content h2,
.blog-article-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-article-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-article-content blockquote {
    border-left: 4px solid var(--color-primary);
    background: rgba(46, 144, 255, 0.08);
    padding: 1.5rem 2rem;
    border-radius: 1.25rem;
    font-style: italic;
    margin: 2rem 0;
}

.blog-share {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(46, 144, 255, 0.12);
}

.blog-share .btn {
    border-radius: 999px;
    font-weight: 600;
    padding: 0.55rem 1.4rem;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
}

.blog-back-link:hover {
    color: var(--color-primary-dark);
    transform: translateX(-4px);
}

.blog-sidebar-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem 1.8rem;
    border: 1px solid rgba(46, 144, 255, 0.12);
    box-shadow: var(--shadow-sm);
}

.blog-sidebar-card + .blog-sidebar-card {
    margin-top: 1.5rem;
}

.blog-sidebar-card ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.blog-sidebar-card li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    color: var(--color-muted);
}

.blog-detail-cta {
    background: linear-gradient(135deg, rgba(46, 144, 255, 0.92), rgba(12, 68, 201, 0.92));
    color: #fff;
    border-radius: 2rem;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.blog-detail-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(55% 65% at 80% 10%, rgba(255, 255, 255, 0.18), transparent 70%);
    pointer-events: none;
}

.auth-body {
    background: linear-gradient(135deg, rgba(7, 25, 68, 0.95), rgba(4, 10, 26, 0.96));
    color: #fff;
    min-height: 100vh;
}

.auth-main {
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
}

.auth-hero {
    padding: 6rem 5rem;
    background: radial-gradient(120% 160% at 15% 15%, rgba(46, 144, 255, 0.45) 0%, rgba(6, 17, 52, 0.92) 45%, rgba(3, 8, 28, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-bottom: 2rem;
}

.auth-title {
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

.auth-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 460px;
}

.auth-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: grid;
    gap: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.auth-highlights li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.auth-highlights i {
    color: var(--color-accent);
}

.auth-back-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.auth-back-link:hover {
    color: #fff;
}

.auth-card {
    background: #fff;
    color: var(--color-text);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
}

.auth-card-header {
    margin-bottom: 2rem;
}

.auth-card-header h2 {
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.auth-form .form-control,
.auth-form .form-select {
    border-radius: 0.9rem;
    padding: 0.75rem 1rem;
}

.auth-form .btn {
    padding: 0.85rem;
    font-weight: 600;
}

.auth-card-footer {
    margin-top: 3rem;
    border-top: 1px solid rgba(46, 144, 255, 0.12);
    padding-top: 1.5rem;
}

.contact-hero {
    background: radial-gradient(110% 160% at 0% 0%, rgba(46, 144, 255, 0.5) 0%, rgba(17, 47, 117, 0.92) 55%, rgba(7, 20, 56, 0.95) 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.contact-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 80% at 85% 15%, rgba(0, 184, 169, 0.25), transparent 65%);
    pointer-events: none;
}

.contact-highlights {
    margin-top: -110px;
}

.contact-info-card {
    background: #fff;
    border-radius: 1.75rem;
    padding: 2.2rem 2rem;
    border: 1px solid rgba(46, 144, 255, 0.12);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-info-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(46, 144, 255, 0.12);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.contact-form-card {
    background: #fff;
    border-radius: 2rem;
    padding: 2.6rem 2.4rem;
    border: 1px solid rgba(46, 144, 255, 0.12);
    box-shadow: var(--shadow-sm);
}

.map-card {
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid rgba(46, 144, 255, 0.12);
    box-shadow: var(--shadow-sm);
    background: #fff;
}

.map-card iframe {
    width: 100%;
    height: 380px;
    border: 0;
}

.working-hours-card {
    background: #fff;
    border-radius: 1.75rem;
    padding: 2rem 1.8rem;
    border: 1px solid rgba(46, 144, 255, 0.12);
    box-shadow: var(--shadow-sm);
}

.working-hours-card li + li {
    margin-top: 0.75rem;
}

.contact-cta {
    background: linear-gradient(135deg, rgba(46, 144, 255, 0.12), rgba(0, 184, 169, 0.1));
    border-radius: 2rem;
    border: 1px solid rgba(46, 144, 255, 0.1);
}

.appointment-hero {
    background: radial-gradient(120% 170% at 0% 0%, rgba(46, 144, 255, 0.55) 0%, rgba(10, 30, 84, 0.94) 60%, rgba(5, 16, 49, 0.95) 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.appointment-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 80% at 85% 20%, rgba(0, 184, 169, 0.25), transparent 70%);
    pointer-events: none;
}

.appointment-highlights {
    margin-top: -110px;
}

.appointment-card {
    background: #fff;
    border-radius: 1.75rem;
    padding: 2.2rem 2rem;
    border: 1px solid rgba(46, 144, 255, 0.12);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    height: 100%;
}

.appointment-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(46, 144, 255, 0.12);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.appointment-form-card {
    background: #fff;
    border-radius: 2rem;
    padding: 2.8rem 2.5rem;
    border: 1px solid rgba(46, 144, 255, 0.12);
    box-shadow: var(--shadow-sm);
}

.appointment-info-card {
    background: #fff;
    border-radius: 1.75rem;
    padding: 2.2rem 2rem;
    border: 1px solid rgba(46, 144, 255, 0.12);
    box-shadow: var(--shadow-sm);
}

.appointment-info-card .contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(46, 144, 255, 0.12);
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.appointment-steps {
    background: #fff;
    border-radius: 1.75rem;
    padding: 2rem;
    border: 1px solid rgba(46, 144, 255, 0.12);
    box-shadow: var(--shadow-sm);
}

.appointment-steps .step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.1rem 0;
    border-bottom: 1px dashed rgba(46, 144, 255, 0.18);
}

.appointment-steps .step:last-child {
    border-bottom: none;
}

.appointment-steps .step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(46, 144, 255, 0.2), rgba(0, 184, 169, 0.2));
    color: var(--color-primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.appointment-success {
    padding: 3rem 2rem;
}

.appointment-success i {
    font-size: 3rem;
}

.appointment-cta {
    background: linear-gradient(135deg, rgba(46, 144, 255, 0.1), rgba(0, 184, 169, 0.08));
    border-radius: 2rem;
    border: 1px solid rgba(46, 144, 255, 0.12);
}

@media (max-width: 991.98px) {
    .hero-metric-card {
        margin-top: 2rem;
    }
    .breadcrumb-modern {
        margin-top: 2.5rem;
    }
    .support-card,
    .evidence-card,
    .testimonial-highlight,
    .blog-featured .featured-article-card,
    .blog-featured .insight-card,
    .contact-form-card,
    .map-card,
    .working-hours-card,
    .appointment-form-card,
    .appointment-info-card,
    .appointment-steps,
    .auth-card {
        padding: 2.2rem 1.8rem;
    }
    .blog-search-card {
        padding: 2rem 1.5rem;
    }
    .blog-search-section {
        margin-top: -70px;
    }
    .blog-article {
        padding: 2.2rem 1.8rem;
    }
    .blog-detail-body {
        margin-top: -80px;
    }
    .contact-highlights {
        margin-top: -70px;
    }
    .map-card iframe {
        height: 320px;
    }
    .appointment-highlights {
        margin-top: -70px;
    }
    .auth-main {
        grid-template-columns: 1fr;
    }
    .auth-hero {
        padding: 5rem 3.5rem;
    }
    .admin-dashboard-hero {
        padding: 1.8rem 1.6rem;
    }
    .admin-stat-card {
        padding: 1.6rem;
    }
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    .timeline-item .time {
        width: fit-content;
    }
}

@media (max-width: 575.98px) {
    .metric-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .metric-row i {
        align-self: flex-end;
    }
    .treatment-filter-wrapper {
        padding: 1.1rem;
    }
    .blog-search-section {
        margin-top: -40px;
    }
    .blog-search-card {
        border-radius: 1.5rem;
        padding: 1.8rem 1.4rem;
    }
    #blog-reset-filters {
        margin-top: 0.5rem;
    }
    .blog-article {
        padding: 2rem 1.6rem;
    }
    .blog-article-meta span {
        width: 100%;
    }
    .blog-detail-body {
        margin-top: -60px;
    }
    .blog-share .btn {
        width: 100%;
        justify-content: center;
    }
    .contact-highlights {
        margin-top: -50px;
    }
    .contact-info-card {
        padding: 2rem 1.6rem;
    }
    .contact-form-card {
        padding: 2.2rem 1.6rem;
    }
    .map-card iframe {
        height: 280px;
    }
    .appointment-highlights {
        margin-top: -50px;
    }
    .appointment-form-card,
    .appointment-info-card,
    .appointment-steps {
        padding: 2rem 1.6rem;
    }
    .appointment-success {
        padding: 2.5rem 1.5rem;
    }
    .auth-hero {
        padding: 4rem 2rem;
    }
    .auth-title {
        font-size: 2.1rem;
    }
    .auth-card {
        padding: 3.5rem 2rem;
    }
    .auth-form .btn {
        padding: 0.75rem;
    }
    .admin-dashboard-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        padding: 1.6rem;
    }
    .admin-stat-card {
        padding: 1.5rem;
    }
    .admin-stat-card i {
        font-size: 2rem;
    }
    .admin-panel-card .card-body {
        padding: 1.6rem;
    }
    .timeline {
        gap: 1rem;
    }
    .timeline-item {
        gap: 0.6rem;
    }
}

/* Card Styles */
.card {
    border: 1px solid rgba(46, 144, 255, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 1.25rem;
    box-shadow: var(--shadow-sm);
    background-color: #fff;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

#uzmanliklar .card {
    text-align: center;
    padding: 2.4rem 1.8rem;
    border-radius: 1.5rem;
}

#uzmanliklar .card:hover {
    transform: none;
    box-shadow: none;
}

.card-icon {
    font-size: 3rem;
    color: var(--color-primary);
    transition: all 0.3s ease-in-out;
}

#uzmanliklar .card:hover .card-icon {
    transform: scale(1.1);
    color: var(--color-secondary);
}

.card .card-img-container {
    overflow: hidden;
    border-radius: 1.25rem 1.25rem 0 0;
}

.card .card-img-top {
    transition: all 0.4s ease-in-out;
    height: 220px;
    object-fit: cover;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* Patient Comments */
#patient-comments {
    background-color: var(--color-bg-light);
}

#patient-comment-carousel .carousel-item {
    padding: 2.5rem 0;
}

#patient-comment-carousel .bi-quote {
    font-size: 3.5rem;
    color: var(--color-primary);
    opacity: 0.45;
}

#patient-comment-carousel .carousel-control-prev-icon,
#patient-comment-carousel .carousel-control-next-icon {
    filter: invert(1);
}

#patient-comment-carousel .carousel-control-prev,
#patient-comment-carousel .carousel-control-next {
    width: 5%;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    text-align: center;
    line-height: 46px;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s ease;
    z-index: 1000;
    box-shadow: 0 15px 35px rgba(46, 144, 255, 0.35);
}

.back-to-top:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    color: white;
}

.site-footer {
    background: radial-gradient(120% 120% at 0% 0%, rgba(15, 23, 42, 1) 0%, rgba(11, 17, 33, 0.95) 45%, rgba(9, 13, 24, 0.95) 100%);
    color: rgba(255, 255, 255, 0.72);
    margin-top: 0;
}

.site-footer h6,
.site-footer .fw-bold {
    color: #fff;
}

.site-footer .text-muted {
    color: rgba(255, 255, 255, 0.65) !important;
}

.footer-links li + li {
    margin-top: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 144, 255, 0.15);
    color: #fff;
    font-size: 1.2rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    background: rgba(46, 144, 255, 0.35);
    transform: translateY(-4px);
    color: #fff;
}

.footer-bottom {
    background: rgba(8, 11, 20, 0.85);
    padding: 1.2rem 0;
}

/* Forms & Admin */
.form-control:focus, .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.25rem rgba(46, 144, 255, 0.25);
}

.accordion-button:not(.collapsed) {
    color: var(--color-text);
    background-color: #f0f7ff;
}

.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 260px;
    flex-shrink: 0;
    background-color: var(--color-bg);
    border-right: 1px solid var(--color-border);
    transition: margin-left 0.3s;
}

.sidebar .nav-link {
    color: var(--color-muted);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
}

.sidebar .nav-link.active, .sidebar .nav-link:hover {
    color: var(--color-primary);
    background-color: #f0f7ff;
}

.sidebar .nav-link .bi {
    margin-right: 1rem;
    font-size: 1.1rem;
}

.main-content {
    flex-grow: 1;
    background-color: var(--color-bg-light);
    transition: margin-left 0.3s;
}

.admin-header {
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}

.admin-blank {
    background: linear-gradient(180deg, rgba(245, 247, 253, 0.9) 0%, rgba(255, 255, 255, 1) 30%);
}

.admin-blank-hero {
    background: linear-gradient(135deg, rgba(46, 144, 255, 0.12), rgba(0, 184, 169, 0.1));
    border-radius: 1.5rem;
    border: 1px solid rgba(46, 144, 255, 0.12);
    padding: 2.25rem 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
}

.admin-blank-hero h1 {
    font-weight: 700;
}

.admin-blank-card {
    background: #fff;
    border-radius: 1.5rem;
    border: 1px solid rgba(46, 144, 255, 0.12);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.admin-checklist {
    display: grid;
    gap: 0.65rem;
    color: var(--color-muted);
    margin: 0;
    padding: 0;
}

.admin-checklist li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.placeholder-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.placeholder-layout span {
    height: 60px;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(46, 144, 255, 0.12), rgba(0, 184, 169, 0.12));
}

.admin-canvas {
    border-radius: 1.5rem;
    border: 1px dashed rgba(46, 144, 255, 0.35);
    background: rgba(255, 255, 255, 0.9);
}

.admin-dashboard {
    background: linear-gradient(180deg, rgba(245, 247, 253, 0.95) 0%, rgba(255, 255, 255, 1) 30%);
}

.admin-dashboard-hero {
    background: linear-gradient(135deg, rgba(46, 144, 255, 0.14), rgba(0, 184, 169, 0.12));
    border: 1px solid rgba(46, 144, 255, 0.12);
    border-radius: 1.5rem;
    padding: 2.2rem 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
}

.admin-stat-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.admin-stat-card .label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
}

.admin-stat-card .value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.admin-stat-card i {
    font-size: 2.5rem;
    opacity: 0.2;
}

.gradient-blue {
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
}

.gradient-amber {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.gradient-green {
    background: linear-gradient(135deg, #10B981, #059669);
}

.gradient-purple {
    background: linear-gradient(135deg, #6366F1, #4338CA);
}

.admin-panel-card {
    border-radius: 1.5rem;
    border: 1px solid rgba(46, 144, 255, 0.12);
}

.admin-panel-card .card-header {
    background: transparent;
    border-bottom: 1px solid rgba(46, 144, 255, 0.08);
    padding: 1.5rem 1.8rem 1.2rem;
}

.admin-panel-card .card-body {
    padding: 1.8rem;
}

.timeline {
    display: grid;
    gap: 1.5rem;
}

.timeline-item {
    display: flex;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    align-items: center;
}

.timeline-item .time {
    background: rgba(46, 144, 255, 0.12);
    color: var(--color-primary);
    font-weight: 600;
    text-align: center;
    padding: 0.6rem 0.8rem;
    border-radius: 999px;
}

.timeline-item .content {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}

.badge.bg-soft-primary {
    background-color: rgba(46, 144, 255, 0.1);
    color: var(--color-primary);
}

.badge.bg-soft-warning {
    background-color: rgba(245, 158, 11, 0.15);
    color: #b45309;
}

.activity-feed {
    display: grid;
    gap: 1.2rem;
}

.activity-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.activity-item .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-top: 0.3rem;
}

.bg-soft-primary {
    background-color: rgba(46, 144, 255, 0.1);
}

.bg-soft-warning {
    background-color: rgba(245, 158, 11, 0.15);
}

.bg-soft-info {
    background-color: rgba(14, 165, 233, 0.15);
}

.admin-cms {
    display: grid;
    gap: 2rem;
}

.cms-section {
    display: grid;
    gap: 1.5rem;
}

.cms-section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.cms-section-header h2,
.cms-section-header h3 {
    margin-bottom: 0;
}

.cms-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .cms-grid.two-column {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.cms-card {
    background: #fff;
    border-radius: 1.5rem;
    border: 1px solid rgba(46, 144, 255, 0.12);
    box-shadow: var(--shadow-sm);
    padding: 1.8rem;
}

.cms-card h4 {
    margin-bottom: 1rem;
}

.cms-card .form-label {
    font-weight: 600;
}

.cms-helper-text {
    font-size: 0.85rem;
    color: var(--color-muted);
}

.cms-list {
    display: grid;
    gap: 1rem;
}

.cms-link-card {
    border-radius: 1.25rem;
    border: 1px solid rgba(46, 144, 255, 0.1);
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(46, 144, 255, 0.06), rgba(0, 184, 169, 0.04));
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cms-link-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.cms-link-card h3 {
    margin-bottom: 0.25rem;
}

.cms-link-card p {
    margin-bottom: 0;
    color: var(--color-muted);
}

.cms-image-preview {
    max-height: 140px;
    border-radius: 0.75rem;
    object-fit: cover;
    background: rgba(46, 144, 255, 0.08);
    padding: 0.25rem;
}

.cms-toast-container {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2000;
}

.cms-toast {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    color: #fff;
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, rgba(46, 144, 255, 0.95), rgba(17, 82, 201, 0.95));
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cms-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.cms-toast-success {
    background: linear-gradient(135deg, rgba(46, 144, 255, 0.95), rgba(17, 82, 201, 0.95));
}

.cms-toast-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.95), rgba(185, 28, 28, 0.95));
}

@media (max-width: 991.98px) {
    .sidebar {
        margin-left: -260px;
    }
    .sidebar.toggled {
        margin-left: 0;
    }
    .main-content.toggled {
        margin-left: 260px;
    }
}

.empty-state {
    text-align: center;
    padding: 4rem;
    border: 2px dashed var(--color-border);
    border-radius: 0.5rem;
    background-color: var(--color-bg);
}
