/* ============================================================
   HASTANE CMS - Frontend CSS
   ============================================================ */
:root {
  --primary: #0d6efd;
  --primary-dark: #0a58ca;
  --secondary: #198754;
  --dark: #0a2342;
  --text: #333;
  --text-light: #6c757d;
  --border: #e9ecef;
  --bg-light: #f8f9fa;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,.15);
  --transition: all .3s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; font-size: 16px; color: var(--text); line-height: 1.7; background: #fff; }
a { text-decoration: none; color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; }
ul { list-style: none; margin: 0; padding: 0; }
.section-pad { padding: 80px 0; }
.bg-light-gray { background: #f4f7fb; }
.bg-primary-soft { background: linear-gradient(135deg, #e3f0ff 0%, #f0f8ff 100%); }

/* ── TOP BAR ─────────────────────────────────────────── */
.top-bar { background: var(--dark); color: #ccc; font-size: 13px; padding: 8px 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.top-bar a { color: #ccc; } .top-bar a:hover { color: #fff; }
.top-bar i { margin-right: 4px; color: var(--primary); }

/* ── LANGUAGE SWITCHER ───────────────────────────────── */
.lang-switcher { display: flex; gap: 4px; align-items: center; border-left: 1px solid #ffffff20; padding-left: 16px; }
.lang-btn { color: #aaa; font-size: 12px; font-weight: 600; padding: 2px 8px; border-radius: 4px; transition: var(--transition); }
.lang-btn:hover, .lang-btn.active { background: var(--primary); color: #fff; }

/* ── HEADER ──────────────────────────────────────────── */
.site-header { background: #fff; box-shadow: 0 2px 15px rgba(0,0,0,.08); position: sticky; top: 0; z-index: 1000; transition: var(--transition); }
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 0; }
.logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { max-height: 55px; width: auto; }
.logo-text { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 2rem; color: var(--primary); }
.logo-text span { font-size: 1.2rem; font-weight: 800; color: var(--dark); line-height: 1.2; }

/* ── NAVIGATION ──────────────────────────────────────── */
.main-nav { flex: 1; }
.nav-list { display: flex; align-items: center; gap: 0; justify-content: center; }
.nav-item { position: relative; }
.nav-item > .nav-link { display: flex; align-items: center; gap: 4px; padding: 8px 14px; font-size: 14px; font-weight: 600; color: var(--dark); border-radius: 6px; transition: var(--transition); }
.nav-item > .nav-link:hover, .nav-item:hover > .nav-link { color: var(--primary); background: #f0f5ff; }
.nav-item > .nav-link i { font-size: 11px; transition: var(--transition); }
.nav-item:hover > .nav-link i { transform: rotate(180deg); }
.dropdown-menu-custom { position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px; background: #fff; border-radius: var(--radius); box-shadow: 0 8px 40px rgba(0,0,0,.15); border-top: 3px solid var(--primary); opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); z-index: 1000; }
.nav-item:hover .dropdown-menu-custom { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu-custom li a { display: block; padding: 10px 20px; color: var(--text); font-size: 14px; border-bottom: 1px solid var(--border); transition: var(--transition); }
.dropdown-menu-custom li:last-child a { border-bottom: none; }
.dropdown-menu-custom li a:hover { color: var(--primary); background: #f8f9fa; padding-left: 25px; }

/* ── HEADER CTA ──────────────────────────────────────── */
.emergency-btn { display: flex; align-items: center; gap: 8px; padding: 8px 14px; background: #fff3f3; border-radius: 8px; border: 1px solid #ffcdd2; }
.emergency-btn i { color: #dc3545; font-size: 1.2rem; }
.emergency-btn small { display: block; font-size: 11px; color: #999; }
.emergency-btn strong { display: block; font-size: 15px; color: #dc3545; }
.btn-appointment { background: var(--primary); color: #fff !important; padding: 10px 20px; border-radius: 8px; font-weight: 700; font-size: 14px; white-space: nowrap; }
.btn-appointment:hover { background: var(--primary-dark); color: #fff !important; transform: translateY(-2px); }

/* ── MOBILE MENU ─────────────────────────────────────── */
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; cursor: pointer; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 999; }

@media (max-width: 1199px) {
  .mobile-menu-btn { display: flex; }
  .header-cta { display: none !important; }
  .main-nav { position: fixed; top: 0; left: -100%; width: 280px; height: 100vh; background: #fff; z-index: 1001; padding: 20px 0; overflow-y: auto; transition: left .3s ease; box-shadow: 4px 0 20px rgba(0,0,0,.2); }
  .main-nav.open { left: 0; }
  .nav-overlay.open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; padding: 10px 0; gap: 0; }
  .nav-item > .nav-link { padding: 12px 20px; border-radius: 0; border-bottom: 1px solid var(--border); }
  .dropdown-menu-custom { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-radius: 0; display: none; border-top: none; background: #f8f9fa; }
  .nav-item.open .dropdown-menu-custom { display: block; }
  .dropdown-menu-custom li a { padding-left: 35px; }
}

/* ── HERO SLIDER ─────────────────────────────────────── */
.hero-slider { position: relative; }
.hero-swiper, .default-hero { height: 600px; }
.swiper-slide, .default-hero { position: relative; overflow: hidden; }
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 6s ease; }
.swiper-slide.swiper-slide-active .slide-bg { transform: scale(1.05); }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,35,66,.85) 0%, rgba(13,110,253,.4) 100%); }
.slide-content { position: relative; z-index: 2; color: #fff; padding: 0 0 80px; max-width: 700px; margin-top: 80px; }
.slide-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.15; margin-bottom: 20px; }
.slide-subtitle { font-size: 1.1rem; margin-bottom: 30px; opacity: .9; }
.slide-btns { display: flex; gap: 15px; flex-wrap: wrap; }
.swiper-button-next, .swiper-button-prev { color: #fff; background: rgba(255,255,255,.2); width: 50px; height: 50px; border-radius: 50%; }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 16px; }
.swiper-pagination-bullet { background: #fff; opacity: .5; }
.swiper-pagination-bullet-active { opacity: 1; background: var(--primary); }

/* ── QUICK APPOINTMENT ───────────────────────────────── */
.quick-appt { position: relative; z-index: 10; margin-top: -60px; }
.quick-appt-box { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: 0 10px 40px rgba(0,0,0,.15); }
.quick-appt-title { color: var(--dark); font-weight: 700; margin-bottom: 15px; font-size: 1.1rem; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary-custom { display: inline-flex; align-items: center; background: var(--primary); color: #fff; padding: 12px 28px; border-radius: 8px; font-weight: 700; font-size: 15px; transition: var(--transition); }
.btn-primary-custom:hover { background: var(--primary-dark); color: #fff; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(13,110,253,.35); }
.btn-outline-custom { display: inline-flex; align-items: center; border: 2px solid var(--primary); color: var(--primary); padding: 10px 24px; border-radius: 8px; font-weight: 700; font-size: 15px; transition: var(--transition); }
.btn-outline-custom:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.btn-sm-primary { display: inline-block; background: var(--primary); color: #fff !important; padding: 6px 16px; border-radius: 6px; font-size: 13px; font-weight: 600; transition: var(--transition); }
.btn-sm-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-sm-outline { display: inline-block; border: 1px solid var(--primary); color: var(--primary); padding: 5px 14px; border-radius: 6px; font-size: 13px; font-weight: 600; transition: var(--transition); }
.btn-sm-outline:hover { background: var(--primary); color: #fff; }

/* ── SECTION HEADER ──────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag { display: inline-block; background: #e3f0ff; color: var(--primary); font-size: 13px; font-weight: 700; padding: 4px 16px; border-radius: 20px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; color: var(--dark); }

/* ── STATS ───────────────────────────────────────────── */
.stats-section { background: var(--primary); margin-top: 60px; }
.stat-item { text-align: center; padding: 30px 20px; border-right: 1px solid rgba(255,255,255,.2); }
.stat-item.last { border-right: none; }
.stat-num { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; color: #fff; line-height: 1; }
.stat-lbl { color: rgba(255,255,255,.8); font-size: 14px; margin-top: 5px; }
@media (max-width: 767px) { .stat-item { border-right: 1px solid rgba(255,255,255,.2); } .stat-item:nth-child(2n) { border-right: none; } }

/* ── DEPARTMENT CARDS ────────────────────────────────── */
.dept-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 30px 20px; background: #fff; border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); color: var(--text); }
.dept-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: var(--primary); color: var(--primary); }
.dept-icon { width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 15px; transition: var(--transition); }
.dept-card:hover .dept-icon { transform: scale(1.1); }
.dept-card h5 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.dept-card p { font-size: 13px; color: var(--text-light); margin-bottom: 10px; }
.dept-link { font-size: 13px; font-weight: 600; color: var(--primary); }
.dept-card-lg { min-height: 180px; }
.dept-card-sm { flex-direction: row; gap: 10px; text-align: left; padding: 15px; }
.dept-card-sm i { font-size: 1.4rem; }

/* ── SERVICE CARDS ───────────────────────────────────── */
.service-card { display: flex; gap: 20px; align-items: flex-start; padding: 25px; background: #fff; border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); color: var(--text); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: transparent; color: var(--text); }
.service-icon { flex-shrink: 0; width: 65px; height: 65px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: #fff; }
.service-content h5 { font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.service-content p { font-size: 14px; color: var(--text-light); margin-bottom: 10px; }
.service-link { font-size: 13px; font-weight: 600; color: var(--primary); }
.sidebar-service-link { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); color: var(--text); font-size: 14px; font-weight: 500; }
.sidebar-service-link:hover { color: var(--primary); padding-left: 5px; }
.sidebar-service-link i { font-size: 1.2rem; }

/* ── DOCTOR CARDS ────────────────────────────────────── */
.doctors-swiper { padding: 10px 5px 50px !important; }
.doctor-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.doctor-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.doctor-img-wrap { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.doctor-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.doctor-card:hover .doctor-img-wrap img { transform: scale(1.05); }
.doctor-img-placeholder, .doc-sm-placeholder, .doc-placeholder-lg { width: 100%; height: 100%; background: linear-gradient(135deg, #e3f0ff, #c7dfff); display: flex; align-items: center; justify-content: center; font-size: 4rem; color: var(--primary); }
.doctor-overlay { position: absolute; inset: 0; background: rgba(13,110,253,.85); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.doctor-card:hover .doctor-overlay { opacity: 1; }
.doctor-socials { display: flex; gap: 12px; }
.doctor-socials a { color: #fff; font-size: 1.2rem; }
.doctor-socials a:hover { color: #ffd; }
.doctor-info { padding: 18px; text-align: center; }
.doctor-info h5 { font-weight: 700; font-size: 15px; color: var(--dark); margin-bottom: 4px; }
.doctor-info p { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
.doctor-btns { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.doctor-card-sm { text-align: center; padding: 20px 15px; background: #f8f9fa; border-radius: var(--radius); }
.doc-sm-img { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; margin: 0 auto 10px; border: 3px solid var(--primary); }
.doc-sm-img img { width: 100%; height: 100%; object-fit: cover; }
.doc-sm-placeholder { font-size: 2rem; }
.doctor-card-sm h6 { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.doctor-card-sm small { color: var(--text-light); font-size: 12px; }

/* ── DOCTOR PROFILE ──────────────────────────────────── */
.doctor-profile-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; position: sticky; top: 100px; }
.doctor-profile-img { aspect-ratio: 1; overflow: hidden; }
.doctor-profile-img img { width: 100%; height: 100%; object-fit: cover; }
.doc-placeholder-lg { aspect-ratio: 1; font-size: 6rem; }
.doctor-profile-info { padding: 24px; }
.doctor-profile-info h3 { font-size: 1.3rem; font-weight: 800; color: var(--dark); margin-bottom: 5px; }
.doc-specialty { color: var(--primary); font-weight: 600; margin-bottom: 5px; }
.doc-dept a { font-size: 14px; color: var(--text-light); }
.doc-meta { margin-top: 15px; }
.doc-meta li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.doc-meta li:last-child { border-bottom: none; }
.doc-meta i { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.doc-social { display: flex; gap: 8px; }
.doc-section { margin-bottom: 30px; border-bottom: 1px solid var(--border); padding-bottom: 30px; }
.doc-section:last-child { border-bottom: none; }
.doc-section-title { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 15px; display: flex; align-items: center; }
.doc-section-title i { color: var(--primary); }

/* ── WHY US ──────────────────────────────────────────── */
.why-us-section { padding: 80px 0; background: var(--dark); color: #fff; }
.why-us-img { position: relative; height: 450px; border-radius: var(--radius); overflow: hidden; }
.why-us-img-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #1565c0, #0d47a1); border-radius: var(--radius); }
.why-us-badge { position: absolute; bottom: 30px; right: 30px; background: var(--primary); color: #fff; border-radius: var(--radius); padding: 20px 25px; text-align: center; }
.badge-num { font-size: 2.5rem; font-weight: 900; line-height: 1; }
.badge-txt { font-size: 13px; opacity: .9; }
.why-us-content .section-tag { background: rgba(255,255,255,.15); color: #fff; }
.why-us-content h2 { color: #fff; margin-bottom: 15px; }
.why-us-content > p { color: rgba(255,255,255,.8); margin-bottom: 25px; }
.why-features { display: flex; flex-direction: column; gap: 15px; }
.why-feature { display: flex; align-items: flex-start; gap: 15px; }
.why-feature i { font-size: 1.5rem; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.why-feature strong { display: block; color: #fff; font-size: 15px; }
.why-feature span { color: rgba(255,255,255,.7); font-size: 14px; }
.why-us-content .btn-outline-custom { border-color: rgba(255,255,255,.5); color: #fff; }
.why-us-content .btn-outline-custom:hover { background: rgba(255,255,255,.1); }

/* ── TESTIMONIALS ────────────────────────────────────── */
.testimonials-swiper { padding: 10px 5px 50px !important; }
.testimonial-card { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.testimonial-rating { color: #ffc107; margin-bottom: 15px; }
.testimonial-card blockquote { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; border-left: 3px solid var(--primary); padding-left: 15px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; }
.author-avatar { width: 45px; height: 45px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.testimonial-author strong { display: block; font-size: 15px; color: var(--dark); }
.testimonial-author small { color: var(--text-light); font-size: 12px; }

/* ── NEWS CARDS ──────────────────────────────────────── */
.news-card { display: block; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); color: var(--text); }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); color: var(--text); }
.news-img { aspect-ratio: 16/9; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.news-card:hover .news-img img { transform: scale(1.08); }
.news-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg,#e3f0ff,#c7dfff); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--primary); min-height: 180px; }
.news-content { padding: 20px; }
.news-date { font-size: 12px; color: var(--text-light); }
.news-content h5 { font-size: 16px; font-weight: 700; color: var(--dark); margin: 8px 0 10px; line-height: 1.4; }
.news-content p { font-size: 14px; color: var(--text-light); margin-bottom: 12px; }
.news-link { font-size: 13px; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 5px; }
.news-card-featured .news-img { aspect-ratio: 4/3; }
.article-meta { display: flex; gap: 20px; color: var(--text-light); font-size: 14px; flex-wrap: wrap; }
.content-body { line-height: 1.9; }
.content-body h2, .content-body h3, .content-body h4 { color: var(--dark); margin: 25px 0 12px; }
.content-body p { margin-bottom: 15px; }
.content-body ul, .content-body ol { margin-bottom: 15px; padding-left: 20px; }
.content-body ul { list-style: disc; }
.content-body img { max-width: 100%; border-radius: 8px; margin: 15px 0; }

/* ── SIDEBAR ─────────────────────────────────────────── */
.sidebar-widget { background: #fff; border-radius: var(--radius); padding: 25px; margin-bottom: 25px; box-shadow: var(--shadow); }
.sidebar-widget h5 { font-weight: 700; color: var(--dark); margin-bottom: 18px; font-size: 16px; border-bottom: 2px solid var(--primary); padding-bottom: 10px; }
.appt-widget { background: var(--dark); color: #fff; }
.appt-widget h5 { color: #fff; border-color: var(--primary); }
.appt-widget p { color: rgba(255,255,255,.8); font-size: 14px; margin-bottom: 15px; }
.sidebar-hours li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.sidebar-hours li:last-child { border-bottom: none; }
.sidebar-hours li.closed { color: #dc3545; opacity: .6; }
.sidebar-dept-links li a { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--border); color: var(--text); font-size: 14px; }
.sidebar-dept-links li:last-child a { border-bottom: none; }
.sidebar-dept-links li a:hover { color: var(--primary); padding-left: 5px; }
.sidebar-dept-links i { font-size: 1.1rem; }
.sidebar-news-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--text); }
.sidebar-news-item:last-child { border-bottom: none; }
.sidebar-news-item img, .sidebar-news-ph { width: 70px; height: 55px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.sidebar-news-ph { background: #e3f0ff; display: flex; align-items: center; justify-content: center; color: var(--primary); }
.sidebar-news-item span { font-size: 11px; color: var(--text-light); }
.sidebar-news-item p { font-size: 13px; font-weight: 500; color: var(--dark); margin: 0; line-height: 1.4; }
.sidebar-news-item:hover p { color: var(--primary); }

/* ── PAGE BANNER ─────────────────────────────────────── */
.page-banner { color: #fff; padding: 60px 0; margin-top: 0; }
.page-banner h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; margin-bottom: 12px; }
.page-banner .breadcrumb { background: none; padding: 0; margin: 0; }
.page-banner .breadcrumb-item a { color: rgba(255,255,255,.7); }
.page-banner .breadcrumb-item.active { color: rgba(255,255,255,.9); }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* ── FILTER BAR ──────────────────────────────────────── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn { padding: 8px 20px; border-radius: 25px; border: 1px solid var(--border); color: var(--text); font-size: 14px; font-weight: 500; transition: var(--transition); background: #fff; }
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── APPOINTMENT FORM ────────────────────────────────── */
.appt-form-box { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.appt-form-header { background: var(--dark); color: #fff; padding: 30px; }
.appt-form-header h3 { font-weight: 800; margin-bottom: 8px; }
.appt-form-header p { opacity: .8; margin: 0; font-size: 14px; }
.appt-form { padding: 30px; }
.input-icon-wrap { position: relative; }
.input-icon-wrap i { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--primary); z-index: 2; }
.input-icon-wrap .form-control, .input-icon-wrap .form-select { padding-left: 38px; }
.appt-info-list li { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--border); }
.appt-info-list li:last-child { border-bottom: none; }
.appt-info-list i { font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.appt-info-list strong { display: block; font-size: 12px; color: var(--text-light); }
.appt-info-list a, .appt-info-list span { font-size: 15px; font-weight: 600; color: var(--dark); }

/* ── CONTACT ─────────────────────────────────────────── */
.contact-info-cards { display: flex; flex-direction: column; gap: 15px; }
.contact-info-card { background: #fff; border-radius: var(--radius); padding: 20px; display: flex; gap: 15px; box-shadow: var(--shadow); }
.ci-icon { width: 45px; height: 45px; background: #e3f0ff; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--primary); flex-shrink: 0; }
.contact-info-card h6 { font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.contact-info-card p { font-size: 14px; color: var(--text-light); margin: 0; }
.contact-info-card a { color: var(--text); font-size: 14px; }
.contact-info-card a:hover { color: var(--primary); }
.emergency-card .ci-icon { background: #ffe3e3; }
.contact-form-box { background: #fff; border-radius: var(--radius); padding: 35px; box-shadow: var(--shadow); }
.contact-socials { display: flex; gap: 10px; margin-top: 10px; }
.contact-socials a { color: var(--text-light); font-size: 1.2rem; }
.contact-socials a:hover { color: var(--primary); }
.wh-row { display: flex; justify-content: space-between; font-size: 13px; padding: 5px 0; border-bottom: 1px solid var(--border); }

/* ── GALLERY ─────────────────────────────────────────── */
.gallery-item { display: block; border-radius: 8px; overflow: hidden; position: relative; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(13,110,253,.8); display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; opacity: 0; transition: var(--transition); gap: 8px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; }
.gallery-overlay span { font-size: 13px; font-weight: 600; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-group { margin-bottom: 40px; }
.faq-cat-title { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); }
.faq-item { border: 1px solid var(--border); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
.faq-item .accordion-button { font-weight: 600; color: var(--dark); background: #fff; }
.faq-item .accordion-button:not(.collapsed) { color: var(--primary); background: #e3f0ff; box-shadow: none; }
.faq-item .accordion-button::after { filter: none; }
.faq-cta { background: #e3f0ff; border-radius: var(--radius); padding: 30px; text-align: center; }

/* ── INSURANCE ───────────────────────────────────────── */
.section-group-title { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.insurance-card { background: #fff; border-radius: var(--radius); padding: 20px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; border: 1px solid var(--border); }
.insurance-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.insurance-card img { max-height: 60px; object-fit: contain; }
.insurance-card i { font-size: 2rem; color: var(--primary); }
.insurance-card span { font-size: 13px; font-weight: 600; color: var(--dark); text-align: center; }
.insurance-note { background: #e3f0ff; border-radius: 8px; padding: 18px 20px; display: flex; gap: 12px; align-items: flex-start; }
.insurance-note i { color: var(--primary); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.insurance-note p { font-size: 14px; color: var(--dark); margin: 0; }

/* ── SHARE BAR ───────────────────────────────────────── */
.share-bar { display: flex; align-items: center; gap: 10px; padding: 15px 0; border-top: 1px solid var(--border); }
.share-bar span { font-weight: 600; font-size: 14px; color: var(--text-light); }
.share-btn { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; color: #fff; font-size: 0.9rem; transition: var(--transition); }
.share-btn:hover { transform: translateY(-3px); color: #fff; }
.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #000; }
.share-btn.whatsapp { background: #25d366; }

/* ── SOCIAL ICONS ────────────────────────────────────── */
.social-icon { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: #e3f0ff; color: var(--primary); transition: var(--transition); }
.social-icon:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.social-icon.facebook:hover { background: #1877f2; } .social-icon.twitter:hover { background: #000; }
.social-icon.linkedin:hover { background: #0a66c2; } .social-icon.instagram:hover { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }

/* ── NOT FOUND ───────────────────────────────────────── */
.not-found-section { min-height: 60vh; display: flex; align-items: center; }
.not-found-num { font-size: 8rem; font-weight: 900; color: var(--primary); opacity: .15; line-height: 1; }

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer { background: var(--dark); color: #ccc; }
.footer-top { padding: 70px 0 40px; }
.footer-logo { max-height: 60px; margin-bottom: 15px; filter: brightness(0) invert(1); }
.footer-logo-text { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; }
.footer-logo-text i { color: var(--primary); }
.footer-desc { font-size: 14px; color: #aaa; line-height: 1.8; margin-bottom: 18px; }
.footer-contact-info div { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; font-size: 14px; }
.footer-contact-info i { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-info a { color: #ccc; } .footer-contact-info a:hover { color: #fff; }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social .social-icon { background: rgba(255,255,255,.1); color: #ccc; }
.footer-social .social-icon:hover { color: #fff; }
.footer-widget-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); }
.footer-links li a { display: flex; align-items: center; gap: 6px; color: #aaa; font-size: 14px; padding: 5px 0; transition: var(--transition); }
.footer-links li a:hover { color: #fff; padding-left: 5px; }
.footer-links i { font-size: 11px; color: var(--primary); }
.working-hours-list li { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 13px; }
.working-hours-list li:last-child { border-bottom: none; }
.working-hours-list li.closed { opacity: .5; }
.footer-newsletter { background: rgba(255,255,255,.05); border-top: 1px solid rgba(255,255,255,.08); padding: 30px 0; }
.footer-newsletter h5 { color: #fff; font-weight: 700; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form .form-control { border-radius: 8px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.1); color: #fff; flex: 1; }
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form .btn { border-radius: 8px; flex-shrink: 0; }
.footer-bottom { background: rgba(0,0,0,.3); padding: 18px 0; font-size: 13px; color: #777; }
.footer-bottom-links { display: flex; gap: 20px; justify-content: flex-end; flex-wrap: wrap; margin: 0; }
.footer-bottom-links a { color: #777; } .footer-bottom-links a:hover { color: #fff; }

/* ── FLOAT BUTTONS ───────────────────────────────────── */
.back-to-top { position: fixed; bottom: 90px; right: 25px; width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 990; box-shadow: var(--shadow); }
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }
.whatsapp-float { position: fixed; bottom: 145px; right: 25px; width: 50px; height: 50px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; z-index: 990; box-shadow: 0 4px 15px rgba(37,211,102,.4); transition: var(--transition); }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.1); color: #fff; }
.appt-float { position: fixed; bottom: 25px; right: 25px; width: 55px; height: 55px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; z-index: 990; box-shadow: 0 4px 15px rgba(13,110,253,.4); transition: var(--transition); animation: pulse 2s infinite; }
.appt-float:hover { transform: translateY(-3px) scale(1.1); color: #fff; animation: none; }
@keyframes pulse { 0%,100% { box-shadow: 0 4px 15px rgba(13,110,253,.4); } 50% { box-shadow: 0 4px 30px rgba(13,110,253,.6); } }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 767px) {
  .section-pad { padding: 50px 0; }
  .hero-swiper, .default-hero { height: 400px; }
  .slide-content { margin-top: 40px; }
  .news-card-featured .news-img { aspect-ratio: 16/9; }
  .service-card { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
  .footer-bottom-links { justify-content: flex-start; }
  .quick-appt-box { margin: 0 15px; }
}
