/* ============================================================
   TINY HEARTS CARE — style.css
   Brand: Sky Blue #00AEEF | Hot Pink #E91E8C | Navy #0D1F3C
   Fonts: Playfair Display (headings) + DM Sans (body)
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --blue:     #00AEEF;
  --pink:     #E91E8C;
  --dark:     #0D1F3C;
  --text:     #2C3E50;
  --muted:    #6B7A99;
  --off:      #F4F8FC;
  --white:    #FFFFFF;
  --gradient: linear-gradient(135deg, #00AEEF, #E91E8C);
}
@font-face {
    font-family: 'Roboto Slab';
    src: url('../assets/roboto-slab/RobotoSlab-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Slab';
    src: url('../assets/roboto-slab/RobotoSlab-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Slab';
    src: url('../assets/roboto-slab/RobotoSlab-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Slab';
    src: url('../assets/roboto-slab/RobotoSlab-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}
/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {

  font-family: 'Roboto Slab', serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ── ANIMATIONS ── */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .55; }
}
.pulse { display: inline-block; animation: pulse 1.8s infinite; }

.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ── ALERT BANNER ── */
.alert-bar {
  background: linear-gradient(90deg, #FF6B00, #FF8C00);
  color: #fff;
  text-align: center;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.alert-bar a {
  color: #fff;
  text-decoration: underline;
  margin-left: 6px;
}

/* ── NAVIGATION ── */
nav {
  position: sticky;
  top: 38px;
  z-index: 999;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 174, 239, .1);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img { height: 42px; width: auto; }
.nav-logo span {
font-family: 'Roboto Slab', serif
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.nav-logo span em { color: var(--pink); font-style: normal; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--gradient);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 700;
  transition: opacity .2s, transform .2s;
}
.nav-cta:hover { opacity: .88; transform: translateY(-1px); }

/* ── SHARED SECTION STYLES ── */
section {
  padding: 90px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.tag-blue { background: rgba(0, 174, 239, .12); color: var(--blue); }
.tag-pink { background: rgba(233, 30, 140, .1);  color: var(--pink); }
.tag-dark { background: rgba(13, 31, 60, .08);   color: var(--dark); }
.section-title {
font-family: 'Roboto Slab', serif
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title .blue { color: var(--blue); }
.section-title .pink { color: var(--pink); }
.section-sub {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s, opacity .2s;
  box-shadow: 0 8px 32px rgba(233, 30, 140, .3);
}
.btn-primary:hover { transform: translateY(-2px); opacity: .92; }
.btn-pink { background: linear-gradient(135deg, var(--pink), #C2177A); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, .3);
  color: #fff;
  padding: 11px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, .7); background: rgba(255, 255, 255, .07); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(13, 31, 60, .2);
  color: var(--dark);
  padding: 11px 24px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 600;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

/* ── HERO ── */
#hero {
  max-width: 100%;
  padding: 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.hero-img {
  height: 100%;
  min-height: 88vh;
  background-image: url('assets/nurses_care.jpeg');
  background-size: cover;
  background-position: center top;
  position: relative;
}
.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--dark) 0%, rgba(13, 31, 60, .45) 100%);
}
.hero-content { padding: 80px 60px 80px 80px; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 174, 239, .15);
  border: 1px solid rgba(0, 174, 239, .3);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 1.8s infinite;
}
.hero h1 {
font-family: 'Roboto Slab', serif
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero h1 .pink { color: var(--pink); }
.hero h1 .blue { color: var(--blue); }
.hero-sub { font-size: 16px; color: rgba(255,255,255,.72); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; }
.stat-num {
font-family: 'Roboto Slab', serif
  font-size: 28px;
  font-weight: 900;
  color: #fff;
}
.stat-num span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 11.5px; color: rgba(255,255,255,.5); letter-spacing: .5px; margin-top: 2px; }

/* ── TRUST BAND ── */
.trust-band {
  max-width: 100%;
  padding: 26px 60px;
  background: linear-gradient(135deg, rgba(0,174,239,.07), rgba(233,30,140,.05));
  border-top: 1px solid rgba(0,174,239,.12);
  border-bottom: 1px solid rgba(0,174,239,.12);
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon { font-size: 22px; }
.trust-text { font-size: 13px; font-weight: 600; color: var(--dark); }

/* ── SERVICE CARDS ── */
.sc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.sc-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(13,31,60,.08);
  transition: transform .3s, box-shadow .3s;
  background: #fff;
}
.sc-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(13,31,60,.14); }
.sc-img { width: 100%; height: 210px; object-fit: cover; }
.sc-body { padding: 24px; }
.sc-tag {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sc-body h3 { font-family: 'Roboto Slab', serif; font-size: 19px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.sc-body p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.sc-price {
  display: inline-block;
  margin-top: 14px;
  background: linear-gradient(135deg, rgba(0,174,239,.1), rgba(233,30,140,.07));
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 10px;
}

/* Full service grid */
.svc-full-wrap { background: var(--off); border-radius: 24px; padding: 40px; margin-top: 40px; }
.svc-full-wrap h3 { font-family: 'Roboto Slab', serif; font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 24px; }
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.svc-item { display: flex; gap: 14px; align-items: flex-start; background: #fff; border-radius: 14px; padding: 16px; }
.svc-dot { width: 40px; height: 40px; border-radius: 11px; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.svc-item h4 { font-size: 13.5px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.svc-item p { font-size: 12.5px; color: var(--muted); line-height: 1.55; }

/* ── ADULT NURSING CARE ── */
#adult-care { background: #fff; }
.adult-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-top: 56px; }
.adult-who { background: var(--off); border-radius: 22px; overflow: hidden; }
.adult-who-inner { padding: 36px; }
.adult-tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.adult-pill {
  background: linear-gradient(135deg, rgba(0,174,239,.12), rgba(233,30,140,.08));
  color: var(--dark);
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: .3px;
}
.adult-who h3 { font-family: 'Roboto Slab', serif; font-size: 21px; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.adult-who-list { display: flex; flex-direction: column; gap: 18px; }
.aw-item { display: flex; gap: 14px; align-items: flex-start; }
.aw-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.aw-item strong { font-size: 13.5px; font-weight: 700; color: var(--dark); display: block; margin-bottom: 3px; }
.aw-item p { font-size: 12.5px; color: var(--muted); line-height: 1.55; margin: 0; }
.adult-services-title { font-family: 'Roboto Slab', serif; font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.adult-services { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 24px; }
.asvc { display: flex; gap: 12px; align-items: flex-start; background: #fff; border: 1px solid rgba(0,174,239,.12); border-radius: 14px; padding: 16px; }
.asvc-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.asvc h4 { font-size: 12.5px; font-weight: 700; color: var(--dark); margin-bottom: 3px; line-height: 1.3; }
.asvc p { font-size: 11.5px; color: var(--muted); line-height: 1.5; margin: 0; }
.adult-note { background: rgba(0,174,239,.06); border-left: 3px solid var(--blue); border-radius: 0 10px 10px 0; padding: 14px 18px; display: flex; gap: 10px; align-items: flex-start; }
.adult-note-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.adult-note p { font-size: 12.5px; color: var(--text); line-height: 1.55; margin: 0; }
.adult-btns { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ── HOW IT WORKS ── */
.how-section { background: var(--off); padding: 90px 0; }
.how-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 48px; }
.how-img { border-radius: 24px; overflow: hidden; box-shadow: 0 16px 64px rgba(13,31,60,.14); }
.how-img img { width: 100%; height: 420px; object-fit: cover; object-position: center; }
.how-steps { display: flex; flex-direction: column; gap: 28px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num { width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-family: 'Roboto Slab', serif; font-size: 20px; font-weight: 900; color: #fff; }
.step h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.step p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ── HOSPITAL SECTION ── */
#partner-hospital {
  max-width: 100%;
  padding: 90px 60px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.hosp-overlay {
  position: absolute;
  inset: 0;
  background-image: url('assets/hospital_team.jpeg');
  background-size: cover;
  background-position: center;
  opacity: .12;
}
.hosp-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.hosp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hosp-tag { background: rgba(0,174,239,.18); color: #7DD8F8; }
.hosp-features { display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }
.hosp-feat { display: flex; gap: 14px; align-items: flex-start; }
.hosp-feat-icon { width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0; background: rgba(0,174,239,.15); display: flex; align-items: center; justify-content: center; font-size: 19px; }
.hosp-feat h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.hosp-feat p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.55; }
.hosp-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.hosp-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.hosp-stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 24px; text-align: center; }
.hosp-stat-num { font-family: 'Roboto Slab', serif; font-size: 32px; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hosp-stat-label { font-size: 12.5px; color: rgba(255,255,255,.5); margin-top: 4px; line-height: 1.4; }

/* ── CTA COLUMNS ── */
#cta-cols { background: var(--off); }
.cta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.cta-card { background: #fff; border-radius: 22px; padding: 36px 30px; box-shadow: 0 4px 24px rgba(13,31,60,.07); display: flex; flex-direction: column; }
.icon-wrap { width: 56px; height: 56px; border-radius: 16px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; font-size: 26px; }
.cta-card h3 { font-family: 'Roboto Slab', serif; font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.cta-card > p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; flex: 1; }
.cta-form { display: flex; flex-direction: column; gap: 10px; }
.cta-form input,
.cta-form textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(13,31,60,.12);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: var(--dark);
  background: var(--off);
  outline: none;
  transition: border-color .2s;
}
.cta-form input:focus,
.cta-form textarea:focus { border-color: var(--blue); }
.cta-form textarea { resize: none; height: 90px; }
.cta-card .btn-primary { margin-top: 4px; justify-content: center; }

/* Emergency card */
.emergency-card { background: linear-gradient(135deg, var(--dark), #1A3060); }
.emergency-card h3 { color: #fff; }
.emergency-card > p { color: rgba(255,255,255,.65); }
.emergency-card .icon-wrap { background: rgba(0,174,239,.15); }
.divider { border: none; border-top: 1px solid rgba(255,255,255,.12); margin: 4px 0 16px; }
.emg-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  padding: 14px 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s;
  margin-top: 8px;
}
.emg-btn:hover { background: rgba(255,255,255,.16); }
.emg-emoji { font-size: 24px; }
.emg-label { font-size: 11px; color: rgba(255,255,255,.5); display: block; margin-bottom: 1px; font-weight: 400; }
.emg-note { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 20px; line-height: 1.55; }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 64px 60px 32px; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 240px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: background .2s;
}
.social-btn:hover { background: rgba(0,174,239,.2); }
.footer-col h5 { font-size: 11px; font-weight: 700; color: #fff; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-col ul li a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.3); }
.footer-contact { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-contact a { font-size: 12.5px; color: rgba(255,255,255,.45); display: flex; align-items: center; gap: 5px; }
.footer-contact a:hover { color: var(--blue); }

/* ── RESPONSIVE ── */
@media (max-width: 968px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }

  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-img { height: 280px; min-height: 280px; }
  .hero-content { padding: 48px 24px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }

  section { padding: 60px 24px; }
  .how-section { padding: 60px 0; }
  .how-inner { padding: 0 24px; }

  .sc-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }

  .adult-grid { grid-template-columns: 1fr; gap: 32px; }
  .adult-services { grid-template-columns: 1fr; }

  .how-grid { grid-template-columns: 1fr; gap: 36px; }
  .how-img img { height: 260px; }

  .hosp-grid { grid-template-columns: 1fr; gap: 36px; }
  #partner-hospital { padding: 64px 24px; }

  .cta-grid { grid-template-columns: 1fr; }

  footer { padding: 48px 24px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-band { padding: 20px 24px; gap: 24px; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .adult-btns { flex-direction: column; }
  .hosp-stats { grid-template-columns: 1fr; }
}
