/*
 * Fox Haven of Yorkville — Main Stylesheet
 * Boutique Residential Assisted Living | Yorkville, IL
 */

/* ===========================
   CSS Custom Properties
   =========================== */
:root {
  --green:        #2C4A3E;
  --green-dark:   #1E3329;
  --green-light:  #3A6154;
  --gold:         #C9A84C;
  --gold-dark:    #A88A38;
  --gold-light:   #DFC070;
  --cream:        #F5F0E8;
  --cream-dark:   #EDE5D6;
  --white:        #FFFFFF;
  --gray-50:      #FAFAF8;
  --gray-100:     #F2EFE9;
  --gray-200:     #E6E0D4;
  --gray-300:     #D0C8BA;
  --gray-400:     #B0A898;
  --gray-500:     #7A7068;
  --text-dark:    #1E1A14;
  --text-medium:  #4A4238;
  --text-light:   #7A7068;
  --star:         #D4A017;

  --font-head: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;

  --shadow-sm: 0 1px 3px rgba(44,74,62,0.08);
  --shadow-md: 0 4px 18px rgba(44,74,62,0.10);
  --shadow-lg: 0 8px 36px rgba(44,74,62,0.14);
  --shadow-xl: 0 16px 52px rgba(44,74,62,0.18);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --ease: 0.28s ease;
  --ease-fast: 0.14s ease;

  --max-w: 1160px;
  --hh: 74px;
}

/* ===========================
   Reset
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); line-height: 1.68; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
ul   { list-style: none; }
a    { color: var(--gold-dark); text-decoration: none; transition: color var(--ease-fast); }
a:hover { color: var(--gold); }

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; color: var(--text-dark); }
h1 { font-size: clamp(2.2rem, 5.2vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: var(--text-medium); }
p:last-child { margin-bottom: 0; }

/* ===========================
   Layout
   =========================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section       { padding: 88px 0; }
.section--alt  { background: var(--cream); }
.section--dark {
  background: var(--green-dark);
  padding: 88px 0;
}
.section--cta  {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 55%, var(--green-light) 100%);
  padding: 96px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section--cta::before {
  content: '';
  position: absolute;
  top: -50%; right: -8%;
  width: 520px; height: 520px;
  border: 50px solid rgba(201,168,76,0.07);
  border-radius: 50%;
  pointer-events: none;
}
.section--cta h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; }
.section--cta p  { color: rgba(255,255,255,0.72); font-size: 1.06rem; margin-bottom: 30px; max-width: 540px; margin-left: auto; margin-right: auto; }

.section__header { margin-bottom: 54px; }
.section__header h2 { margin-bottom: 14px; }
.section__header p  { font-size: 1.04rem; color: var(--text-medium); line-height: 1.74; max-width: 640px; }

.section__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease-fast);
  white-space: nowrap;
  text-decoration: none;
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}
.btn:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(201,168,76,0.38);
}

.btn--lg  { padding: 18px 38px; font-size: 1.04rem; }
.btn--sm  { padding: 9px 18px; font-size: 0.83rem; }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: none;
}

.btn--outline-dark {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline-dark:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn--block { width: 100%; justify-content: center; }

/* ===========================
   Header
   =========================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--hh);
  background: transparent;
  transition: background var(--ease), box-shadow var(--ease);
}
.header.scrolled,
.header.header--solid {
  background: var(--green-dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.22);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--hh);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo__icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 1.15rem;
}
.logo__text {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.logo__accent { color: var(--gold); }

/* Desktop Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__link {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--ease-fast);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--ease-fast);
}
.nav__link:hover      { color: var(--white); }
.nav__link:hover::after { width: 100%; }
.nav__link.active     { color: var(--gold); }
.nav__link.active::after { width: 100%; }

/* Header CTA */
.header__cta {
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  background: var(--gold);
  color: var(--green-dark);
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all var(--ease-fast);
}
.header__cta:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  display: block;
  transition: all var(--ease-fast);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 88vw);
  height: 100vh;
  background: var(--green-dark);
  z-index: 999;
  transition: right var(--ease);
  padding: calc(var(--hh) + 24px) 28px 28px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -4px 0 36px rgba(0,0,0,0.28);
}
.mobile-nav.open { right: 0; }
.mobile-nav__link {
  display: block;
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--ease-fast);
}
.mobile-nav__link:hover,
.mobile-nav__link.active { color: var(--gold); }
.mobile-nav__cta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--gold);
  color: var(--green-dark);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--ease-fast);
}
.mobile-nav__cta:hover { background: var(--gold-dark); color: var(--white); }

.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0; pointer-events: none;
  transition: opacity var(--ease);
}
.nav-overlay.active { opacity: 1; pointer-events: all; }

/* ===========================
   Hero
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 55%, var(--green-light) 100%);
  z-index: 0;
}
.hero__bg::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 580px; height: 580px;
  border-radius: 50%;
  border: 60px solid rgba(201,168,76,0.07);
}
.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -140px; right: 160px;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 36px solid rgba(201,168,76,0.05);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--hh) + 64px) 24px 96px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.32);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero__title {
  font-size: clamp(2.4rem, 5.8vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 22px;
  max-width: 680px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  color: rgba(255,255,255,0.74);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.72;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.68);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
}
.trust-item i { color: var(--gold); font-size: 0.9rem; }

/* ===========================
   Trust Bar
   =========================== */
.trust-bar {
  background: var(--white);
  box-shadow: 0 4px 22px rgba(44,74,62,0.1);
  padding: 20px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 38px;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-dark);
}
.trust-bar__item i { color: var(--green); font-size: 1rem; }
.trust-bar__div { width: 1px; height: 20px; background: var(--gray-300); }

/* ===========================
   Care Cards Grid
   =========================== */
.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.care-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}
.care-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height var(--ease);
}
.care-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.2);
}
.care-card:hover::before { height: 100%; }
.care-card__icon {
  width: 52px; height: 52px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
  color: var(--green);
  transition: all var(--ease);
}
.care-card:hover .care-card__icon { background: var(--green); color: var(--gold); }
.care-card h3 { font-size: 1.02rem; font-weight: 700; color: var(--text-dark); margin-bottom: 9px; }
.care-card p  { font-size: 0.875rem; color: var(--text-medium); line-height: 1.65; margin: 0; }

/* ===========================
   Why Fox Haven — Features
   =========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.feature {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--ease);
}
.section--dark .feature:hover { background: rgba(255,255,255,0.1); }
.feature__icon {
  width: 66px; height: 66px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.45rem;
  color: var(--green-dark);
  transition: all var(--ease);
}
.feature:hover .feature__icon { transform: scale(1.06); }
.feature h3 { font-size: 1.02rem; color: var(--white); margin-bottom: 10px; }
.feature p  { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.65; margin: 0; }

/* Light section features */
.features-grid--light .feature {
  background: var(--white);
  border: 1px solid var(--gray-200);
}
.features-grid--light .feature h3 { color: var(--text-dark); }
.features-grid--light .feature p  { color: var(--text-medium); }
.features-grid--light .feature:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.features-grid--light .feature__icon { background: var(--green); color: var(--gold); }

/* ===========================
   Day-in-the-life section
   =========================== */
.day-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.day-item {
  padding: 32px 24px;
  background: var(--white);
  border-right: 1px solid var(--gray-200);
  position: relative;
}
.day-item:last-child { border-right: none; }
.day-item__time {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.day-item__icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}
.day-item h3 { font-size: 1rem; color: var(--green-dark); margin-bottom: 8px; }
.day-item p  { font-size: 0.86rem; color: var(--text-medium); line-height: 1.62; margin: 0; }

/* ===========================
   Testimonials
   =========================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--gold);
  transition: transform var(--ease);
}
.testimonial:hover { transform: translateY(-4px); }
.testimonial__stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testimonial__stars i { color: var(--star); font-size: 0.88rem; }
.testimonial__text {
  font-size: 0.93rem;
  color: var(--text-medium);
  line-height: 1.74;
  font-style: italic;
  margin-bottom: 18px;
}
.testimonial__author { display: flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 0.87rem; }
.testimonial__author strong { color: var(--text-dark); font-weight: 700; }
.testimonial__author span  { color: var(--text-light); }

/* ===========================
   Pricing
   =========================== */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--gold);
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.pricing-card__badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.pricing-card__amount {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-card__amount span {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 400;
}
.pricing-card__sub {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 32px;
}
.pricing-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  text-align: left;
  margin-bottom: 36px;
}
.pricing-includes li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.89rem;
  color: var(--text-dark);
  font-weight: 500;
}
.pricing-includes li i { color: var(--green); font-size: 0.74rem; flex-shrink: 0; }

/* ===========================
   Page Header (inner pages)
   =========================== */
.page-header {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: calc(var(--hh) + 56px) 24px 68px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(201,168,76,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); margin-bottom: 14px; }
.page-header p  { color: rgba(255,255,255,0.72); font-size: 1.08rem; max-width: 560px; line-height: 1.72; }

/* ===========================
   About Page
   =========================== */
.about-block {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}
.about-photo-wrap {
  position: relative;
}
.about-photo {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  display: block;
  background: var(--gray-200);
  min-height: 380px;
}
.about-photo-placeholder {
  width: 100%;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255,255,255,0.5);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-photo-placeholder i { font-size: 3rem; color: var(--gold); opacity: 0.6; }

.value-list { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.value-item__icon {
  width: 42px; height: 42px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--green);
  flex-shrink: 0;
}
.value-item h4 { font-size: 0.95rem; color: var(--text-dark); margin-bottom: 3px; }
.value-item p  { font-size: 0.86rem; color: var(--text-medium); margin: 0; line-height: 1.6; }

/* ===========================
   Tour / Contact Forms
   =========================== */
.form-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: flex-start;
}
.form-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 42px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.form-box h2 { font-size: 1.5rem; margin-bottom: 8px; }
.form-box__sub { font-size: 0.9rem; color: var(--text-medium); margin-bottom: 30px; }

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

label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
label .req { color: var(--gold-dark); margin-left: 2px; }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 12px 15px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all var(--ease-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7068' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold-dark);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
textarea { resize: vertical; min-height: 120px; }

.form-error {
  display: none;
  font-size: 0.74rem;
  color: #B91C1C;
  margin-top: 4px;
  font-weight: 600;
}
.form-group.error .form-error { display: block; }
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: #B91C1C; }

.form-success {
  display: none;
  align-items: flex-start;
  gap: 12px;
  background: #DCFCE7;
  border: 1px solid #BBF7D0;
  color: #14532D;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-weight: 600;
  font-size: 0.93rem;
  margin-top: 18px;
}
.form-success.show { display: flex; }
.form-success i { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }

/* Side info panel */
.tour-info { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.info-card--green {
  background: var(--green-dark);
  border-color: var(--green-dark);
}
.info-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-card h3 i { color: var(--gold-dark); font-size: 0.9rem; }
.info-card--green h3 { color: var(--white); }
.info-card--green h3 i { color: var(--gold); }
.info-card p { font-size: 0.875rem; color: var(--text-medium); line-height: 1.65; }
.info-card--green p { color: rgba(255,255,255,0.65); }

.info-phone {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 6px;
}
.info-phone:hover { color: var(--gold-light); }

.checklist { display: flex; flex-direction: column; gap: 8px; }
.checklist li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.87rem;
  color: var(--text-medium);
}
.checklist li i { color: var(--green); font-size: 0.82rem; flex-shrink: 0; }
.info-card--green .checklist li { color: rgba(255,255,255,0.7); }
.info-card--green .checklist li i { color: var(--gold); }

/* ===========================
   Pricing Page
   =========================== */
.pricing-hero {
  text-align: center;
  margin-bottom: 60px;
}
.pricing-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 60px;
}
.pricing-col {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--gray-200);
}
.pricing-col--included { border-color: var(--green); }
.pricing-col h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-col h3 i { color: var(--green); }
.pricing-list { display: flex; flex-direction: column; gap: 10px; }
.pricing-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-medium);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li i.fa-check { color: var(--green); font-size: 0.8rem; flex-shrink: 0; }
.pricing-list li i.fa-times  { color: var(--gray-400); font-size: 0.8rem; flex-shrink: 0; }

.compare-table {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 60px;
}
.compare-table table { width: 100%; border-collapse: collapse; }
.compare-table th {
  background: var(--green-dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 18px 22px;
  text-align: left;
}
.compare-table th.highlight { background: var(--gold-dark); color: var(--green-dark); }
.compare-table td {
  padding: 14px 22px;
  font-size: 0.9rem;
  color: var(--text-medium);
  border-bottom: 1px solid var(--gray-100);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td.highlight {
  background: rgba(201,168,76,0.06);
  font-weight: 700;
  color: var(--green-dark);
}
.compare-table td i.fa-check { color: var(--green); }
.compare-table td i.fa-times  { color: var(--gray-400); }

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.65);
  padding-top: 64px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer__brand .logo__text { color: var(--white); }
.footer__brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.46);
  line-height: 1.65;
  margin-top: 14px;
  max-width: 280px;
}
.footer__links h4,
.footer__services h4,
.footer__contact h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__links a,
.footer__services a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.56);
  text-decoration: none;
  padding: 4px 0;
  transition: color var(--ease-fast);
}
.footer__links a:hover,
.footer__services a:hover { color: var(--gold); }
.footer__contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.footer__contact p i { color: var(--gold); margin-top: 2px; font-size: 0.88rem; flex-shrink: 0; }
.footer__contact p a { color: rgba(255,255,255,0.78); text-decoration: none; transition: color var(--ease-fast); }
.footer__contact p a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
}
.footer__bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer__bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.36); margin: 0; }
.footer__bottom a { font-size: 0.78rem; color: rgba(255,255,255,0.36); text-decoration: none; transition: color var(--ease-fast); }
.footer__bottom a:hover { color: rgba(255,255,255,0.7); }

/* ===========================
   Scroll Reveal
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ===========================
   Utilities
   =========================== */
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-gold   { color: var(--gold) !important; }
.fw-700      { font-weight: 700; }
.mt-24 { margin-top: 24px !important; }
.mt-32 { margin-top: 32px !important; }
.mt-48 { margin-top: 48px !important; }
.mb-0  { margin-bottom: 0 !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mb-48 { margin-bottom: 48px !important; }

/* ===========================
   Responsive — Tablet (≤1024px)
   =========================== */
@media (max-width: 1024px) {
  .features-grid    { grid-template-columns: repeat(2, 1fr); }
  .day-grid         { grid-template-columns: repeat(2, 1fr); }
  .care-grid        { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer__inner    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-block      { grid-template-columns: 1fr; gap: 36px; }
  .form-grid        { grid-template-columns: 1fr; gap: 40px; }
  .pricing-split    { grid-template-columns: 1fr; }
}

/* ===========================
   Responsive — Mobile (≤768px)
   =========================== */
@media (max-width: 768px) {
  :root { --hh: 62px; }
  .nav         { display: none; }
  .header__cta { display: none; }
  .hamburger   { display: flex; }
  .section     { padding: 64px 0; }
  .care-grid       { grid-template-columns: 1fr; }
  .features-grid   { grid-template-columns: 1fr 1fr; }
  .day-grid        { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer__inner   { grid-template-columns: 1fr; gap: 28px; }
  .form-row        { grid-template-columns: 1fr; }
  .pricing-includes { grid-template-columns: 1fr; }
  .form-box        { padding: 26px 20px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .hero__trust { flex-direction: column; gap: 10px; }
  .trust-bar__div  { display: none; }
  .compare-table   { overflow-x: auto; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .day-grid      { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
