:root {
  --bg: #f3f4f6;
  --bg-alt: #e5e7eb;
  --card-bg: #ffffff;
  --accent: #2563eb;
  --accent-soft: rgba(37, 99, 235, 0.08);
  --text: #111827;
  --muted: #6b7280;
  --border-subtle: #e5e7eb;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  background: rgba(248, 250, 252, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: inherit;
}

.brand-icon {
  height: 28px;
  width: auto;
  display: block;
}

.brand-text {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.11em;
  color: #111827;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--accent-soft);
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 700;
}

/* HERO */

.hero {
  background: radial-gradient(circle at top left, #eff6ff, #f9fafb 50%, #f3f4f6 100%);
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  max-width: 700px;
}

.hero-text h1 {
  font-size: clamp(1.95rem, 3vw, 2.5rem);
  line-height: 1.15;
  margin: 0 0 0.9rem;
}

.hero-text p {
  color: var(--muted);
  margin-bottom: 1.1rem;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--muted);
}

/* SECTIONS */

.section {
  padding: 3.2rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

.section-intro {
  max-width: 42rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

/* GRID & CARDS */

.grid {
  display: grid;
  gap: 1.4rem;
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.2rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.card ul {
  padding-left: 1.1rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

/* ABOUT */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 2rem;
}

.about-card {
  height: 100%;
}

/* SERVICE AREA */

.service-area-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: start;
}

.tag-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag-list li {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.86rem;
}

.small-note {
  font-size: 0.85rem;
  color: var(--muted);
}

/* BOOKING */

.book-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: start;
}

.quick-facts ul {
  padding-left: 1.1rem;
  margin: 0;
  color: var(--muted);
}

.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn.primary {
  background: linear-gradient(to right, #2563eb, #4f46e5);
  color: #eff6ff;
  font-weight: 700;
}

.btn.ghost {
  background: #ffffff;
  border-color: var(--border-subtle);
  color: #111827;
  font-weight: 700;
}

.btn.primary:hover {
  filter: brightness(1.05);
}

.btn.ghost:hover {
  background: #f3f4f6;
}

/* FORMS BASE */

.form-wrap {
  max-width: 760px;
}

.form-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  gap: 0.95rem;
  margin-top: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.9rem;
}

.label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.input,
.select,
.textarea {
  width: 100%;
  box-sizing: border-box;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  padding: 0.85rem 0.95rem;
  font-size: 1rem;
  color: var(--text);
  outline: none;
}

.textarea {
  min-height: 160px;
  resize: vertical;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.6rem;
}

.helper-text {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0.75rem 0 0 0;
}

/* REQUEST PAGE */

.request-hero {
  background: #f8fbff;
  border-bottom: 1px solid var(--border-subtle);
}

.request-hero-inner {
  padding: 1.5rem 0 1.2rem;
}

.request-care-logo-wrap {
  margin-bottom: 0.55rem;
}

.request-care-logo {
  display: block;
  width: auto;
  height: 92px;
  max-width: 100%;
}

.request-hero h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.08;
  color: #111827;
}

.request-hero p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.request-page-section {
  padding-top: 1.6rem;
}

.request-support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.72fr);
  gap: 1.4rem;
  align-items: start;
}

.request-support-card {
  background: var(--card-bg);
  border-radius: 22px;
  padding: 1.4rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.request-support-card h2 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
}

.request-intro {
  margin: 0 0 1.15rem;
  color: var(--muted);
}

.request-support-form {
  display: block;
}

.request-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.request-form-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.request-form-group-full {
  grid-column: 1 / -1;
}

.request-form-group label {
  display: block;
  margin-bottom: 0.42rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.request-form-group input,
.request-form-group select,
.request-form-group textarea {
  display: block;
  width: 100%;
  min-width: 0;
  border-radius: 14px;
  border: 1px solid #cfd8e3;
  background: #ffffff;
  padding: 0.88rem 0.95rem;
  font-size: 1rem;
  color: var(--text);
  outline: none;
}

.request-form-group select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #64748b 50%),
    linear-gradient(135deg, #64748b 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}

.request-form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.request-form-group input:focus,
.request-form-group select:focus,
.request-form-group textarea:focus {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}

.request-form-note {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.request-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.request-helper {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.request-status {
  display: none;
  margin-top: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.request-status.error {
  display: block;
  background: #fff1f2;
  color: #9f1239;
  border: 1px solid #fecdd3;
}

.request-side-card {
  background: #f8fbff;
  border: 1px solid #dbe4ee;
  border-radius: 20px;
  padding: 1.1rem 1rem;
  box-shadow: var(--shadow-soft);
}

.request-side-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.05rem;
}

.request-side-card p {
  margin: 0 0 0.85rem;
  color: #374151;
}

.request-side-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: #374151;
  line-height: 1.55;
}

.request-side-card li + li {
  margin-top: 0.35rem;
}

.honeypot {
  display: none !important;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: #f9fafb;
  padding: 1.4rem 0 1.6rem;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  color: var(--muted);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .about-grid,
  .book-grid,
  .service-area-grid,
  .request-support-layout {
    grid-template-columns: 1fr;
  }

  .request-care-logo {
    height: 78px;
  }
}

@media (max-width: 800px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }

  .nav {
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
  }

  .form-row,
  .request-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-actions,
  .book-actions,
  .form-actions,
  .request-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .book-actions .btn,
  .form-actions .btn,
  .request-form-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .request-hero-inner {
    padding: 1.15rem 0 1rem;
  }

  .request-care-logo {
    height: 58px;
  }
}