:root {
  --teal-dark: #0d5c6b;
  --teal: #117a8b;
  --sky: #3aaecc;
  --sky-light: #d6eff5;
  --bg: #f0f8fa;
  --white: #ffffff;
  --gold: #f5a623;
  --text-dark: #1a2a30;
  --text-mid: #3e5a63;
  --text-light: #6b8e96;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(13, 92, 107, 0.1);
  --shadow-lg: 0 8px 40px rgba(13, 92, 107, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
}

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

button {
  cursor: pointer;
}

.site-main {
  padding-top: 72px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(13, 92, 107, 0.09);
  height: 72px;
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo,
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.custom-logo-wrap {
  display: inline-flex;
  align-items: center;
}

.site-logo-image {
  max-height: 44px;
  width: auto;
  display: block;
}

.footer-custom-logo .site-logo-image {
  max-height: 52px;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon svg {
  width: 26px;
  height: 26px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text span:first-child {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--teal-dark);
  line-height: 1.2;
}

.nav-logo-text span:last-child {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

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

.nav-links a,
.nav-links button {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s;
  background: transparent;
  border: 0;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links button:hover {
  color: var(--teal-dark);
  background: var(--sky-light);
}

.nav-book,
.mobile-book {
  background: var(--gold) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  border-radius: 24px !important;
}

.nav-book {
  padding: 10px 22px !important;
}

.nav-book:hover,
.mobile-book:hover {
  background: #e09410 !important;
  transform: translateY(-1px);
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px 6px;
  border-radius: 8px;
  background: var(--sky-light);
}

.lang-btn {
  display: inline-block;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text-mid);
  border-radius: 6px;
  transition: all 0.2s;
}

.lang-btn:hover {
  color: var(--teal-dark);
}

.lang-btn.active {
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: 0 1px 4px rgba(13, 92, 107, 0.12);
}

.lang-divider {
  color: var(--text-light);
  font-size: 12px;
  user-select: none;
}

.nav-lang {
  display: flex;
  align-items: center;
}

.mobile-lang {
  padding: 8px 0;
  display: flex;
  justify-content: center;
}

.mobile-lang .lang-switcher {
  width: fit-content;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal-dark);
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 999;
  background: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a,
.mobile-menu button {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 12px 16px;
  border-radius: 8px;
  transition: background 0.2s;
  background: transparent;
  border: 0;
  text-align: left;
}

.mobile-menu a:hover,
.mobile-menu a.active,
.mobile-menu button:hover {
  background: var(--sky-light);
  color: var(--teal-dark);
}

.mobile-book {
  text-align: center !important;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 55%, #1e9bb0 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero-bg-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
}

.hero-hex {
  position: absolute;
  right: -60px;
  top: -60px;
  width: 520px;
  height: 520px;
  opacity: 0.06;
  background: url("data:image/svg+xml,%3Csvg width='60' height='70' viewBox='0 0 60 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='30,0 60,17.5 60,52.5 30,70 0,52.5 0,17.5' fill='none' stroke='white' stroke-width='1'/%3E%3C/svg%3E") repeat;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

.hero h1,
.about-hero h1,
.services-hero h1,
.contact-hero h1,
.generic-header h1 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 480px;
}

.hero-heartbeat {
  width: 100%;
  height: 70px;
  overflow: hidden;
  margin-bottom: 28px;
}

.hero-heartbeat svg {
  width: 100%;
  height: 100%;
}

.hb-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw-hb 2.5s ease forwards, hb-glow 2.5s ease forwards;
}

@keyframes draw-hb {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes hb-glow {
  0% {
    filter: none;
  }
  60% {
    filter: drop-shadow(0 0 6px rgba(245, 166, 35, 0.9));
  }
  100% {
    filter: none;
  }
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-outline,
.btn-white,
.btn-submit,
.map-link {
  text-decoration: none;
  display: inline-block;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 32px;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: #e09410;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.45);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 32px;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: white;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 32px;
}

.hero-photo {
  margin-bottom: 24px;
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-box .num {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-box .num span {
  font-size: 20px;
  color: var(--gold);
}

.stat-box .lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
}

.hero-card-cta {
  margin-top: 24px;
  text-align: center;
}

.hero-card-cta p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 14px;
}

.contact-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-pill {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: white;
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  transition: background 0.2s;
}

.contact-pill:hover {
  background: rgba(255, 255, 255, 0.22);
}

.contact-pill svg {
  width: 15px;
  height: 15px;
}

.wa-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 10px;
  font-weight: 700;
}

.wave {
  display: block;
  width: 100%;
  background: var(--teal);
}

.home-services,
.mission-section,
.services-full,
.contact-section,
.content-page {
  background: var(--white);
  padding: 72px 32px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 12px;
}

.section-eyebrow-gold {
  color: var(--gold);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1.2;
  margin: 0;
}

.section-title-small {
  font-size: 24px;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 540px;
}

.section-header {
  margin-bottom: 52px;
}

.care-gallery-section {
  background: linear-gradient(180deg, #f7fcfd 0%, #ffffff 100%);
  padding: 72px 32px;
}

.care-gallery-section-light {
  background: var(--bg);
}

.services-grid,
.why-grid,
.team-grid,
.services-full-grid,
.care-gallery-grid {
  display: grid;
}

.services-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.care-gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.care-gallery-grid-three {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.care-gallery-grid-two {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.care-gallery-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 122, 139, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.care-gallery-media {
  position: relative;
  overflow: hidden;
  background: #e7f4f7;
}

.care-gallery-media img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.care-gallery-content {
  padding: 22px 22px 24px;
}

.care-gallery-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--teal-dark);
  margin: 0 0 10px;
}

.care-gallery-content p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

.care-gallery-card-wide .care-gallery-media img {
  height: 320px;
}

.service-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 0 24px 28px;
  border: 1.5px solid transparent;
  transition: all 0.25s;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--sky);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card-media {
  margin: 0 -24px 18px;
  overflow: hidden;
  background: #e7f4f7;
}

.service-card-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--sky-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--teal-dark);
}

.service-card h3,
.svc-card h3,
.team-info h4 {
  font-family: "Playfair Display", serif;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--teal-dark);
  margin: 0 0 8px;
}

.service-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

.why-us {
  background: var(--teal-dark);
  padding: 80px 32px;
}

.why-us .section-title {
  color: var(--white);
}

.why-us .section-eyebrow {
  color: var(--gold);
}

.why-grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-num {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  min-width: 48px;
}

.why-text h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.why-text p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.cta-strip {
  background: var(--gold);
  padding: 52px 32px;
  text-align: center;
}

.cta-strip h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 3vw, 36px);
  color: white;
  margin: 0 0 12px;
}

.cta-strip p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 28px;
}

.btn-white {
  background: white;
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 32px;
  transition: all 0.2s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.about-hero,
.services-hero,
.contact-hero {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  padding: 80px 32px;
}

.about-hero-inner,
.mission-grid,
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  color: white;
  line-height: 1.2;
  margin: 0 0 20px;
}

.about-hero p,
.services-hero p,
.contact-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin: 0;
}

.services-hero,
.contact-hero {
  text-align: center;
}

.services-hero .section-eyebrow,
.contact-hero .section-eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.services-hero p,
.contact-hero p {
  max-width: 560px;
  margin: 0 auto;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 24px;
}

.about-card-wide {
  grid-column: span 2;
}

.about-card .icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.about-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: white;
  margin: 0 0 6px;
}

.about-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.mission-grid {
  align-items: start;
}

.mission-section .section-title {
  margin-bottom: 20px;
}

.mission-section p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0 0 16px;
}

.value-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--sky-light);
}

.value-list li:last-child {
  border: none;
}

.value-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--sky-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-check svg {
  width: 14px;
  height: 14px;
  color: var(--teal);
}

.value-list li span {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.5;
}

.team-section {
  background: var(--bg);
  padding: 80px 32px;
}

.team-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.team-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-avatar {
  height: 130px;
  background: linear-gradient(135deg, var(--teal-dark), var(--sky));
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar svg {
  width: 56px;
  height: 56px;
  color: rgba(255, 255, 255, 0.7);
}

.team-info {
  padding: 20px;
}

.team-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--teal-dark);
  margin: 0 0 4px;
}

.team-info span {
  font-size: 13px;
  color: var(--text-light);
}

.services-full-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.svc-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 0 32px 32px;
  border: 1.5px solid transparent;
  transition: all 0.25s;
  overflow: hidden;
}

.svc-card:hover {
  border-color: var(--sky);
  background: white;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.svc-card-media {
  margin: 0 -32px 22px;
  overflow: hidden;
  background: #e7f4f7;
}

.svc-card-media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.svc-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.svc-num {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--sky-light);
}

.svc-card h3 {
  font-size: 19px;
  color: var(--teal-dark);
  margin: 0;
}

.svc-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

.svc-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  background: var(--sky-light);
  color: var(--teal);
}

.contact-grid {
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

.contact-info h2,
.contact-form-wrap h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: var(--teal-dark);
  margin: 0 0 24px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--sky-light);
}

.info-item:last-child {
  border: none;
}

.info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--sky-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal-dark);
}

.info-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-dark);
  margin: 0 0 4px;
}

.info-item p,
.info-item a {
  font-size: 14px;
  color: var(--text-mid);
  text-decoration: none;
  line-height: 1.5;
  margin: 0;
}

.info-item a:hover {
  color: var(--sky);
}

.contact-action {
  margin-top: 28px;
}

.btn-block {
  width: 100%;
  border-radius: 12px;
  padding: 15px;
}

.contact-form-wrap {
  background: var(--bg);
  border-radius: 20px;
  padding: 40px;
}

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

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d0e8ee;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-dark);
  background: white;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sky);
}

.form-group textarea,
.booking-notes {
  resize: vertical;
  min-height: 110px;
}

.btn-submit {
  width: 100%;
  background: var(--teal-dark);
  color: white;
  font-size: 15px;
  font-weight: 600;
  padding: 15px;
  border-radius: 12px;
  transition: all 0.2s;
  margin-top: 4px;
}

.btn-submit:hover {
  background: var(--teal);
  transform: translateY(-1px);
}

.form-help,
.modal-help {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}

.form-help a,
.modal-help a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}

.success-state,
.modal-success {
  text-align: center;
  padding: 32px 20px;
}

.success-circle,
.check-circle {
  width: 72px;
  height: 72px;
  background: #e8f8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-circle svg,
.check-circle svg {
  width: 36px;
  height: 36px;
}

.success-state h3,
.modal-success h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--teal-dark);
  margin: 0 0 10px;
}

.success-state p,
.modal-success p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

.map-section {
  background: var(--bg);
  padding: 0 32px 80px;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 360px;
  background: var(--sky-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  text-align: center;
}

.map-container svg {
  width: 56px;
  height: 56px;
  color: var(--teal);
}

.map-container p {
  margin: 0;
  font-size: 16px;
  color: var(--text-mid);
}

.map-container small {
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
}

.map-link {
  margin-top: 12px;
  background: var(--teal-dark);
  color: white;
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 30, 40, 0.55);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: white;
  border-radius: 24px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  animation: modal-in 0.3s ease;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-header {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  padding: 32px 32px 28px;
  border-radius: 24px 24px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.modal-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: white;
  margin: 0;
}

.modal-header p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
  margin-bottom: 0;
}

.modal-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.modal-close svg {
  width: 18px;
  height: 18px;
}

.modal-body {
  padding: 32px;
}

.site-footer {
  background: var(--text-dark);
  padding: 64px 32px 28px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sky);
  margin: 0 0 18px;
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-contact p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--sky);
}

.footer-divider {
  max-width: 1200px;
  margin: 0 auto 24px;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 3000;
  background: #27ae60;
  color: white;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.35s;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.generic-entry {
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 40px;
}

.generic-header h1 {
  font-size: clamp(30px, 4vw, 46px);
  color: var(--teal-dark);
  margin: 0 0 18px;
}

.generic-content {
  color: var(--text-mid);
  line-height: 1.8;
  font-size: 16px;
}

.generic-content p:first-child {
  margin-top: 0;
}

.generic-content a {
  color: var(--teal);
}

@media (max-width: 900px) {
  .hero-inner,
  .about-hero-inner,
  .mission-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

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

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

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer-grid,
  .about-visual {
    grid-template-columns: 1fr;
  }

  .about-card-wide {
    grid-column: auto;
  }

  .hero-inner,
  .home-services,
  .care-gallery-section,
  .mission-section,
  .services-full,
  .contact-section,
  .content-page,
  .why-us,
  .team-section,
  .cta-strip,
  .services-hero,
  .contact-hero,
  .about-hero,
  .site-footer,
  .map-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-inner {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .hero-photo img,
  .care-gallery-media img,
  .service-card-media img,
  .svc-card-media img {
    height: 210px;
  }

  .care-gallery-card-wide .care-gallery-media img {
    height: 230px;
  }

  .modal-header,
  .modal-body,
  .contact-form-wrap,
  .generic-entry {
    padding: 24px;
  }

  .toast {
    right: 20px;
    left: 20px;
    bottom: 20px;
  }
}

/* RTL / Arabic */
[dir="rtl"] body,
body.lang-ar {
  font-family: "Noto Sans Arabic", "Inter", sans-serif;
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] .section-title,
[dir="rtl"] .hero-tag {
  font-family: "Noto Sans Arabic", "Playfair Display", serif;
}

[dir="rtl"] .nav-inner,
[dir="rtl"] .footer-grid,
[dir="rtl"] .hero-inner,
[dir="rtl"] .services-grid,
[dir="rtl"] .why-grid,
[dir="rtl"] .contact-grid,
[dir="rtl"] .form-row,
[dir="rtl"] .care-gallery-grid,
[dir="rtl"] .about-visual,
[dir="rtl"] .svc-grid,
[dir="rtl"] .team-grid,
[dir="rtl"] .values-grid {
  direction: rtl;
}

[dir="rtl"] .why-item,
[dir="rtl"] .info-item,
[dir="rtl"] .svc-card-header,
[dir="rtl"] .modal-header {
  flex-direction: row-reverse;
}

[dir="rtl"] .section-header,
[dir="rtl"] .hero-inner > div:first-child,
[dir="rtl"] .contact-info,
[dir="rtl"] .footer-brand,
[dir="rtl"] .generic-content {
  text-align: right;
}

[dir="rtl"] .nav-logo-text,
[dir="rtl"] .nav-links {
  direction: rtl;
}

[dir="rtl"] .toast {
  right: auto;
  left: 32px;
}

@media (max-width: 600px) {
  [dir="rtl"] .toast {
    left: 20px;
    right: 20px;
  }
}
