/*!
Theme Name: Attend Health Care Philly
Theme URI: https://ahcphiladelphia.com/
Author: Falcon Marketing
Author URI: https://falconmarketing.com/
Description: Custom WordPress theme for Attend Home Care Philadelphia. Built with ACF Pro for easy content management. Features responsive design, custom navigation, service pages, and contact forms.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: attend-healthcare-philly
Tags: custom-theme, health-care, senior-care, responsive, acf-pro
*/

/* ============================================
   CSS VARIABLES - Design System
   ============================================ */
:root {
  --background: #ffffff;
  --foreground: #162a3a;
  --card: #ffffff;
  --card-foreground: #162a3a;
  --primary: #1a365d;
  --primary-foreground: #ffffff;
  --secondary: #319795;
  --secondary-foreground: #ffffff;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --accent: #319795;
  --accent-foreground: #ffffff;
  --border: #e2e8f0;
  --radius: 0.75rem;
  --font-heading: 'Merriweather', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, -apple-system, sans-serif;
}

/* ============================================
   BASE STYLES & RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--foreground);
}
a { color: inherit; text-decoration: none; transition: all 0.2s ease; }
img { max-width: 100%; height: auto; display: block; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px) { .container { padding: 0 1.5rem; } }

.tile {
  background: rgba(241, 245, 249, 0.6);
  backdrop-filter: blur(4px);
  border-radius: 1.5rem;
  border: 1px solid rgba(226, 232, 240, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.tile-navy {
  background: #1c334a;
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.bg-white { background: #fff; }
.bg-primary { background: var(--primary); }
.bg-secondary { background: var(--secondary); }
.text-white { color: #fff; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-muted { color: var(--muted-foreground); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-1 { flex: 1; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.text-center { text-align: center; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.1em; }
.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }

.w-full { width: 100%; }
.h-full { height: 100%; }
.max-w-lg { max-width: 32rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }

.rounded-full { border-radius: 9999px; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }

.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

.block { display: block; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }

.object-cover { object-fit: cover; }
.overflow-hidden { overflow: hidden; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--secondary);
  color: #fff;
}
.btn-primary:hover { background: rgba(49, 151, 149, 0.9); }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--background);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.logo img { height: 3rem; width: auto; }
@media (min-width: 1024px) { .logo img { height: 3.5rem; } }

.desktop-nav { display: none; }
@media (min-width: 1024px) {
  .desktop-nav { display: flex; align-items: center; gap: 0.25rem; }
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(22, 42, 58, 0.7);
  border-radius: 9999px;
  transition: all 0.2s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: var(--muted);
}
.nav-link.active { background: rgba(49, 151, 149, 0.15); }

.nav-item-has-children { position: relative; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}
.nav-item-has-children:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-content {
  background: var(--primary);
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 0.75rem;
  min-width: 400px;
}
.nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.nav-dropdown-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  transition: all 0.2s ease;
}
.nav-dropdown-link:hover, .nav-dropdown-link.active {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.nav-dropdown-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}
.nav-dropdown-footer a {
  display: block;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 9999px;
}
.nav-dropdown-footer a:hover { background: rgba(255, 255, 255, 0.1); }

.phone-cta { display: none; }
@media (min-width: 1024px) {
  .phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(49, 151, 149, 0.15);
    border-radius: 9999px;
  }
  .phone-cta:hover { background: rgba(49, 151, 149, 0.25); }
}

.mobile-menu-toggle { display: flex; align-items: center; gap: 0.5rem; }
@media (min-width: 1024px) { .mobile-menu-toggle { display: none; } }
.mobile-menu-btn {
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}
.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--background);
  padding: 1rem;
}
.mobile-menu.is-open { display: block; }
.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(22, 42, 58, 0.7);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}
.mobile-nav-link.active {
  color: var(--primary);
  background: rgba(49, 151, 149, 0.1);
  padding: 0.75rem 0.5rem;
  margin: 0 -0.5rem;
  border-radius: 0.25rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: #fff; padding-bottom: 2rem; }
.footer-inner {
  background: var(--primary);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
}
@media (min-width: 768px) { .footer-inner { padding: 3rem; } }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-logo { height: 3rem; width: auto; filter: brightness(0) invert(1); margin-bottom: 0.75rem; }
.footer-desc { color: rgba(255, 255, 255, 0.8); font-size: 0.875rem; }
.footer-title { color: #fff; font-weight: 600; margin-bottom: 0.75rem; }
.footer-links {list-style:none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: rgba(255, 255, 255, 0.8); font-size: 0.875rem; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}
.footer-contact-item svg { width: 1rem; height: 1rem; margin-top: 0.125rem; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255, 255, 255, 0.8); }
.footer-contact-item a:hover { text-decoration: underline; }

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.bbb-badge { display: inline-flex; border-radius: 0.25rem; overflow: hidden; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.bbb-badge-left { display: flex; align-items: center; gap: 0.5rem; background: #00334e; padding: 0.75rem 1rem; }
.bbb-badge-left img { height: 2.5rem; width: auto; }
.bbb-badge-text { color: #fff; font-weight: 700; font-size: 0.75rem; line-height: 1.2; text-transform: uppercase; letter-spacing: 0.05em; }
.bbb-badge-right { display: flex; flex-direction: column; justify-content: center; background: #003d5c; padding: 0.75rem 1rem; color: #fff; }
.bbb-rating { font-size: 0.75rem; font-weight: 600; }
.bbb-date { font-size: 0.625rem; opacity: 0.7; }
.bbb-link { font-size: 0.625rem; text-decoration: underline; opacity: 0.8; margin-top: 0.125rem; }
.footer-copyright { color: rgba(255, 255, 255, 0.6); font-size: 0.75rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1rem; }
.footer-copyright a { color: rgba(255, 255, 255, 0.6); }
.footer-copyright a:hover { color: #fff; }

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero-section {
  position: relative;
  min-height: 520px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) { .hero-section { min-height: 560px; } }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(26, 54, 93, 0.6); }
.hero-content { position: relative; z-index: 10; padding: 2rem; }
@media (min-width: 768px) { .hero-content { padding: 3rem; } }
@media (min-width: 1024px) { .hero-content { padding: 4rem; } }

.hero-layout { display: flex; flex-direction: column; gap: 2rem; align-items: center; }
@media (min-width: 1024px) {
  .hero-layout { flex-direction: row; }
  .hero-left { width: 45%; }
  .hero-right { width: 55%; }
}
.hero-title { font-size: clamp(1.5rem, 4vw, 3rem); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 1rem; }
.hero-description { font-size: 1.125rem; color: rgba(255, 255, 255, 0.85); max-width: 40rem; margin-bottom: 2rem; }
.hero-buttons { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }

.form-container {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.form-container iframe { width: 100%; border: none; }
.mb-12 {
    margin-bottom: 50px;
}
.mb-10{margin-bottom:30px;}
.mt-10{margin-top:30px;}.mt-5 {
    margin-top: 1.25rem;
}
/* ============================================
   TILE SECTIONS
   ============================================ */
.section-tile { padding: 2rem;margin-bottom:40px; }
@media (min-width: 768px) { .section-tile { padding: 3rem; } }
.section-header { text-align: center; max-width: 48rem; margin: 0 auto 2.5rem; }
.section-title { margin-bottom: 1rem;font-size:30px; }
.section-description { color: var(--muted-foreground); font-size: 1.125rem; line-height: 1.6; }

.tag-group { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: 2rem; }
.tag {
  display: inline-flex;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: rgba(49, 151, 149, 0.1);
  color: var(--secondary);
  border-radius: 9999px;
}
.tag-primary { background: var(--secondary); color: #fff; }
.tag-primary:hover { background: rgba(49, 151, 149, 0.9); }

/* ============================================
   STEPS / HOW IT WORKS
   ============================================ */
.steps-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
}
.step-number {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: rgba(49, 151, 149, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.step-number span { font-size: 1.5rem; font-weight: 700; color: var(--secondary); }
.step-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-description { color: var(--muted-foreground); font-size: 0.875rem; }

/* ============================================
   SERVICES
   ============================================ */
.services-bg-section {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.services-bg-section .services-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.services-bg-section .services-overlay { position: absolute; inset: 0; background: rgba(26, 54, 93, 0.7); }
.services-bg-section .services-content { position: relative; z-index: 10; padding: 2rem; }
@media (min-width: 768px) { .services-bg-section .services-content { padding: 3rem; } }

.services-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s ease;
}
.service-card:hover { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.service-icon { width: 2rem; height: 2rem; color: var(--secondary); margin: 0 auto 0.75rem; }
.service-card h3 { font-weight: 700; color: var(--foreground); }

/* ============================================
   INCOME EXAMPLES
   ============================================ */
.income-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .income-grid { grid-template-columns: 1fr 1fr 1fr; } }
.income-cards { display: flex; flex-direction: column; gap: 1rem; }
.income-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem;
  border-left: 4px solid var(--secondary);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.income-card-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.25rem; }
.income-card-header svg { width: 1.25rem; height: 1.25rem; color: var(--secondary); }
.income-amount { font-size: 1.125rem; font-weight: 700; color: var(--foreground); }
.income-name { font-size: 0.875rem; font-weight: 600; color: var(--foreground); }
.income-desc { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.25rem; }
.income-image img { border-radius: 1rem; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); width: 100%; height: 380px; object-fit: cover; }
.income-benefits { display: flex; flex-direction: column; gap: 1.5rem; }
.income-benefit { display: flex; align-items: center; gap: 0.75rem; }
.income-benefit svg { width: 1.5rem; height: 1.5rem; color: var(--secondary); flex-shrink: 0; }
.income-benefit span { font-size: 1.125rem; font-weight: 600; color: var(--foreground); }

.eligibility-footer { border-top: 1px solid rgba(226, 232, 240, 0.4); padding-top: 1.5rem; margin-top: 1.5rem; }
.eligibility-items { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.5rem 2rem; font-size: 0.875rem; color: var(--muted-foreground); }
.eligibility-label { font-weight: 600; color: var(--foreground); }
.eligibility-item { display: flex; align-items: center; gap: 0.375rem; }
.eligibility-item svg { width: 0.875rem; height: 0.875rem; color: var(--secondary); }

/* ============================================
   FEATURES / WHY CHOOSE
   ============================================ */
.features-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
}
.feature-icon { width: 2rem; height: 2rem; color: var(--secondary); margin: 0 auto 0.75rem; }
.feature-title { font-weight: 700; margin-bottom: 0.5rem; }
.feature-desc { font-size: 0.875rem; color: var(--muted-foreground); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid { display: grid; gap: 1.5rem;max-width: 56rem;margin: 0 auto;width:100%; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
.testimonial-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.testimonial-header { display: flex; align-items: center; gap: 0.25rem; margin-bottom: 0.75rem; }
.testimonial-header svg { width: 1.25rem; height: 1.25rem; }
.testimonial-stars { display: flex; gap: 0.25rem; }
.testimonial-stars svg { width: 1rem; height: 1rem; color: #fbbf24; fill: #fbbf24; }
.testimonial-text { font-style: italic; color: var(--foreground); font-size: 0.875rem; margin-bottom: 1rem; line-height: 1.6; }
.testimonial-name { font-size: 0.75rem; font-weight: 600; color: var(--muted-foreground); }

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-section {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: rgba(26, 54, 93, 0.65); }
.cta-content { position: relative; z-index: 10; padding: 2rem; text-align: center; }
@media (min-width: 768px) { .cta-content { padding: 4rem; } }
.cta-title { font-size: clamp(1.5rem, 3vw, 1.875rem); font-weight: 700; color: #fff; margin-bottom: 1rem; }
.cta-description { font-size: 1.125rem; color: rgba(255, 255, 255, 0.85); margin-bottom: 2rem; max-width: 36rem; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }

/* ============================================
   SERVICE PAGE TEMPLATE
   ============================================ */
.service-hero-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 768px) { .service-hero-grid { grid-template-columns: 1fr 1fr; } }
.service-hero-image { border-radius: 1rem; overflow: hidden; aspect-ratio: 4/3; background: var(--muted); }
.service-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.service-hero-title { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 1rem; }
.service-hero-desc { color: var(--muted-foreground); font-size: 1.125rem; line-height: 1.6; margin-bottom: 1.5rem; }

.sub-services-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .sub-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sub-services-grid { grid-template-columns: repeat(4, 1fr); } }
.sub-service-card {
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.5);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.sub-service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: rgba(49, 151, 149, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.sub-service-icon svg { width: 1.75rem; height: 1.75rem; color: var(--secondary); }
.sub-service-title { font-weight: 700; margin-bottom: 0.25rem; }
.sub-service-desc { font-size: 0.875rem; color: var(--muted-foreground); }

.why-cards-grid { display: grid; gap: 1.5rem; max-width: 56rem; margin: 0 auto; }
@media (min-width: 768px) { .why-cards-grid { grid-template-columns: repeat(2, 1fr); } }
.why-card {
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.5);
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.why-card svg { width: 2rem; height: 2rem; color: var(--secondary); margin-bottom: 1rem; }
.why-card-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem;line-height:28px; }
.why-card-desc { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-mission-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .about-mission-grid { grid-template-columns: 1fr 1fr; } }
.about-mission-image { border-radius: 1rem; overflow: hidden; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); height: 350px; }
.about-mission-image img { width: 100%; height: 100%; object-fit: cover;box-shadow:0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1); }
.about-section-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.about-section-header svg { width: 1.75rem; height: 1.75rem; color: var(--secondary); }
.about-section-title { font-family: var(--font-heading);font-size:30px; }

.caregiver-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1024px) { .caregiver-grid { grid-template-columns: repeat(4, 1fr); } }
.caregiver-card { text-align: center; }
.caregiver-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}
.caregiver-icon svg { width: 2rem; height: 2rem; color: #fff; }
.caregiver-title { font-size: 0.875rem; font-weight: 700; color: var(--foreground); }

.stats-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card { background: #fff; border-radius: 1rem; padding: 1.5rem; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); text-align: center; }
.stat-number { font-size: 1.875rem; font-weight: 700; color: var(--secondary); margin-bottom: 0.5rem; }
.stat-label { font-size: 0.875rem; color: var(--muted-foreground); font-weight: 500; }

.team-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(5, 1fr); } }
.team-card { background: #fff; border-radius: 1rem; padding: 1.25rem; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); text-align: center; }
.team-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: rgba(49, 151, 149, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}
.team-avatar svg { width: 1.75rem; height: 1.75rem; color: var(--secondary); }
.team-name { font-size: 0.875rem; font-weight: 700; color: var(--foreground); }
.team-title { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.25rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout { display: flex; flex-direction: column; gap: 2.5rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 1024px) { .contact-layout { flex-direction: row; } }
.contact-form-wrapper {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 800px;
  background: #d3d7db;
}
@media (min-width: 1024px) { .contact-form-wrapper { width: 55%; } }
.contact-form-wrapper iframe { width: 100%; height: 930px; border: none; }
.contact-info { width: 100%; background: #fff; border-radius: 1rem; padding: 2rem; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); }
@media (min-width: 1024px) { .contact-info { width: 45%; } }
.contact-info-title { font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.25rem; }
.contact-item svg { width: 1.25rem; height: 1.25rem; color: var(--accent); margin-top: 0.125rem; flex-shrink: 0; }
.contact-item-label { font-weight: 500; color: var(--foreground); margin-bottom: 0.25rem; }
.contact-item-value { font-size: 1.125rem; font-weight: 600; color: var(--primary); }
.contact-item-value:hover { text-decoration: underline; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-page-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .services-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-page-grid { grid-template-columns: repeat(3, 1fr); } }
.service-page-card { background: #fff; border-radius: 1rem; padding: 1.5rem; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); transition: box-shadow 0.2s ease; display: block; }
.service-page-card:hover { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.service-page-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: rgba(49, 151, 149, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-page-icon svg { width: 1.5rem; height: 1.5rem; color: var(--secondary); }
.service-page-title { font-family: var(--font-heading); font-size: 1.125rem; margin-bottom: 0.5rem; }
.service-page-items { list-style: none; }
.service-page-items li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 0.25rem; }
.service-page-items li::before { content: ''; width: 0.375rem; height: 0.375rem; border-radius: 9999px; background: var(--secondary); flex-shrink: 0; }

/* ============================================
   WHY CHOOSE US PAGE
   ============================================ */
.reasons-grid { display: grid; gap: 1.5rem; max-width: 56rem; margin: 0 auto; }
@media (min-width: 640px) { .reasons-grid { grid-template-columns: repeat(2, 1fr); } }
.reason-card { background: #fff; border-radius: 1rem; padding: 1.5rem; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); transition: box-shadow 0.2s ease; }
.reason-card:hover { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.reason-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: rgba(49, 151, 149, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.reason-icon svg { width: 1.5rem; height: 1.5rem; color: var(--secondary); }
.reason-title { font-family: var(--font-heading); font-size: 1.125rem; margin-bottom: 0.5rem; }
.reason-desc { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

/* ============================================
   LEGAL PAGES (Privacy/Terms)
   ============================================ */
.legal-content { max-width: none; }
.legal-content h2 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: 1rem; }
.legal-content h3 { font-size: 1.125rem; margin-top: 1.5rem; margin-bottom: 0.75rem; }
.legal-content p { margin-bottom: 1rem; color: #152637; line-height: 1.7; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { margin-bottom: 0.5rem; color: var(--muted-foreground); }

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (min-width: 640px) { .sm\:flex-row { flex-direction: row; } }
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:p-12 { padding: 3rem; }
  .md\:p-16 { padding: 4rem; }
  .md\:text-3xl { font-size: 1.875rem; }
  .md\:text-4xl { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:p-16 { padding: 4rem; }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .site-header, .site-footer, .mobile-menu-toggle { display: none; }
  body { font-size: 12pt; }
  a { text-decoration: underline; }
}
@media(max-width: 1024px){
	.mobile-dropdown{display:none;}.is-open{display:block;}button.mobile-dropdown-toggle {background: transparent;padding: 0.75rem 0;color: #162a3ab3;font-weight: 600;border: 0;border-bottom:1px solid rgba(226, 232, 240, 0.5);text-transform: uppercase;text-align:left;width:100%;}button.mobile-dropdown-toggle svg{float:right}.mobile-dropdown a {display: block;padding: 10px;color: #152637b3;font-weight: 600;}a.phone-cta {
    background: #e0f2f2;
    height: 44px;
    line-height: 44px;
    border-radius: 44px;
}a.phone-cta svg {
    position: relative;
    top: 13px;
    margin-right: 10px;
}

}