:root {
  --primary: #869a37;
  --secondary: #D8EFEC;
  --accent: #DF8F9B;
  --gold-accent: #C89B3C;
  --rose-pink: #DF8F9B;
  --text: #24373A;
  --light-bg: #F3FAF9;
  --muted-bg: #EAF3F2;
  --white: #FFFFFF;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow-soft: 0 14px 45px rgba(23, 52, 54, 0.1);
  --shadow-hover: 0 20px 45px rgba(15, 111, 115, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--light-bg);
  line-height: 1.7;
}

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

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

.section-gap {
  padding: 6.5rem 0;
}

.muted-bg {
  background: var(--muted-bg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  background: rgba(216, 239, 236, 0.62);
}

.text-rose {
  color: var(--primary);
}

.top-bar {
  background: linear-gradient(90deg, #0A5458, var(--primary) 62%, var(--gold-accent));
  color: #EAF7F5;
  font-size: 0.85rem;
  padding: 0.55rem 0;
}

.top-bar a {
  color: #EAF7F5;
  opacity: 0.94;
  transition: opacity 0.25s ease;
}

.top-bar a:hover {
  opacity: 1;
}

.main-navbar {
  background: rgba(243, 250, 249, 0.95);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.25s ease, padding 0.25s ease;
  padding: 0.95rem 0;
}

.main-navbar.scrolled {
  box-shadow: 0 8px 30px rgba(23, 52, 54, 0.16);
  padding: 0.65rem 0;
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.01em;
}

.navbar-brand span {
  color: var(--accent);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #29595D;
  margin: 0 0.15rem;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.6rem;
  right: 0.6rem;
  bottom: 0.3rem;
  height: 2px;
  background: var(--rose-pink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

.btn {
  border-radius: 999px;
  font-weight: 600;
  padding: 0.82rem 1.45rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

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

.btn-rose {
  background: linear-gradient(120deg, var(--primary), var(--gold-accent));
  color: var(--white);
}

.btn-rose:hover {
  background: linear-gradient(120deg, #0A5458, #B88A2D);
  color: var(--white);
  box-shadow: var(--shadow-hover);
}

.btn-gold {
  background: var(--rose-pink);
  color: #2e2115;
}

.btn-gold:hover {
  background: #cf7f8c;
  color: #23190f;
  box-shadow: 0 14px 30px rgba(223, 143, 155, 0.35);
}

.btn-light-contrast {
  background: #EDF8F7;
  color: #1F5659;
}

.btn-light-contrast:hover {
  background: #ffffff;
  color: #194347;
}

.btn-outline-light-custom {
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
}

.btn-outline-light-custom:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(7, 48, 51, 0.78), rgba(15, 111, 115, 0.68));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-content h1 {
  margin-top: 1rem;
  font-size: clamp(2rem, 5vw, 3.95rem);
  line-height: 1.15;
  font-weight: 700;
}

.hero-content p {
  font-size: clamp(1rem, 2.4vw, 1.16rem);
  margin: 1.1rem 0 1.6rem;
  color: rgba(241, 250, 249, 0.95);
  max-width: 680px;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 999px;
  padding: 0.48rem 0.85rem;
  font-size: 0.9rem;
}

.value-card,
.care-card,
.testimonial-card,
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.value-card {
  padding: 1.75rem;
}

.value-card i {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  color: var(--primary);
  background: var(--secondary);
}

.value-card h3,
.care-card h3,
.blog-card h3 {
  font-size: 1.2rem;
  margin: 1rem 0 0.55rem;
  line-height: 1.35;
}

.value-card p,
.care-card p,
.blog-card p {
  margin: 0;
  color: #5D6F72;
}

.value-card:hover,
.care-card:hover,
.testimonial-card:hover,
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  margin: 0.8rem 0 0.95rem;
  font-size: clamp(1.65rem, 4vw, 2.7rem);
  line-height: 1.25;
  color: #1D4649;
}

.section-heading p {
  margin: 0;
  color: #5D6F72;
}

.about-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.about-image-wrap::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(223, 143, 155, 0.32), rgba(223, 143, 155, 0));
  right: -42px;
  bottom: -48px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.45rem 0 1.5rem;
  display: grid;
  gap: 0.68rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.6rem;
}

.feature-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.17rem;
  color: var(--accent);
}

.care-card {
  padding: 1.9rem;
  border: 1px solid rgba(15, 111, 115, 0.12);
}

.care-card i {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  background: linear-gradient(140deg, #DFF1EF, #F6FBFA);
  color: #0F6F73;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.amenity-grid img {
  border-radius: 18px;
  height: 220px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.amenity-matrix {
  overflow: hidden;
  padding: 0 1rem;
}

.amenity-matrix-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.amenity-stack {
  width: clamp(250px, 28vw, 340px);
  display: grid;
  gap: 1rem;
}

.amenity-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.amenity-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.amenity-photo-big {
  height: 520px;
}

.amenity-photo-medium {
  height: 252px;
}

.grid-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.video-tour-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 111, 115, 0.14);
  background: #EDF6F5;
}

.video-tour-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-fallback {
  padding: 0 1rem 1rem;
}

.gallery-section {
  overflow: hidden;
}

.gallery-loop {
  margin-top: 2.2rem;
  padding: 0 1rem;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.gallery-track.is-looping {
  animation: galleryLoop 55s linear infinite;
}

.gallery-loop:hover .gallery-track {
  animation-play-state: paused;
}

.gallery-stack {
  width: clamp(250px, 28vw, 340px);
  display: grid;
  gap: 1rem;
}

.gallery-item {
  border: none;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
  background: #fff;
}

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

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

.gallery-item-big {
  height: 520px;
}

.gallery-item-medium {
  height: 252px;
}

.gallery-zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(15, 111, 115, 0.86);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-item:hover .gallery-zoom,
.gallery-item:focus-visible .gallery-zoom {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:focus-visible {
  outline: 3px solid rgba(223, 143, 155, 0.8);
  outline-offset: 2px;
}

.gallery-modal .modal-content {
  background: rgba(9, 46, 49, 0.42);
  border: 1px solid rgba(215, 236, 233, 0.35);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  box-shadow: 0 24px 50px rgba(8, 28, 30, 0.42);
}

.gallery-modal img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: transparent;
}

.gallery-modal p {
  color: #D7ECE9;
  padding: 1rem 1.2rem 1.2rem;
  text-align: center;
}

.gallery-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  filter: invert(1);
  opacity: 0.88;
}

.gallery-close:hover {
  opacity: 1;
}

.video-tour-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 8;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(9, 46, 49, 0.72);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.video-tour-close:hover {
  background: rgba(15, 111, 115, 0.9);
  transform: scale(1.04);
}

.video-tour-close:focus-visible {
  outline: 3px solid rgba(223, 143, 155, 0.82);
  outline-offset: 2px;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(18, 57, 59, 0.72);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.gallery-nav:hover {
  background: rgba(15, 111, 115, 0.9);
  transform: translateY(-50%) scale(1.04);
}

.gallery-nav:focus-visible {
  outline: 3px solid rgba(223, 143, 155, 0.82);
  outline-offset: 2px;
}

.gallery-prev {
  left: 14px;
}

.gallery-next {
  right: 14px;
}

.gallery-counter {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  color: #d7ece9;
  background: rgba(9, 46, 49, 0.7);
  border-radius: 999px;
  padding: 0.3rem 0.72rem;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

@keyframes galleryLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * var(--loop-distance, 0px)));
  }
}

.emotional-cta {
  background: linear-gradient(130deg, #0D6569, #2F7B7F 48%, #7D9A72);
}

.cta-box {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: clamp(1.8rem, 5vw, 3.6rem);
  color: #F2FAF9;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-box h2 {
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  line-height: 1.24;
  margin-bottom: 1rem;
}

.cta-box p {
  max-width: 880px;
  margin: 0 auto 1.6rem;
  color: rgba(240, 250, 248, 0.95);
}

.testimonial-card {
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  color: #CCE7E4;
  font-size: 1.6rem;
}

.testimonial-card p {
  margin: 0 0 1.15rem;
  color: #5A6B6E;
}

.testimonial-card h3 {
  font-size: 1.05rem;
  margin: 0;
}

.testimonial-card span {
  color: #6C7C80;
  font-size: 0.92rem;
}

.review-wall {
  margin-top: 2.1rem;
  column-count: 3;
  column-gap: 1.1rem;
}

.review-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 1.1rem;
  padding: 1.35rem;
  border-radius: 20px;
  background: linear-gradient(170deg, #ffffff 0%, #F4FAF9 100%);
  border: 1px solid rgba(15, 111, 115, 0.14);
  box-shadow: var(--shadow-soft);
  break-inside: avoid;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.review-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  background: linear-gradient(135deg, #D8EFEC, #F6FBFA);
  color: #0F6F73;
}

.review-header h3 {
  margin: 0;
  font-size: 1rem;
  color: #274447;
}

.review-header p {
  margin: 0.08rem 0 0;
  color: #6B7B7F;
  font-size: 0.82rem;
  line-height: 1.35;
}

.review-time {
  font-size: 0.81rem;
  color: #7A8A8E;
  white-space: nowrap;
}

.review-stars {
  margin: 0.9rem 0 0.6rem;
  display: inline-flex;
  gap: 0.2rem;
  color: var(--accent);
  font-size: 0.9rem;
}

.review-title {
  margin: 0 0 0.45rem;
  font-weight: 600;
  color: #2F5356;
}

.review-body {
  margin: 0;
  color: #4B5D60;
  font-size: 0.95rem;
}

.review-body + .review-body {
  margin-top: 0.7rem;
}

.blog-card {
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}

.blog-content {
  padding: 1.4rem;
}

.text-link {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 1.1rem;
  color: var(--primary);
  font-weight: 600;
}

.text-link i {
  transition: transform 0.25s ease;
}

.text-link:hover i {
  transform: translateX(4px);
}

.page-banner {
  position: relative;
  overflow: hidden;
  color: #F2FAF9;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background-image: var(--banner-image);
  background-size: cover;
  background-position: center;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(7, 48, 51, 0.82), rgba(15, 111, 115, 0.7));
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 6.5rem 0 4.6rem;
}

.banner-content h1 {
  margin-top: 1rem;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.18;
}

.banner-content p {
  color: rgba(238, 249, 248, 0.94);
  margin: 1rem 0 0;
}

.timeline-panel {
  background: #fff;
  border: 1px solid rgba(15, 111, 115, 0.14);
  border-radius: 24px;
  padding: clamp(1.3rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-soft);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-step {
  background: linear-gradient(160deg, #FFFFFF, #F4FAF9);
  border: 1px solid rgba(15, 111, 115, 0.14);
  border-radius: 18px;
  padding: 1.15rem;
}

.timeline-step span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background: #D8EFEC;
  color: #0A5458;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.timeline-step h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.timeline-step p {
  margin: 0;
  color: #5c4d53;
  font-size: 0.92rem;
}

.cta-card {
  background: #fff;
  border: 1px solid rgba(15, 111, 115, 0.14);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: clamp(1.7rem, 4vw, 2.8rem);
}

.cta-card h2 {
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  margin-bottom: 0.7rem;
  color: #1F4246;
}

.cta-card p {
  color: #586A6D;
  margin-bottom: 1.2rem;
}

.care-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-item {
  background: #fff;
  border: 1px solid rgba(15, 111, 115, 0.14);
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.process-item span {
  color: #0D6468;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.process-item h3 {
  margin: 0.5rem 0 0.3rem;
  font-size: 1rem;
}

.process-item p {
  margin: 0;
  font-size: 0.92rem;
  color: #5C6E71;
}

.blog-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #7A8B8E;
  margin: 0 0 0.45rem;
  font-weight: 600;
}

.contact-info-card,
.contact-form-card,
.faq-card {
  background: #fff;
  border: 1px solid rgba(15, 111, 115, 0.14);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.contact-info-card {
  padding: 1.6rem;
}

.contact-info-card h2,
.contact-form-card h2 {
  font-size: 1.55rem;
  color: #234649;
}

.contact-info-card p,
.contact-form-card p {
  color: #5D6F72;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: #4F6164;
}

.contact-list i {
  color: #0F6F73;
  margin-top: 0.2rem;
}

.contact-pills {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.contact-pills span {
  border-radius: 999px;
  background: #D8EFEC;
  color: #1F5559;
  font-size: 0.8rem;
  padding: 0.35rem 0.72rem;
}

.contact-form-card {
  padding: 1.6rem;
}

.contact-form-card .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #3F5B60;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  border-radius: 12px;
  border-color: rgba(15, 111, 115, 0.3);
  padding: 0.72rem 0.86rem;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--rose-pink);
  box-shadow: 0 0 0 0.2rem rgba(223, 143, 155, 0.2);
}

.faq-card {
  padding: 1.3rem;
  height: 100%;
}

.faq-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.42rem;
  color: #2C5054;
}

.faq-card p {
  margin: 0;
  color: #596B6E;
}

.site-footer {
  background: #12393B;
  color: #DCECEB;
  padding-top: 4.8rem;
}

.site-footer h3,
.site-footer h4 {
  color: #ffd9df;
  margin-bottom: 1rem;
}

.site-footer h3 {
  font-size: 1.35rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.site-footer li,
.site-footer p {
  color: rgba(225, 241, 239, 0.9);
  font-size: 0.95rem;
}

.site-footer a {
  color: rgba(236, 248, 246, 0.95);
  transition: color 0.25s ease;
}

.site-footer a:hover {
  color: var(--rose-pink);
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.social-links a:hover {
  background: rgba(223, 143, 155, 0.28);
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-logo {
  width: auto;
  height: 62px;
  border-radius: 10px;
  object-fit: contain;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 2.5rem;
  padding: 1.3rem 0;
}

.back-top {
  color: #f7c8d0;
  font-weight: 500;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .section-gap {
    padding: 4.6rem 0;
  }

  .main-navbar {
    padding: 0.65rem 0;
  }

  .hero-content h1 {
    max-width: 95%;
  }

  .grid-list {
    grid-template-columns: 1fr;
  }

  .gallery-item-big {
    height: 460px;
  }

  .gallery-item-medium {
    height: 222px;
  }

  .review-wall {
    column-count: 2;
  }

  .timeline-grid,
  .care-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .top-bar {
    text-align: center;
  }

  .top-contact {
    justify-content: center;
  }

  .hero-section .row {
    padding: 7rem 0 4rem;
    min-height: auto;
  }

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

  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .amenity-grid img {
    height: 240px;
  }

  .amenity-matrix {
    padding: 0 0.55rem;
  }

  .amenity-stack {
    width: 230px;
    gap: 0.7rem;
  }

  .amenity-photo-big {
    height: 350px;
  }

  .amenity-photo-medium {
    height: 170px;
  }

  .blog-card img {
    height: 210px;
  }

  .gallery-loop {
    padding: 0 0.55rem;
  }

  .gallery-stack {
    width: 230px;
    gap: 0.7rem;
  }

  .gallery-item-big {
    height: 350px;
  }

  .gallery-item-medium {
    height: 170px;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }

  .review-wall {
    column-count: 1;
  }

  .review-card {
    padding: 1.1rem;
  }

  .review-header {
    grid-template-columns: auto 1fr;
  }

  .review-time {
    grid-column: 1 / -1;
    margin-left: calc(46px + 0.75rem);
  }

  .banner-content {
    padding: 5.8rem 0 3.6rem;
  }

  .timeline-grid,
  .care-process {
    grid-template-columns: 1fr;
  }

  .contact-info-card,
  .contact-form-card,
  .faq-card {
    padding: 1.1rem;
  }

  .site-footer {
    padding-top: 4rem;
  }
}
