/* ============================================================
   AGAPE CHILDCARE STAFFING — Global Stylesheet
   Brand Blue: #647E94 | White: #FFFFFF | Light Blue: #D9E3EF | Cream: #F5F0EB
   ============================================================ */

/* ---- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 300;
  color: #2c2c2c;
  background: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Typography -------------------------------------------- */
h1, h2, h3, h4 { font-family: 'Montserrat', Arial, sans-serif; line-height: 1.25; }
h1 { font-weight: 700; font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-weight: 600; font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-weight: 600; font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-weight: 500; font-size: 1rem; }
p { font-weight: 300; font-size: 1rem; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #647E94;
  display: block;
  margin-bottom: 0.75rem;
}

/* ---- Color Utility ---------------------------------------- */
.bg-blue    { background: #647E94; color: #fff; }
.bg-light   { background: #D9E3EF; }
.bg-cream   { background: #F5F0EB; }
.bg-white   { background: #ffffff; }
.text-blue  { color: #647E94; }
.text-white { color: #ffffff; }

/* ---- Layout Containers ------------------------------------ */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }
section.tight { padding: 56px 0; }
section.spacious { padding: 100px 0; }

/* ---- Buttons ---------------------------------------------- */
.btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 15px 36px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.22s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: #647E94;
  color: #ffffff;
  border-color: #647E94;
}
.btn-primary:hover { background: #526779; border-color: #526779; }

.btn-outline {
  background: transparent;
  color: #647E94;
  border-color: #647E94;
}
.btn-outline:hover { background: #647E94; color: #ffffff; }

.btn-white {
  background: #ffffff;
  color: #647E94;
  border-color: #ffffff;
}
.btn-white:hover { background: #D9E3EF; border-color: #D9E3EF; }

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.btn-outline-white:hover { background: #ffffff; color: #647E94; }

/* ---- Header / Navigation ---------------------------------- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e8ecf0;
  box-shadow: 0 1px 12px rgba(100,126,148,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo-link { flex-shrink: 0; }
.logo-link img { height: 44px; width: auto; display: block; }
footer .footer-brand img { height: 52px; width: auto; }

nav { display: flex; align-items: center; gap: 8px; }

nav a {
  font-size: 0.78rem;
  font-weight: 500;
  color: #2c2c2c;
  padding: 8px 12px;
  border-radius: 3px;
  transition: color 0.18s;
  white-space: nowrap;
}
nav a:hover, nav a.active { color: #647E94; }

.nav-cta { margin-left: 8px; padding: 12px 20px !important; font-size: 0.78rem !important; }

/* Services dropdown (desktop) */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  color: #2c2c2c;
  padding: 8px 12px;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 3px;
  white-space: nowrap;
  transition: color 0.18s;
}
.nav-dropdown-toggle svg { width: 9px; height: 9px; transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown-toggle.active { color: #647E94; }
.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 226px;
  flex-direction: column;
  gap: 2px;
  background: #ffffff;
  border: 1px solid #e8ecf0;
  border-radius: 4px;
  box-shadow: 0 10px 28px rgba(100,126,148,0.16);
  padding: 8px;
  z-index: 1001;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a { font-size: 0.8rem; padding: 10px 12px; border-radius: 3px; }
.nav-dropdown-menu a:hover { background: #f4f7fa; color: #647E94; }

@media (max-width: 1200px) {
  nav { display: none; }
  .hamburger { display: flex; }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #647E94;
  border-radius: 2px;
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #ffffff;
  border-top: 1px solid #e8ecf0;
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #2c2c2c;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn { margin-top: 12px; width: 100%; }

/* Services dropdown (mobile) */
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2c2c2c;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  background: none;
  cursor: pointer;
}
.mobile-dropdown-toggle svg { width: 11px; height: 11px; transition: transform 0.2s; }
.mobile-dropdown-toggle.open { color: #647E94; }
.mobile-dropdown-toggle.open svg { transform: rotate(180deg); }
.mobile-dropdown {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.mobile-dropdown.open { display: flex; }
.mobile-dropdown a { font-size: 0.88rem; padding: 11px 0; color: #555; }

/* ---- Hero -------------------------------------------------- */
.hero {
  background: #647E94;
  color: #ffffff;
  padding: 100px 0 96px;
  position: relative;
  overflow: hidden;
}

/* Photo hero: brand-tinted image behind the headline.
   Note: --hero-photo is set inline per page and uses ../assets/… because a
   url() inside a custom property resolves relative to THIS file, not the page. */
.hero.has-photo {
  background-color: #4d647b;
  background-image:
    linear-gradient(100deg,
      rgba(52,70,88,0.95) 0%,
      rgba(52,70,88,0.92) 40%,
      rgba(52,70,88,0.86) 60%,
      rgba(52,70,88,0.52) 100%),
    var(--hero-photo);
  background-size: cover;
  background-position: center 28%;
  background-repeat: no-repeat;
}
.hero.has-photo h1,
.hero.has-photo .subtitle,
.hero.has-photo .eyebrow { text-shadow: 0 1px 12px rgba(30,42,54,0.45); }
.hero.has-photo::before, .hero.has-photo::after { display: none; }
@media (max-width: 768px) {
  .hero.has-photo {
    background-image:
      linear-gradient(rgba(58,76,94,0.90), rgba(58,76,94,0.86)),
      var(--hero-photo);
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 420px; height: 420px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.hero-content { position: relative; z-index: 1; max-width: 760px; }

.hero h1 { color: #ffffff; margin-bottom: 20px; }
.hero .subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  max-width: 620px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- Section Intros --------------------------------------- */
.section-intro { max-width: 680px; margin-bottom: 56px; }
.section-intro.centered { margin: 0 auto 56px; text-align: center; }
.section-intro h2 { margin-bottom: 16px; }
.section-intro p { color: #555; }

/* ---- Cards ------------------------------------------------ */
.card-grid {
  display: grid;
  gap: 28px;
}
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #ffffff;
  border: 1px solid #e8ecf0;
  border-radius: 8px;
  padding: 36px 28px;
  transition: box-shadow 0.22s;
}
.card:hover { box-shadow: 0 8px 32px rgba(100,126,148,0.12); }

.card-blue { background: #647E94; color: #ffffff; border-color: #647E94; }
.card-light { background: #D9E3EF; border-color: #D9E3EF; }
.card-cream { background: #F5F0EB; border-color: #ede7df; }

.card-icon {
  width: 52px; height: 52px;
  background: #D9E3EF;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-blue .card-icon { background: rgba(255,255,255,0.18); }
.card-icon svg { width: 26px; height: 26px; }

.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.93rem; color: #666; }
.card-blue p { color: rgba(255,255,255,0.85); }

/* ---- Feature List ----------------------------------------- */
.feature-list { display: flex; flex-direction: column; gap: 20px; }

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: #647E94;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.feature-check svg { width: 12px; height: 12px; }

.feature-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.feature-item p { font-size: 0.9rem; color: #666; }

/* ---- Two-Col Split --------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

/* ---- Pricing Sections ------------------------------------- */
.pricing-box {
  background: #F5F0EB;
  border-radius: 8px;
  padding: 48px 40px;
  border-left: 4px solid #647E94;
}
.pricing-box h3 { color: #647E94; margin-bottom: 16px; }
.pricing-box p { color: #555; margin-bottom: 12px; }
.pricing-box .price-note { font-size: 0.85rem; color: #888; font-style: italic; }

.pricing-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.pricing-table th {
  background: #647E94;
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
}
.pricing-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e8ecf0;
  font-size: 0.9rem;
}
.pricing-table tr:nth-child(even) td { background: #f8f9fb; }

.package-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.package-card {
  background: #ffffff;
  border: 2px solid #D9E3EF;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.22s;
}
.package-card:hover { border-color: #647E94; box-shadow: 0 8px 32px rgba(100,126,148,0.12); }
.package-card.featured {
  border-color: #647E94;
  background: #647E94;
  color: #ffffff;
}
.package-card .package-name { font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; }
.package-card .package-price {
  font-size: 2rem;
  font-weight: 700;
  color: #647E94;
  margin: 12px 0 4px;
}
.package-card.featured .package-price { color: #ffffff; }
.package-card .package-hours { font-size: 0.85rem; color: #888; margin-bottom: 20px; }
.package-card.featured .package-hours { color: rgba(255,255,255,0.75); }
.package-card p { font-size: 0.88rem; color: #666; }
.package-card.featured p { color: rgba(255,255,255,0.85); }

/* ---- Stats Band ------------------------------------------- */
.stats-band { background: #647E94; color: #ffffff; padding: 72px 0; }
.stats-band .section-intro h2 { color: #ffffff; }
.stats-band .section-intro p { color: rgba(255,255,255,0.8); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item { text-align: center; padding: 20px 12px; }
.stat-number { font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 700; color: #ffffff; line-height: 1.1; }
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.82); margin-top: 10px; line-height: 1.5; }
.stat-source { display: block; font-size: 0.68rem; color: rgba(255,255,255,0.5); margin-top: 8px; letter-spacing: 0.04em; }

.stats-inline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
.stat-card { background: #D9E3EF; border-radius: 8px; padding: 32px 24px; text-align: center; }
.stat-card .stat-number { color: #647E94; }
.stat-card .stat-label { color: #444; }
.stat-card .stat-source { color: #999; }

/* ---- Testimonials ------------------------------------------ */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-grid.two { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin: 0 auto; }
.testimonial-card {
  background: #ffffff;
  border: 1px solid #e8ecf0;
  border-radius: 8px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-stars { color: #647E94; font-size: 1rem; letter-spacing: 3px; }
.testimonial-card blockquote { font-size: 0.95rem; color: #444; line-height: 1.75; font-style: italic; flex-grow: 1; }
.testimonial-attr { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px;
  background: #647E94;
  color: #ffffff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-attr strong { display: block; font-size: 0.88rem; font-weight: 600; color: #2c2c2c; }
.testimonial-attr span { font-size: 0.78rem; color: #888; }

/* ---- Email Signup ------------------------------------------ */
.signup-band { background: #D9E3EF; padding: 56px 0; }
.signup-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.signup-inner h3 { color: #2c2c2c; }
.signup-inner p { color: #555; font-size: 0.93rem; margin-top: 6px; }

/* ---- Tally Embed Container --------------------------------- */
.tally-container { background: #ffffff; border-radius: 8px; border: 1px solid #e8ecf0; overflow: hidden; }
.tally-container iframe { width: 100%; border: none; min-height: 400px; }

@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid, .testimonial-grid.two { grid-template-columns: 1fr; }
  .stats-inline { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ---- CTA Banner ------------------------------------------- */
.cta-banner {
  background: #647E94;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { color: #ffffff; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 36px; font-size: 1.05rem; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---- Contact Form ----------------------------------------- */
.contact-form-section { background: #F5F0EB; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info-block h2 { margin-bottom: 20px; }
.contact-info-block p { color: #555; margin-bottom: 32px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: #647E94;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail strong { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #647E94; margin-bottom: 2px; }
.contact-detail span { font-size: 0.95rem; color: #2c2c2c; }

.form-placeholder {
  background: #ffffff;
  border-radius: 8px;
  padding: 48px 40px;
  border: 1px solid #e8ecf0;
  text-align: center;
  color: #888;
}
.form-placeholder svg { width: 48px; height: 48px; color: #D9E3EF; margin: 0 auto 16px; }
.form-placeholder p { font-size: 0.9rem; }

/* ---- Footer ----------------------------------------------- */
footer {
  background: #2c2c2c;
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img { height: 52px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.18s;
}
.footer-col ul li a:hover { color: #D9E3EF; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: #647E94; }
.footer-contact-item span { font-size: 0.86rem; color: rgba(255,255,255,0.65); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom a { color: #D9E3EF; transition: color 0.18s; }
.footer-bottom a:hover { color: #ffffff; }

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s;
}
.social-link:hover { background: #647E94; }
.social-link svg { width: 16px; height: 16px; }

/* ---- Who We Serve (Home) ---------------------------------- */
.serve-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }

.serve-item {
  background: #647E94;
  padding: 48px 28px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  transition: background 0.22s;
}
.serve-item:nth-child(even) { background: #526779; }
.serve-item:hover { background: #3d5466; }

/* Photo behind each card. --serve-photo is set inline per card and uses
   ../assets/… because url() in a custom property resolves against THIS file. */
.serve-item.has-photo {
  background-image:
    linear-gradient(rgba(52,70,88,0.62), rgba(46,62,78,0.80)),
    var(--serve-photo);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.serve-item.has-photo:nth-child(even) {
  background-image:
    linear-gradient(rgba(43,58,72,0.64), rgba(38,52,64,0.82)),
    var(--serve-photo);
}
.serve-item.has-photo:hover,
.serve-item.has-photo:nth-child(even):hover {
  background-image:
    linear-gradient(rgba(40,55,70,0.46), rgba(36,50,63,0.70)),
    var(--serve-photo);
}
.serve-item.has-photo > * { position: relative; z-index: 1; }
.serve-item.has-photo h3 { text-shadow: 0 1px 10px rgba(25,35,45,0.6); }
.serve-item.has-photo p { color: rgba(255,255,255,0.93); text-shadow: 0 1px 8px rgba(25,35,45,0.55); }

.serve-item-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.serve-item-icon svg { width: 28px; height: 28px; }
.serve-item h3 { font-size: 1.1rem; margin-bottom: 10px; }
.serve-item p { font-size: 0.88rem; color: rgba(255,255,255,0.82); }

/* ---- Difference (Home) ------------------------------------ */
.difference-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.difference-item { padding: 40px 32px; border-top: 3px solid #647E94; }
.difference-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #D9E3EF;
  line-height: 1;
  margin-bottom: 12px;
}
.difference-item h3 { margin-bottom: 12px; color: #647E94; }
.difference-item p { color: #666; font-size: 0.93rem; }

/* ---- Steps / How It Works --------------------------------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.step {
  text-align: center;
  padding: 32px 24px;
}
.step-number {
  width: 56px; height: 56px;
  background: #647E94;
  color: #ffffff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 20px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: #666; font-size: 0.93rem; }

.steps-connector { display: flex; align-items: center; }

/* ---- Bullet Sections -------------------------------------- */
.bullet-list { display: flex; flex-direction: column; gap: 14px; }
.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #444;
}
.bullet-dot {
  width: 8px; height: 8px;
  background: #647E94;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* ---- Closing Quote / Statement ---------------------------- */
.closing-statement {
  background: #D9E3EF;
  padding: 64px 0;
  text-align: center;
}
.closing-statement blockquote {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 400;
  color: #2c2c2c;
  max-width: 740px;
  margin: 0 auto;
  line-height: 1.75;
  font-style: italic;
}
.closing-statement blockquote strong { font-style: normal; font-weight: 600; color: #647E94; }

/* ---- Included Items (4-up) -------------------------------- */
.included-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.included-item {
  display: flex;
  gap: 16px;
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
  border: 1px solid #e8ecf0;
  align-items: flex-start;
}
.included-num {
  width: 36px; height: 36px;
  background: #647E94;
  color: #ffffff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.included-item h4 { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.included-item p { font-size: 0.88rem; color: #666; }

/* ---- Positioning Strip (Home) ----------------------------- */
.position-strip {
  background: #F5F0EB;
  padding: 64px 0;
}
.position-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.position-text p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #444;
  line-height: 1.8;
}
.position-text p + p { margin-top: 20px; }

/* ---- Contact Hero ---------------------------------------- */
.contact-hero {
  background: #647E94;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}
.contact-hero h1 { color: #ffffff; margin-bottom: 16px; }
.contact-hero p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }

/* ---- Photo band ------------------------------------------- */
.photo-band {
  position: relative;
  padding: 0;
  line-height: 0;
}
.photo-band img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 35%;
}
.photo-band-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 56px 24px 32px;
  background: linear-gradient(to top, rgba(44,44,44,0.82), rgba(44,44,44,0));
  line-height: 1.7;
}
.photo-band-caption p {
  max-width: 720px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 0.98rem;
  text-align: center;
}
@media (max-width: 768px) {
  .photo-band img { height: 280px; }
  .photo-band-caption { padding: 40px 20px 24px; }
  .photo-band-caption p { font-size: 0.9rem; }
}

/* ---- SEO / accessibility helpers -------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- Responsive ------------------------------------------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .difference-grid { grid-template-columns: 1fr 1fr; }
  .package-cards { grid-template-columns: 1fr; }
  .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .hero { padding: 72px 0; }

  nav { display: none; }
  .hamburger { display: flex; }

  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse { direction: ltr; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-grid { grid-template-columns: 1fr; }
  .difference-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .card-grid.cols-3 { grid-template-columns: 1fr; }
  .card-grid.cols-4 { grid-template-columns: 1fr; }
  .card-grid.cols-2 { grid-template-columns: 1fr; }
  .package-cards { grid-template-columns: 1fr; }

  .pricing-box { padding: 32px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .serve-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-banner .btn-actions { flex-direction: column; align-items: center; }
  .logo-link img { height: 42px; }
}
