:root {
  --primary: #EB3300;
  --primary-dark: #c92b00;
  --dark: #171717;
  --dark-2: #1c1c1c;
  --text: #555555;
  --heading: #171717;
  --white: #ffffff;
  --gray: #F4F4F4;
  --border: #E8E8E8;
  --muted: #7a7a7a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Yantramanav", sans-serif;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: .3s; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { color: var(--heading); font-weight: 900; line-height: 1.2; }

.container { max-width: 1200px; }

/* Buttons */
.te-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff !important;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: 16px 28px;
  border: 2px solid var(--primary);
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: .3s;
}
.te-btn:hover { background: var(--dark); border-color: var(--dark); }
.te-btn.outline {
  background: transparent;
  color: var(--primary) !important;
}
.te-btn.outline:hover { background: var(--primary); color: #fff !important; }
.te-btn.dark { background: var(--dark); border-color: var(--dark); }
.te-btn.dark:hover { background: var(--primary); border-color: var(--primary); }
.te-btn.white { background: #fff; color: var(--heading) !important; border-color: #fff; }
.te-btn.white:hover { background: var(--dark); color: #fff !important; border-color: var(--dark); }

/* Header */
.site-header { position: relative; z-index: 1000; }
.header-wrap { display: flex; min-height: 128px; }
.logo-bar {
  width: 280px;
  flex-shrink: 0;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 16px;
}
.logo-bar a, .logo-bar .brand-logo { width: 100%; }
.logo-bar img, .logo-bar svg {
  width: 210px;
  max-width: 100%;
  height: 56px;
  object-fit: contain;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff !important;
  min-width: 0;
}
.brand-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-copy strong {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #fff;
}
.brand-copy small {
  font-size: 10px;
  letter-spacing: 2.2px;
  font-weight: 700;
  color: #fff;
}
.header-inner { flex: 1; min-width: 0; }
.header-top {
  background: var(--dark);
  color: #cfcfcf;
  font-size: 14px;
  padding: 10px 0;
}
.header-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.header-top-info { display: flex; gap: 22px; flex-wrap: wrap; }
.header-top-info span, .header-top-info a { color: #d6d6d6; }
.header-top-info i { color: var(--primary); margin-right: 8px; }
.social a {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; margin-left: 4px;
}
.social a:hover { color: var(--primary); }

.header-nav {
  background: #fff;
  padding: 18px 0;
  box-shadow: 0 6px 20px rgba(0,0,0,.04);
}
.header-nav.sticky {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 12px;
}
.sticky-logo { display: none; flex-shrink: 0; }
.header-nav.sticky .sticky-logo { display: block; margin-right: auto; }
.sticky-logo img { height: 42px; width: auto; max-width: 160px; object-fit: contain; }

.main-menu {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0;
}
.main-menu > li { position: relative; flex-shrink: 0; }
.main-menu > li > a {
  display: block;
  padding: 10px 11px;
  font-weight: 700;
  color: var(--heading);
  font-size: 15px;
  white-space: nowrap;
  line-height: 1.2;
}
.main-menu > li:hover > a, .main-menu > li.active > a { color: var(--primary); }
.submenu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .25s;
  z-index: 30;
  text-align: left;
  white-space: nowrap;
}
.main-menu > li:hover .submenu { opacity: 1; visibility: visible; transform: none; }
.submenu a {
  display: block;
  padding: 9px 20px;
  color: var(--heading);
  font-weight: 500;
  white-space: nowrap;
  line-height: 1.3;
}
.submenu a:hover { color: var(--primary); padding-left: 24px; }

.header-cta { display: flex; align-items: center; flex-shrink: 0; gap: 14px; }
.need-help { white-space: nowrap; }
.need-help span { display: block; font-size: 13px; color: var(--muted); }
.need-help a { font-weight: 800; color: var(--heading); white-space: nowrap; }
.need-help a i { color: var(--primary); margin-right: 6px; }
.quote-btn {
  border: 1px solid #e5e5e5;
  padding: 12px 16px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .4px;
  color: var(--heading);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.quote-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.mobile-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 0; background: var(--primary); color: #fff; font-size: 20px;
}

/* Mobile sidebar */
.mobile-nav, .nav-overlay { display: none; }
.mobile-nav.open, .nav-overlay.open { display: block; }
.nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 1190;
}
.mobile-nav {
  position: fixed; top: 0; right: 0; width: 320px; height: 100%;
  background: var(--dark); z-index: 1200; padding: 24px;
  overflow: auto;
}
.mobile-nav a { color: #fff; display: block; padding: 10px 0; border-bottom: 1px solid #2a2a2a; }
.mobile-nav .brand-logo { border-bottom: 0; padding: 10px 0 20px; }
.mobile-nav .close-nav { background: none; border: 0; color: #fff; font-size: 22px; float: right; }

/* Hero */
.hero {
  position: relative;
  min-height: 680px;
  background: #111;
  color: #fff;
  overflow: hidden;
}
.hero-slide {
  display: none;
  min-height: 680px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-slide.active { display: block; }
.hero-slide::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.35) 60%, rgba(0,0,0,.15) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding: 140px 0 180px; max-width: 640px; }
.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 14px;
}
.hero h1 { color: #fff; font-size: 64px; margin-bottom: 18px; }
.hero p { color: #e9e9e9; font-size: 18px; margin-bottom: 28px; }
.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.play-btn { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 700; }
.play-btn .circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
}
.hero-stats {
  position: absolute; right: 0; bottom: 0; z-index: 3;
  background: var(--primary); color: #fff;
  display: grid; grid-template-columns: repeat(4, minmax(110px, 1fr));
  min-width: 520px;
}
.hero-stats .item { padding: 28px 18px; text-align: center; border-right: 1px solid rgba(255,255,255,.18); }
.hero-stats .item:last-child { border: 0; }
.hero-stats h3 { color: #fff; font-size: 32px; margin-bottom: 4px; }
.hero-stats span { font-size: 14px; }
.hero-nav {
  position: absolute; left: 40px; bottom: 40px; z-index: 4; display: flex; gap: 8px;
}
.hero-nav button {
  width: 12px; height: 12px; border-radius: 50%; border: 0; background: #fff; opacity: .45;
}
.hero-nav button.active { opacity: 1; background: var(--primary); }

/* Section helpers */
.section { padding: 110px 0; position: relative; }
.section-sm { padding: 80px 0; }
.sec-title { margin-bottom: 50px; }
.sec-title.center { text-align: center; }
.short-title {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--primary);
  font-size: 14px;
  margin-bottom: 12px;
  position: relative;
}
.short-title::after {
  content: "";
  display: inline-block;
  width: 38px; height: 2px;
  background: var(--primary);
  margin-left: 10px;
  vertical-align: middle;
}
.sec-title h2 { font-size: 42px; }
.gear-deco {
  position: absolute; right: 40px; top: 40px; width: 160px; opacity: .06; pointer-events: none;
}

/* Service cards */
.service-card {
  background: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,.06);
  margin-bottom: 30px;
  transition: .3s;
}
.service-card:hover { transform: translateY(-6px); }
.service-card .image { height: 230px; overflow: hidden; }
.service-card .image img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.service-card:hover .image img { transform: scale(1.06); }
.service-body { padding: 0 28px 30px; position: relative; }
.icon-badge {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-top: -32px; margin-bottom: 18px;
  position: relative; z-index: 2;
}
.service-body h3 { font-size: 22px; margin-bottom: 10px; }
.service-body h3 a:hover { color: var(--primary); }
.service-body p { margin-bottom: 16px; }
.read-more { color: var(--heading); font-weight: 800; font-size: 13px; letter-spacing: .6px; }
.read-more:hover { color: var(--primary); }

/* Orange logos bar */
.partner-bar {
  background: var(--primary);
  padding: 28px 0;
}
.partner-row {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  color: #fff; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; opacity: .95;
}
.partner-item { display: flex; align-items: center; gap: 10px; font-size: 18px; }
.partner-item i { font-size: 28px; }

/* About split */
.about-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 560px;
}
.about-split .photo {
  background: #111 center/cover no-repeat;
  min-height: 480px;
}
.about-split .panel {
  background: var(--dark) url("../images/logo/gear.svg") right 20px top 20px / 220px no-repeat;
  color: #fff;
  padding: 70px 60px;
}
.about-split .panel h2, .about-split .panel h3 { color: #fff; }
.about-split .panel p { color: #cfcfcf; }
.icon-row { display: flex; gap: 16px; margin-top: 28px; }
.icon-row .ico {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 20px;
}
.icon-row h4 { color: #fff; font-size: 18px; margin-bottom: 6px; }

/* Portfolio */
.filters { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin: 10px 0 40px; }
.filters button {
  border: 0; background: transparent; font-weight: 700; padding: 8px 14px; color: var(--heading);
}
.filters button.active, .filters button:hover { color: var(--primary); }
.project-card { position: relative; overflow: hidden; margin-bottom: 24px; }
.project-card img { width: 100%; height: 250px; object-fit: cover; }
.project-card .overlay {
  position: absolute; inset: auto 16px 16px 16px;
  background: rgba(23,23,23,.92); color: #fff;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 18px; transform: translateY(12px); opacity: 0; transition: .3s;
}
.project-card:hover .overlay { opacity: 1; transform: none; }
.project-card h4 { color: #fff; font-size: 18px; margin: 0; }
.project-card span { color: #bbb; font-size: 13px; }
.overlay .go {
  width: 42px; height: 42px; border-radius: 50%; background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
}

/* Marquee */
.marquee-wrap {
  background: var(--dark);
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid #2a2a2a;
}
.marquee {
  display: flex; gap: 40px; white-space: nowrap;
  animation: slide 22s linear infinite;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.35);
  font-size: 42px; font-weight: 900; text-transform: uppercase;
}
.marquee i { color: var(--primary); -webkit-text-stroke: 0; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Pricing */
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 40px 32px;
  height: 100%;
}
.price-card.dark {
  background: var(--dark);
  color: #cfcfcf;
}
.price-card.dark h3, .price-card.dark h2, .price-card.dark li { color: #fff; }
.price-card h3 { font-size: 22px; margin-bottom: 8px; }
.price-card .price { font-size: 52px; font-weight: 900; color: var(--heading); margin: 10px 0 22px; }
.price-card.dark .price { color: #fff; }
.price-card .price small { font-size: 16px; font-weight: 500; }
.price-card ul { margin-bottom: 28px; }
.price-card li { padding: 8px 0 8px 28px; position: relative; }
.price-card li::before {
  font-family: "Font Awesome 6 Free"; font-weight: 900; content: "\f00c";
  position: absolute; left: 0; color: var(--primary);
}

/* Testimonials */
.testi-card {
  background: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
  padding: 32px;
  height: 100%;
}
.quote-ico { color: var(--primary); font-size: 28px; margin-bottom: 12px; }
.stars { color: #f5b301; margin: 12px 0; }
.testi-user { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testi-user img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.testi-user h5 { margin: 0; font-size: 18px; }
.testi-user span { font-size: 13px; color: var(--muted); }

/* Process */
.process-card {
  background: var(--gray);
  padding: 36px 28px 28px;
  position: relative;
  height: 100%;
}
.process-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; margin-bottom: 16px;
}
.process-card h3 { font-size: 22px; margin-bottom: 10px; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); padding: 6px 0; }
.faq-item button {
  width: 100%; text-align: left; background: none; border: 0;
  display: flex; align-items: center; gap: 14px;
  font-weight: 800; font-size: 18px; color: var(--heading); padding: 16px 0;
}
.faq-item .n {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 14px;
}
.faq-item .body { display: none; padding: 0 0 16px 50px; color: var(--text); }
.faq-item.open .body { display: block; }

/* Team */
.team-card { position: relative; overflow: hidden; margin-bottom: 24px; }
.team-card img { width: 100%; height: 360px; object-fit: cover; }
.team-meta {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  background: rgba(23,23,23,.9); color: #fff; padding: 16px 18px;
}
.team-meta h4 { color: #fff; margin: 0 0 4px; font-size: 20px; }
.team-meta span { color: #bbb; font-size: 13px; }
.team-social { margin-top: 10px; display: flex; gap: 8px; }
.team-social a {
  width: 32px; height: 32px; background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 13px;
}

/* Appointment */
.appoint {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 520px;
}
.appoint .form-side {
  background: var(--dark) url("../images/logo/gear.svg") right top / 240px no-repeat;
  padding: 70px 50px; color: #fff;
}
.appoint h2 { color: #fff; margin-bottom: 10px; }
.appoint p { color: #cfcfcf; margin-bottom: 24px; }
.appoint .photo { background: #111 center/cover no-repeat; min-height: 420px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--primary); }
.field-error { color: #c0392b; font-size: 13px; margin-top: 4px; display: none; }
.appoint .field-error { color: #ffb4a8; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #ff6b4a; }
.field.invalid .field-error { display: block; }
.form-success {
  display: none;
  background: #1f7a3a;
  color: #fff;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-weight: 700;
}
.form-success.show { display: block; }

/* Articles */
.article-card { margin-bottom: 24px; }
.article-card img { width: 100%; height: 230px; object-fit: cover; }
.article-card .body { padding: 18px 4px 0; }
.meta { color: var(--muted); font-size: 13px; margin-bottom: 8px; }
.meta i { color: var(--primary); margin-right: 6px; }
.article-card h3 { font-size: 22px; }

/* CTA subscribe */
.subscribe-cta {
  background: var(--primary);
  color: #fff;
  padding: 0;
  overflow: hidden;
}
.subscribe-cta .row-flex {
  display: grid; grid-template-columns: .9fr 1.1fr; align-items: center;
}
.subscribe-cta .person {
  position: relative;
  min-height: 280px;
  display: flex; align-items: flex-end; justify-content: center;
}
.subscribe-cta .person::before {
  content: "";
  position: absolute; left: 18%; bottom: 10px;
  width: 260px; height: 260px; border-radius: 50%;
  border: 18px solid rgba(0,0,0,.12);
}
.subscribe-cta .person img {
  height: 300px; width: auto; object-fit: cover; object-position: top;
  position: relative; z-index: 1; max-width: 280px;
  clip-path: circle(48% at 50% 48%);
}
.subscribe-cta .copy { padding: 50px 20px 50px 10px; }
.subscribe-cta h2 { color: #fff; font-size: 40px; margin-bottom: 8px; }
.subscribe-form { display: flex; flex-wrap: wrap; max-width: 520px; margin-top: 22px; }
.subscribe-form .form-success { flex: 1 0 100%; margin-bottom: 12px; background: #143d22; }
.subscribe-form .field { flex: 1; min-width: 0; }
.subscribe-form input { border: 0; height: 56px; }
.subscribe-form button {
  background: var(--dark); color: #fff; border: 0; padding: 0 28px;
  font-weight: 800; letter-spacing: .5px; white-space: nowrap; cursor: pointer;
}
.subscribe-form button:hover { background: #000; }

/* Footer */
.site-footer {
  background: var(--dark) url("../images/logo/gear.svg") right 8% center / 280px no-repeat;
  color: #cfcfcf;
  padding-top: 80px;
  position: relative;
}
.site-footer h4 { color: #fff; margin-bottom: 22px; font-size: 20px; }
.site-footer p { color: #bdbdbd; }
.footer-logo .brand-logo { margin-bottom: 16px; }
.footer-links a { display: block; padding: 6px 0; color: #cfcfcf; }
.footer-links a:hover { color: var(--primary); padding-left: 6px; }
.footer-bottom {
  border-top: 1px solid #2c2c2c;
  margin-top: 50px;
  padding: 18px 0;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 14px;
}
.footer-bottom a:hover { color: var(--primary); }
.footer-bottom ul { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-social { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--heading);
  background: #fff;
  font-size: 15px;
}
.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.site-footer .footer-social a {
  color: #fff;
  border-color: #3a3a3a;
  background: transparent;
}
.site-footer .footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Page banner */
.page-banner {
  background: #111 url("../images/hero/hero-3.jpg") center/cover no-repeat;
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.75), rgba(0,0,0,.4));
}
.page-banner::after {
  content: "";
  position: absolute;
  right: 6%;
  top: 20%;
  width: 280px;
  height: 280px;
  background: url("../images/logo/gear.svg") center/contain no-repeat;
  opacity: .35;
  pointer-events: none;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { color: #fff; font-size: 52px; margin-bottom: 10px; }
.breadcrumb a { color: #fff; }
.breadcrumb span { color: var(--primary); }
.breadcrumb i { font-size: 11px; margin: 0 8px; color: #aaa; }

/* Inner content */
.content-section { padding: 90px 0; }
.check-list li { padding: 8px 0 8px 30px; position: relative; }
.check-list li::before {
  font-family: "Font Awesome 6 Free"; font-weight: 900; content: "\f058";
  color: var(--primary); position: absolute; left: 0;
}

.feature-mini {
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  padding: 36px 26px;
  text-align: center;
  height: 100%;
}
.feature-mini .ico {
  width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 26px;
}

.badge-row {
  background: var(--primary);
  padding: 28px 0;
  color: #fff;
}
.badge-row .item { text-align: center; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; }
.badge-row i { display: block; font-size: 28px; margin-bottom: 8px; }

.info-box {
  background: var(--dark); color: #fff; padding: 28px;
}
.info-box h4 { color: #fff; }
.info-box li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #333; color: #ddd; }
.side-list a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px; background: #fff; border: 1px solid var(--border); margin-bottom: 10px; font-weight: 700;
}
.side-list a:hover, .side-list a.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.legal h2 { font-size: 28px; margin: 28px 0 12px; }
.legal h3 { font-size: 22px; margin: 22px 0 10px; }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 16px 18px; list-style: disc; }
.legal li { margin-bottom: 6px; }

.back-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 50;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); color: #fff; display: none;
  align-items: center; justify-content: center; border: 0;
}
.back-top.show { display: flex; }

.contact-info-card {
  display: flex; gap: 14px; margin-bottom: 22px;
}
.contact-info-card .ico {
  width: 48px; height: 48px; background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* Pagination */
.pager { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.pager a {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--border); font-weight: 700;
}
.pager a.active, .pager a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Responsive */
@media (max-width: 1199px) {
  .logo-bar { width: 220px; }
  .brand-copy strong { font-size: 22px; }
  .need-help { display: none; }
  .hero h1 { font-size: 48px; }
  .about-split { grid-template-columns: 1fr; }
  .appoint { grid-template-columns: 1fr; }
  .subscribe-cta .row-flex { grid-template-columns: 1fr; }
  .subscribe-cta .person { display: none; }
}
@media (max-width: 991px) {
  .main-menu, .header-cta .need-help { display: none; }
  .mobile-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .logo-bar { width: 190px; padding: 12px 10px; }
  .brand-copy strong { font-size: 20px; }
  .hero { min-height: 560px; }
  .hero-content { padding: 90px 0 160px; }
  .hero h1 { font-size: 36px; }
  .hero-stats { min-width: 100%; grid-template-columns: repeat(2, 1fr); }
  .sec-title h2, .page-banner h1 { font-size: 34px; }
  .header-wrap { min-height: auto; }
}
@media (max-width: 575px) {
  .logo-bar { display: none; }
  .header-nav .sticky-logo { display: block; margin-right: auto; }
  .form-grid, .subscribe-form { grid-template-columns: 1fr; display: grid; }
  .subscribe-form button { height: 52px; }
  .footer-bottom { flex-direction: column; }
}
