/* ============================================================
   ALLY & GABBY SENIOR SERVICES LLC — LANDING PAGE STYLES
   Yellow & Blue Color Scheme
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --primary:       #1a3a6b;      /* Deep navy blue */
  --primary-dark:  #112550;      /* Darker navy */
  --primary-light: #2a5298;      /* Lighter blue */
  --accent:        #f5c518;      /* Golden yellow */
  --accent-dark:   #d4a800;      /* Darker gold */
  --accent-light:  #ffe066;      /* Light yellow */
  --sky:           #4a90d9;      /* Sky blue */
  --cream:         #fdf9ee;      /* Warm cream */
  --cream-dark:    #f5edcc;      /* Deeper cream */
  --text-dark:     #0d1f3c;      /* Very dark navy */
  --text-mid:      #2c3e6b;      /* Mid navy */
  --text-light:    #6b7a99;      /* Muted blue-grey */
  --white:         #ffffff;
  --shadow-sm:     0 2px 8px rgba(26,58,107,0.08);
  --shadow-md:     0 8px 30px rgba(26,58,107,0.13);
  --shadow-lg:     0 20px 60px rgba(26,58,107,0.17);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     40px;
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Inter', system-ui, sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.announcement-bar a {
  color: var(--accent-light);
  font-weight: 700;
  transition: var(--transition);
}
.announcement-bar a:hover { color: var(--white); text-decoration: underline; }
.announcement-bar i { margin-right: 6px; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 58, 107, 0.12);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
}
.nav-link:hover { color: var(--primary); background: rgba(26, 58, 107, 0.06); }
.nav-link.active { color: var(--primary); }
.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--primary-dark) !important; color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 197, 24, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* ===== SECTION COMMON ===== */
.section-tag {
  display: inline-block;
  background: rgba(26, 58, 107, 0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-tag.light {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}
.section-subtitle.light { color: rgba(255,255,255,0.85); }
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-subtitle { color: rgba(255,255,255,0.85); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 31, 60, 0.85) 0%,
    rgba(26, 58, 107, 0.65) 55%,
    rgba(74, 144, 217, 0.45) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px 80px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 197, 24, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 197, 24, 0.5);
  color: var(--accent-light);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}
.hero-badge i { color: var(--accent); }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.1s both;
}
.hero-highlight {
  color: var(--accent);
  font-style: italic;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.9);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.9s ease 0.3s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeInUp 0.9s ease 0.4s both;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(245, 197, 24, 0.5);
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.9rem;
  animation: bounce 2s infinite;
  transition: var(--transition);
}
.hero-scroll a:hover { background: rgba(245, 197, 24, 0.15); }

/* ===== CONTACT STRIP ===== */
.contact-strip {
  background: var(--primary);
  position: relative;
  z-index: 10;
}
.contact-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  flex: 1;
}
.strip-item i {
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
}
.strip-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  margin-bottom: 4px;
}
.strip-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
}
a.strip-value:hover { color: var(--accent); }
.strip-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  margin: 16px 0;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-main:hover img { transform: scale(1.03); }
.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-img-accent img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.about-badge-float {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}
.about-badge-float i { font-size: 1.1rem; color: var(--accent); }
.about-lead {
  font-size: 1.1rem;
  color: var(--text-mid);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-text {
  font-size: 0.97rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 36px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
}
.about-feature i { color: var(--accent-dark); font-size: 1rem; flex-shrink: 0; }

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.services-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(26, 58, 107, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(245, 197, 24, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid #e8eef5;
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(26, 58, 107, 0.08), rgba(245, 197, 24, 0.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}
.service-icon i {
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}
.service-card:hover .service-icon i { color: var(--white); }
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== WHY US ===== */
.why-us {
  padding: 100px 0;
  background: var(--cream);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 36px;
  line-height: 1.8;
}
.why-items { display: flex; flex-direction: column; gap: 28px; }
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26, 58, 107, 0.25);
}
.why-icon i { font-size: 1.2rem; color: var(--white); }
.why-text h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.why-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}
.why-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.why-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.why-card-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid #e8eef5;
}
.why-card-float i {
  font-size: 1.8rem;
  color: var(--accent);
}
.why-card-float strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.why-card-float span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== CARE TYPES ===== */
.care-types {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
}
.care-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.care-type-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  color: var(--white);
  transition: var(--transition);
}
.care-type-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}
.care-type-card.featured {
  background: rgba(245, 197, 24, 0.15);
  border-color: rgba(245, 197, 24, 0.5);
  transform: scale(1.04);
}
.care-type-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.care-type-card i {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--accent);
}
.care-type-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.care-type-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 0;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item.large {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform 0.5s ease;
}
.gallery-item.large img { min-height: 460px; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 58, 107, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6b 50%, #112550 100%);
  z-index: 0;
}
.contact .container { position: relative; z-index: 1; }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  color: var(--white);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.contact-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.contact-card.featured {
  background: rgba(245, 197, 24, 0.12);
  border-color: rgba(245, 197, 24, 0.4);
}
.contact-card-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.contact-card-icon i { font-size: 1.6rem; color: var(--primary-dark); }
.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
}
.contact-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.contact-link {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  transition: var(--transition);
  word-break: break-all;
}
.contact-link:hover { color: var(--white); }
.contact-address {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  text-align: center;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-floral {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
}
.cta-floral-left { left: -40px; }
.cta-floral-right { right: -40px; }
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cta-content p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(1.1);
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}
.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links ul li,
.footer-services ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.footer-links ul li a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-services ul li { color: rgba(255,255,255,0.6); }
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.footer-contact-item i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
}
.footer-contact-item a:hover { color: var(--accent); }
.footer-contact-item address {
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-tagline {
  font-style: italic;
  color: var(--accent-dark);
}

/* ===== FLOATING CALL BUTTON ===== */
.float-call {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: var(--accent);
  color: var(--primary-dark);
  border-radius: 100px;
  padding: 14px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.5);
  transition: var(--transition);
  animation: pulse 2.5s infinite;
}
.float-call:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(245, 197, 24, 0.65);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 998;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 2px solid #dce6f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-mid);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(245, 197, 24, 0.5); }
  50%       { box-shadow: 0 8px 36px rgba(245, 197, 24, 0.75); }
}

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
  .about-grid,
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { order: -1; }
  .about-img-accent { right: 0; }
  .about-badge-float { right: 20px; }
  .why-image { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: span 2; }
  .contact-strip-inner { flex-direction: column; }
  .strip-divider { width: 100%; height: 1px; margin: 0; }
  .strip-item { padding: 16px 24px; }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid #dce6f0;
  }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-link { padding: 12px 16px; width: 100%; }
  .nav-cta { text-align: center; }

  .hero-content { padding: 80px 20px 60px; }
  .hero-title { font-size: 2.6rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; }
  .stat-number { font-size: 1.4rem; }

  .services-grid { grid-template-columns: 1fr; }
  .care-types-grid { grid-template-columns: 1fr; }
  .care-type-card.featured { transform: none; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.large { grid-row: span 1; }
  .gallery-item img { min-height: 180px; }
  .gallery-item.large img { min-height: 180px; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .float-call { display: flex; }
  .back-to-top { bottom: 90px; }

  .about-features { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .about-badge-float { display: none; }
  .why-card-float { left: 0; bottom: -16px; }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.7rem; }
  .contact-card { padding: 28px 20px; }
}
