/* ═══ Hero — Full-width gradient with pattern ═══ */
.cHero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 60%, #1a3450 100%);
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}
.cHero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 30%, rgba(255,107,0,0.15) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(255,107,0,0.08) 0%, transparent 50%);
}
.cHero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, var(--gray-bg), transparent);
}
/* Decorative circles */
.cHeroDeco1 { position: absolute; top: -60px; right: 10%; width: 280px; height: 280px; border-radius: 50%; border: 1px solid rgba(255,107,0,0.12); }
.cHeroDeco2 { position: absolute; bottom: -40px; left: 5%; width: 180px; height: 180px; border-radius: 50%; border: 1px solid rgba(255,107,0,0.08); }
.cHeroDeco3 { position: absolute; top: 30%; right: 5%; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); opacity: 0.4; animation: cFloat 6s ease-in-out infinite; }
.cHeroDeco4 { position: absolute; top: 60%; left: 12%; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); opacity: 0.3; animation: cFloat 8s ease-in-out infinite 2s; }
@keyframes cFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

.cHeroInner {
  max-width: 1440px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.cHeroBreadcrumbs { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.cHeroBreadcrumbs a { color: rgba(255,255,255,0.7); transition: color 0.3s; text-decoration: none; }
.cHeroBreadcrumbs a:hover { color: #fff; }
.cHeroTitle { font-size: 48px; font-weight: 900; color: #fff; margin: 0 0 16px; line-height: 1.15; letter-spacing: -1px; }
.cHeroTitleAccent { color: var(--teal); }
.cHeroDesc { font-size: 17px; color: rgba(255,255,255,0.7); margin: 0 0 32px; line-height: 1.7; max-width: 480px; }
.cHeroActions { display: flex; gap: 12px; flex-wrap: wrap; }
.cHeroBtn {
  padding: 14px 28px; border-radius: 12px; font-size: 15px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s;
  text-decoration: none;
}
.cHeroBtnPrimary { background: var(--teal); color: #fff; box-shadow: 0 4px 20px rgba(255,107,0,0.35); }
.cHeroBtnPrimary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,107,0,0.45); }
.cHeroBtnOutline { border: 2px solid rgba(255,255,255,0.3); color: #fff; background: transparent; }
.cHeroBtnOutline:hover { border-color: var(--teal); background: rgba(255,107,0,0.1); }
.cHeroBtn svg { width: 20px; height: 20px; }

/* Right side — quick-info glass cards */
.cHeroCards { display: flex; flex-direction: column; gap: 14px; margin: 0; max-width: 100%; }
.cHeroCard {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 20px 24px;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  cursor: default;
  text-align: left;
}
.cHeroCard:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,107,0,0.3);
  transform: translateX(-4px);
}
.cHeroCardIcon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  margin-bottom: 0; color: #fff;
}
.cHeroCardIcon svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2; }
.cHeroCardLabel { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0; }
.cHeroCardValue { font-size: 16px; font-weight: 700; color: #fff; margin-top: 2px; }
.cHeroCardValue a { color: #fff; transition: color 0.3s; text-decoration: none; }
.cHeroCardValue a:hover { color: var(--teal); }

/* ═══ Map — Full-width immersive ═══ */
.cMapSection { background: var(--gray-bg); padding: 0 0 80px; margin: 0; }
.cMapContainer {
  max-width: 1440px; margin: -60px auto 0; padding: 0 24px;
  position: relative; z-index: 2;
}
.cMapFrame {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  height: 560px; position: relative;
}
.cMapFrame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Floating info overlay */
.cMapOverlay {
  position: absolute; top: 16px; right: 80px;
  width: 360px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border-radius: var(--radius); padding: 0;
  border: 1px solid rgba(0,0,0,0.06);
  color: var(--text); overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  z-index: 5;
}

/* Overlay header */
.cMapOverlayHead {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  padding: 16px 24px; display: flex; align-items: center; gap: 12px; color: #fff;
}
.cMapOverlayHead svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2; flex-shrink: 0; }
.cMapOverlayHeadText { font-size: 15px; font-weight: 700; }
.cMapOverlayHeadSub { font-size: 12px; opacity: 0.8; }

/* Schedule rows */
.cMapOverlayBody { padding: 16px 24px 20px; }
.cSchedRow {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--gray-border); font-size: 13px;
}
.cSchedRow:last-child { border-bottom: none; }
.cSchedDay { font-weight: 500; color: var(--text-mid); }
.cSchedTime { font-weight: 700; color: var(--navy); }
.cSchedRow.today {
  background: var(--teal-light);
  margin: 0 -12px; padding: 8px 12px; border-radius: 8px; border-bottom: none;
}
.cSchedRow.today .cSchedDay { color: var(--teal-dark); font-weight: 600; }
.cSchedRow.today .cSchedDay::before {
  content: '●'; color: var(--teal); font-size: 8px; margin-right: 6px; vertical-align: middle;
}
.cSchedRow.today .cSchedTime { color: var(--teal-dark); }

/* Divider */
.cMapOverlayDivider { height: 1px; background: var(--gray-border); margin: 0 24px; }

/* Info items */
.cMapOverlayInfo { padding: 16px 24px; display: flex; flex-direction: column; gap: 12px; }
.cInfoRow {
  display: flex; align-items: center; gap: 12px;
}
.cInfoIcon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cInfoIcon svg { width: 18px; height: 18px; stroke: var(--teal-dark); fill: none; stroke-width: 2; }
.cInfoLabel { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.3px; margin:0; }
.cInfoValue { font-size: 14px; font-weight: 600; color: var(--text); margin:0; }

/* ═══════════════════════════════════════════════════════════
   LICENSES SECTION
   ═══════════════════════════════════════════════════════════ */
.cLicSection {
  background: var(--gray-bg);
  padding: 0 0 80px;
  position: relative;
}
.cLicInner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.cLicHeader {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}
.cLicHeaderIcon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #10b981, #059669);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(16,185,129,.3);
}
.cLicHeaderIcon svg { width: 30px; height: 30px; color: #fff; }
.cLicTitle {
  font-size: 28px; font-weight: 900; color: var(--navy);
  margin: 0 0 4px; letter-spacing: -.3px;
}
.cLicSubtitle {
  font-size: 15px; color: var(--text-mid);
  margin: 0; line-height: 1.6;
}

/* Card grid */
.cLicGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.cLicCard {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1.5px solid #e8edf2;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: all .4s cubic-bezier(.16,1,.3,1);
}
.cLicCard::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  border-radius: 0 4px 4px 0;
  transform: scaleY(0);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.cLicCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  border-color: transparent;
}
.cLicCard:hover::before { transform: scaleY(1); }

/* Category colors for left bar */
.cLicCard:nth-child(1)::before { background: linear-gradient(to bottom, #3b82f6, #2563eb); }
.cLicCard:nth-child(2)::before { background: linear-gradient(to bottom, #f59e0b, #d97706); }
.cLicCard:nth-child(3)::before { background: linear-gradient(to bottom, #10b981, #059669); }

.cLicCardIcon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .4s cubic-bezier(.16,1,.3,1);
}
.cLicCardIcon svg { width: 24px; height: 24px; transition: all .3s; }
.cLicCardIcon.medical { background: linear-gradient(135deg, #3b82f6, #2563eb); color: #fff; }
.cLicCardIcon.contract { background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; }
.cLicCardIcon.org { background: linear-gradient(135deg, #10b981, #059669); color: #fff; }
.cLicCard:hover .cLicCardIcon { transform: scale(1.08); }

.cLicCardBody { flex: 1; }
.cLicCardTitle {
  font-size: 16px; font-weight: 700; color: #1e2a3a;
  line-height: 1.45; margin-bottom: 6px;
  transition: color .3s;
}
.cLicCard:hover .cLicCardTitle { color: var(--teal-dark); }
.cLicCardDesc {
  font-size: 13px; color: #888;
  line-height: 1.5;
}

.cLicCardMeta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #f0f2f5;
}
.cLicCardCount {
  font-size: 12px; font-weight: 700; color: var(--text-light);
  background: #f5f7fa; padding: 4px 12px; border-radius: 50px;
}
.cLicCardArrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: #f0f4f8;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s cubic-bezier(.16,1,.3,1);
}
.cLicCardArrow svg { width: 16px; height: 16px; color: #999; transition: all .3s; }
.cLicCard:hover .cLicCardArrow { background: var(--teal); }
.cLicCard:hover .cLicCardArrow svg { color: #fff; transform: translateX(2px); }

/* All documents button */
.cLicFooter { text-align: center; }
.cLicAllBtn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal);
  border-radius: 50px;
  font-size: 15px; font-weight: 700;
  text-decoration: none;
  transition: all .3s cubic-bezier(.16,1,.3,1);
}
.cLicAllBtn svg { width: 20px; height: 20px; }
.cLicAllBtn .cLicAllArrow { transition: transform .3s; }
.cLicAllBtn:hover {
  background: var(--teal); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28,186,159,.3);
}
.cLicAllBtn:hover .cLicAllArrow { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════
   REVIEWS CAROUSEL SECTION
   ═══════════════════════════════════════════════════════════ */
.cRevSection {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.cRevSection::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(28,186,159,.12), transparent 70%),
              radial-gradient(ellipse at 80% 80%, rgba(255,107,0,.08), transparent 60%);
  pointer-events: none;
}
.cRevInner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.cRevHeader {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px; gap: 20px;
}
.cRevTitle {
  font-size: 32px; font-weight: 900; color: #fff;
  margin: 0 0 8px; letter-spacing: -.5px;
}
.cRevRating {
  display: flex; align-items: center; gap: 8px;
}
.cRevRatingNum {
  font-size: 28px; font-weight: 800; color: var(--teal);
  line-height: 1;
}
.cRevRatingStars { display: flex; gap: 2px; }
.cRevStar { font-size: 18px; color: rgba(255,255,255,.2); font-style: normal; }
.cRevStar--on { color: #f59e0b; }
.cRevRatingCount {
  font-size: 14px; color: rgba(255,255,255,.5);
  margin-left: 4px;
}

.cRevAllLink {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.cRevAllLink svg { width: 18px; height: 18px; transition: transform .3s; }
.cRevAllLink:hover { color: var(--teal); }
.cRevAllLink:hover svg { transform: translateX(4px); }

/* Carousel container */
.cRevCarousel {
  position: relative;
}
.cRevTrack {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0 16px;
}
.cRevTrack::-webkit-scrollbar { display: none; }

/* Nav buttons */
.cRevNav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
  z-index: 5;
}
.cRevNav svg { width: 22px; height: 22px; }
.cRevNav:hover {
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(28,186,159,.4);
}
.cRevNav.hidden { opacity: 0; pointer-events: none; }
.cRevNavPrev { left: -8px; }
.cRevNavNext { right: -8px; }

/* Review card */
.cRevCard {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  transition: all .35s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.cRevCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28,186,159,.15);
}

.cRevCardHead {
  display: flex; align-items: center; gap: 12px;
}
.cRevCardAvatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff; font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cRevCardAuthor {
  display: flex; align-items: center; gap: 5px;
  font-size: 15px; font-weight: 600; color: var(--text);
}
.cRevCardVerified { color: var(--teal); font-size: 14px; }
.cRevCardDate {
  display: block;
  font-size: 12px; color: var(--text-light);
  margin-top: 1px;
}

.cRevCardStars { display: flex; gap: 2px; }
.cRevCardStars .cRevStar { font-size: 18px; }
.cRevCardStars .cRevStar--on { color: #f59e0b; }
.cRevCardStars .cRevStar:not(.cRevStar--on) { color: #e5e7eb; }

.cRevCardText {
  font-size: 14px; line-height: 1.65; color: var(--text-mid);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.cRevCardText p { margin: 0 0 6px; }
.cRevCardText p:last-child { margin: 0; }

.cRevCardSource {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
  width: fit-content;
  text-transform: uppercase; letter-spacing: .3px;
}
.cRevCardSource--google { background: #e8f0fe; color: #4285f4; }
.cRevCardSource--yandex { background: #fff3e0; color: #fc3f1d; }
.cRevCardSource--2gis { background: #e6f9ef; color: #00b956; }
.cRevCardSource--native { background: var(--teal-light); color: var(--teal-dark); }
.cRevCardSource--manual { background: #f0f4f8; color: #666; }

/* Dots */
.cRevDots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 28px;
}
.cRevDot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: none; cursor: pointer;
  transition: all .3s;
  padding: 0;
}
.cRevDot.active {
  background: var(--teal);
  width: 28px; border-radius: 5px;
}

/* ═══ Responsive ═══ */
@media (max-width: 1024px) {
  .cHeroInner { grid-template-columns: 1fr; gap: 40px; }
  .cHeroCards { display: grid; grid-template-columns: 1fr 1fr; margin-top: 0; }
  .cMapOverlay { position: relative; top: 0; right: 0; width: 100%; margin-top: 20px; }
  .cMapFrame { height: 420px; }
  .cLicGrid { grid-template-columns: 1fr; }
  .cRevCard { flex: 0 0 320px; }
  .cRevNavPrev { left: 4px; }
  .cRevNavNext { right: 4px; }
}
@media (max-width: 768px) {
  .cHero { padding: 40px 0 100px; min-height: auto; }
  .cHeroTitle { font-size: 32px; }
  .cHeroDesc { font-size: 15px; }
  .cHeroCards { grid-template-columns: 1fr; }
  .cHeroActions { flex-direction: column; }
  .cHeroBtn { justify-content: center; }
  .cMapContainer { margin-top: -40px; }
  .cMapFrame { height: 300px; }
  .cLicSection { padding-bottom: 60px; }
  .cLicHeader { flex-direction: column; text-align: center; }
  .cLicTitle { font-size: 24px; }
  .cRevSection { padding: 60px 0 70px; }
  .cRevTitle { font-size: 26px; }
  .cRevHeader { flex-direction: column; align-items: flex-start; }
  .cRevCard { flex: 0 0 290px; padding: 22px; }
  .cRevNav { width: 40px; height: 40px; }
  .cRevNav svg { width: 18px; height: 18px; }
}
@media (max-width: 480px) {
  .cHeroTitle { font-size: 26px; }
  .cRevCard { flex: 0 0 calc(100vw - 72px); }
  .cRevNav { display: none; }
}
