/* ===================================
   THE SPARKLE FAIRY - CARE HOME PAGE
   =================================== */

/* ---- HERO SECTION ---- */
.care-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #8e0040 0%, #c2185b 40%, #e91e8c 75%, #ff6bb0 100%);
  padding: 80px 20px 70px;
  text-align: center;
}
.care-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.06);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  animation: hero-blob 12s ease-in-out infinite alternate;
}
@keyframes hero-blob {
  0%   { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.12) rotate(15deg); }
}
.care-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.care-hero h1 {
  color: #ffffff;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
}
.care-hero-sub {
  color: #ffffff;
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 16px;
  opacity: 0.95;
}
.care-hero-desc {
  color: #ffffff;
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 36px;
  opacity: 0.9;
  font-weight: 300;
}
.care-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.care-btn-primary {
  background: #ffffff;
  color: #c2185b;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95em;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.care-btn-primary:hover {
  background: #fdf2f7;
  color: #880e4f;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}
.care-btn-secondary {
  background: transparent;
  color: #ffffff !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95em;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.6);
  display: inline-block;
  transition: all 0.3s ease;
}
.care-btn-secondary:link,
.care-btn-secondary:visited {
  color: #ffffff !important;
}
.care-btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: #ffffff;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}
.how-it-works h2 {
  font-size: 2em;
  color: #c2185b;
  margin-bottom: 40px;
  font-weight: 700;
}
.hiw-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.hiw-step {
  background: #fdf2f7;
  border-radius: 12px;
  padding: 28px 24px;
  width: 280px;
  text-align: left;
  border-left: 4px solid #e91e8c;
}
.hiw-step-number {
  font-size: 1.8em;
  font-weight: 800;
  color: #e91e8c;
  margin-bottom: 10px;
}
.hiw-step h3 {
  font-size: 1em;
  font-weight: 700;
  color: #333333;
  margin-bottom: 8px;
}
.hiw-step p {
  font-size: 0.92em;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

/* ---- PRICING ---- */
.pricing-section {
  padding: 60px 20px;
  background: #fdf2f7;
  text-align: center;
}
.pricing-section h2 {
  font-size: 2em;
  color: #c2185b;
  margin-bottom: 16px;
  font-weight: 700;
}
.pricing-intro {
  font-size: 1em;
  color: #555555;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-table {
  max-width: 700px;
  margin: 0 auto 40px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(194,24,91,0.1);
}
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}
.pricing-table th {
  background: #c2185b;
  color: #ffffff;
  padding: 16px 24px;
  font-size: 1em;
  font-weight: 700;
  text-align: left;
}
.pricing-table td {
  padding: 16px 24px;
  font-size: 1em;
  color: #333333;
  text-align: left;
  border-bottom: 1px solid #f8bbd0;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table tr:nth-child(even) td {
  background: #fdf2f7;
}
.price-highlight {
  font-weight: 700;
  color: #c2185b;
}
.pricing-note {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 28px;
  border-left: 4px solid #e91e8c;
  text-align: left;
  box-shadow: 0 2px 10px rgba(194,24,91,0.08);
}
.pricing-note p {
  margin: 0;
  color: #555555;
  font-size: 0.95em;
  line-height: 1.7;
}

/* ---- WHY CARE HOMES ---- */
.why-us {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}
.why-us h2 {
  font-size: 2em;
  color: #c2185b;
  margin-bottom: 40px;
  font-weight: 700;
}
.why-us-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.why-us-card {
  background: #fdf2f7;
  border-radius: 12px;
  padding: 28px 24px;
  width: 280px;
  text-align: left;
}
.why-us-icon {
  font-size: 1.8em;
  margin-bottom: 12px;
}
.why-us-card h3 {
  font-size: 1em;
  font-weight: 700;
  color: #c2185b;
  margin-bottom: 8px;
}
.why-us-card p {
  font-size: 0.92em;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

/* ---- WHAT TO EXPECT ---- */
.expect-section {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}
.expect-section h2 {
  font-size: 2em;
  color: #c2185b;
  margin-bottom: 16px;
  font-weight: 700;
}
.expect-intro {
  font-size: 1em;
  color: #555555;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.expect-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.expect-card {
  background: #fdf2f7;
  border-radius: 12px;
  padding: 28px 24px;
  width: 300px;
  text-align: left;
}
.expect-card h3 {
  font-size: 1.1em;
  font-weight: 700;
  color: #c2185b;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f8bbd0;
}
.expect-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.expect-card ul li {
  font-size: 0.92em;
  color: #555555;
  line-height: 1.6;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid #f8bbd0;
}
.expect-card ul li:last-child {
  border-bottom: none;
}
.expect-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e91e8c;
  font-weight: 700;
}

/* ---- SPECIALIST CARE ---- */
.specialist-section {
  padding: 60px 20px;
  background: #fdf2f7;
  text-align: center;
}
.specialist-section h2 {
  font-size: 2em;
  color: #c2185b;
  margin-bottom: 16px;
  font-weight: 700;
}
.specialist-intro {
  font-size: 1em;
  color: #555555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.specialist-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 40px auto;
}
.specialist-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 24px;
  width: 280px;
  text-align: left;
  box-shadow: 0 2px 12px rgba(194,24,91,0.08);
}
.specialist-card-icon {
  font-size: 1.8em;
  margin-bottom: 12px;
}
.specialist-card h3 {
  font-size: 1em;
  font-weight: 700;
  color: #c2185b;
  margin-bottom: 8px;
}
.specialist-card p {
  font-size: 0.92em;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}
.specialist-note {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 28px;
  border-left: 4px solid #e91e8c;
  text-align: left;
  box-shadow: 0 2px 10px rgba(194,24,91,0.08);
}
.specialist-note p {
  margin: 0;
  color: #555555;
  font-size: 0.95em;
  line-height: 1.7;
}

/* ---- CONSENT & SAFEGUARDING ---- */
.consent-section {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}
.consent-section h2 {
  font-size: 2em;
  color: #c2185b;
  margin-bottom: 40px;
  font-weight: 700;
}
.consent-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 40px auto;
}
.consent-card {
  background: #fdf2f7;
  border-radius: 12px;
  padding: 28px 24px;
  width: 260px;
  text-align: left;
}
.consent-card-icon {
  font-size: 1.8em;
  margin-bottom: 12px;
}
.consent-card h3 {
  font-size: 1em;
  font-weight: 700;
  color: #c2185b;
  margin-bottom: 8px;
}
.consent-card p {
  font-size: 0.92em;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}
.consent-download {
  max-width: 700px;
  margin: 0 auto;
  background: #fdf2f7;
  border-radius: 12px;
  padding: 24px 28px;
  text-align: center;
}
.consent-download p {
  color: #555555;
  font-size: 0.95em;
  margin-bottom: 16px;
}
.consent-download a {
  display: inline-block;
  background: #c2185b;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95em;
  text-decoration: none;
}
.consent-download a:hover {
  background: #880e4f;
}

/* ---- RESOURCES ---- */
.resources-section {
  padding: 60px 20px;
  background: #fdf2f7;
  text-align: center;
}
.resources-section h2 {
  font-size: 2em;
  color: #c2185b;
  margin-bottom: 16px;
  font-weight: 700;
}
.resources-intro {
  font-size: 1em;
  color: #555555;
  margin-bottom: 40px;
}
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.resource-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  width: 260px;
  text-align: left;
  box-shadow: 0 2px 12px rgba(194,24,91,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.resource-card-icon {
  font-size: 1.8em;
  margin-bottom: 12px;
}
.resource-card h3 {
  font-size: 0.95em;
  font-weight: 700;
  color: #333333;
  margin-bottom: 8px;
}
.resource-card p {
  font-size: 0.88em;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}
.resource-card a {
  display: inline-block;
  background: #c2185b;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.88em;
  text-decoration: none;
  text-align: center;
}
.resource-card a:hover {
  background: #880e4f;
}
.resource-card .btn-secondary {
  display: inline-block;
  background: transparent;
  color: #c2185b;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.88em;
  text-decoration: none;
  text-align: center;
  border: 2px solid #c2185b;
  margin-top: 8px;
}
.resource-card .btn-secondary:hover {
  background: #fdf2f7;
}

/* ---- AREAS ---- */
.areas-section {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}
.areas-section h2 {
  font-size: 2em;
  color: #c2185b;
  margin-bottom: 16px;
  font-weight: 700;
}
.areas-intro {
  font-size: 1em;
  color: #555555;
  margin-bottom: 40px;
}
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 32px auto;
}
.area-card {
  background: #fdf2f7;
  border-radius: 12px;
  padding: 24px;
  width: 200px;
  text-align: left;
}
.area-card h3 {
  font-size: 1em;
  font-weight: 700;
  color: #c2185b;
  margin-bottom: 10px;
}
.area-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.area-card ul li {
  font-size: 0.88em;
  color: #555555;
  padding: 3px 0;
  line-height: 1.5;
}
.areas-note {
  font-size: 0.95em;
  color: #555555;
  font-style: italic;
}

/* ---- CTA SECTION ---- */
.cta-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #c2185b 0%, #e91e8c 60%, #f48fb1 100%);
  text-align: center;
}
.cta-section h2 {
  font-size: 2em;
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 700;
}
.cta-section p {
  color: #ffffff;
  font-size: 1em;
  margin-bottom: 32px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto 40px auto;
}
.cta-contact-item {
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 20px 28px;
  text-align: center;
  min-width: 180px;
}
.cta-contact-item a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1em;
  font-weight: 600;
}
.cta-contact-item a:hover {
  text-decoration: underline;
}
.cta-contact-label {
  font-size: 0.85em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}

/* ---- ENQUIRY FORM ---- */
.enquiry-form {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 36px;
  text-align: left;
}
.enquiry-form h3 {
  font-size: 1.3em;
  color: #c2185b;
  margin-bottom: 24px;
  font-weight: 700;
  text-align: center;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.9em;
  font-weight: 600;
  color: #333333;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #f8bbd0;
  border-radius: 8px;
  font-size: 0.95em;
  color: #333333;
  background: #ffffff;
  box-sizing: border-box;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e91e8c;
}
.form-group textarea {
  height: 100px;
  resize: vertical;
}
.form-submit {
  width: 100%;
  background: #c2185b;
  color: #ffffff;
  padding: 14px;
  border: none;
  border-radius: 30px;
  font-size: 1em;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.3s ease;
}
.form-submit:hover {
  background: #880e4f;
}

/* ---- CREDENTIALS STRIP ---- */
.credentials-strip {
  background: #1a1a2e;
  padding: 24px 20px;
  text-align: center;
}
.credentials-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.credential-item {
  color: #ffffff;
  font-size: 0.9em;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.credential-item span.tick {
  color: #4caf50;
  font-size: 1.1em;
}