/* ===================================================
   Loving Seniors Care Home LLC — Main Stylesheet
   =================================================== */

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

/* Honeypot spam protection — must be completely hidden */
input[name="bot-field"],
label[hidden],
form[hidden] {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  position: absolute !important;
  left: -9999px !important;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #1a2e4a;
  line-height: 1.65;
}

/* ── NAV ─────────────────────────────────────────── */

header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 3px solid #2a9d8f;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

nav {
  max-width: 1000px;
  margin: 0 auto;
  padding: 13px 24px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-brand {
  font-family: 'Dancing Script', cursive;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1565c0;
  text-decoration: none;
  margin-right: auto;
}

nav a:not(.nav-brand) {
  text-decoration: none;
  color: #1a3a5c;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}

nav a:not(.nav-brand):hover {
  background: #2a9d8f;
  color: #fff;
}

/* ── HERO ─────────────────────────────────────────── */

.hero {
  background: linear-gradient(
    180deg,
    #4a9fc4 0%,
    #7ec8e3 18%,
    #a8dff5 38%,
    #c5eefa 56%,
    #ceedc8 74%,
    #aed9a7 90%,
    #96cc91 100%
  );
  padding: 80px 24px 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  filter: blur(22px);
  pointer-events: none;
}

.hero::before { width: 300px; height: 75px; top: 28px; left: 8%; }
.hero::after  { width: 220px; height: 60px; top: 50px; right: 11%; }

.hero-inner { position: relative; z-index: 1; }

.hero-logo {
  width: 220px;
  height: auto;
  display: block;
  margin: 0 auto 6px;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.15));
}

.hero-icon {
  font-size: 4.5rem;
  line-height: 1;
  display: block;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.14));
}

.hero h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 3.5rem;
  font-weight: 700;
  color: #122b50;
  line-height: 1.1;
  margin-top: 10px;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.5);
}

.hero-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 8px 0 4px;
}

.hero-sub::before,
.hero-sub::after {
  content: '';
  width: 52px;
  height: 1px;
  background: #122b50;
  opacity: 0.4;
}

.hero-sub span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #122b50;
  opacity: 0.65;
}

.hero-green-line {
  width: 140px;
  height: 5px;
  margin: 4px auto 16px;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, #43a047 30%, #2e7d32 65%, transparent);
}

.hero-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: 1.55rem;
  font-weight: 600;
  color: #1b5e20;
}

/* ── INTRO STRIP ──────────────────────────────────── */

.intro-strip {
  background: #ffffff;
  padding: 44px 24px;
  text-align: center;
}

.intro-strip p {
  max-width: 740px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #2d4a6a;
}

/* ── CONTAINER ────────────────────────────────────── */

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── ABOUT (MISSION & VISION) ─────────────────────── */

.about {
  background: #f0f8ff;
  padding: 64px 24px 70px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mission-col,
.vision-col {
  background: #fff;
  border-radius: 14px;
  padding: 30px 28px;
  box-shadow: 0 4px 20px rgba(26, 58, 92, 0.08);
}

.script-heading {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}

.script-heading.pink { color: #c0185a; }
.script-heading.blue { color: #1565c0; }

.col-text {
  font-size: 0.97rem;
  color: #2d4a6a;
}

.col-text p + p { margin-top: 12px; }
.col-text strong { color: #1a2e4a; }
.col-text .highlight { color: #1565c0; font-weight: 600; }

/* ── SERVICES ─────────────────────────────────────── */

.services {
  background: linear-gradient(135deg, #e0f2f1 0%, #f1f8e9 100%);
  padding: 64px 24px 72px;
}

.services-header {
  text-align: center;
  margin-bottom: 36px;
}

.services-banner {
  display: inline-block;
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #2a9d8f 0%, #1b7a6e 100%);
  padding: 12px 44px;
  border-radius: 40px;
  box-shadow: 0 4px 16px rgba(42, 157, 143, 0.32);
}

.checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  list-style: none;
  flex: 1;
}

.services-layout {
  display: flex;
  align-items: center;
  gap: 36px;
}

.services-img-wrap {
  flex-shrink: 0;
  width: 340px;
}

.services-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(26, 58, 92, 0.18);
  display: block;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a3a5c;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(42, 157, 143, 0.22);
  border-radius: 8px;
  padding: 12px 16px;
}

.checklist li::before {
  content: '✓';
  color: #2a9d8f;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── APPOINTMENT ─────────────────────────────────── */

.appointment {
  background: linear-gradient(180deg, #f8fcff 0%, #eef8ff 100%);
  padding: 64px 24px 72px;
}

.appointment-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.appointment-copy,
.appointment-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(26, 58, 92, 0.08);
}

.appointment-copy h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.4rem;
  font-weight: 700;
  color: #1565c0;
  margin-bottom: 14px;
}

.appointment-copy p {
  color: #2d4a6a;
  font-size: 0.97rem;
}

.appointment-points {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.appointment-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1a3a5c;
  font-weight: 600;
}

.appointment-points li::before {
  content: '•';
  color: #2a9d8f;
  font-size: 1.25rem;
  line-height: 1;
}

.appointment-form {
  display: grid;
  gap: 18px;
}

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

.appointment-form label {
  display: grid;
  gap: 8px;
  color: #1a3a5c;
  font-size: 0.92rem;
  font-weight: 700;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  border: 1px solid #c7dff1;
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  color: #1a2e4a;
  background: #fbfdff;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  outline: 2px solid rgba(42, 157, 143, 0.18);
  border-color: #2a9d8f;
}

.appointment-form textarea {
  resize: vertical;
  min-height: 130px;
}

.appointment-form .full-width {
  grid-column: 1 / -1;
}

.appointment-form button {
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  background: linear-gradient(135deg, #2a9d8f 0%, #1565c0 100%);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  justify-self: start;
  box-shadow: 0 8px 18px rgba(21, 101, 192, 0.2);
}

.appointment-form button:hover {
  filter: brightness(1.03);
}

.form-note {
  color: #5f7894;
  font-size: 0.88rem;
}

/* ── CONTACT ──────────────────────────────────────── */

.contact {
  background: #e8f4fd;
  padding: 64px 24px 72px;
}

.contact h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.4rem;
  font-weight: 700;
  color: #1565c0;
  margin-bottom: 22px;
}

.contact-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 34px;
  box-shadow: 0 4px 20px rgba(26, 58, 92, 0.08);
  max-width: 620px;
}

.contact-intro {
  color: #2d4a6a;
  margin-bottom: 22px;
  font-size: 0.97rem;
}

.contact-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.contact-items li {
  display: flex;
  gap: 10px;
  font-size: 0.97rem;
  color: #1a3a5c;
}

.contact-items .label {
  font-weight: 700;
  color: #2a9d8f;
  min-width: 72px;
  flex-shrink: 0;
}

.contact-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #cce4f7;
  color: #1565c0;
  font-size: 0.92rem;
  font-style: italic;
}

/* ── FOOTER ───────────────────────────────────────── */

footer {
  background: #122b50;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 24px 20px;
  font-size: 0.88rem;
}

footer strong { color: #fff; }

/* ── RESPONSIVE ───────────────────────────────────── */

@media (max-width: 680px) {
  .hero h1 { font-size: 2.4rem; }
  .two-col { grid-template-columns: 1fr; }
  nav { flex-wrap: wrap; gap: 8px; }
  .nav-brand { width: 100%; }
  .appointment-layout { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .appointment-copy,
  .appointment-card { padding: 24px 20px; }
  .contact-card { padding: 24px 20px; }
  .services-layout { flex-direction: column; }
  .services-img-wrap { width: 100%; }
}
