/*
  WELLKARE CONNECT WEBSITE COLORS
  To change the site colors later, edit only these CSS variables.
*/
:root {
  --pink-700: #be185d;
  --pink-600: #db2777;
  --pink-500: #ec4899;
  --pink-300: #f9a8d4;
  --pink-100: #fce7f3;
  --pink-50: #fff7fb;
  --white: #ffffff;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #f2d6e4;
  --shadow: 0 24px 70px rgba(190, 24, 93, 0.14);
  --radius: 26px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

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

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--pink-700);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 10;
}

.skip-link:focus {
  top: 16px;
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.05em;
  box-shadow: 0 12px 26px rgba(236, 72, 153, 0.28);
}

.brand strong {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a {
  color: #374151;
}

.nav-links a:hover {
  color: var(--pink-700);
}

.nav-button {
  background: var(--pink-600);
  color: var(--white) !important;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 22px rgba(219, 39, 119, 0.2);
}

.menu-toggle {
  display: none;
  border: 0;
  color: var(--pink-700);
  background: var(--pink-100);
  border-radius: 14px;
  padding: 10px 13px;
  cursor: pointer;
}

.section-pad {
  padding: 88px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, var(--pink-100), transparent 34%),
    radial-gradient(circle at 88% 18%, #ffe4ef, transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--pink-50) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -180px auto;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  background: rgba(236, 72, 153, 0.09);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink-700);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow.light {
  color: #ffe4ef;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.3rem, 6vw, 4.7rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

h3 {
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.hero-text {
  color: #4b5563;
  font-size: 1.16rem;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 28px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.btn.primary {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
  color: var(--white);
  box-shadow: 0 18px 34px rgba(219, 39, 119, 0.25);
}

.btn.secondary {
  background: var(--white);
  color: var(--pink-700);
  border: 1px solid var(--line);
}

.btn.full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--pink-700);
  font-weight: 700;
  font-size: 0.86rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.van-illustration {
  background: linear-gradient(160deg, var(--pink-100), var(--white));
  border-radius: 26px;
  padding: 22px;
}


.photo-card {
  padding: 18px;
}

.hero-photo {
  width: 100%;
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(190, 24, 93, 0.12);
}

.contact-card {
  margin-top: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  display: grid;
  gap: 7px;
}

.contact-card p {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 0;
}

.contact-card a {
  color: var(--pink-700);
  font-weight: 800;
}

.mini-request {
  display: inline-flex;
  justify-content: center;
  margin-top: 10px;
  padding: 11px 14px;
  border-radius: 999px;
  background: var(--pink-600);
  color: var(--white) !important;
  font-size: 0.92rem;
  box-shadow: 0 12px 22px rgba(219, 39, 119, 0.18);
}

.announcement {
  background: var(--pink-700);
  color: var(--white);
}

.announcement-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 18px 0;
  text-align: center;
}

.announcement span {
  color: #ffe4ef;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
}

.prose p {
  color: #4b5563;
  font-size: 1.08rem;
}

.soft-bg {
  background: var(--pink-50);
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.cards,
.rate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.rate-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 18px 44px rgba(190, 24, 93, 0.08);
}

.service-card p,
.rate-card p {
  color: var(--muted);
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--pink-100);
  color: var(--pink-700);
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 18px;
}

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

.rate-card.featured {
  background: linear-gradient(160deg, var(--pink-600), var(--pink-700));
  color: var(--white);
}

.rate-card.featured p {
  color: #ffe4ef;
}

.price {
  font-size: 1.5rem;
  color: var(--pink-700) !important;
  font-weight: 900;
  margin-bottom: 10px;
}

.featured .price {
  color: var(--white) !important;
}

.fine-print {
  color: var(--muted);
  text-align: center;
  max-width: 820px;
  margin: 24px auto 0;
}

.pink-band {
  background:
    radial-gradient(circle at 8% 22%, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(135deg, var(--pink-600), var(--pink-700));
  color: var(--white);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 48px;
  align-items: start;
}

.booking-grid h2 {
  color: var(--white);
}

.booking-grid p {
  color: #ffe4ef;
  font-size: 1.05rem;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-list a {
  display: inline-flex;
  width: fit-content;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
}

.booking-form {
  background: var(--white);
  color: var(--ink);
  border-radius: 30px;
  padding: 26px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  color: #374151;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--pink-50);
  outline: none;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--pink-500);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted) !important;
  font-size: 0.88rem !important;
}

.email-request-card h3 {
  margin-bottom: 4px;
}

.email-card-text {
  color: var(--muted) !important;
  font-size: 1rem !important;
}


.button-stack {
  display: grid;
  gap: 12px;
}

.email-fallback {
  margin: 0;
  color: var(--muted) !important;
  font-size: 0.95rem !important;
}

.email-fallback strong {
  color: var(--pink-700);
}

.request-details {
  background: var(--pink-50);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  display: grid;
  gap: 8px;
}

.request-details strong {
  color: var(--pink-700);
}

.request-details span {
  color: #4b5563;
  font-weight: 700;
}

.site-footer {
  background: #111827;
  color: var(--white);
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.6fr;
  gap: 34px;
}

.footer-brand .brand-mark {
  box-shadow: none;
}

.footer-brand small,
.site-footer p,
.site-footer span {
  color: #d1d5db;
}

.site-footer h3 {
  margin-bottom: 12px;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 8px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 34px;
  padding-top: 20px;
  color: #d1d5db;
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--pink-50);
  padding: 24px;
}

.success-card {
  max-width: 640px;
  background: var(--white);
  border-radius: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 36px;
  text-align: center;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 8px;
  }

  .hero-grid,
  .split,
  .booking-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards,
  .rate-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .section-pad {
    padding: 64px 0;
  }

  .brand small {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .cards,
  .rate-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .rate-card,
  .booking-form {
    padding: 22px;
  }
}
