﻿/* ============================================
   DentaSmile Care - Custom Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary: #1B4FBA;
  --primary-dark: #1340a0;
  --primary-light: #3a69d4;
  --secondary: #00BFA5;
  --secondary-dark: #00a893;
  --accent: #FF6B35;
  --accent-light: #ff8a5c;
  --dark: #1A1A2E;
  --darker: #0f0f1a;
  --light: #F5F7FA;
  --white: #ffffff;
  --text: #4A4A6A;
  --text-dark: #1A1A2E;
  --border: #E8ECF4;
  --shadow: 0 4px 20px rgba(27,79,186,0.12);
  --shadow-hover: 0 12px 40px rgba(27,79,186,0.22);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --font-main: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-main); color: var(--text-dark); font-weight: 600; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; }
ul { list-style: none; padding: 0; margin: 0; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===== SELECTION ===== */
::selection { background: var(--primary); color: white; }

/* ===== UTILITY CLASSES ===== */
.section-padding { padding: 90px 0; }
.section-padding-sm { padding: 60px 0; }
.bg-light-custom { background-color: var(--light) !important; }
.text-primary-custom { color: var(--primary) !important; }
.text-secondary-custom { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }
.rounded-custom { border-radius: var(--radius) !important; }

/* ===== SECTION HEADER ===== */
.section-header { margin-bottom: 55px; }
.section-badge {
  display: inline-block;
  background: rgba(27,79,186,0.1);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: var(--font-main);
}
.section-badge.green { background: rgba(0,191,165,0.1); color: var(--secondary); }
.section-badge.orange { background: rgba(255,107,53,0.1); color: var(--accent); }
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--dark);
}
.section-title span { color: var(--primary); }
.section-desc { font-size: 1.05rem; color: var(--text); max-width: 600px; }
.section-header.text-center .section-desc { margin: 0 auto; }
.title-divider {
  width: 60px; height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 2px;
  margin: 16px 0 20px;
}
.title-divider.center { margin: 16px auto 20px; }

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 13px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(27,79,186,0.35);
  font-family: var(--font-main);
  cursor: pointer;
}
.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27,79,186,0.45);
}
.btn-secondary-custom {
  background: linear-gradient(135deg, var(--secondary), #00a893);
  color: white;
  padding: 13px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0,191,165,0.35);
  font-family: var(--font-main);
  cursor: pointer;
}
.btn-secondary-custom:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,191,165,0.45);
}
.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 13px;
  border: 2px solid var(--primary);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  cursor: pointer;
}
.btn-outline-custom:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}
.btn-white-custom {
  background: white;
  color: var(--primary);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  cursor: pointer;
}
.btn-white-custom:hover {
  background: var(--dark);
  color: white;
  transform: translateY(-2px);
}
.btn-accent-custom {
  background: linear-gradient(135deg, var(--accent), #e55c27);
  color: white;
  padding: 13px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 13px;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255,107,53,0.35);
}
.btn-accent-custom:hover { color: white; transform: translateY(-2px); }

/* ===== HEADER ===== */

/* Top bar */
.site-topbar {
  background: var(--dark);
  padding: 8px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.75);
}
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
  white-space: nowrap;
}
.topbar-link:hover { color: #fff; }
.topbar-icon {
  width: 20px; height: 20px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
}
.topbar-social {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.topbar-social:hover { background: var(--primary); color: #fff; }
.topbar-divider {
  width: 1px; height: 16px;
  background: rgba(255,255,255,0.15);
}
.topbar-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff !important;
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.topbar-book-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* Main navbar */
.site-navbar {
  background: #fff !important;
  padding: 0 !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  transition: box-shadow .3s;
  z-index: 1050;
}
.site-navbar.hdr-scrolled { box-shadow: 0 4px 28px rgba(27,79,186,0.13); }
.site-navbar .container { min-height: 66px; }

/* Brand */
.site-brand {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  text-decoration: none;
  margin-right: 10px;
}
.site-brand-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
  flex-shrink: 0;
}
.site-brand-text { line-height: 1.15; }
.site-brand-name {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  display: block;
  white-space: nowrap;
}
.site-brand-tag {
  font-size: 10px;
  color: var(--secondary);
  font-weight: 500;
  letter-spacing: .4px;
  white-space: nowrap;
}

/* Nav links */
.site-nav-link {
  font-family: var(--font-main);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark) !important;
  padding: 8px 11px !important;
  border-radius: 8px;
  transition: color .2s, background .2s;
  position: relative;
  white-space: nowrap;
}
.site-nav-link:hover { color: var(--primary) !important; background: rgba(27,79,186,0.06); }
.site-nav-link.active { color: var(--primary) !important; }
.site-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* Dropdown */
.site-dropdown {
  border: none !important;
  border-radius: 14px !important;
  box-shadow: 0 16px 48px rgba(27,79,186,0.14) !important;
  padding: 8px !important;
  min-width: 230px;
  margin-top: 6px !important;
}
.dropdown-section-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: #aaa;
}
.dropdown-view-all {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.dropdown-view-all:hover { text-decoration: underline; }
.site-dropdown-item {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 8px 10px !important;
  border-radius: 8px !important;
  font-size: 13.5px !important;
  font-weight: 500;
  color: var(--text-dark) !important;
  transition: background .18s, color .18s !important;
}
.site-dropdown-item:hover { background: rgba(27,79,186,0.07) !important; color: var(--primary) !important; }
.dropdown-item-ico {
  width: 28px; height: 28px;
  background: rgba(27,79,186,0.08);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--primary);
  flex-shrink: 0;
  transition: background .18s;
}
.site-dropdown-item:hover .dropdown-item-ico { background: var(--primary); color: #fff; }

/* CTA buttons */
.nav-call-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  color: var(--primary) !important;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
  text-decoration: none;
  transition: border-color .2s, background .2s;
  flex-shrink: 0;
}
.nav-call-btn:hover { border-color: var(--primary); background: rgba(27,79,186,0.06); }
.nav-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff !important;
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 22px;
  text-decoration: none;
  transition: box-shadow .2s, transform .2s;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(27,79,186,0.28);
}
.nav-book-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,79,186,0.38); }

/* Custom toggler */
.site-toggler { padding: 6px !important; }
.tog-bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  margin: 5px 0;
  transition: transform .3s, opacity .3s;
}
.site-toggler[aria-expanded="true"] .tog-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-toggler[aria-expanded="true"] .tog-bar:nth-child(2) { opacity: 0; }
.site-toggler[aria-expanded="true"] .tog-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile collapsed menu */
@media (max-width: 991px) {
  #siteNavMenu {
    border-top: 1px solid var(--border);
    padding: 12px 0 20px;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .site-nav-link { display: flex; align-items: center; padding: 12px 8px !important; font-size: 15px; border-radius: 0; border-bottom: 1px solid var(--border); }
  .site-nav-link.active::after { display: none; }
  .site-dropdown { border-radius: 10px !important; margin: 4px 8px !important; }
  .nav-book-btn { width: 100%; justify-content: center; margin-top: 4px; padding: 13px; border-radius: 12px; }
  .nav-call-btn { display: none !important; }
}

/* ===== HERO SLIDER ===== */
.hero-section { position: relative; }
.hero-swiper { height: 100vh; min-height: 600px; max-height: 850px; }
.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 6s ease;
}
.swiper-slide-active .hero-bg { transform: scale(1.08); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.8) 0%, rgba(27,79,186,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 100px 0 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: white;
  margin-bottom: 20px;
}
.hero-title span { color: #7DF9FF; }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.88); margin-bottom: 35px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-stat-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 18px 20px;
  text-align: center;
  color: white;
  transition: var(--transition);
  height: 100%;
}
.hero-stat-card:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); }
.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #7DF9FF;
  font-family: var(--font-main);
  line-height: 1;
}
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 5px; }
.hero-stats-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.swiper-pagination-bullet {
  width: 10px; height: 10px;
  background: rgba(255,255,255,0.5);
  opacity: 1;
  transition: var(--transition);
}
.swiper-pagination-bullet-active {
  background: white;
  width: 30px;
  border-radius: 5px;
}
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: white;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
}
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after { font-size: 18px; font-weight: 700; }

/* Hero slides backgrounds */
.slide-1 .hero-bg { background: linear-gradient(135deg, #1B4FBA 0%, #00BFA5 100%); }
.slide-2 .hero-bg { background: linear-gradient(135deg, #1A1A2E 0%, #1B4FBA 100%); }
.slide-3 .hero-bg { background: linear-gradient(135deg, #00BFA5 0%, #1B4FBA 100%); }

/* ===== QUICK APPOINTMENT STRIP ===== */
.quick-appt-strip {
  background: white;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.05), 0 4px 20px rgba(0,0,0,0.05);
  position: relative;
  z-index: 10;
  margin-top: -30px;
  border-radius: var(--radius-lg);
}

/* ===== STATS SECTION ===== */
.stats-section { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.stat-item { text-align: center; padding: 20px; }
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  font-family: var(--font-main);
}
.stat-plus { color: #7DF9FF; }
.stat-label { color: rgba(255,255,255,0.8); font-size: 15px; margin-top: 6px; }
.stat-icon { font-size: 2rem; color: rgba(255,255,255,0.3); margin-bottom: 10px; }

/* ===== SERVICE CARDS ===== */
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 35px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  transition: var(--transition);
  border-radius: 0 0 4px 0;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-card:hover::before { height: 100%; }
.service-icon {
  width: 65px; height: 65px;
  background: linear-gradient(135deg, rgba(27,79,186,0.1), rgba(0,191,165,0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  transform: rotateY(180deg);
}
.service-card h4 { font-size: 1.15rem; margin-bottom: 12px; color: var(--dark); }
.service-card p { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 18px; }
.service-link { color: var(--primary); font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.service-link:hover { color: var(--secondary); gap: 10px; }

/* ===== WHY CHOOSE US ===== */
.why-us-feature {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  margin-bottom: 16px;
}
.why-us-feature:hover { box-shadow: var(--shadow); transform: translateX(5px); }
.why-us-icon {
  width: 55px; height: 55px;
  min-width: 55px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
}
.icon-blue { background: linear-gradient(135deg, #1B4FBA, #3a69d4); }
.icon-green { background: linear-gradient(135deg, #00BFA5, #00a893); }
.icon-orange { background: linear-gradient(135deg, #FF6B35, #e55c27); }
.icon-purple { background: linear-gradient(135deg, #7c3aed, #9f67ff); }
.icon-pink { background: linear-gradient(135deg, #ec4899, #f472b6); }
.icon-teal { background: linear-gradient(135deg, #0891b2, #22d3ee); }
.why-us-feature h5 { font-size: 1rem; margin-bottom: 6px; color: var(--dark); }
.why-us-feature p { font-size: 13.5px; color: var(--text); margin: 0; }

/* ===== DOCTOR CARDS ===== */
.doctor-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.doctor-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.doctor-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
}
.doctor-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.doctor-card:hover .doctor-img-wrapper img { transform: scale(1.08); }
.doctor-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(27,79,186,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.doctor-card:hover .doctor-overlay { opacity: 1; }
.doctor-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px; height: 35px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  color: white;
  margin-right: 6px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.3);
}
.doctor-social a:hover { background: white; color: var(--primary); }
.doctor-specialty-badge {
  position: absolute;
  top: 15px; right: 15px;
  background: var(--secondary);
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-main);
}
.doctor-info { padding: 22px; }
.doctor-info h4 { font-size: 1.1rem; margin-bottom: 4px; }
.doctor-info .specialty { color: var(--primary); font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.doctor-meta { display: flex; gap: 16px; margin-top: 14px; }
.doctor-meta-item { font-size: 13px; color: var(--text); display: flex; align-items: center; gap: 5px; }
.doctor-meta-item i { color: var(--primary); }
.doctor-fee {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fee-amount { font-size: 1.15rem; font-weight: 700; color: var(--primary); }
.fee-label { font-size: 12px; color: var(--text); }

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-section { background: linear-gradient(135deg, var(--dark), #1B4FBA); }
.testimonial-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
  height: 100%;
  position: relative;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-5px);
}
.quote-icon {
  font-size: 3rem;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: 15px;
}
.testimonial-text { color: rgba(255,255,255,0.88); font-size: 15px; line-height: 1.8; margin-bottom: 24px; }
.stars { color: #FFD700; letter-spacing: 2px; margin-bottom: 16px; font-size: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.3);
}
.author-name { color: white; font-weight: 600; font-size: 15px; }
.author-treatment { color: rgba(255,255,255,0.6); font-size: 12px; }
.treatment-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(0,191,165,0.2);
  border: 1px solid rgba(0,191,165,0.4);
  color: #7DF9FF;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 500;
}

/* ===== BLOG CARDS ===== */
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  height: 100%;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.blog-img-wrapper { overflow: hidden; height: 220px; }
.blog-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img-wrapper img { transform: scale(1.05); }
.blog-category-badge {
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 12px;
}
.blog-body { padding: 24px; }
.blog-meta { display: flex; gap: 16px; margin-bottom: 12px; }
.blog-meta-item { font-size: 13px; color: var(--text); display: flex; align-items: center; gap: 5px; }
.blog-meta-item i { color: var(--primary); }
.blog-title { font-size: 1.05rem; margin-bottom: 12px; line-height: 1.4; }
.blog-title a { color: var(--dark); }
.blog-title a:hover { color: var(--primary); }
.blog-excerpt { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 18px; }
.read-more { color: var(--primary); font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.read-more:hover { color: var(--secondary); gap: 8px; }

/* ===== FAQ SECTION ===== */
.faq-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.faq-accordion .accordion-button {
  background: white;
  color: var(--dark);
  font-weight: 600;
  font-size: 15px;
  padding: 18px 24px;
  border-radius: var(--radius) !important;
  font-family: var(--font-main);
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(27,79,186,0.06), rgba(0,191,165,0.06));
  color: var(--primary);
  box-shadow: none;
}
.faq-accordion .accordion-button::after { filter: hue-rotate(200deg); }
.faq-accordion .accordion-body { padding: 0 24px 20px; color: var(--text); font-size: 15px; line-height: 1.8; }
.faq-category-tabs .nav-link {
  background: white;
  border: 1px solid var(--border) !important;
  color: var(--text);
  border-radius: 50px !important;
  padding: 8px 22px;
  font-weight: 500;
  margin-right: 8px;
  margin-bottom: 8px;
  transition: var(--transition);
}
.faq-category-tabs .nav-link.active,
.faq-category-tabs .nav-link:hover {
  background: var(--primary) !important;
  color: white !important;
  border-color: var(--primary) !important;
}

/* ===== CONTACT SECTION ===== */
.contact-info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.contact-icon {
  width: 55px; height: 55px;
  min-width: 55px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
}
.contact-info-card h5 { font-size: 16px; margin-bottom: 6px; }
.contact-info-card p, .contact-info-card a { font-size: 14px; color: var(--text); margin: 0; }

/* ===== FORMS ===== */
.form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-label { font-weight: 600; font-size: 14px; color: var(--dark); margin-bottom: 6px; font-family: var(--font-main); }
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 15px;
  font-size: 14.5px;
  transition: var(--transition);
  color: var(--dark);
  background: var(--light);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,79,186,0.12);
  background: white;
  outline: none;
}
.form-control::placeholder { color: #aaa; }
.input-group-text {
  background: var(--light);
  border: 1.5px solid var(--border);
  color: var(--primary);
}

/* ===== APPOINTMENT BOOKING ===== */
.booking-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}
.booking-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
  max-width: 160px;
}
.booking-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  left: 55%;
  width: 90%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.booking-step.active:not(:last-child)::after,
.booking-step.completed:not(:last-child)::after { background: var(--primary); }
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  background: white;
  color: var(--text);
  z-index: 1;
  transition: var(--transition);
  font-family: var(--font-main);
}
.booking-step.active .step-num {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(27,79,186,0.4);
}
.booking-step.completed .step-num {
  border-color: var(--secondary);
  background: var(--secondary);
  color: white;
}
.step-label { font-size: 13px; color: var(--text); margin-top: 8px; font-weight: 500; text-align: center; }
.booking-step.active .step-label { color: var(--primary); font-weight: 600; }
.booking-form-step { display: none; }
.booking-form-step.active { display: block; }

.doctor-select-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  margin-bottom: 12px;
}
.doctor-select-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.doctor-select-card.selected {
  border-color: var(--primary);
  background: rgba(27,79,186,0.04);
  box-shadow: 0 0 0 4px rgba(27,79,186,0.1);
}
.doctor-select-card img { width: 65px; height: 65px; border-radius: 50%; object-fit: cover; }
.doctor-select-info h5 { font-size: 15px; margin-bottom: 3px; }
.doctor-select-info p { font-size: 13px; color: var(--text); margin: 0; }
.doctor-select-fee { margin-left: auto; text-align: right; }
.fee-badge {
  background: rgba(27,79,186,0.1);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.date-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
}
.date-btn {
  padding: 12px 10px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  background: white;
  font-family: var(--font-main);
}
.date-btn:hover { border-color: var(--primary); }
.date-btn.selected { border-color: var(--primary); background: var(--primary); color: white; }
.date-btn.selected .date-day,
.date-btn.selected .date-num { color: white; }
.date-day { font-size: 12px; color: var(--text); font-weight: 500; }
.date-num { font-size: 1.4rem; font-weight: 700; color: var(--dark); line-height: 1; margin: 3px 0; }
.date-month { font-size: 11px; color: var(--text); }

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
}
.slot-btn {
  padding: 10px;
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  background: white;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  font-family: var(--font-main);
}
.slot-btn:hover { border-color: var(--secondary); }
.slot-btn.selected { border-color: var(--secondary); background: var(--secondary); color: white; }
.slot-btn.booked { border-color: var(--border); background: var(--light); color: #bbb; cursor: not-allowed; }

/* ===== PAYMENT FORM ===== */
.payment-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.payment-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 25px 30px;
}
.payment-body { padding: 30px; }
.card-input-wrapper { position: relative; }
.card-input-wrapper .card-brand {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
}
.secure-badge { display: flex; align-items: center; gap: 8px; color: var(--text); font-size: 13px; }
.secure-badge i { color: #28a745; }

/* ===== CASE STUDIES ===== */
.case-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.case-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.before-after-wrapper { position: relative; overflow: hidden; }
.before-after-wrapper img { width: 100%; height: 220px; object-fit: cover; }
.before-label, .after-label {
  position: absolute;
  top: 15px;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-main);
}
.before-label { left: 15px; background: rgba(255,107,53,0.9); color: white; }
.after-label { right: 15px; background: rgba(0,191,165,0.9); color: white; }
.case-body { padding: 24px; }
.case-treatment { color: var(--primary); font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.case-title { font-size: 1.05rem; margin-bottom: 12px; }
.case-desc { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 16px; }

/* ===== WHO WE ARE / ABOUT ===== */
.about-img-grid { position: relative; }
.about-main-img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
}
.about-float-card {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  position: absolute;
}
.about-float-card.bottom-left { bottom: -20px; left: -20px; }
.about-float-card.top-right { top: 20px; right: -20px; }
.float-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
}
.about-badge-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.check-icon {
  width: 24px; height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 2px;
}

/* ===== MEET SPECIALISTS ===== */
.expertise-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.expertise-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.expertise-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  margin-bottom: 18px;
}
.expertise-skills { margin-top: 16px; }
.skill-tag {
  display: inline-block;
  background: rgba(27,79,186,0.08);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  margin: 3px;
}
.progress-skill { margin-bottom: 12px; }
.progress-label { display: flex; justify-content: space-between; font-size: 13px; font-weight: 500; margin-bottom: 5px; }
.progress { height: 6px; border-radius: 3px; }
.progress-bar { background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 3px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 40px;
  background:
    linear-gradient(135deg, rgba(13,24,75,0.80) 0%, rgba(27,79,186,0.72) 100%),
    url('/rishabh/assets/images/page-hero-bg.svg') center center / cover no-repeat;
  background-size: cover;
}
.page-hero::before { display: none; }
.page-hero h1 { font-size: 2.1rem; font-weight: 800; color: white; margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 0.97rem; }
.breadcrumb { background: none; padding: 0; }
.breadcrumb-item a { color: rgba(255,255,255,0.7); }
.breadcrumb-item.active { color: rgba(255,255,255,0.9); }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding-top: 80px;
}
.footer-brand { margin-bottom: 20px; }
.footer-desc { font-size: 14.5px; line-height: 1.8; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.footer-heading { font-size: 16px; font-weight: 700; color: white; margin-bottom: 24px; position: relative; padding-bottom: 12px; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 3px; background: var(--secondary); border-radius: 2px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 14.5px; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--secondary); padding-left: 4px; }
.footer-links a i { font-size: 12px; color: var(--secondary); }
.footer-contact-item { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.footer-contact-icon { width: 40px; height: 40px; min-width: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: var(--secondary); font-size: 16px; }
.footer-contact-text { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; }
.footer-contact-text strong { color: white; display: block; font-size: 14px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  margin-right: 8px;
  font-size: 15px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover { background: var(--primary); color: white; transform: translateY(-3px); border-color: var(--primary); }
.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  color: rgba(255,255,255,0.5);
  font-size: 13.5px;
}
.footer-newsletter .form-control { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: white; border-radius: 10px 0 0 10px; }
.footer-newsletter .form-control::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter .form-control:focus { background: rgba(255,255,255,0.12); border-color: var(--secondary); box-shadow: none; }
.footer-newsletter .btn { border-radius: 0 10px 10px 0; }

/* ===== BACK TO TOP ===== */
#backToTop {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 45px; height: 45px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  border: none;
}
#backToTop.visible { opacity: 1; transform: translateY(0); }
#backToTop:hover { background: var(--secondary); transform: translateY(-3px); }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 85px; right: 28px;
  width: 50px; height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover { color: white; transform: scale(1.1); }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: white;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.preloader-logo { font-size: 2.5rem; color: var(--primary); }
.preloader-spinner {
  width: 50px; height: 50px;
  border: 4px solid rgba(27,79,186,0.15);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== ALERT MESSAGES ===== */
.alert-floating {
  position: fixed;
  top: 100px; right: 20px;
  z-index: 9000;
  min-width: 300px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  animation: slideIn 0.3s ease;
}
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ===== LOADING OVERLAY ===== */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(5px);
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.loading-overlay.show { display: flex; }

/* ===== PAGE TRANSITIONS ===== */
.page-fade { animation: fadeInUp 0.5s ease; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ===== SWIPER CUSTOM ===== */
.swiper-wrapper-custom .swiper-pagination { bottom: 20px; }
.swiper-wrapper-custom .swiper-button-next,
.swiper-wrapper-custom .swiper-button-prev {
  width: 45px; height: 45px;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow);
  color: var(--primary);
}
.swiper-wrapper-custom .swiper-button-next::after,
.swiper-wrapper-custom .swiper-button-prev::after { font-size: 16px; font-weight: 800; }

/* ===== HOVER EFFECTS ===== */
.hover-lift { transition: var(--transition); }
.hover-lift:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover) !important; }

/* ===== ADMIN SIDEBAR BADGE ===== */
.badge-notification {
  background: var(--accent);
  color: white;
  padding: 2px 7px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .section-title { font-size: 2.2rem; }
  .hero-title { font-size: 2.8rem; }
}

@media (max-width: 992px) {
  .section-padding { padding: 70px 0; }
  .section-title { font-size: 2rem; }
  .hero-title { font-size: 2.3rem; }
  .hero-swiper { max-height: 700px; }
  .site-topbar { display: none !important; }
  .hero-stats-card { margin-top: 30px; }
}

@media (max-width: 768px) {
  .section-padding { padding: 55px 0; }
  .section-title { font-size: 1.75rem; }
  .hero-title { font-size: 1.9rem; }
  .hero-swiper { min-height: 500px; max-height: 650px; }
  .booking-steps { gap: 5px; }
  .booking-step:not(:last-child)::after { display: none; }
  .step-label { font-size: 11px; }
  .step-num { width: 38px; height: 38px; font-size: 14px; }
  .form-card { padding: 25px 20px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn-primary-custom,
  .hero-actions .btn-outline-custom { font-size: 14px; padding: 11px 22px; }
  .doctor-img-wrapper { height: 250px; }
  #backToTop { bottom: 20px; right: 20px; }
  .whatsapp-float { bottom: 75px; right: 18px; }
  .about-float-card.bottom-left { bottom: 0; left: 0; }
  .about-float-card.top-right { top: 10px; right: 0; }
  .footer { padding-top: 55px; }
}

@media (max-width: 576px) {
  .section-title { font-size: 1.55rem; }
  .hero-title { font-size: 1.65rem; }
  .hero-swiper { min-height: 480px; }
  .hero-content { padding: 80px 0 40px; }
  .hero-stat-card { padding: 14px; }
  .hero-stat-number { font-size: 1.5rem; }
  .date-grid { grid-template-columns: repeat(3, 1fr); }
  .slot-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-number { font-size: 2.2rem; }
}

/* ===== ADMIN STYLES ===== */
.admin-wrapper { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px;
  background: var(--dark);
  height: 100vh;
  position: fixed;
  left: 0; top: 0;
  z-index: 1000;
  transition: var(--transition);
  overflow-y: auto;
  overflow-x: hidden;
}
.admin-sidebar::-webkit-scrollbar { width: 5px; }
.admin-sidebar::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); }
.admin-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.25); border-radius: 3px; }
.admin-sidebar::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.45); }
.admin-content { margin-left: 260px; min-height: 100vh; background: #f0f2f5; width: calc(100% - 260px); }
.admin-topbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 0 24px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0; z-index: 100;
}
.admin-page-body { padding: 24px; }
.sidebar-brand { padding: 22px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.sidebar-brand .brand-name { font-size: 1.1rem; }
.sidebar-brand .brand-tagline { font-size: 10px; }
.sidebar-nav { padding: 15px 0; }
.sidebar-section { padding: 5px 15px 3px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: rgba(255,255,255,0.3); text-transform: uppercase; margin-top: 8px; }
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  border-radius: 10px;
  margin: 2px 10px;
  position: relative;
}
.sidebar-link i { width: 20px; font-size: 16px; text-align: center; }
.sidebar-link:hover, .sidebar-link.active {
  background: rgba(255,255,255,0.1);
  color: white;
}
.sidebar-link.active { background: var(--primary); color: white; }
.sidebar-link.active::before {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 20px;
  background: var(--secondary);
  border-radius: 2px 0 0 2px;
}

.stat-card-admin {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card-admin:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.stat-card-admin .stat-icon {
  position: absolute;
  right: 20px; top: 20px;
  width: 55px; height: 55px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  opacity: 0.9;
}
.stat-card-admin .number { font-size: 2.2rem; font-weight: 800; font-family: var(--font-main); color: var(--dark); line-height: 1; }
.stat-card-admin .label { font-size: 13.5px; color: var(--text); margin-top: 5px; }
.stat-card-admin .trend { font-size: 12.5px; margin-top: 10px; display: flex; align-items: center; gap: 4px; }
.trend-up { color: #28a745; }
.trend-down { color: #dc3545; }

.admin-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.admin-card-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-card-header h5 { font-size: 16px; font-weight: 700; margin: 0; color: var(--dark); }
.admin-card-body { padding: 24px; }

.table-admin th {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  border-top: none;
  background: var(--light);
  padding: 12px 16px;
}
.table-admin td {
  padding: 14px 16px;
  vertical-align: middle;
  font-size: 14px;
  border-color: var(--border);
}
.table-admin tbody tr:hover { background: rgba(27,79,186,0.02); }
.status-badge {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  font-family: var(--font-main);
}
.status-active { background: rgba(40,167,69,0.12); color: #28a745; }
.status-inactive { background: rgba(220,53,69,0.1); color: #dc3545; }
.status-pending { background: rgba(255,193,7,0.15); color: #f39c12; }
.status-confirmed { background: rgba(27,79,186,0.1); color: var(--primary); }
.status-completed { background: rgba(40,167,69,0.12); color: #28a745; }
.status-cancelled { background: rgba(220,53,69,0.1); color: #dc3545; }
.status-paid { background: rgba(40,167,69,0.12); color: #28a745; }
.status-refunded { background: rgba(124,58,237,0.1); color: #7c3aed; }

.action-btns a, .action-btns button {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin: 0 2px;
}
.btn-edit { background: rgba(27,79,186,0.1); color: var(--primary); }
.btn-edit:hover { background: var(--primary); color: white; }
.btn-delete { background: rgba(220,53,69,0.1); color: #dc3545; }
.btn-delete:hover { background: #dc3545; color: white; }
.btn-view { background: rgba(0,191,165,0.1); color: var(--secondary); }
.btn-view:hover { background: var(--secondary); color: white; }

.toggle-switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.slider-toggle { position: absolute; cursor: pointer; inset: 0; background: #ccc; border-radius: 24px; transition: 0.3s; }
.slider-toggle:before { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; bottom: 3px; background: white; border-radius: 50%; transition: 0.3s; }
input:checked + .slider-toggle { background: var(--secondary); }
input:checked + .slider-toggle:before { transform: translateX(20px); }

@media (max-width: 992px) {
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-content { margin-left: 0; width: 100%; }
  .sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
  }
  .sidebar-overlay.show { display: block; }
}

