/* =========================================
   Asia's Family Care
   Professional Website Styles
========================================= */

:root {
  --purple-dark: #56356c;
  --purple: #8b63bd;
  --purple-light: #eee5f8;
  --pink: #d9689d;
  --pink-light: #fff1f7;
  --cream: #fffafc;
  --white: #ffffff;
  --text-dark: #2f2733;
  --text-light: #665d69;
  --border: #e7dce9;
  --shadow: 0 12px 35px rgba(73, 45, 82, 0.12);
  --shadow-hover: 0 18px 45px rgba(73, 45, 82, 0.18);
}

/* Reset */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.75;
  animation: pageFadeIn 0.7s ease-in;
}

img {
  max-width: 100%;
}

.container {
  width: min(90%, 1200px);
  margin: 0 auto;
}

/* Headings and text */

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.2;
}

p {
  font-size: 1.05rem;
  color: var(--text-light);
}

section {
  padding: 95px 0;
}

/* Header */

header {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 3px 18px rgba(50, 35, 55, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  min-height: 105px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.logo {
  display: block;
  height: 90px;
  width: auto;
  animation: logoDrop 0.8s ease-out;
}

.main-nav,
nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a,
nav a {
  position: relative;
  color: var(--purple-dark);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: color 0.25s ease;
}

.main-nav a::after,
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 3px;
  background: var(--pink);
  border-radius: 10px;
  transition: width 0.25s ease;
}

.main-nav a:hover,
nav a:hover {
  color: var(--pink);
}

.main-nav a:hover::after,
nav a:hover::after {
  width: 100%;
}

/* Mobile menu button */

.menu-button {
  display: none;
  border: 0;
  background: var(--purple-light);
  color: var(--purple-dark);
  padding: 11px 15px;
  border-radius: 10px;
  font-size: 1.4rem;
  cursor: pointer;
}

/* Buttons */

.button,
.quote-submit-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 14px 30px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--purple), #7045aa);
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  cursor: pointer;
  box-shadow: 0 9px 22px rgba(112, 69, 170, 0.23);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.button:hover,
.quote-submit-button:hover {
  background: linear-gradient(135deg, #7e55b7, #603593);
  transform: translateY(-3px);
  box-shadow: 0 13px 28px rgba(112, 69, 170, 0.3);
}

.button:active,
.quote-submit-button:active {
  transform: scale(0.97);
}

/* Hero section */

.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(217, 104, 157, 0.13), transparent 34%),
    linear-gradient(135deg, #fff6fa 0%, #f1eafd 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  top: -130px;
  left: -100px;
  background: rgba(139, 99, 189, 0.08);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--purple-dark);
  font-size: clamp(3rem, 6vw, 4.5rem);
  letter-spacing: -1.5px;
}

.hero h1 span,
.hero span {
  color: var(--pink);
}

.hero p {
  max-width: 650px;
  margin-bottom: 34px;
  font-size: 1.25rem;
  line-height: 1.75;
}

.hero img {
  width: 100%;
  display: block;
  border-radius: 30px;
  border: 8px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 25px 60px rgba(59, 38, 66, 0.2);
}

/* Section headings */

.section-heading {
  max-width: 750px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 16px;
  color: var(--purple-dark);
  font-size: clamp(2.3rem, 4vw, 3.2rem);
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 75px;
  height: 5px;
  margin: 18px auto 0;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
}

.section-heading p {
  font-size: 1.1rem;
}

/* Services */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 32px;
}

.service-card,
.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 42px 32px;
  border: 1px solid rgba(139, 99, 189, 0.12);
  border-radius: 24px;
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
  animation: fadeUp 0.8s ease both;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.service-card::before,
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
}

.service-card:hover,
.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(139, 99, 189, 0.3);
  box-shadow: var(--shadow-hover);
}

.service-card h3,
.feature-card h3 {
  margin: 22px 0 14px;
  color: var(--purple-dark);
  font-size: 1.55rem;
}

.service-card p,
.feature-card p {
  font-size: 1.02rem;
}

/* About and welcome image layouts */

.about-grid,
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 65px;
}

.about-image,
.welcome-image,
.caregiver-image {
  width: 100%;
  height: auto;
  overflow: visible;
}

.about-image img,
.welcome-image img,
.caregiver-image img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 25px;
  box-shadow: var(--shadow);
}

/* About preview */

.about-preview {
  background: var(--white);
}

.about-preview h2 {
  margin-bottom: 20px;
  color: var(--purple-dark);
  font-size: clamp(2.2rem, 4vw, 3rem);
}

.about-preview p {
  margin-bottom: 18px;
}

/* Why choose us */

.why-choose-us {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #8b63bd 0%, #5c3875 100%);
  color: var(--white);
  animation: fadeUp 0.8s ease both;
}

.why-choose-us h2,
.why-choose-us h3 {
  color: var(--white);
}

.why-choose-us p {
  color: rgba(255, 255, 255, 0.9);
}

/* FAQ */

.faq-item {
  max-width: 850px;
  margin: 0 auto 20px;
  padding: 25px 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(66, 43, 73, 0.08);
  animation: fadeUp 0.8s ease both;
}

.faq-item h3 {
  margin-bottom: 10px;
  color: var(--purple-dark);
  font-size: 1.3rem;
}

/* Quote page */

.quote-intro {
  padding: 75px 20px 45px;
  background:
    radial-gradient(circle at 80% 20%, rgba(217, 104, 157, 0.1), transparent 30%),
    #fff8fb;
  text-align: center;
}

.quote-intro h1 {
  margin-bottom: 18px;
  color: var(--purple-dark);
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.quote-intro p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.15rem;
}

.quote-form-section {
  padding: 35px 20px 90px;
  background: #fff8fb;
}

.quote-form {
  max-width: 760px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid rgba(139, 99, 189, 0.14);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(67, 42, 76, 0.12);
}

.quote-form label {
  display: block;
  margin-bottom: 23px;
  color: #493253;
  font-size: 1rem;
  font-weight: 750;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  display: block;
  width: 100%;
  min-height: 52px;
  margin-top: 9px;
  padding: 14px 16px;
  border: 1.5px solid #d7c8dd;
  border-radius: 12px;
  background: #fff;
  color: var(--text-dark);
  font: inherit;
  font-size: 1rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.quote-form textarea {
  min-height: 145px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(139, 99, 189, 0.14);
}

.quote-form .checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  line-height: 1.55;
}

.quote-form .checkbox-row input {
  width: 21px;
  height: 21px;
  min-height: 0;
  margin-top: 4px;
  flex-shrink: 0;
}

.quote-submit-button {
  width: 100%;
  margin-top: 8px;
  font-size: 1.05rem;
}

.form-note {
  margin-top: 20px;
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Floating booking button */

.floating-book-button {
  animation: gentlePulse 2.3s infinite;
}

/* Footer */

footer {
  padding: 60px 20px;
  background: #432653;
  color: var(--white);
  text-align: center;
}

footer p {
  color: rgba(255, 255, 255, 0.85);
}

footer a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

footer a:hover {
  color: #f3b7d1;
  text-decoration: underline;
}

/* Animations */

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes logoDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gentlePulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Tablet and mobile */

@media (max-width: 900px) {
  html {
    font-size: 16px;
  }

  section {
    padding: 75px 0;
  }

  .header-inner {
    min-height: 88px;
  }

  .logo {
    height: 72px;
  }

  .menu-button {
    display: block;
  }

  .main-nav,
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 22px 5%;
    background: var(--white);
    box-shadow: 0 15px 25px rgba(50, 35, 55, 0.12);
  }

  .main-nav.open,
  nav.open {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .main-nav a,
  nav a {
    width: 100%;
    padding: 8px 0;
    font-size: 1.05rem;
  }

  .hero {
    padding: 75px 0;
  }

  .hero-grid,
  .about-grid,
  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-grid {
    text-align: center;
  }

  .hero h1 {
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2.7rem, 9vw, 3.8rem);
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero img {
    max-width: 700px;
    margin: 0 auto;
  }
}

/* Small phones */

@media (max-width: 600px) {
  .container {
    width: 92%;
  }

  section {
    padding: 62px 0;
  }

  .hero {
    padding: 58px 0;
  }

  .hero h1 {
    font-size: 2.65rem;
    letter-spacing: -0.7px;
  }

  .hero p {
    font-size: 1.08rem;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2 {
    font-size: 2.25rem;
  }

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

  .service-card,
  .feature-card {
    padding: 35px 24px;
  }

  .quote-intro {
    padding: 58px 18px 35px;
  }

  .quote-intro h1 {
    font-size: 2.45rem;
  }

  .quote-form-section {
    padding: 25px 14px 65px;
  }

  .quote-form {
    padding: 28px 19px;
    border-radius: 20px;
  }

  .button {
    width: 100%;
    max-width: 330px;
  }
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
/* Stronger, bolder website text */

body {
  font-weight: 500;
}
/* Larger text across the entire website */
p {
    font-size: 1.25rem;
    line-height: 1.8;
}

li {
    font-size: 1.25rem;
    line-height: 1.8;
}

label {
    font-size: 1.15rem;
}

input,
textarea,
select {
    font-size: 1.15rem;
}
.hero h1 {
  font-weight: 900;
  letter-spacing: -1px;
  text-shadow: 0 2px 8px rgba(93, 59, 115, 0.08);
}

.hero p {
  font-weight: 600;
  color: #4b4050;
}

.hero > .container p:first-child,
.hero-grid > div > p:first-child {
  font-weight: 700;
  color: #4d3b58;
  letter-spacing: 0.3px;
}

.section-heading h2,
.about-preview h2,
.quote-intro h1 {
  font-weight: 900;
}

.section-heading p,
.about-preview p,
.service-card p,
.feature-card p,
.faq-item p {
  font-weight: 500;
  color: #514756;
}

.service-card h3,
.feature-card h3,
.faq-item h3 {
  font-weight: 800;
}

nav a,
.main-nav a {
  font-weight: 800;
}

.button,
.quote-submit-button {
  font-weight: 900;
}

footer,
footer p,
footer a {
  font-weight: 600;
}
.service-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,#fde7f2,#efe8ff);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(111,63,133,.15);
}

.service-icon i{
    font-size:42px;
    color:#7a4bb8;
}

.service-card:hover .service-icon{
    transform:scale(1.08);
    transition:.3s;
}
}
/* Professional FAQ cards */

.faq-preview-list{
  max-width:850px;
  margin:0 auto;
  display:grid;
  gap:16px;
}

.faq-preview-list details{
  background:white;
  border:1px solid #e7dce9;
  border-radius:18px;
  box-shadow:0 8px 24px rgba(66,43,73,.08);
  overflow:hidden;
}

.faq-preview-list summary{
  position:relative;
  padding:22px 65px 22px 24px;
  color:#56356c;
  font-size:1.12rem;
  font-weight:800;
  cursor:pointer;
  list-style:none;
}

.faq-preview-list summary::-webkit-details-marker{
  display:none;
}

.faq-preview-list summary::after{
  content:"+";
  position:absolute;
  right:22px;
  top:50%;
  transform:translateY(-50%);
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#eee5f8;
  color:#7045aa;
  font-size:24px;
  font-weight:bold;
}

.faq-preview-list details[open] summary::after{
  content:"−";
}

.faq-preview-list details p{
  padding:0 24px 22px;
  color:#514756;
  font-size:1rem;
  line-height:1.7;
}

.faq-preview-list details[open]{
  border-color:#cbb5df;
  box-shadow:0 12px 30px rgba(86,53,108,.14);
}
/* Full FAQ page */

.faq-page-intro {
  padding: 85px 0 45px;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(217, 104, 157, 0.12),
      transparent 30%
    ),
    linear-gradient(135deg, #fff7fb, #f3edff);
}

.faq-page-intro .section-heading {
  margin-bottom: 0;
}

.faq-page-intro .section-heading > p:first-child {
  margin-bottom: 12px;
  color: var(--pink);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.faq-page-intro h1 {
  margin-bottom: 20px;
  color: var(--purple-dark);
  font-size: clamp(2.7rem, 6vw, 4.4rem);
}

.faq-page-section {
  padding: 70px 0 95px;
  background: var(--cream);
}

.faq-booking-box {
  max-width: 850px;
  margin: 55px auto 0;
  padding: 45px 30px;
  border-radius: 25px;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(255, 255, 255, 0.13),
      transparent 30%
    ),
    linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: white;
  text-align: center;
  box-shadow: var(--shadow-hover);
}

.faq-booking-box p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.faq-booking-box h2 {
  margin-bottom: 25px;
  color: white;
  font-size: clamp(2rem, 5vw, 3rem);
}

.faq-booking-box .button {
  background: white;
  color: var(--purple-dark);
}

.faq-booking-box .button:hover {
  background: var(--pink-light);
}

@media (max-width: 600px) {
  .faq-page-intro {
    padding: 60px 0 35px;
  }

  .faq-page-intro h1 {
    font-size: 2.65rem;
  }

  .faq-page-section {
    padding: 50px 0 70px;
  }

  .faq-preview-list summary {
    padding: 20px 62px 20px 20px;
    font-size: 1.05rem;
  }

  .faq-preview-list details p {
    padding: 0 20px 20px;
  }

  .faq-booking-box {
    padding: 38px 22px;
  }
}
/* Booking form layout */
.booking-form {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  padding: 28px;
  background: #ffffff;
  border-radius: 24px;
  box-sizing: border-box;
}

.booking-form h2 {
  margin-top: 30px;
  margin-bottom: 18px;
}

.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  font-weight: 600;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid #ddd4df;
  border-radius: 12px;
  background: #ffffff;
  box-sizing: border-box;
}

.booking-form textarea {
  resize: vertical;
}

/* Phone layout */
@media (max-width: 700px) {
  .booking-form-section {
    padding: 35px 16px;
  }

  .booking-form {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .booking-form h2 {
    font-size: 32px;
    line-height: 1.1;
  }

  .booking-form label {
    font-size: 18px;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    width: 100%;
    font-size: 16px;
  }
}
/* Final booking page cleanup */

.booking-form-section {
  background: #fff9fc;
  padding: 60px 20px;
}

.booking-form {
  max-width: 900px;
  padding: 40px;
  box-shadow: 0 14px 40px rgba(77, 42, 91, 0.08);
}

.booking-form h2 {
  color: #2f2431;
  font-size: 34px;
  margin-top: 38px;
  margin-bottom: 20px;
}

.booking-form h2:first-of-type {
  margin-top: 0;
}

.booking-form label {
  color: #332b35;
  line-height: 1.4;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  min-height: 54px;
}

.booking-form textarea {
  min-height: 170px;
}

.checkbox-row {
  display: grid !important;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 12px !important;
  margin-top: 24px;
}

.checkbox-row input {
  width: 20px !important;
  min-height: 20px !important;
  margin-top: 3px;
}

.booking-submit-button {
  display: block;
  width: fit-content;
  margin: 26px auto 0;
  padding: 16px 28px;
  border: none;
  cursor: pointer;
}

.form-note {
  max-width: 720px;
  margin: 18px auto 0;
  text-align: center;
  line-height: 1.6;
  color: #6e6371;
}

@media (max-width: 700px) {
  .booking-form-section {
    padding: 28px 12px;
  }

  .booking-form {
    padding: 26px 18px;
  }

  .booking-form h2 {
    font-size: 30px;
  }

  .booking-submit-button {
    width: 100%;
  }

  .form-note {
    text-align: left;
  }
}
/* =========================================
   PROFESSIONAL BOOKING PAGE
   ========================================= */

.booking-intro {
    padding: 80px 20px 60px;
    text-align: center;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 35%),
        linear-gradient(135deg, #fff4fb 0%, #eee4ff 100%);
    border-bottom: 1px solid rgba(123, 66, 195, 0.12);
}

.booking-intro .container {
  max-width: 760px;
  margin: 0 auto;
}.booking-intro h1 {
    margin: 12px 0 18px;
    color: #4f2d67;
    font-size: 54px;
    line-height: 1.1;
}

.booking-intro p {
    max-width: 680px;
    margin: 0 auto;
    color: #665c69;
    font-size: 19px;
    line-height: 1.7;
}

.booking-label {
  margin: 0 0 10px;
  color: #7b4a91;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.booking-intro h1 {
  margin: 0 0 18px;
  color: #2f2431;
  font-size: clamp(38px, 6vw, 58px);
  line-height: 1.08;
}

.booking-intro p {
  max-width: 680px;
  margin: 0 auto;
  color: #6e6371;
  font-size: 18px;
  line-height: 1.7;
}

.booking-form-section {
  padding: 65px 20px 80px;
  background: #fffafd;
}

.booking-form-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.booking-form {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 48px;
  background: #ffffff;
  border: 1px solid #eee3f0;
  border-radius: 28px;
  box-shadow: 0 18px 55px rgba(77, 42, 91, 0.10);
  box-sizing: border-box;
}

.booking-form h2 {
  position: relative;
  margin: 42px 0 22px;
  padding-bottom: 12px;
  color: #302533;
  font-size: 32px;
  line-height: 1.2;
}

.booking-form h2:first-of-type {
  margin-top: 0;
}

.booking-form h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin-top: 12px;
  border-radius: 20px;
  background: linear-gradient(90deg, #a86cc1, #e8a8c8);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 100%;
  color: #3f3541;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 54px;
  padding: 14px 16px;
  color: #302b32;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  background: #fffefe;
  border: 1px solid #ded2e1;
  border-radius: 13px;
  outline: none;
  box-sizing: border-box;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.booking-form textarea {
  min-height: 170px;
  resize: vertical;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #a49aa6;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: #9b63b4;
  box-shadow: 0 0 0 4px rgba(155, 99, 180, 0.12);
}

.checkbox-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin: 28px 0 0;
  padding: 18px;
  background: #faf5fc;
  border: 1px solid #eadfee;
  border-radius: 14px;
  font-weight: 500 !important;
}

.checkbox-row input[type="checkbox"] {
  width: 20px !important;
  height: 20px !important;
  min-height: 20px !important;
  flex: 0 0 20px;
  margin: 3px 0 0 !important;
  padding: 0 !important;
  accent-color: #8d55a7;
}

.checkbox-row span {
  display: block;
  flex: 1;
  color: #5d5360;
  line-height: 1.6;
}

.booking-submit-button {
  display: block;
  width: fit-content;
  min-width: 260px;
  margin: 30px auto 0;
  padding: 16px 30px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(135deg, #8f59aa, #b973b6);
  border: none;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(143, 89, 170, 0.25);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.booking-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(143, 89, 170, 0.32);
}

.form-note {
  max-width: 720px;
  margin: 22px auto 0;
  padding: 16px 18px;
  color: #6d6370;
  font-size: 15px;
  line-height: 1.65;
  text-align: center;
  background: #fbf7fc;
  border-radius: 12px;
}

@media (max-width: 700px) {
  .booking-intro {
    padding: 48px 18px 32px;
  }

  .booking-intro h1 {
    font-size: 38px;
  }

  .booking-intro p {
    font-size: 16px;
  }

  .booking-form-section {
    padding: 30px 12px 50px;
  }

  .booking-form {
    padding: 28px 18px;
    border-radius: 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .booking-form h2 {
    margin-top: 34px;
    font-size: 29px;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    min-height: 52px;
    font-size: 16px;
  }

  .checkbox-row {
    padding: 15px;
  }

  .booking-submit-button {
    width: 100%;
    min-width: 0;
  }

  .form-note {
    text-align: left;
  }
}
/* Booking page hero */
.booking-intro {
  padding: 72px 20px 58px;
  text-align: center;
  background: linear-gradient(135deg, #fdf4fa 0%, #eee5ff 100%);
  border-bottom: 1px solid #eadff0;
}

.booking-intro .container {
  max-width: 760px;
  margin: 0 auto;
}

.booking-label {
  margin: 0 0 12px;
  color: #8b58a3;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.booking-intro h1 {
  margin: 0 0 18px;
  color: #312735;
  font-size: 52px;
  line-height: 1.1;
}

.booking-intro p {
  max-width: 650px;
  margin: 0 auto;
  color: #6d6270;
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .booking-intro {
    padding: 48px 18px 38px;
  }

  .booking-intro h1 {
    font-size: 38px;
  }

  .booking-intro p {
    font-size: 16px;
  }
}
/* Booking Form Card */
.booking-form,
form {
    max-width: 1000px;
    margin: 50px auto;
    background: #ffffff;
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(88, 49, 110, 0.12);
    border: 1px solid #f0e7f5;
}

.booking-form h2,
form h2 {
    margin-top: 40px;
    color: #3d2d52;
    border-bottom: 2px solid #efe6f7;
    padding-bottom: 12px;
}

.booking-form label,
form label {
    font-weight: 600;
    color: #555;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
form input,
form select,
form textarea {
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 14px;
    transition: .3s;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
form input:focus,
form select:focus,
form textarea:focus {
    border-color: #8b58a3;
    box-shadow: 0 0 0 4px rgba(139,88,163,.15);
    outline: none;
}
/* Fix Why Choose Us section */
.why-choose-us {
  padding: 70px 20px;
  background: linear-gradient(135deg, #8f5cc2 0%, #6f3f93 100%);
  color: #ffffff;
}

.why-choose-us .container {
  max-width: 1100px;
  margin: 0 auto;
}

.why-choose-us h2 {
  margin: 0 0 45px;
  text-align: center;
  color: #ffffff;
  font-size: 46px;
  line-height: 1.15;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.why-choose-item {
  padding: 26px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
}

.why-choose-item i,
.why-choose-icon {
  display: block;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 28px;
}

.why-choose-item h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 27px;
  line-height: 1.2;
}

.why-choose-item p {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .why-choose-us {
    padding: 48px 18px;
  }

  .why-choose-us h2 {
    margin-bottom: 30px;
    font-size: 36px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-choose-item {
    padding: 22px;
  }

  .why-choose-item h3 {
    font-size: 25px;
  }

  .why-choose-item p {
    font-size: 17px;
  }
}
/* Mobile fix for Why Choose Us */
#why-choose-us {
  padding: 60px 20px;
  background: linear-gradient(135deg, #8e5aba 0%, #6d3f8d 100%);
  color: #ffffff;
}

#why-choose-us h2 {
  margin: 0 0 32px;
  text-align: center;
  color: #ffffff;
  font-size: 38px;
  line-height: 1.15;
}

#why-choose-us .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

#why-choose-us .benefit {
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
}

#why-choose-us .benefit-icon {
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1;
  color: #ffffff;
}

#why-choose-us .benefit-icon i {
  font-size: 28px;
}

#why-choose-us .benefit h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 27px;
  line-height: 1.2;
}

#why-choose-us .benefit p {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 700px) {
  #why-choose-us {
    padding: 48px 18px;
    scroll-margin-top: 110px;
  }

  #why-choose-us h2 {
    font-size: 34px;
    margin-bottom: 28px;
  }

  #why-choose-us .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #why-choose-us .benefit {
    padding: 22px;
  }

  #why-choose-us .benefit h3 {
    font-size: 25px;
  }

  #why-choose-us .benefit p {
    font-size: 17px;
  }
}
/* Force-fix Why Families Choose Us */
section#why-choose-us {
  padding: 60px 18px !important;
  background: linear-gradient(135deg, #8c59b5, #653b82) !important;
  scroll-margin-top: 115px;
}

section#why-choose-us .container {
  max-width: 1100px;
  margin: 0 auto;
}

section#why-choose-us .section-heading {
  margin: 0 0 30px !important;
  text-align: center !important;
}

section#why-choose-us .section-heading h2 {
  margin: 0 !important;
  color: white !important;
  font-size: 36px !important;
  line-height: 1.2 !important;
}

section#why-choose-us article.benefit {
  display: block !important;
  margin: 0 0 18px !important;
  padding: 24px !important;
  background: rgba(255, 255, 255, 0.13) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 20px !important;
}

section#why-choose-us .benefit-icon {
  margin: 0 0 14px !important;
  color: white !important;
  font-size: 27px !important;
  line-height: 1 !important;
}

section#why-choose-us article.benefit h3 {
  margin: 0 0 9px !important;
  color: white !important;
  font-size: 25px !important;
  line-height: 1.25 !important;
}

section#why-choose-us article.benefit p {
  margin: 0 !important;
  color: white !important;
  font-size: 17px !important;
  line-height: 1.6 !important;
}
@media (max-width: 700px) {
  #why-choose-us {
    padding: 50px 18px !important;
  }

  #why-choose-us .section-heading {
    margin-bottom: 28px !important;
  }

  #why-choose-us .section-heading h2 {
    font-size: 34px !important;
    text-align: center !important;
    color: #ffffff !important;
  }

  #why-choose-us .benefit {
    display: block !important;
    width: 100% !important;
    margin: 0 0 18px !important;
    padding: 22px !important;
    background: rgba(255, 255, 255, 0.14) !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    border-radius: 18px !important;
    box-sizing: border-box !important;
  }

  #why-choose-us .benefit-icon {
    margin-bottom: 12px !important;
    font-size: 26px !important;
  }

  #why-choose-us .benefit h3 {
    margin: 0 0 8px !important;
    font-size: 25px !important;
    color: #ffffff !important;
  }

  #why-choose-us .benefit p {
    margin: 0 !important;
    font-size: 17px !important;
    line-height: 1.55 !important;
    color: #ffffff !
}important;
  }
#why-choose-us {
    scroll-margin-top: 230px !important;
}

}
#why-choose-us .benefit-icon {
    width: 72px;
    height: 72px;
    margin: 0 0 20px;
    border-radius: 50%;
    background: linear-gradient(145deg, #fbe7ff, #f6d8ff);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 18px rgba(255, 210, 245, 0.9),
        0 0 40px rgba(190, 120, 255, 0.35);
}

#why-choose-us .benefit-icon i {
    font-size: 34px;
    color: #7b42c3;
}
#why-choose-us .benefit-icon {
    width: 72px;
    height: 72px;
    margin: 0 0 20px;
    border-radius: 50%;
    background: linear-gradient(145deg, #fbe7ff, #f6d8ff);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 18px rgba(255, 210, 245, 0.9),
        0 0 40px rgba(190, 120, 255, 0.35);
}

#why-choose-us .benefit-icon i {
    font-size: 34px;
    color: #7b42c3;
}
.home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    background: linear-gradient(135deg, #e9d8f7, #d8b7f0);
    color: #5a2d82;
    font-weight: 700;
    text-decoration: none;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(138, 79, 255, 0.25);
    transition: all 0.3s ease;
}

.home-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(138, 79, 255, 0.35);
}
.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: #efe2f8;
  color: #5b2f72;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 18px;
  border: 1px solid #e0c9ee;
  box-shadow: 0 6px 16px rgba(91, 47, 114, 0.18);
}

.home-button:visited {
  color: #5b2f72;
}

.home-button:hover {
  background: #e4d0f1;
  text-decoration: none;
}
/* Fix booking confirmation checkbox alignment */
.checkbox-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin-top: 24px;
}

.checkbox-row input[type="checkbox"] {
  width: 20px !important;
  height: 20px !important;
  min-height: 20px !important;
  flex: 0 0 20px;
  margin: 4px 0 0 0 !important;
  padding: 0 !important;
}

.checkbox-row span {
  display: block;
  flex: 1;
  line-height: 1.5;
}
.floating-actions {
    position: fixed;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 9999;
}

.floating-call,
.floating-book {
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    min-width: 120px;
    justify-content: center;
}

@media (max-width: 768px) {
    .floating-call,
    .floating-book {
        min-width: 110px;
        padding: 10px 14px;
        font-size: 14px;
    }
}
/* Social Media Icons */
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link i {
    color: #f5c6ff;
    font-size: 22px;
}

.social-link:hover {
    color: #f5c6ff;
    transform: translateX(4px);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  gap: 12px 24px;
  margin-top: 15px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 500px) {
  .footer-links {
    grid-template-columns: 1fr 1fr;
    width: 90%;
    margin: 15px auto 0;
  }
}
.floating-actions {
  position: fixed;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 9999;
}

.floating-call,
.floating-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.floating-call {
  background: white;
  color: #5b2f72;
  border: 2px solid #d9bdf2;
}

.floating-book {
  background: linear-gradient(135deg, #8a4fff, #6d2fd5);
  color: white;
}
/* Force larger subtext across the whole website */
body p,
body li,
body .section-heading p,
body .service-card p,
body .about-preview p,
body .faq-preview p,
body .home-booking p,
body .booking-card p {
  font-size: 1.35rem !important;
  line-height: 1.8 !important;
}

body label,
body input,
body textarea,
body select {
  font-size: 1.2rem !important;
}
/* Fix hero layout on laptops and desktops */
@media (min-width: 900px) {
  .hero {
    padding: 70px 30px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 4vw, 4rem);
    overflow-wrap: break-word;
  }

  .hero p {
    max-width: 100%;
  }

  .hero img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}
/* Fix hero layout on laptops and desktops */
@media (min-width: 900px) {
  .hero {
    padding: 70px 30px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 4vw, 4rem);
    overflow-wrap: break-word;
  }

  .hero p {
    max-width: 100%;
  }

  .hero img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}
/* Keep hero image sharp on laptops */
@media (min-width: 900px) {
  .hero img {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: cover;
  }
}
