:root {
  --navy: #082f56;
  --blue: #135d91;
  --cyan: #20a6c9;
  --red: #b51f43;
  --ink: #15324b;
  --muted: #64788b;
  --soft: #f3f9fd;
  --line: rgba(8, 47, 86, .12);
  --white: #fff;
  --shadow: 0 18px 55px rgba(8, 47, 86, .12);
  --shadow-lg: 0 28px 85px rgba(8, 47, 86, .18);
  --radius: 26px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

button,
input,
select,
textarea {
  font: inherit
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: auto
}

.section {
  padding: 88px 0
}

.section-soft {
  background: linear-gradient(180deg, #f5fbff, #fff)
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 14px
}

.section-label:before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 9px;
  background: var(--cyan)
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -.045em;
  color: var(--navy);
  margin-bottom: 18px
}

.section-copy {
  color: var(--muted);
  font-size: 1.03rem;
  max-width: 720px
}

.center {
  text-align: center
}

.center .section-copy {
  margin-inline: auto
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 49px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  transition: .25s ease;
  cursor: pointer
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), #d44768);
  box-shadow: 0 13px 30px rgba(181, 31, 67, .23)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 36px rgba(181, 31, 67, .3)
}

.btn-blue {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  box-shadow: 0 13px 30px rgba(8, 47, 86, .22)
}

.btn-blue:hover {
  transform: translateY(-2px)
}

.btn-outline {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line)
}

.btn-outline:hover {
  border-color: var(--cyan);
  transform: translateY(-2px)
}

.topbar {
  background: var(--navy);
  color: #e7f6ff;
  font-size: .84rem
}

.topbar .container {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.topbar-group {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap
}

.topbar a:hover {
  color: #fff
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line)
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 250px
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain
}

.brand strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.15
}

.brand small {
  display: block;
  color: var(--red);
  font-size: .72rem;
  margin-top: 4px
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--navy);
  font-size: 1.35rem
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none
}

.nav>li {
  position: relative
}

.nav>li>a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: .91rem;
  font-weight: 750;
  color: #344e63
}

.nav>li>a:hover,
.nav>li>a.active {
  background: #edf7fd;
  color: var(--blue)
}

.has-dropdown>a:after {
  content: "⌄";
  font-size: .8rem
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 590px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  grid-template-columns: 1fr 1fr;
  gap: 4px
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  display: grid
}

.dropdown li {
  list-style: none
}

.dropdown a {
  display: block;
  padding: 11px 12px;
  border-radius: 12px;
  font-size: .88rem;
  color: #385166
}

.dropdown a:hover {
  background: #edf7fd;
  color: var(--blue)
}

.hero {
  position: relative;
  padding: 38px 0 80px;
  overflow: hidden;
  background: radial-gradient(circle at 10% 10%, rgba(32, 166, 201, .16), transparent 25%), radial-gradient(circle at 93% 10%, rgba(181, 31, 67, .10), transparent 22%), linear-gradient(135deg, #fbfeff, #edf8ff 58%, #fff)
}

.hero:after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -72px;
  height: 130px;
  background: #fff;
  border-radius: 50% 50% 0 0/100% 100% 0 0
}

.hero-shell {
  position: relative;
  z-index: 2;
  background: #fff;
  border: 7px solid rgba(255, 255, 255, .94);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg)
}

.hero-shell img {
  width: 100%;
  height: auto
}

.hero-actions {
  position: absolute;
  left: 6%;
  bottom: 7%;
  display: flex;
  gap: 12px
}

.mobile-hero-info {
  display: none
}

.quick-grid {
  position: relative;
  z-index: 5;
  margin-top: -52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.quick-card {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow)
}

.quick-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  background: #eaf7fd;
  color: var(--blue);
  font-weight: 900
}

.quick-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 5px
}

.quick-card p {
  font-size: .86rem;
  color: var(--muted)
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center
}

.about-image {
  position: relative
}

.about-image>img {
  width: 100%;
  aspect-ratio: 4/4.4;
  object-fit: cover;
  object-position: top;
  border-radius: 32px;
  box-shadow: var(--shadow-lg)
}

.about-image .mini {
  position: absolute;
  right: -18px;
  bottom: 28px;
  width: 190px;
  aspect-ratio: 1.25;
  object-fit: cover;
  border: 7px solid #fff;
  border-radius: 20px;
  box-shadow: var(--shadow)
}

.pill-row {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin: 22px 0
}

.pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #edf7fd;
  border: 1px solid var(--line);
  color: var(--blue);
  font-size: .8rem;
  font-weight: 800
}

.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 24px 0 28px
}

.check-list li {
  display: flex;
  gap: 10px;
  color: #435d70
}

.check-list li:before {
  content: "✓";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #dff6f8;
  color: #07819d;
  font-weight: 900
}

.stats {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  border-radius: 32px;
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  box-shadow: var(--shadow-lg)
}

.stats:after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 40px solid rgba(255, 255, 255, .05);
  border-radius: 50%;
  right: -100px;
  top: -120px
}

.stat {
  text-align: center;
  position: relative;
  z-index: 2
}

.stat strong {
  display: block;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1
}

.stat span {
  display: block;
  color: #cdeaf7;
  margin-top: 10px;
  font-size: .88rem
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 38px
}

.related-services-grid {
  grid-template-columns: repeat(3, 1fr)
}

.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(8, 47, 86, .08);
  transition: .3s ease
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow)
}

.service-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover
}

.service-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px
}

.service-num {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: #edf7fd;
  color: var(--blue);
  font-size: .73rem;
  font-weight: 900;
  margin-bottom: 12px
}

.service-card h3 {
  font-size: 1.07rem;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 8px
}

.service-card p {
  color: var(--muted);
  font-size: .88rem;
  margin-bottom: 18px
}

.text-link {
  margin-top: auto;
  color: var(--red);
  font-weight: 850;
  font-size: .88rem
}

.text-link:hover {
  color: var(--blue)
}

.journey {
  display: grid;
  gap: 16px;
  margin-top: 30px
}

.journey-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  align-items: start
}

.journey-num {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), #d44768);
  font-weight: 900
}

.journey-copy {
  padding: 4px 0 17px;
  border-bottom: 1px solid var(--line)
}

.journey-copy h3 {
  font-size: 1rem;
  color: var(--navy)
}

.journey-copy p {
  color: var(--muted);
  font-size: .91rem;
  margin-top: 5px
}

.feature-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow)
}

.feature-panel img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px
}

.feature-panel h3 {
  margin: 20px 0 6px;
  color: var(--navy)
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 38px
}

.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #eaf4fa;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(8, 47, 86, .08)
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2/1
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s ease
}

.gallery-item:hover img {
  transform: scale(1.06)
}

.gallery-item span {
  position: absolute;
  inset: auto 0 0;
  padding: 38px 14px 13px;
  color: #fff;
  background: linear-gradient(transparent, rgba(8, 47, 86, .88));
  font-weight: 750;
  font-size: .87rem
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  background: rgba(3, 19, 34, .94);
  padding: 28px
}

.lightbox.open {
  display: grid
}

.lightbox img {
  max-width: min(1050px, 94vw);
  max-height: 84vh;
  border-radius: 18px
}

.lightbox-close {
  position: absolute;
  right: 22px;
  top: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 1.5rem
}

.appointment-wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px
}

.contact-stack {
  display: grid;
  gap: 15px
}

.contact-card {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px
}

.contact-card .quick-icon {
  margin: 0
}

.contact-card h3 {
  font-size: 1rem;
  color: var(--navy)
}

.contact-card p,
.contact-card a {
  color: var(--muted);
  font-size: .9rem
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow)
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px
}

.field {
  display: grid;
  gap: 7px
}

.field.full {
  grid-column: 1/-1
}

.field label {
  font-size: .82rem;
  font-weight: 800;
  color: #435d70
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d4e3ec;
  border-radius: 13px;
  padding: 12px 13px;
  background: #fbfdff;
  outline: 0
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(32, 166, 201, .11)
}

.field textarea {
  min-height: 120px;
  resize: vertical
}

.form-status {
  display: none;
  margin-top: 12px;
  padding: 11px 13px;
  border-radius: 12px
}

.form-status.show {
  display: block
}

.form-status.error {
  background: #fff0f2;
  color: #a61d3b
}

.form-status.success {
  background: #e8f8f1;
  color: #16633f
}

.map {
  width: 100%;
  height: 430px;
  border: 0;
  border-radius: 26px;
  box-shadow: var(--shadow)
}

.page-hero {
  padding: 70px 0;
  background: radial-gradient(circle at 8% 15%, rgba(32, 166, 201, .15), transparent 24%), radial-gradient(circle at 93% 12%, rgba(181, 31, 67, .09), transparent 20%), linear-gradient(135deg, #fbfeff, #edf8ff 58%, #fff)
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 40px;
  align-items: center
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -.05em;
  color: var(--navy)
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
  color: var(--muted);
  font-size: .88rem
}

.breadcrumbs a {
  color: var(--red);
  font-weight: 800
}

.page-hero img {
  width: 100%;
  height: 730px;
  object-fit: cover;
  border: 7px solid #fff;
  border-radius: 28px;
  box-shadow: var(--shadow-lg)
}

.service-detail {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center
}

.service-detail.reverse .service-image {
  order: 2
}

.service-detail.reverse .service-content {
  order: 1
}

.service-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-lg)
}

.info-list {
  list-style: none;
  display: grid;
  gap: 11px;
  margin-top: 24px
}

.info-list li {
  display: flex;
  gap: 10px;
  padding: 13px 14px;
  border-radius: 14px;
  background: #f1f8fc;
  border: 1px solid var(--line);
  color: #435d70
}

.info-list li:before {
  content: "✓";
  color: var(--cyan);
  font-weight: 900
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.fact-card {
  height: 100%;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow)
}

.fact-card h3 {
  color: var(--navy);
  font-size: 1.04rem;
  margin-bottom: 8px
}

.fact-card p {
  color: var(--muted);
  font-size: .91rem
}

.faq {
  display: grid;
  gap: 12px;
  margin-top: 28px
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 16px 18px
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--navy)
}

.faq p {
  color: var(--muted);
  font-size: .92rem;
  margin-top: 10px
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 48px;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: var(--shadow-lg)
}

.cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.12
}

.cta p {
  color: #cdeaf7;
  margin-top: 10px;
  max-width: 680px
}

.footer {
  background: linear-gradient(135deg, #061f39, var(--navy));
  color: #fff;
  padding: 68px 0 24px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .65fr .85fr 1fr;
  gap: 38px
}

.footer .brand {
  min-width: 0
}

.footer .brand strong,
.footer h4 {
  color: #fff
}

.footer .brand small,
.footer p,
.footer a,
.footer li {
  color: #bcd8e8
}

.footer p {
  font-size: .9rem;
  margin-top: 15px
}

.footer h4 {
  font-size: 1rem;
  margin-bottom: 15px
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 9px
}

.footer-links a {
  font-size: .9rem
}

.footer-links a:hover {
  color: #fff
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  color: #9dbed0;
  font-size: .82rem
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  display: grid;
  gap: 10px
}

.floating-actions a,
.scroll-top {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(6, 31, 57, .25)
}

.float-call {
  background: var(--blue)
}

.float-wa {
  background: #21b866
}

.scroll-top {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 900;
  background: var(--navy);
  opacity: 0;
  pointer-events: none;
  transition: .2s
}

.scroll-top.show {
  opacity: 1;
  pointer-events: auto
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

@media(max-width:1050px) {
  .header .btn-primary {
    display: none
  }

  .menu-toggle {
    display: grid;
    place-items: center
  }

  .nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 92px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 110px);
    overflow: auto
  }

  .nav.open {
    display: flex
  }

  .nav>li>a {
    justify-content: space-between;
    padding: 11px 13px
  }

  .dropdown {
    position: static;
    display: grid;
    transform: none;
    width: auto;
    grid-template-columns: 1fr 1fr;
    box-shadow: none;
    background: #f5fafd;
    margin-top: 6px;
    border-radius: 16px
  }

  .quick-grid {
    grid-template-columns: 1fr 1fr
  }

  .quick-card:last-child {
    grid-column: 1/-1
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .page-hero-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:780px) {
  .related-services-grid {
    grid-template-columns: 1fr 1fr
  }

  .topbar {
    display: none
  }

  .navbar {
    min-height: 72px
  }

  .brand img {
    width: 43px;
    height: 43px
  }

  .brand strong {
    font-size: .91rem
  }

  .brand small {
    font-size: .65rem
  }

  .nav {
    top: 82px
  }

  .section {
    padding: 68px 0
  }

  .hero {
    padding: 22px 0 60px
  }

  .hero-shell {
    border-width: 4px;
    border-radius: 18px
  }

  .hero-actions {
    position: static;
    padding: 13px;
    background: #fff;
    justify-content: center
  }

  .hero-actions .btn {
    flex: 1
  }

  .mobile-hero-info {
    display: block;
    padding: 20px;
    background: #fff;
    border-top: 1px solid var(--line)
  }

  .mobile-hero-info h1 {
    font-size: 1.75rem;
    line-height: 1.12;
    color: var(--navy)
  }

  .mobile-hero-info p {
    color: var(--muted);
    font-size: .9rem;
    margin-top: 8px
  }

  .quick-grid {
    margin-top: -26px;
    grid-template-columns: 1fr
  }

  .quick-card:last-child {
    grid-column: auto
  }

  .grid-2,
  .appointment-wrap,
  .page-hero-grid,
  .service-detail {
    grid-template-columns: 1fr
  }

  .about-image .mini {
    right: 8px;
    width: 145px
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    padding: 35px 22px
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr
  }

  .gallery-item.wide {
    grid-column: span 2
  }

  .form-grid {
    grid-template-columns: 1fr
  }

  .field.full {
    grid-column: auto
  }

  .page-hero img {
    height: 270px
  }

  .service-detail.reverse .service-image,
  .service-detail.reverse .service-content {
    order: initial
  }

  .fact-grid {
    grid-template-columns: 1fr
  }

  .cta {
    grid-template-columns: 1fr;
    padding: 36px 26px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:520px) {
  .related-services-grid {
    grid-template-columns: 1fr
  }

  .container {
    width: min(var(--container), calc(100% - 22px))
  }

  .brand {
    min-width: 0
  }

  .brand strong {
    font-size: .8rem
  }

  .brand small {
    display: none
  }

  .hero-actions {
    flex-direction: column
  }

  .hero-actions .btn {
    width: 100%
  }

  .services-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .service-card img {
    aspect-ratio: 16/10
  }

  .stats {
    gap: 28px 8px
  }

  .gallery-grid {
    gap: 10px
  }

  .gallery-item {
    border-radius: 14px
  }

  .form-card {
    padding: 21px
  }

  .page-hero {
    padding: 52px 0
  }

  .page-hero img {
    height: 430px
  }

  .footer-bottom {
    flex-direction: column
  }

  .section-title {
    font-size: 2.1rem
  }

  .floating-actions {
    right: 12px;
    bottom: 12px
  }

  .floating-actions a,
  .scroll-top {
    width: 46px;
    height: 46px
  }

  .scroll-top {
    left: 12px;
    bottom: 12px
  }
}

/* ===== Final requested adjustments ===== */
/* Edge-to-edge hero banner: no side/top margin, border or rounded frame. */
.hero {
  padding: 0;
  background: #eef7fc;
  overflow: hidden
}

.hero::after {
  display: none
}

.hero-shell {
  width: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #eef7fc;
  overflow: hidden
}

.hero-shell>img {
  width: 100%;
  height: auto;
  display: block
}

.quick-grid {
  margin-top: 28px
}

.mobile-hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px
}

/* Services opens only after click; hover opening is disabled. */
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  display: none
}

.has-dropdown.dropdown-open .dropdown {
  display: grid !important
}

.has-dropdown>a {
  cursor: pointer;
  user-select: none
}

.has-dropdown.dropdown-open>a {
  background: #edf7fd;
  color: var(--blue)
}

/* Home appointment form finishing. */
.form-intro {
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: 22px
}

.form-submit {
  margin-top: 20px;
  min-width: 190px
}

/* Proper local call and WhatsApp icons. */
.floating-actions {
  right: 18px;
  bottom: 18px;
  padding: 0;
  background: transparent;
  border: 0
}

.floating-actions a {
  transition: transform .22s ease, box-shadow .22s ease
}

.floating-actions a:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 34px rgba(6, 31, 57, .3)
}

.floating-actions img {
  width: 25px;
  height: 25px;
  display: block
}

.float-wa img {
  width: 27px;
  height: 27px
}

@media(max-width:1050px) {
  .dropdown {
    display: none;
    position: static;
    transform: none;
    width: auto;
    grid-template-columns: 1fr 1fr;
    box-shadow: none;
    background: #f5fafd;
    margin-top: 6px;
    border-radius: 16px
  }

  .has-dropdown.dropdown-open .dropdown {
    display: grid !important
  }
}

@media(max-width:780px) {
  .hero {
    padding: 0
  }

  .hero-shell {
    border: 0;
    border-radius: 0
  }

  .hero-shell>img {
    width: 100%;
    height: auto
  }

  .hero-actions {
    display: none
  }

  .mobile-hero-info {
    display: block;
    padding: 22px 18px;
    background: #fff;
    border-top: 1px solid var(--line)
  }

  .mobile-hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr
  }

  .quick-grid {
    margin-top: 22px
  }
}

@media(max-width:520px) {
  .mobile-hero-info {
    padding: 18px 14px
  }

  .mobile-hero-info h1 {
    font-size: 1.55rem
  }

  .mobile-hero-actions {
    grid-template-columns: 1fr
  }

  .mobile-hero-actions .btn {
    width: 100%
  }

  .dropdown {
    grid-template-columns: 1fr
  }

  .floating-actions {
    right: 12px;
    bottom: 12px
  }

  .floating-actions a {
    width: 48px;
    height: 48px
  }
}