/* DGV Home Improvements — visual system matched to Mukti (#0071ef) */
:root {
  --blue: #0071ef;
  --blue-dark: #005fd1;
  --blue-soft: #eaf4ff;
  --blue-wash: #f5f9ff;
  --navy: #0b1c3d;
  --text: #696969;
  --heading: #000000;
  --line: #ecf0f3;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 113, 239, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: .3s; }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4,h5,h6 { color: var(--heading); font-weight: 700; line-height: 1.3; margin: 0 0 12px; }
p { margin: 0 0 14px; }
button, input, select, textarea { font-family: inherit; }
.container { width: 100%; max-width: 1170px; margin: 0 auto; padding: 0 15px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col { padding: 0 15px; }
.col-12 { width: 100%; }
.col-6 { width: 50%; }
.col-4 { width: 33.333%; }
.col-3 { width: 25%; }
.col-8 { width: 66.666%; }
.col-5 { width: 41.666%; }
.col-7 { width: 58.333%; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.section { padding: 90px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.section-header .eyebrow {
  color: var(--blue);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  display: block;
  margin-bottom: 6px;
}
.section-header h2 { font-size: 36px; }
.section-header h2 span { display: block; }

.lab-btn {
  display: inline-block;
  background: var(--blue);
  color: #fff !important;
  border: 0;
  border-radius: 4px;
  padding: 14px 28px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.lab-btn:hover { background: var(--blue-dark); color: #fff; }
.lab-btn i { margin-left: 6px; font-size: 12px; }

.form-success {
  display: none;
  background: #e8f7ee;
  border: 1px solid #b7e4c7;
  color: #1b7a3d;
  padding: 14px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-weight: 600;
}
.field-error { color: #d93025; font-size: 13px; margin-top: 4px; display: none; }
.input-error { border-color: #d93025 !important; }

/* Header */
.header-top { padding: 18px 0; background: #fff; }
.logo img { height: 90px; width: auto; }
.header-meta { display: flex; align-items: center; gap: 28px; }
.meta-item { display: flex; align-items: center; gap: 12px; }
.meta-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--blue-wash);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.meta-item span { display: block; color: var(--text); font-size: 13px; }
.meta-item strong { color: var(--heading); font-size: 14px; }

.header-bottom {
  background: var(--blue);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; }
.main-menu { display: flex; align-items: center; }
.main-menu > li { position: relative; }
.main-menu > li > a {
  color: #fff;
  padding: 22px 12px;
  display: block;
  font-weight: 700;
  font-size: 15px;
}
.main-menu > li > a i { font-size: 11px; margin-left: 3px; }
.main-menu > li:hover > a,
.main-menu > li.active > a { opacity: .9; }
.submenu {
  position: absolute;
  left: 0; top: 100%;
  width: 210px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  border-radius: 4px;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: .25s;
  z-index: 20;
}
.main-menu > li:hover > .submenu { opacity: 1; visibility: visible; transform: none; }
.submenu li { border-bottom: 1px solid var(--line); }
.submenu li:last-child { border-bottom: 0; }
.submenu a {
  display: block;
  padding: 10px 18px;
  color: #000;
  font-weight: 600;
  font-size: 14px;
}
.submenu a:hover { color: var(--blue); padding-left: 22px; }

.nav-tools { display: flex; align-items: center; gap: 12px; }
.search-form { position: relative; }
.search-form .form-success {
  position: absolute; right: 0; top: 110%; z-index: 30; min-width: 260px;
  box-shadow: var(--shadow);
}
.search-form input {
  background: rgba(255,255,255,.2);
  border: 0;
  color: #fff;
  border-radius: 50px;
  padding: 10px 44px 10px 18px;
  width: 220px;
  outline: none;
}
.search-form input::placeholder { color: #fff; }
.search-form button {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  background: transparent; border: 0; color: #fff; cursor: pointer;
}
.quote-orb {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid #fff; color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.menu-toggle {
  display: none;
  background: transparent; border: 0; color: #fff; font-size: 26px; cursor: pointer;
}

/* Page hero */
.page-hero {
  background: linear-gradient(180deg, #dff0ff 0%, #f4f9ff 55%, #ffffff 100%);
  background-image: url("../images/hex-pattern.svg"), linear-gradient(180deg, #dff0ff 0%, #f4f9ff 60%, #fff 100%);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 90px 0 70px;
  text-align: center;
}
.page-hero h1 { color: var(--blue); font-size: 36px; margin-bottom: 8px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; color: #000; font-weight: 600; font-size: 14px; }
.breadcrumb a { color: #000; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--text); font-weight: 400; }

/* Home banner */
.banner {
  background: linear-gradient(180deg, #e3f2ff 0%, #f6fbff 50%, #fff 100%);
  background-image: url("../images/hex-pattern.svg"), linear-gradient(180deg, #e3f2ff 0%, #f7fbff 70%, #fff 100%);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0 50px;
  overflow: hidden;
}
.banner-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.banner-kicker {
  color: var(--blue);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 10px;
}
.banner h1 { font-size: 52px; line-height: 1.15; margin-bottom: 18px; }
.banner h1 b { color: var(--blue); font-weight: 700; }
.banner p { max-width: 520px; margin-bottom: 28px; }
.hero-art { position: relative; min-height: 460px; }
.hero-circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid #fff;
  box-shadow: 0 20px 40px rgba(0,113,239,.18);
}
.hero-circle img { width: 100%; height: 100%; object-fit: cover; }
.hero-circle.c1 { width: 300px; height: 300px; left: 20px; top: 40px; }
.hero-circle.c2 { width: 240px; height: 240px; right: 10px; bottom: 20px; }
.float-badge {
  position: absolute;
  width: 54px; height: 54px; border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 20px;
}
.fb1 { top: 20px; left: 260px; }
.fb2 { top: 180px; right: 0; color: #ff5a8a; }
.fb3 { bottom: 80px; left: 0; color: #22c55e; }
.fb4 { bottom: 10px; left: 250px; color: #f59e0b; }

/* Features */
.feature-section { padding: 20px 0 70px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px 22px;
  box-shadow: 0 8px 30px rgba(15, 50, 90, .06);
  text-align: center;
}
.feature-card .icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.feature-card h4 { font-size: 18px; }
.feature-card p { font-size: 14px; margin-bottom: 0; }
.ic-a { background: #e8f1ff; color: #3b82f6; }
.ic-b { background: #ffe8ee; color: #ef476f; }
.ic-c { background: #e8fff4; color: #10b981; }
.ic-d { background: #fff4e5; color: #f59e0b; }

/* Departments */
.dep-tabs {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 18px;
  margin-bottom: 40px;
}
.dep-tab {
  width: 78px; height: 78px; border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; cursor: pointer; border: 2px solid transparent;
}
.dep-tab.active, .dep-tab:hover { border-color: var(--blue); color: var(--blue); }
.dep-panel { display: none; }
.dep-panel.active { display: block; }
.dep-box {
  background: #fff;
  box-shadow: 0 12px 40px rgba(0,113,239,.08);
  border-radius: 8px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.dep-box h3 { font-size: 28px; margin-bottom: 16px; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin: 22px 0 28px; }
.check-grid li { color: #000; font-weight: 600; font-size: 15px; }
.check-grid i { color: var(--blue); margin-right: 8px; }
.dep-box img { width: 100%; height: 340px; object-fit: cover; border-radius: 8px; }

/* Counter */
.counter-bar {
  background: var(--blue);
  padding: 42px 0;
  margin-top: 70px;
}
.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; color: #fff; text-align: center; }
.counter-item i { font-size: 36px; display: block; margin-bottom: 10px; }
.counter-item h3 { color: #fff; font-size: 36px; margin-bottom: 4px; }
.counter-item p { color: #fff; margin: 0; opacity: .95; }

/* Services mosaic */
.service-mosaic {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: 230px 230px 230px;
  gap: 18px;
}
.svc {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  color: #fff;
}
.svc img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc .cap {
  position: absolute; inset: 0;
  padding: 28px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.55) 100%);
}
.svc.blue .cap { background: rgba(0,113,239,.88); justify-content: center; }
.svc h4 { color: #fff; font-size: 22px; }
.svc p { color: #fff; font-size: 14px; margin-bottom: 10px; }
.svc a { color: #fff; font-weight: 700; }
.svc.tall { grid-row: span 2; }
.svc.wide { grid-column: 1 / 2; }

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.svc-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15,50,90,.07);
}
.svc-card img { width: 100%; height: 180px; object-fit: cover; }
.svc-card .body { padding: 20px; }
.svc-card h4 { font-size: 18px; }
.svc-card a { color: var(--blue); font-weight: 700; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.team-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15,50,90,.07);
  text-align: center;
}
.team-card img { width: 100%; height: 260px; object-fit: cover; }
.team-card .body { padding: 18px 14px 22px; }
.team-card h4 { margin-bottom: 4px; font-size: 18px; }
.team-card h4 a:hover { color: var(--blue); }
.team-card .role { color: var(--text); font-size: 14px; margin-bottom: 10px; }
.team-card .mail { font-size: 13px; color: var(--blue); }

/* Quote / about strip */
.quote-strip {
  background: #fff;
  box-shadow: 0 12px 40px rgba(0,113,239,.08);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  overflow: hidden;
}
.quote-copy { padding: 40px; }
.quote-copy h3 { font-size: 28px; }
.quote-meta { margin: 16px 0; }
.quote-meta p { margin: 4px 0; color: #000; }
.socials a {
  display: inline-flex; width: 34px; height: 34px; border-radius: 50%;
  background: var(--blue); color: #fff; align-items: center; justify-content: center;
  margin-right: 6px; font-size: 13px;
}
.quote-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }

/* Appointment */
.appt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.appt-hours {
  background: linear-gradient(120deg, rgba(76,29,180,.82), rgba(37,99,235,.75)), url("../images/tools.jpg") center/cover;
  color: #fff;
  padding: 60px 50px;
}
.appt-form {
  background: linear-gradient(120deg, rgba(0,113,239,.88), rgba(14,165,233,.78)), url("../images/blueprint.jpg") center/cover;
  color: #fff;
  padding: 60px 50px;
}
.appt h3 { color: #fff; font-size: 32px; margin-bottom: 24px; }
.hours-list { max-width: 360px; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255,255,255,.35);
  color: #fff;
}
.appt-form input, .appt-form select {
  width: 100%;
  background: #fff;
  border: 0;
  border-radius: 4px;
  padding: 12px 14px;
  margin-bottom: 14px;
  outline: none;
  color: #000;
}
.appt-form .lab-btn { background: #fff; color: var(--blue) !important; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(15,50,90,.07);
}
.testi-card img {
  width: 70px; height: 70px; border-radius: 50%; object-fit: cover; margin-bottom: 12px;
}
.stars { color: #f5b301; margin-bottom: 10px; }

/* Certificates */
.cert-section {
  background: linear-gradient(90deg, #f3f9ff 0%, #eaf4ff 100%);
  position: relative;
  overflow: hidden;
}
.cert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.awards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.award {
  background: #fff;
  border-radius: 8px;
  min-height: 170px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,113,239,.08);
  color: var(--blue);
}
.award i { font-size: 42px; margin-bottom: 8px; }
.award strong { color: var(--heading); }

/* Sponsors */
.sponsors { padding: 40px 0 20px; }
.sponsor-row {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
  color: #7ec2ff; font-weight: 800; letter-spacing: 1px; font-size: 18px;
  padding: 10px 0 30px;
}
.sponsor-mark { display: flex; align-items: center; gap: 8px; opacity: .85; }

/* Newsletter bar */
.news-bar {
  background: var(--blue);
  padding: 28px 0;
  color: #fff;
}
.news-bar .inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.news-bar h3 { color: #fff; margin: 0; font-size: 28px; }
.news-bar form { display: flex; flex-wrap: wrap; width: min(520px, 100%); gap: 8px; }
.news-bar input {
  flex: 1; border: 0; padding: 14px 16px; outline: none;
}
.news-bar button {
  background: #0b1c3d; color: #fff; border: 0; padding: 0 22px; font-weight: 700; cursor: pointer;
}

/* Footer */
.footer {
  background: #fff url("../images/hex-pattern.svg") center bottom / cover no-repeat;
  padding: 70px 0 0;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute; left: 0; right: 0; top: -1px; height: 70px;
  background: radial-gradient(ellipse at center, transparent 40%, #fff 41%) repeat-x;
  opacity: .4;
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 48px;
  align-items: start;
}
.footer-col { min-width: 0; }
.footer h4 { font-size: 20px; margin: 0 0 16px; line-height: 1.2; }
.footer p, .footer li { font-size: 15px; }
.footer-links { margin: 0 0 28px; }
.footer-links a { display: block; padding: 5px 0; line-height: 1.4; }
.footer-links a:hover { color: var(--blue); }
.footer-about { text-align: center; }
.footer-about img { height: 90px; width: auto; margin: 0 auto 16px; display: block; }
.footer-about p { margin: 0 auto; max-width: 320px; }
.footer-social { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.footer-social a {
  display: inline-flex; width: 36px; height: 36px; border-radius: 4px;
  background: var(--blue); color: #fff; align-items: center; justify-content: center; margin: 0;
}
.footer-tools { text-align: left; }
.footer-tools h4 { margin-top: 0; }
.footer-tools h4 + .mini-news,
.footer-tools .footer-links + h4 { margin-top: 8px; }
.mini-news { display: flex; width: 100%; max-width: 100%; }
.mini-news input { flex: 1; min-width: 0; border: 1px solid var(--line); padding: 10px 12px; outline: none; }
.mini-news button { background: var(--blue); color: #fff; border: 0; padding: 0 16px; white-space: nowrap; cursor: pointer; font-weight: 700; }
.hours li { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px dashed var(--line); color: #000; }
.copyright {
  text-align: center; padding: 22px 0; margin-top: 40px;
  border-top: 1px solid var(--line); font-size: 14px;
}
.copyright p { margin: 0; }
.legal-strip {
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 8px 28px;
  margin: 0 0 12px; font-size: 14px; font-weight: 600;
}
.legal-strip a:hover { color: var(--blue); }

/* Department cards page */
.dep-card-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.dep-mini {
  background: #fff;
  border: 1px solid #eef3f8;
  border-radius: 8px;
  padding: 28px 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15,50,90,.05);
}
.dep-mini .icon { font-size: 34px; color: var(--blue); margin-bottom: 12px; }
.dep-mini h4 { font-size: 16px; }
.dep-mini a { color: var(--blue); font-weight: 700; font-size: 14px; }

/* Blog */
.blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: 30px; }
.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15,50,90,.07);
  margin-bottom: 28px;
}
.blog-card > img, .blog-card .thumb img { width: 100%; height: 320px; object-fit: cover; }
.blog-card .body { padding: 24px; }
.meta { font-size: 13px; color: var(--blue); margin-bottom: 8px; }
.blog-card h3 { font-size: 22px; }
.blog-card h3 a:hover { color: var(--blue); }
.blog-foot { display: flex; justify-content: space-between; margin-top: 16px; font-size: 14px; font-weight: 700; }
.blog-foot a { color: var(--blue); }
.quote-block {
  background: var(--blue); color: #fff; padding: 28px; border-radius: 8px; margin: 0 0 28px;
}
.quote-block p { color: #fff; font-style: italic; margin: 0; }

.widget {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(15,50,90,.06);
  padding: 22px;
  margin-bottom: 22px;
}
.widget h4 { font-size: 18px; margin-bottom: 16px; position: relative; padding-bottom: 10px; }
.widget h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--blue); }
.widget-search { display: flex; }
.widget-search input { flex: 1; border: 1px solid var(--line); padding: 10px; outline: none; }
.widget-search button { background: var(--blue); color: #fff; border: 0; padding: 0 14px; cursor: pointer; }
.cat-list li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); }
.cat-list a:hover { color: var(--blue); }
.post-mini { display: flex; gap: 12px; margin-bottom: 14px; }
.post-mini img { width: 80px; height: 70px; object-fit: cover; border-radius: 4px; }
.post-mini h5 { font-size: 14px; margin: 0 0 4px; }
.tag-cloud a {
  display: inline-block; border: 1px solid var(--line); padding: 6px 10px; margin: 0 6px 8px 0; font-size: 13px; border-radius: 3px;
}
.tag-cloud a:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.gallery-grid img { width: 100%; height: 70px; object-fit: cover; border-radius: 4px; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.pagination a {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid #f0f7ff; font-weight: 700; color: #000;
}
.pagination a.active, .pagination a:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* Contact */
.contact-card {
  background: #fff;
  box-shadow: 0 12px 40px rgba(0,113,239,.08);
  border-radius: 8px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-card h3 { font-size: 24px; margin-bottom: 20px; padding-left: 12px; border-left: 3px solid var(--blue); }
.info-block { margin-bottom: 18px; }
.info-block h6 { margin-bottom: 4px; }
.form-grid { display: grid; gap: 14px; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%; border: 0; border-bottom: 1px solid var(--line); padding: 12px 4px; outline: none; background: transparent;
}
.form-grid textarea { min-height: 90px; resize: vertical; }

/* Legal / long content */
.legal-wrap { max-width: 900px; margin: 0 auto; }
.legal-wrap h2 { font-size: 28px; margin: 28px 0 12px; }
.legal-wrap h3 { font-size: 20px; margin: 22px 0 10px; color: var(--blue); }
.legal-wrap p, .legal-wrap li { margin-bottom: 12px; }
.legal-wrap ul { padding-left: 18px; list-style: disc; }
.legal-wrap ul li { list-style: disc; }

/* Doctor / service single */
.single-layout { display: grid; grid-template-columns: 340px 1fr; gap: 30px; }
.side-widget {
  background: #fff; border-radius: 8px; box-shadow: 0 8px 24px rgba(15,50,90,.06); padding: 22px; margin-bottom: 22px;
}
.side-widget h4 { margin-bottom: 14px; }
.side-nav a {
  display: flex; justify-content: space-between; padding: 10px 12px;
  border: 1px solid var(--line); margin-bottom: 8px; border-radius: 4px; font-weight: 600; color: #000;
}
.side-nav a:hover, .side-nav a.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.prose img.wide { width: 100%; height: 340px; object-fit: cover; border-radius: 8px; margin-bottom: 18px; }
.price-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--line); color: #000; }
.skill { margin-bottom: 14px; }
.skill span { display: flex; justify-content: space-between; font-weight: 700; color: #000; font-size: 14px; }
.bar { height: 8px; background: #eef3f8; border-radius: 10px; overflow: hidden; margin-top: 6px; }
.bar i { display: block; height: 100%; background: var(--blue); }

.profile-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; align-items: start; }
.profile-grid img { width: 100%; height: 420px; object-fit: cover; border-radius: 8px; }

.comment { display: flex; gap: 14px; margin-bottom: 18px; }
.comment img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }

.share-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 18px 0; }
.share-row a {
  padding: 8px 12px; border-radius: 4px; color: #fff; font-size: 13px; font-weight: 700;
}
.s-fb { background: #3b5998; } .s-tw { background: #1da1f2; } .s-in { background: #bd081c; } .s-li { background: #0a66c2; }

.to-top {
  position: fixed; right: 20px; bottom: 20px;
  width: 44px; height: 44px; border-radius: 6px;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 16px rgba(0,113,239,.3);
}

.mobile-drawer {
  display: none;
  position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 2000;
}
.mobile-drawer.open { display: block; }
.mobile-panel {
  background: #fff; width: min(320px, 86vw); height: 100%; padding: 24px 18px; overflow: auto;
}
.mobile-panel a { display: block; padding: 10px 0; border-bottom: 1px solid var(--line); font-weight: 700; color: #000; }
.mobile-panel .close-m { float: right; background: none; border: 0; font-size: 22px; cursor: pointer; }

@media (max-width: 1199px) {
  .dep-card-grid { grid-template-columns: repeat(3, 1fr); }
  .search-form input { width: 160px; }
  .banner h1 { font-size: 42px; }
}
@media (max-width: 991px) {
  .header-meta { display: none; }
  .main-menu { display: none; }
  .menu-toggle { display: block; }
  .banner-grid, .dep-box, .quote-strip, .appt, .cert-grid, .footer-grid, .blog-layout, .contact-card, .single-layout, .profile-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid, .team-grid, .testi-grid, .service-cards { grid-template-columns: 1fr 1fr; }
  .counter-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .service-mosaic { grid-template-columns: 1fr; grid-template-rows: none; }
  .svc { min-height: 220px; }
  .svc.tall { grid-row: auto; }
  .hero-art { min-height: 380px; }
  .col-3,.col-4,.col-5,.col-6,.col-7,.col-8 { width: 100%; }
  .news-bar .inner { flex-direction: column; text-align: center; }
  .banner { padding: 50px 0 30px; }
  .header-bottom { position: sticky; }
}
@media (max-width: 575px) {
  .feature-grid, .team-grid, .testi-grid, .service-cards, .dep-card-grid, .counter-grid, .awards { grid-template-columns: 1fr; }
  .banner h1 { font-size: 32px; }
  .page-hero h1 { font-size: 28px; }
  .hero-circle.c1 { width: 220px; height: 220px; }
  .hero-circle.c2 { width: 160px; height: 160px; }
  .check-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .dep-box, .contact-card, .appt-hours, .appt-form { padding: 24px; }
}
