:root {
  --cream: #faf6f0;
  --warm-white: #fffdf9;
  --terracotta: #c2714f;
  --deep-green: #1e3a2f;
  --sage: #6b8f71;
  --gold: #d4a853;
  --charcoal: #2c2c2c;
  --light-sage: #edf2ee;
  --border: #ddd5c8;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 55px;
  object-fit: contain;

  /* makes it pop */
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));

  /* smooth rendering */
  image-rendering: auto;
}

.logo img:hover {
  transform: scale(1.05);
  transition: 0.3s ease;
}

.logo-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1e3a2f; /* your theme green */
  letter-spacing: 0.05em;
}

/* ─── NAV ─────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

#navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--deep-green);
  line-height: 1.1;
}

.nav-logo span {
  display: block;
  font-size: 0.65rem;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  color: var(--terracotta);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep-green);
  transition: all 0.3s;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--terracotta);
}

.nav-links a.active-nav {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.12);

  border: 1px solid rgba(212, 175, 55, 0.25);

  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.05), 0 8px 20px rgba(0, 0, 0, 0.08);

  transform: translateY(-1px);
}

.logo-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.nav-links a.active-nav i {
  color: var(--gold);
}

.nav-cta {
  background: var(--deep-green) !important;
  color: #fff !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  letter-spacing: 0.04em;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--terracotta) !important;
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(30, 58, 47, 0.88) 0%,
    rgba(30, 58, 47, 0.6) 55%,
    rgba(30, 58, 47, 0.2) 100%
  );
}

.hero-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 120px 4rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--deep-green);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.5rem;
  border-radius: 2px;
  animation: fadeUp 0.6s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--deep-green);
  border-radius: 50%;
  display: inline-block;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s ease 0.1s both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.3s both;
}

.btn-primary {
  background: var(--terracotta);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: var(--deep-green);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* Hero right column */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  animation: fadeRight 0.8s ease 0.2s both;
}

.hero-stat-block {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 1.2rem 1.6rem;
  gap: 0;
}

.hero-stat-item {
  flex: 1;
  text-align: center;
}

.hero-stat-item strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-item span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 4px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}

.hero-card:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.hc-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.hc-info {
  flex: 1;
}

.hc-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--deep-green);
}

.hc-sub {
  font-size: 0.78rem;
  color: #777;
  margin-top: 0.1rem;
}

.hc-arrow {
  color: var(--terracotta);
  font-size: 1.1rem;
  font-weight: 600;
}

/* Hero scroll hint */
.hero-scroll-hint {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 2rem;
  animation: fadeUp 1s ease 0.5s both;
}

.hero-scroll-hint span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* ─── MISSION STRIP ───────────────────────────────── */
.mission-strip {
  background: linear-gradient(rgba(30, 58, 47, 0.92), rgba(30, 58, 47, 0.92)),
    url("images/care-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 3.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items: center;
}

.mission-item {
  padding: 0 2rem;
  text-align: center;
}

.mission-divider {
  background: rgba(255, 255, 255, 0.15);
  height: 60px;
  align-self: center;
}

.mission-icon {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-icon i {
  font-size: 1.2rem;
  color: var(--gold);
}

.mission-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.85rem;
  line-height: 1.5;
}

.mission-text strong {
  display: block;
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

/* ─── SECTION SHARED ──────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--deep-green);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--terracotta);
}

/* ─── ABOUT ───────────────────────────────────────── */
.about-section {
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  background: var(--cream);
}

.about-img-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.about-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--deep-green);
  color: #fff;
  padding: 0.8rem 1.2rem;
  border-radius: 4px;
  text-align: center;
}

.about-img-badge strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--gold);
}

.about-img-badge span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.about-floater {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: var(--terracotta);
  color: #fff;
  padding: 1rem 1.4rem;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.floater-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.floater-label {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 0.3rem;
}

.about-image-col {
  position: relative;
}

.about-body {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.about-body p {
  margin-bottom: 1rem;
}

.commit-list {
  margin-bottom: 1.5rem;
}

.commit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--charcoal);
}

.commit-item:last-child {
  border-bottom: none;
}

.commit-check {
  width: 22px;
  height: 22px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 0.75rem;
}

.vision-box {
  background: var(--deep-green);
  color: #fff;
  padding: 1.5rem 1.8rem;
  border-radius: 4px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.vision-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.vision-box h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.vision-box p {
  font-size: 0.88rem;
  line-height: 1.65;
  opacity: 0.88;
}

/* ─── SERVICES ────────────────────────────────────── */
.services-section {
  background: var(--warm-white);
  padding: 6rem 4rem;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-header p {
  font-size: 1rem;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: default;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}

.service-img-wrap {
  position: relative;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.service-card:hover .service-img {
  transform: scale(1.04);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 58, 47, 0.5), transparent);
}

.service-num {
  position: absolute;
  bottom: 0.8rem;
  right: 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
}

.service-body {
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--deep-green);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.service-tags span {
  font-size: 0.68rem;
  font-weight: 500;
  background: var(--light-sage);
  color: var(--deep-green);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  letter-spacing: 0.02em;
}

/* Top accent color per card */
.service-card:nth-child(1) {
  border-top: 3px solid var(--sage);
}
.service-card:nth-child(2) {
  border-top: 3px solid var(--terracotta);
}
.service-card:nth-child(3) {
  border-top: 3px solid var(--gold);
}
.service-card:nth-child(4) {
  border-top: 3px solid var(--deep-green);
}
.service-card:nth-child(5) {
  border-top: 3px solid var(--terracotta);
}
.service-card:nth-child(6) {
  border-top: 3px solid var(--sage);
}
.service-card:nth-child(7) {
  border-top: 3px solid var(--gold);
}
.service-card:nth-child(8) {
  border-top: 3px solid var(--deep-green);
}
.book-service-btn {
  margin: 18px auto 12px;
  width: calc(100% - 12px);
  border: none;
  border-radius: 16px;
  background: var(--deep-green);
  color: white;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(30, 58, 47, 0.18);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  margin-top: auto;
}

.book-service-btn:hover {
  transform: translateY(-3px);

  background: var(--terracotta);

  box-shadow: 0 14px 30px rgba(30, 58, 47, 0.24);
}

/* ─── QUOTE BREAK ─────────────────────────────────── */
.quote-break {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qb-image-wrap {
  position: absolute;
  inset: 0;
}

.qb-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 58, 47, 0.82);
}

.qb-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 4rem;
}

.qb-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 6rem;
  color: var(--gold);
  line-height: 0.5;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.qb-content blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  color: #fff;
  font-weight: 400;
  line-height: 1.4;
  max-width: 680px;
  margin: 0 auto 2rem;
}

.qb-cta {
  margin-top: 2rem;
}

/* ─── PROCESS ─────────────────────────────────────── */
.process-section {
  padding: 6rem 4rem;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.process-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.process-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(250, 246, 240, 0.94);
}

.process-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 4rem;
}

.process-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: start;
}

.process-line {
  display: none; /* decorative – remove or use JS for a real line */
}

.process-step {
  position: relative;
  text-align: center;
}

.process-step::after {
  content: "→";
  position: absolute;
  top: 1rem;
  right: -1rem;
  color: var(--border);
  font-size: 1.6rem;
}

.process-step:last-child::after {
  display: none;
}

.ps-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ps-content {
  text-align: left;
}

.ps-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.ps-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--deep-green);
  margin-bottom: 0.5rem;
}

.ps-content p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: #666;
}

.process-cta {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 3rem;
}

/* ─── CONTACT ─────────────────────────────────────── */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 600px;
}

.contact-image-col {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.contact-image-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 47, 0.92) 0%,
    rgba(30, 58, 47, 0.72) 100%
  );
}

.contact-img-content {
  position: relative;
  z-index: 1;
  padding: 4rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-img-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.contact-item-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.ci-label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.contact-form-col {
  background: var(--cream);
  padding: 4rem;
  display: flex;
  align-items: center;
}

.contact-form-box {
  width: 100%;
  background: #fff;
  border-radius: 4px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.cfb-header {
  margin-bottom: 1.8rem;
}

.cfb-header h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--deep-green);
  margin-bottom: 0.3rem;
}

.cfb-header p {
  font-size: 0.82rem;
  color: #888;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  background: var(--cream);
  color: var(--charcoal);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-submit {
  width: 100%;
  padding: 0.95rem;
  background: var(--terracotta);
  color: #fff;
  border: none;
  border-radius: 2px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.form-submit:hover {
  background: var(--deep-green);
  transform: translateY(-1px);
}

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: #111;
  padding: 3rem 4rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: right;
  line-height: 1.6;
}

/* ─── SCROLL REVEAL ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─── TOAST ───────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--deep-green);
  color: #fff;
  padding: 1rem 1.6rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s;
  z-index: 999;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ─── ANIMATIONS ──────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ═══════════════════════════════════════════════════════
   COMPLETE OVERFLOW & MOBILE FIX — paste at the very
   bottom of homestyle.css, replacing any previous
   mobile fix blocks you added
═══════════════════════════════════════════════════════ */

/* ── Global overflow lock ── */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Every element must stay inside the viewport */
* {
  max-width: 100%;
}

/* ── Fix the #1 culprit: about-floater bleeds right ── */
.about-floater {
  position: absolute;
  top: 1.5rem;
  right: 1rem; /* was -1.5rem — that pushes outside viewport */
  left: auto;
  z-index: 2;
}

/* ════════════════════════════
   TABLET  (max 1024px)
════════════════════════════ */
@media (max-width: 1024px) {
  #navbar {
    padding: 1rem 2rem;
  }
  .hero-body {
    padding: 100px 2rem 3rem;
    gap: 2rem;
  }
  .about-section {
    padding: 4rem 2rem;
  }
  .services-section {
    padding: 4rem 2rem;
  }
  .process-section {
    padding: 4rem 2rem;
  }
  .contact-img-content {
    padding: 3rem 2rem;
  }
  .contact-form-col {
    padding: 3rem 2rem;
  }
  footer {
    padding: 2.5rem 2rem;
  }
}

/* ════════════════════════════
   MOBILE  (max 768px)
════════════════════════════ */
@media (max-width: 768px) {
  /* NAV */
  /* #navbar {
    padding: 1rem 1.5rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid var(--border);
    display: none;
    z-index: 99;
  }
  .nav-links.show {
    display: flex;
  }
  .nav-links a {
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .nav-cta {
    border-radius: 0;
    margin: 0;
  } */

  /* HERO */
  .hero {
    min-height: 100svh;
    overflow: hidden;
  }

  .hero-body {
    grid-template-columns: 1fr;
    padding: 100px 1.5rem 2.5rem;
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-left {
    width: 100%;
  }
  .hero-right {
    width: 100%;
  }

  .hero-title {
    font-size: 2.6rem;
  }
  .hero-desc {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  /* STAT BLOCK — horizontal 3-col grid */
  .hero-stat-block {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    padding: 1rem 0.8rem;
    width: 100%;
    box-sizing: border-box;
  }
  .hero-stat-item {
    text-align: center;
    padding: 0;
  }
  .hero-stat-item strong {
    font-size: 1.3rem;
  }
  .hero-stat-item span {
    font-size: 0.58rem;
    letter-spacing: 0.04em;
  }
  .hero-stat-divider {
    width: 1px;
    height: 36px;
  }

  /* HERO CARDS */
  .hero-cards {
    gap: 0.6rem;
  }
  .hero-card {
    padding: 0.8rem 1rem;
  }
  .hc-icon {
    font-size: 1.3rem;
  }
  .hc-title {
    font-size: 0.82rem;
  }
  .hc-sub {
    font-size: 0.7rem;
  }

  .hero-scroll-hint {
    display: none;
  }

  /* MISSION STRIP */
  .mission-strip {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 3rem 1.5rem;
  }
  .mission-divider {
    display: none;
  }
  .mission-item {
    padding: 0;
  }

  /* ABOUT */
  .about-section {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 1.5rem;
    overflow: visible;
  }
  .about-image-col {
    position: relative;
    width: 100%;
  }
  .about-img-frame img {
    height: 300px;
  }

  /* Floater stays inside on mobile */
  .about-floater {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.7rem 1rem;
  }
  .floater-num {
    font-size: 1.6rem;
  }
  .floater-label {
    font-size: 0.6rem;
  }

  /* SERVICES */
  .services-section {
    padding: 4rem 1.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* QUOTE BREAK */
  .qb-content {
    padding: 3rem 1.5rem;
  }

  /* PROCESS */
  .process-section {
    padding: 4rem 1.5rem;
  }
  .process-track {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .process-step {
    text-align: left;
  }
  .process-step::after {
    display: none;
  }

  /* CONTACT */
  .contact-section {
    grid-template-columns: 1fr;
  }
  .contact-image-col {
    min-height: 280px;
    max-height: 320px;
  }
  .contact-img-content {
    padding: 2rem 1.5rem;
  }
  .contact-form-col {
    padding: 2rem 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  /* FOOTER */
  footer {
    padding: 2.5rem 1.5rem;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-copy {
    text-align: center;
  }
}

/* ════════════════════════════
   SMALL PHONES  (max 480px)
════════════════════════════ */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.1rem;
  }
  .section-title {
    font-size: 1.75rem;
  }

  .hero-stat-item strong {
    font-size: 1.1rem;
  }
  .hero-stat-item span {
    font-size: 0.52rem;
  }

  /* Hide cards on very small screens — too cramped */
  .hero-cards {
    display: none;
  }

  /* Simple text strip replacement */
  .hero-right::after {
    content: "👴 Elderly  •  👶 Childcare  •  🏥 Hospital";
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    text-align: center;
    padding: 0.5rem 0 1rem;
    letter-spacing: 0.02em;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-track {
    grid-template-columns: 1fr;
  }

  .contact-form-box {
    padding: 1.5rem 1.2rem;
  }

  .about-floater {
    top: 0.5rem;
    right: 0.5rem;
  }
}

/* SIGN OUT MODAL */
.logout-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  padding: 20px;
}

.logout-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.logout-modal {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 28px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);

  transform: translateY(20px) scale(0.96);
  transition: 0.3s ease;
}

.logout-modal-overlay.show .logout-modal {
  transform: translateY(0) scale(1);
}

.logout-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(30, 58, 47, 0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 2rem;
}

.logout-modal h3 {
  font-size: 1.7rem;
  margin-bottom: 10px;
  color: #1e3a2f;
}

.logout-modal p {
  color: #667085;
  line-height: 1.7;
  font-size: 0.96rem;
}

.logout-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.logout-actions button {
  flex: 1;
  border: none;
  border-radius: 14px;
  padding: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.logout-cancel {
  background: #f3f4f6;
  color: #111827;
}

.logout-cancel:hover {
  background: #e5e7eb;
}

.logout-confirm {
  background: #1e3a2f;
  color: white;
}

.logout-confirm:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.logout-icon i {
  font-size: 2rem;
  color: #1e3a2f;
}

.account-dropdown {
  position: relative;
}

.account-btn {
  background: transparent;
  border: none;

  display: flex;
  align-items: center;
  gap: 10px;

  font: inherit;
  color: inherit;

  cursor: pointer;

  padding: 12px 16px;
  border-radius: 14px;

  transition: 0.3s ease;
}

.account-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.account-menu {
  position: absolute;
  top: 110%;
  right: 0;

  min-width: 220px;

  background: white;

  border-radius: 18px;

  padding: 10px;

  display: none;
  flex-direction: column;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);

  z-index: 999;
}

.account-menu a {
  padding: 12px 14px;

  border-radius: 12px;

  text-decoration: none;
  color: #1e3a2f;

  display: flex;
  align-items: center;
  gap: 12px;

  transition: 0.25s ease;
}

.account-menu a:hover {
  background: rgba(30, 58, 47, 0.06);
}

.show-account-menu {
  display: flex;
}

@media (max-width: 1200px) {
  .account-dropdown {
    width: 100%;
  }

  .account-menu {
    position: static;
    width: 100%;
    min-width: 100%;
    background: rgba(30, 58, 47, 0.03);
    border-radius: 14px;
    margin-top: 6px;
    padding: 6px;
    box-shadow: none;
    display: none;
  }

  .account-menu a {
    width: 100%;
    padding: 13px 14px;
    font-size: 0.95rem;
  }

  .show-account-menu {
    display: flex;
  }
}
