@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  color-scheme: light;
  --primary: #c4473a;
  --primary-dark: #9d3026;
  --secondary: #156b8a;
  --secondary-dark: #0f556d;
  --surface: #ffffff;
  --surface-soft: #f6f8fc;
  --surface-alt: #edf4f7;
  --text: #123047;
  --muted: #5b7285;
  --border: rgba(18, 48, 71, 0.1);
  --shadow: 0 24px 90px rgba(18, 48, 71, 0.1);
  --radius: 1.75rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(21, 107, 138, 0.12), transparent 28%),
    radial-gradient(circle at right 20%, rgba(196, 71, 58, 0.08), transparent 24%),
    linear-gradient(180deg, #fbfdff 0%, #f5f8fc 100%);
  color: var(--text);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.03em;
}

p {
  margin: 0;
}

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

a {
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

input,
textarea {
  border: 1px solid transparent;
}

header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

#sticky-header,
.header-main {
  border-bottom: 1px solid rgba(18, 48, 71, 0.08);
  box-shadow: 0 18px 55px rgba(18, 48, 71, 0.06);
}

.header-main {
  position: relative;
  z-index: 40;
}

.header-top {
  background:
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.14), transparent 24%),
    linear-gradient(120deg, var(--primary) 0%, #d86d4a 50%, var(--secondary) 100%);
}

.header-top a,
.header-top span {
  color: #ffffff;
}

.header-top a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
}

.social-bar a {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

header nav a {
  color: var(--text);
  position: relative;
  transition: color 0.25s ease;
}

header nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--primary);
  transition: transform 0.25s ease;
}

header nav a:hover {
  color: var(--primary);
}

header nav a:hover::after {
  transform: scaleX(1);
}

.mobile-nav {
  margin-bottom: 1rem;
  border: 1px solid rgba(18, 48, 71, 0.08);
  /* border-radius: 1.25rem; */
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(18, 48, 71, 0.08);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  background: var(--secondary);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(21, 107, 138, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(21, 107, 138, 0.22);
}

.hero-swiper {
  position: relative;
  min-height: 0;
}

.hero-swiper .swiper-slide {
  min-height: 0;
}

.hero-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.swiper-pagination {
  bottom: 1.5rem !important;
}

.swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.35rem !important;
  background: rgba(255, 255, 255, 0.54);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
}

.page-section {
  position: relative;
  padding: clamp(2.25rem, 4vw, 3.5rem) 0;
}

.about-section,
.faq-section {
  background: transparent;
}

main > section:first-child + section {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
}

[data-reveal] {
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

[data-reveal="fade-up"] {
  transform: translateY(36px);
}

[data-reveal="fade-left"] {
  transform: translateX(36px);
}

[data-reveal="fade-right"] {
  transform: translateX(-36px);
}

[data-reveal="zoom-in"] {
  transform: scale(0.92);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.section-shell {
  position: relative;
  padding: 1.2rem;
  border: 1px solid rgba(18, 48, 71, 0.08);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(18, 48, 71, 0.08);
  backdrop-filter: blur(14px);
}

.section-shell::before {
  content: '';
  position: absolute;
  inset: 0.65rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(21, 107, 138, 0.08);
  pointer-events: none;
}

.about-shell {
  overflow: hidden;
}

.services-section::before,
.testimonial-section::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: min(100% - 2rem, 86rem);
  height: 100%;
  transform: translateX(-50%);
  border-radius: 2.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(237, 244, 247, 0.72) 100%);
  border: 1px solid rgba(18, 48, 71, 0.05);
  z-index: -1;
}

.section-intro {
  padding: 0 0.35rem;
  margin-bottom: 0.2rem;
}

.about-panel {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: center;
}

.about-panel .media,
.about-panel .content {
  grid-column: span 12;
}

@media (min-width: 1024px) {
  .about-panel .media {
    grid-column: span 5;
  }

  .about-panel .content {
    grid-column: span 7;
  }
}

.about-card {
  position: relative;
  padding: 0.45rem;
  border-radius: 2.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(237, 244, 247, 0.85) 100%);
  box-shadow: 0 18px 50px rgba(18, 48, 71, 0.08);
}

.about-badge {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  width: min(11.5rem, 100%);
  padding: 0.8rem 1rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, #da7f54 100%);
  color: #ffffff;
  box-shadow: 0 26px 60px rgba(196, 71, 58, 0.24);
}

.about-badge span {
  display: block;
  font-size: 2rem;
  font-weight: 800;
}

.about-badge p {
  margin-top: 0.2rem;
  font-size: 0.94rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
}

.eyebrow::before {
  content: '';
  width: 2.2rem;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.84);
}

.section-title {
  font-size: clamp(1.75rem, 2.9vw, 3rem);
  line-height: 1.08;
  color: var(--text);
}

.section-title-center::after,
.section-title::after {
  content: '';
  display: block;
  width: 3.2rem;
  height: 0.24rem;
  margin-top: 0.8rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary) 0%, #e0ad58 100%);
}

.section-title-center::after {
  margin-left: auto;
  margin-right: auto;
}

.about-section p,
.service-card p,
.feature-section p,
.faq-section p,
.testimonial-card p,
.highlight-card p {
  color: var(--muted);
  line-height: 1.85;
}

.info-tile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 40px rgba(18, 48, 71, 0.05);
}

.info-tile i {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(196, 71, 58, 0.12);
  color: var(--primary);
}

.info-tile h3 {
  margin-bottom: 0.45rem;
  font-size: 1.15rem;
}

.video-card {
  overflow: hidden;
  border: 1px solid rgba(18, 48, 71, 0.08);
  border-radius: calc(var(--radius) + 0.2rem);
  box-shadow: var(--shadow);
  background: #ffffff;
}

.video-card video {
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.stats-section {
  position: relative;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  z-index: 5;
}

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

.stat-card {
  padding: 1rem 0.75rem;
  border: 1px solid rgba(18, 48, 71, 0.08);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(18, 48, 71, 0.08);
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-card strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.45rem, 3.2vw, 2.3rem);
  line-height: 1;
  color: var(--secondary);
}

.stat-card span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-weight: 700;
}

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

@media (min-width: 700px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(18, 48, 71, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(18, 48, 71, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(196, 71, 58, 0.18);
  box-shadow: 0 34px 70px rgba(18, 48, 71, 0.12);
}

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

.service-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem;
}

.service-card h3 {
  font-size: 1.22rem;
}

.service-card p {
  margin-top: 0.55rem;
  margin-bottom: 0.8rem;
  flex: 1;
}

.service-card a {
  color: var(--primary);
  font-weight: 800;
}

.process-section {
  position: relative;
}

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

.process-card {
  position: relative;
  padding: 1.35rem 1rem 1rem;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(18, 48, 71, 0.08);
  box-shadow: 0 22px 55px rgba(18, 48, 71, 0.08);
}

.process-step {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: rgba(18, 48, 71, 0.22);
}

.process-icon {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, rgba(21, 107, 138, 0.12) 0%, rgba(196, 71, 58, 0.12) 100%);
  color: var(--secondary);
  font-size: 1.35rem;
}

.process-card h3 {
  margin-top: 0.9rem;
  font-size: 1.25rem;
  color: var(--text);
}

.process-card p {
  margin-top: 0.5rem;
  color: var(--muted);
  line-height: 1.85;
}

.feature-section {
  position: relative;
  margin-top: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 22%),
    linear-gradient(135deg, #0d5f79 0%, #0a4963 52%, #072f43 100%);
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-list li:first-child {
  border-top: none;
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 1.15rem;
}

.feature-section h3 {
  font-size: 1.5rem;
  color: #ffffff;
}

.feature-section p {
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.76);
}

.feature-image {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: calc(var(--radius) + 0.3rem);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.gallery-preview-section {
  background: transparent;
}

.gallery-preview-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

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

.gallery-preview-card {
  overflow: hidden;
  border-radius: 1.7rem;
  border: 1px solid rgba(18, 48, 71, 0.08);
  box-shadow: 0 18px 50px rgba(18, 48, 71, 0.08);
  background: #ffffff;
}

.gallery-preview-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.highlight-section {
  padding-top: 0.8rem;
}

.highlight-grid {
  position: relative;
  z-index: 2;
}

.highlight-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1.15rem;
  border-radius: var(--radius);
  color: #ffffff;
  box-shadow: 0 25px 60px rgba(18, 48, 71, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 68px rgba(18, 48, 71, 0.18);
}

.highlight-sky {
  background: linear-gradient(135deg, #2a9dcc 0%, #156b8a 100%);
}

.highlight-red {
  background: linear-gradient(135deg, #d45744 0%, #a2332c 100%);
}

.highlight-teal {
  background: linear-gradient(135deg, #2a7a87 0%, #0d4f5c 100%);
}

.highlight-icon {
  width: 3.6rem;
  height: 3.6rem;
  display: grid;
  place-items: center;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.14);
  font-size: 1.2rem;
}

.highlight-card h3 {
  font-size: 1.5rem;
  color: #ffffff;
}

.highlight-card p {
  margin: 0.45rem 0 0.7rem;
  color: rgba(255, 255, 255, 0.82);
}

.faq-section .accordian-item {
  overflow: hidden;
  border: 1px solid rgba(18, 48, 71, 0.08);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 45px rgba(18, 48, 71, 0.06);
}

.faq-content {
  padding: 1.2rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 48, 71, 0.08);
  box-shadow: 0 20px 65px rgba(18, 48, 71, 0.06);
  backdrop-filter: blur(12px);
}

.faq-section .accordian-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  border: none;
  background: transparent;
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.faq-section .accordian-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-section .accordian-inner {
  padding: 0 1.4rem 1.35rem;
  color: var(--muted);
  line-height: 1.8;
}

.faq-section .accordian-item.active {
  border-color: rgba(196, 71, 58, 0.18);
}

.contact-panel {
  border-radius: calc(var(--radius) + 0.2rem);
  box-shadow: var(--shadow);
  align-self: stretch;
}

.contact-form {
  padding: 1.25rem;
  border-radius: calc(var(--radius) + 0.2rem);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(160deg, #133f57 0%, #0c6177 100%);
}

.contact-form h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(196, 71, 58, 0.4);
}

.contact-form button {
  border: none;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(196, 71, 58, 0.24);
}

.testimonial-section {
  background: transparent;
}

.testimonial-card {
  height: 100%;
  padding: 1.15rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 65px rgba(18, 48, 71, 0.08);
  border: 1px solid rgba(18, 48, 71, 0.05);
}

.testimonial-card p {
  margin: 0.8rem 0 0.95rem;
}

.testimonial-swiper .swiper-slide {
  height: auto;
  padding-bottom: 0.5rem;
}

.inner-hero {
  padding-top: 0;
}

.inner-hero-media {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 31, 45, 0.35) 0%, rgba(7, 31, 45, 0.72) 100%);
}

.inner-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 78rem;
  padding: 2rem 1rem;
  text-align: center;
  color: #ffffff;
}

.inner-hero-content h1 {
  margin-top: 1rem;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.02;
}

.inner-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.4rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}

.inner-breadcrumb a {
  color: #ffffff;
}

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

.contact-info-card {
  padding: 1.4rem 1.15rem;
  border: 1px solid rgba(18, 48, 71, 0.08);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(18, 48, 71, 0.06);
  text-align: center;
}

.contact-info-icon {
  width: 6rem;
  height: 6rem;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(21, 107, 138, 0.1) 0%, rgba(196, 71, 58, 0.08) 100%);
}

.contact-info-card h3 {
  font-size: 1.35rem;
  color: var(--text);
}

.contact-info-card a,
.contact-info-card p {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  line-height: 1.75;
}

.contact-split-grid {
  display: grid;
  gap: 1.2rem;
  align-items: stretch;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.contact-details-panel,
.contact-form-card {
  height: 100%;
  padding: 1.35rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(18, 48, 71, 0.08);
  box-shadow: 0 20px 55px rgba(18, 48, 71, 0.06);
}

.contact-details-panel {
  background: rgba(255, 255, 255, 0.86);
}

.contact-detail-list {
  display: grid;
  gap: 0.9rem;
}

.contact-detail-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.9rem 1rem;
  border-radius: 1.2rem;
  background: rgba(21, 107, 138, 0.06);
}

.contact-detail-item i {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
  color: var(--secondary);
}

.contact-detail-item h3 {
  font-size: 1.05rem;
  color: var(--text);
}

.contact-detail-item p {
  margin-top: 0.25rem;
  color: var(--muted);
  line-height: 1.7;
}

.contact-form-card {
  background: linear-gradient(160deg, #133f57 0%, #0c6177 100%);
  color: #ffffff;
}

.contact-form-card h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
}

.contact-page-form {
  margin-top: 1.25rem;
}

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

.contact-field {
  position: relative;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 0.9rem 2.8rem 0.9rem 1rem;
  border: none;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  outline: none;
}

.contact-field i {
  position: absolute;
  right: 1rem;
  top: 1rem;
  color: #6b7280;
}

.contact-textarea i {
  top: 1rem;
}

.contact-submit-btn {
  margin-top: 1rem;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: #ffffff;
  color: var(--secondary);
  font-weight: 800;
  cursor: pointer;
}

.map-section {
  padding-top: 0.5rem;
}

.map-frame {
  overflow: hidden;
  border-radius: 1.8rem;
  border: 1px solid rgba(18, 48, 71, 0.08);
  box-shadow: 0 18px 50px rgba(18, 48, 71, 0.08);
}

.home-map-section {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 0;
}

.home-map-frame {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.about-story-section {
  padding-top: 0.5rem;
}

.about-story-card {
  padding: 1.35rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(18, 48, 71, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(18, 48, 71, 0.06);
}

.about-story-accent {
  background: linear-gradient(160deg, #0d5f79 0%, #0a4963 52%, #072f43 100%);
  color: #ffffff;
}

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

.about-check-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
}

.about-check-list i {
  width: 1.9rem;
  height: 1.9rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

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

.about-facilities-card,
.about-facilities-image {
  padding: 1.2rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(18, 48, 71, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(18, 48, 71, 0.06);
}

.about-facilities-image img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.facility-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.85rem 0.95rem;
  border-radius: 1.1rem;
  background: rgba(21, 107, 138, 0.06);
}

.facility-item i {
  color: var(--primary);
  margin-top: 0.2rem;
}

.facility-item p {
  color: var(--muted);
  line-height: 1.75;
}

.expert-section {
  padding-top: 0.7rem;
}

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

.expert-card {
  overflow: hidden;
  border-radius: 1.8rem;
  border: 1px solid rgba(18, 48, 71, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(18, 48, 71, 0.06);
}

.expert-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: contain;
  background: linear-gradient(180deg, #f6ecdf 0%, #efe2d0 100%);
}

.expert-card-body {
  padding: 1rem;
  text-align: center;
}

.expert-card-body h3 {
  font-size: 1.3rem;
  color: var(--text);
}

.expert-card-body p {
  margin-top: 0.35rem;
  color: var(--muted);
}

.about-cta-strip {
  background:
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.1), transparent 22%),
    linear-gradient(135deg, #0d5f79 0%, #0a4963 52%, #072f43 100%);
}

.about-cta-strip h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: #ffffff;
}

.about-split-section {
  padding-top: 0;
}

.about-split-row {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.about-split-copy {
  padding: 1.8rem 1rem;
  background: #1a9055;
  color: #ffffff;
}

.about-split-copy h2 {
  margin-top: 1rem;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1.08;
}

.about-split-copy p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
}

.about-split-image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.services-list-section {
  padding-top: 0.6rem;
}

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

.services-page-card {
  overflow: hidden;
  border-radius: 1.8rem;
  border: 1px solid rgba(18, 48, 71, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(18, 48, 71, 0.06);
}

.services-page-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.services-page-card:hover .services-page-image img {
  transform: scale(1.05);
}

.services-page-body {
  padding: 1rem;
}

.services-page-body h3 {
  font-size: 1.35rem;
  color: var(--text);
}

.services-page-body p {
  margin-top: 0.55rem;
  color: var(--muted);
  line-height: 1.82;
}

.services-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.8rem;
  color: var(--primary);
  font-weight: 800;
}

.services-benefit-section {
  padding-top: 0.75rem;
}

.services-benefit-wrap {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 1.8rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(160deg, #133f57 0%, #0c6177 100%);
  box-shadow: 0 20px 55px rgba(18, 48, 71, 0.12);
}

.services-benefit-list {
  display: grid;
  gap: 0.8rem;
}

.services-benefit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.services-benefit-item i {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.site-footer {
  margin-top: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(160deg, #0a3345 0%, #061f2d 100%);
}

.footer-kicker {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-social {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-columns h3 {
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
  color: #ffffff;
}

.footer-columns ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-columns li + li {
  margin-top: 0.8rem;
}

.footer-columns a,
.footer-columns span {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-columns a:hover {
  color: #ffffff;
}

.footer-contact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.footer-contact i {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(196, 71, 58, 0.24);
  color: #ffffff;
}

#top-btn {
  width: 3.5rem;
  height: 3.5rem;
  border: none;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  display: grid;
  place-items: center;
}

#top-btn:hover {
  transform: scale(1.05);
}

.floating-actions {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
}

.floating-action {
  width: 3.75rem;
  height: 3.75rem;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 999px;
  box-shadow: 0 20px 45px rgba(16, 37, 39, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-action:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 24px 50px rgba(16, 37, 39, 0.22);
}

.floating-action-call {
  position: relative;
  background: linear-gradient(135deg, #1f7a57 0%, #18a35c 100%);
  color: #ffffff;
}

.floating-action-call::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(24, 163, 92, 0.35);
  animation: pulse 1.2s ease-in-out infinite;
  z-index: -1;
}

.floating-action-whatsapp {
  position: relative;
  overflow: hidden;
  background: #25d366;
}

.floating-action-whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.animation-pulse {
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .page-section {
    padding: 2rem 0;
  }

  .inner-hero-media {
    min-height: 250px;
  }

  .home-map-frame {
    height: 280px;
  }

  .hero-swiper {
    min-height: 0;
  }

  .section-shell,
  .faq-content {
    padding: 0.95rem;
    border-radius: 1.5rem;
  }

  .about-card {
    padding: 0.45rem;
    border-radius: 1.5rem;
  }

  .contact-form {
    padding: 1rem;
  }

  .stats-section {
    padding-top: 0.2rem;
  }

  .highlight-card {
    grid-template-columns: 1fr;
  }

  .feature-image {
    min-height: 340px;
  }

  .gallery-preview-head {
    align-items: start;
    flex-direction: column;
  }

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

  .about-split-copy {
    padding: 1.4rem 1rem;
  }

  .services-page-image img {
    height: 220px;
  }

  .services-section::before,
  .testimonial-section::before {
    width: calc(100% - 1rem);
    border-radius: 1.5rem;
  }
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .gallery-preview-grid {
    grid-template-columns: 1.15fr 0.85fr 0.85fr 1.15fr;
  }

  .contact-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .about-facilities-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

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

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

@media (min-width: 1024px) {
  .contact-split-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .about-split-row {
    grid-template-columns: 1fr 1fr;
  }

  .about-split-row.reverse {
    direction: rtl;
  }

  .about-split-row.reverse > * {
    direction: ltr;
  }

  .services-benefit-wrap {
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
  }
}

/* Design refresh */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@400;600;700;800&display=swap');

:root {
  --primary: #ce5f3f;
  --primary-dark: #a84730;
  --secondary: #145f66;
  --secondary-dark: #0d4348;
  --surface: #fffaf3;
  --surface-soft: #f5eee3;
  --surface-alt: #efe4d4;
  --surface-deep: #153236;
  --text: #1d2e2f;
  --muted: #647172;
  --border: rgba(29, 46, 47, 0.12);
  --shadow: 0 32px 80px rgba(20, 46, 49, 0.12);
  --radius: 2rem;
}

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(206, 95, 63, 0.12), transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(20, 95, 102, 0.18), transparent 20%),
    linear-gradient(180deg, #f8f3eb 0%, #fffdf9 36%, #f3ede1 100%);
  color: var(--text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Sora', sans-serif;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 90%);
  pointer-events: none;
  z-index: -2;
}

header {
  background: rgba(255, 250, 243, 0.88);
}

#sticky-header,
.header-main {
  border-bottom: 1px solid rgba(29, 46, 47, 0.08);
  box-shadow: 0 16px 55px rgba(18, 43, 46, 0.08);
}

.header-top {
  background:
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.22), transparent 26%),
    linear-gradient(120deg, #c45a3a 0%, #db8c55 42%, #155e65 100%);
}

.site-logo {
  filter: drop-shadow(0 12px 24px rgba(20, 43, 46, 0.08));
}

header nav a {
  padding: 0.4rem 0 0.85rem;
}

header nav a.is-active {
  color: var(--secondary);
}

header nav a.is-active::after {
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--primary) 0%, #dfad58 100%);
}

.is-active-mobile {
  color: var(--secondary) !important;
  background: linear-gradient(90deg, rgba(20, 95, 102, 0.08), transparent 78%);
}

.mobile-nav,
.section-shell,
.faq-content,
.contact-details-panel,
.contact-form-card,
.about-story-card,
.about-facilities-card,
.about-facilities-image,
.expert-card,
.services-page-card,
.contact-info-card,
.video-card,
.map-frame,
.testimonial-card,
.process-card,
.service-card,
.stat-card,
.faq-section .accordian-item {
  border-color: rgba(29, 46, 47, 0.08);
  box-shadow: 0 24px 70px rgba(21, 43, 46, 0.08);
}

.section-shell,
.faq-content,
.contact-details-panel,
.about-story-card,
.about-facilities-card,
.about-facilities-image,
.expert-card,
.services-page-card,
.contact-info-card,
.video-card,
.map-frame,
.testimonial-card,
.process-card,
.service-card,
.stat-card {
  background: rgba(255, 252, 247, 0.82);
  backdrop-filter: blur(14px);
}

.hero-stage {
  position: relative;
  overflow: hidden;
  min-height: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, #fffaf2 0%, #f3e8d7 100%);
  box-shadow: none;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide,
.hero-swiper .swiper-slide img {
  height: auto;
  min-height: 0;
}

.hero-stage::before,
.hero-stage::after {
  content: '';
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.hero-stage::before {
  display: none;
}

.hero-stage::after {
  display: none;
}

.hero-swiper .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.hero-swiper .swiper-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.08), transparent 24%);
}

.hero-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.marquee-band {
  position: relative;
  overflow: hidden;
  margin: 0 0 0.35rem;
  border-top: 1px solid rgba(29, 46, 47, 0.08);
  border-bottom: 1px solid rgba(29, 46, 47, 0.08);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(255, 249, 241, 0.98), rgba(244, 235, 221, 0.96));
  box-shadow: none;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeMove 24s linear infinite;
}

.marquee-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1rem;
  white-space: nowrap;
}

.marquee-row span {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.marquee-row span::after {
  content: '•';
  color: var(--primary);
  font-size: 1rem;
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.eyebrow {
  color: var(--secondary);
}

.eyebrow-light {
  color: rgba(255, 246, 233, 0.86);
}

.section-title,
.inner-hero-content h1 {
  letter-spacing: -0.04em;
}

.section-title::after,
.section-title-center::after {
  background: linear-gradient(90deg, var(--primary) 0%, #dfad58 52%, var(--secondary) 100%);
}

.services-section::before,
.testimonial-section::before {
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.7) 0%, rgba(241, 232, 218, 0.82) 100%);
}

.page-section {
  padding: clamp(2.7rem, 5vw, 4.6rem) 0;
}

.about-section.page-section {
  padding-top: clamp(1.2rem, 2vw, 1.8rem);
  padding-bottom: clamp(0.75rem, 1.4vw, 1.1rem);
}

.stats-section {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0.5rem;
}

.stats-grid {
  gap: 1rem;
}

.info-tile,
.facility-item,
.contact-detail-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(247, 239, 230, 0.9) 100%);
}

.service-card,
.services-page-card,
.expert-card,
.gallery-preview-card {
  border-radius: 1.8rem;
  overflow: hidden;
}

.service-card,
.process-card,
.highlight-card,
.testimonial-card,
.services-page-card,
.expert-card,
.contact-info-card {
  position: relative;
  isolation: isolate;
}

.service-card::before,
.process-card::before,
.highlight-card::before,
.testimonial-card::before,
.services-page-card::before,
.expert-card::before,
.contact-info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(206, 95, 63, 0.08), transparent 45%, rgba(20, 95, 102, 0.06));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

.service-card:hover::before,
.process-card:hover::before,
.highlight-card:hover::before,
.testimonial-card:hover::before,
.services-page-card:hover::before,
.expert-card:hover::before,
.contact-info-card:hover::before {
  opacity: 1;
}

.service-card img,
.services-page-image img,
.expert-card img,
.gallery-preview-card img {
  filter: saturate(0.94) contrast(1.04);
}

.service-card img,
.services-page-image img {
  height: 260px;
}

.service-card h3,
.services-page-body h3,
.process-card h3,
.highlight-card h3,
.testimonial-card h6 {
  letter-spacing: -0.03em;
}

.service-card .card-body,
.services-page-body,
.expert-card-body {
  padding: 1.2rem;
}

.service-card a,
.services-link {
  color: var(--secondary);
}

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

.care-track-card {
  padding: 1.35rem;
  border: 1px solid rgba(29, 46, 47, 0.08);
  border-radius: 1.8rem;
  background: rgba(255, 252, 247, 0.82);
  box-shadow: 0 24px 65px rgba(21, 43, 46, 0.08);
}

.care-track-icon {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border-radius: 1.3rem;
  background: linear-gradient(135deg, rgba(206, 95, 63, 0.15), rgba(20, 95, 102, 0.14));
  color: var(--secondary);
  font-size: 1.3rem;
}

.care-track-card h3 {
  margin-top: 1rem;
  font-size: 1.3rem;
}

.care-track-card p {
  margin-top: 0.6rem;
  color: var(--muted);
  line-height: 1.8;
}

.service-card .card-body::before,
.services-page-body::before {
  content: '';
  display: block;
  width: 3.4rem;
  height: 0.22rem;
  margin-bottom: 0.95rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #dfad58);
}

.stat-card {
  padding: 1.2rem 1rem;
  border-radius: 1.8rem;
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.92) 0%, rgba(244, 235, 223, 0.94) 100%);
}

.stat-card strong {
  color: var(--primary-dark);
}

.process-card,
.stat-card,
.highlight-card,
.testimonial-card,
.contact-info-card,
.faq-section .accordian-item {
  border-radius: 1.7rem;
}

.process-icon,
.highlight-icon,
.contact-info-icon {
  background: linear-gradient(135deg, rgba(206, 95, 63, 0.14) 0%, rgba(20, 95, 102, 0.15) 100%);
}

.feature-section,
.about-cta-strip,
.services-benefit-wrap,
.contact-form,
.contact-form-card,
.site-footer,
.about-story-accent {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(145deg, #183f43 0%, #0f292c 52%, #162526 100%);
}

.feature-image,
.about-card img,
.map-frame iframe,
.home-map-frame {
  border-radius: 1.7rem;
}

.gallery-preview-card,
.video-card,
.map-frame {
  position: relative;
}

.gallery-preview-card::after,
.video-card::after,
.map-frame::after {
  content: '';
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 4rem;
  height: 4rem;
  border-right: 1px solid rgba(206, 95, 63, 0.25);
  border-bottom: 1px solid rgba(206, 95, 63, 0.25);
  border-bottom-right-radius: 1.1rem;
  pointer-events: none;
}

.cinematic-frame {
  padding: 0.75rem;
  background: linear-gradient(135deg, rgba(255, 249, 240, 0.92) 0%, rgba(239, 228, 212, 0.85) 100%);
}

.section-shell {
  border-radius: 2.2rem;
  overflow: hidden;
}

.section-shell::after {
  content: '';
  position: absolute;
  width: 12rem;
  height: 12rem;
  right: -6rem;
  top: -6rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 95, 102, 0.08), transparent 72%);
  pointer-events: none;
}

.inner-hero {
  padding-top: 0;
}

.inner-hero-media {
  min-height: 410px;
  border-bottom-left-radius: 2.5rem;
  border-bottom-right-radius: 2.5rem;
  overflow: hidden;
}

.inner-hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 30, 33, 0.84) 0%, rgba(10, 30, 33, 0.46) 48%, rgba(10, 30, 33, 0.2) 100%);
}

.inner-breadcrumb {
  background: rgba(255, 250, 243, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-form input,
.contact-form textarea,
.contact-field input,
.contact-field textarea {
  border: 1px solid rgba(29, 46, 47, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.site-footer {
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  right: -6rem;
  top: -4rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 173, 88, 0.18), transparent 70%);
}

.footer-kicker,
.footer-social,
#top-btn,
.cta-btn {
  box-shadow: 0 18px 40px rgba(16, 37, 39, 0.16);
}

#top-btn,
.contact-form button,
.contact-submit-btn {
  background: linear-gradient(135deg, var(--primary) 0%, #de8c50 100%);
  color: #fff;
}

.contact-submit-btn {
  border: none;
}

.home-map-section {
  padding: 1rem;
}

.home-map-frame {
  border-radius: 2rem;
  box-shadow: var(--shadow);
}

.about-storyboard {
  display: grid;
  gap: 1.2rem;
  align-items: center;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.about-storyboard-copy {
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border: 1px solid rgba(29, 46, 47, 0.08);
  border-radius: 2rem;
  background: rgba(255, 252, 247, 0.82);
  box-shadow: 0 24px 70px rgba(21, 43, 46, 0.08);
}

.about-storyboard-stats {
  display: grid;
  gap: 0.9rem;
}

.about-stat-chip {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.05rem;
  border-radius: 1.4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 235, 223, 0.94));
  border: 1px solid rgba(29, 46, 47, 0.08);
}

.about-stat-chip strong {
  font-family: 'Sora', sans-serif;
  font-size: 1.7rem;
  color: var(--primary-dark);
}

.about-stat-chip span {
  color: var(--muted);
  font-weight: 700;
}

.about-storyboard-frame {
  position: relative;
  padding: 0.9rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(255, 249, 241, 0.98), rgba(239, 228, 212, 0.9));
  box-shadow: 0 28px 80px rgba(21, 43, 46, 0.12);
}

.about-storyboard-frame::before {
  content: '';
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 1.5rem;
  pointer-events: none;
}

.about-storyboard-image {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: 1.5rem;
}

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

.about-pillar-card {
  padding: 1.4rem;
  border: 1px solid rgba(29, 46, 47, 0.08);
  border-radius: 1.8rem;
  background: rgba(255, 252, 247, 0.84);
  box-shadow: 0 24px 65px rgba(21, 43, 46, 0.08);
}

.about-pillar-icon {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(206, 95, 63, 0.15), rgba(20, 95, 102, 0.14));
  color: var(--secondary);
  font-size: 1.25rem;
}

.about-pillar-card h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
}

.about-pillar-card p {
  margin-top: 0.55rem;
  color: var(--muted);
  line-height: 1.8;
}

.about-journey-shell {
  display: grid;
  gap: 1.4rem;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-radius: 2.2rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(145deg, #183f43 0%, #0f292c 52%, #162526 100%);
  box-shadow: 0 28px 80px rgba(15, 33, 35, 0.18);
}

.about-journey-steps {
  display: grid;
  gap: 1rem;
}

.about-journey-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.about-journey-step span {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #dfad58);
  font-family: 'Sora', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
}

.about-journey-step p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.adult-intro-shell,
.adult-cta-shell {
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border-radius: 2.1rem;
}

.adult-intro-shell {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  background: rgba(255, 252, 247, 0.84);
  border: 1px solid rgba(29, 46, 47, 0.08);
  box-shadow: 0 24px 70px rgba(21, 43, 46, 0.08);
}

.adult-benefit-list {
  display: grid;
  gap: 0.9rem;
}

.adult-benefit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 1.05rem;
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 235, 223, 0.94));
  border: 1px solid rgba(29, 46, 47, 0.08);
}

.adult-benefit-item i {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(206, 95, 63, 0.16), rgba(20, 95, 102, 0.14));
  color: var(--secondary);
}

.adult-benefit-item span {
  color: var(--text);
  line-height: 1.7;
  font-weight: 600;
}

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

.adult-service-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.8rem;
  border: 1px solid rgba(29, 46, 47, 0.08);
  background: rgba(255, 252, 247, 0.84);
  box-shadow: 0 24px 70px rgba(21, 43, 46, 0.08);
}

.adult-service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(206, 95, 63, 0.08), transparent 45%, rgba(20, 95, 102, 0.06));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.adult-service-card:hover::before {
  opacity: 1;
}

.adult-service-image {
  overflow: hidden;
}

.adult-service-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.adult-service-card:hover .adult-service-image img {
  transform: scale(1.05);
}

.adult-service-body {
  padding: 1.2rem;
}

.adult-service-body::before {
  content: '';
  display: block;
  width: 3.4rem;
  height: 0.22rem;
  margin-bottom: 0.95rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #dfad58);
}

.adult-service-body h3 {
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.adult-service-body p {
  margin-top: 0.65rem;
  color: var(--muted);
  line-height: 1.8;
}

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

.adult-journey-card {
  padding: 1.35rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(29, 46, 47, 0.08);
  background: rgba(255, 252, 247, 0.84);
  box-shadow: 0 24px 65px rgba(21, 43, 46, 0.08);
}

.adult-journey-icon {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, rgba(206, 95, 63, 0.15), rgba(20, 95, 102, 0.14));
  color: var(--secondary);
  font-size: 1.3rem;
}

.adult-journey-card h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
}

.adult-journey-card p {
  margin-top: 0.6rem;
  color: var(--muted);
  line-height: 1.8;
}

.adult-cta-shell {
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(145deg, #183f43 0%, #0f292c 52%, #162526 100%);
  box-shadow: 0 28px 80px rgba(15, 33, 35, 0.18);
}

@media (max-width: 1023px) {
}

@media (max-width: 767px) {
  .hero-stage {
    margin: 0;
    border-radius: 0;
  }

  .inner-hero-media {
    min-height: 300px;
    border-bottom-left-radius: 1.7rem;
    border-bottom-right-radius: 1.7rem;
  }

  .home-map-section {
    padding: 0.5rem;
  }

  .marquee-band {
    margin: 0 0 0.25rem;
  }

  .about-section.page-section {
    padding-bottom: 0.5rem;
  }

  .stats-section {
    padding-bottom: 0.25rem;
  }

  .marquee-row {
    padding: 0.8rem 0.85rem;
  }

  .marquee-row span {
    font-size: 0.75rem;
  }
}

@media (min-width: 768px) {
  .adult-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .adult-journey-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .care-track-grid,
  .about-pillars-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-storyboard-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .adult-intro-shell,
  .adult-cta-shell {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .about-storyboard {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .about-journey-shell {
    grid-template-columns: 0.88fr 1.12fr;
    align-items: center;
  }
}
