html, body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== GLOBAL THEME ===== */
body {
  font-family: 'Open Sans', sans-serif;
  background-color: #F9FAFB;
  color: #2C3E50;
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, .brand-text, .nav-links a, .footer-brand h3 {
  font-family: 'Montserrat', sans-serif;
  color: #1A252F;
}

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

img, section, div {
  max-width: 100%;
  height: auto;
}

/* ===== HEADER ===== */
.site-header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E5E7EB;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

.brand-text h1 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  gap: 6px;
}

.brand-text .mulberry { color: #C54BBC; }
.brand-text .counselling { color: #2C3E50; }

/* ===== NAVIGATION ===== */
.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #4A5568;
  transition: color 0.2s;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active { color: #C54BBC; }

/* ===== BANNER (homepage) ===== */
.banner-section { width: 100%; margin-bottom: 0; }

.banner-card {
  background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('/images/banner/mulberry_banner.webp');
  background-size: cover;
  background-position: center 35%;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.banner-text { padding-left: 60px; }

.banner-text h2 {
  font-weight: 800;
  font-size: 3.5rem;
  color: white;
  line-height: 1.1;
  text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.banner-text p {
  font-size: 1.3rem;
  color: white;
  margin-top: 15px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ===== PAGE HEADER (inner pages: about/services/contact/service pages) ===== */
.page-header {
  background: linear-gradient(rgba(26,37,47,0.85), rgba(26,37,47,0.85)), url('/images/banner/mulberry_banner.webp');
  background-size: cover;
  background-position: center 35%;
  padding: 70px 0;
  text-align: center;
}

.page-header h1 {
  color: white;
  font-size: 2.6rem;
  font-weight: 800;
}

.page-header p {
  color: #E2E8F0;
  font-size: 1.1rem;
  margin-top: 12px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb {
  font-size: 0.85rem;
  color: #CBD5E0;
  margin-bottom: 16px;
}
.breadcrumb a { color: #CBD5E0; text-decoration: none; }
.breadcrumb a:hover { color: white; }

/* ===== CONTENT SECTIONS (inner pages) ===== */
.content-section {
  width: 100%;
  background: #FFFFFF;
  padding: 70px 0;
}

.content-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-narrow h2 {
  font-size: 1.9rem;
  margin: 40px 0 18px;
  border-left: 5px solid #C54BBC;
  padding-left: 18px;
  color: #1A252F;
}
.content-narrow h2:first-child { margin-top: 0; }

.content-narrow p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #4A5568;
}

.content-narrow ul {
  margin: 0 0 20px 24px;
  color: #4A5568;
  font-size: 1.05rem;
}
.content-narrow ul li { margin-bottom: 8px; }

/* ===== WELCOME SECTION (homepage) ===== */
.row-one-box {
  width: 100%;
  background: #FFFFFF;
  padding: 80px 0;
}

.feature-card-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-card h3 {
  font-size: 2.4rem;
  margin-bottom: 24px;
  border-left: 5px solid #C54BBC;
  padding-left: 20px;
  color: #1A252F;
}

.feature-card p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: #4A5568;
}

.divider-silver {
  height: 2px;
  background: #E2E8F0;
  width: 60px;
  margin: 30px 0;
}

.btn-solid {
  display: inline-block;
  padding: 14px 34px;
  background-color: #C54BBC;
  border-radius: 50px;
  color: white !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-solid:hover {
  background-color: #A03A98;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 75, 188, 0.3);
}

.btn-outline {
  display: inline-block;
  padding: 12px 30px;
  background: white;
  border: 2px solid #C54BBC;
  border-radius: 50px;
  color: #C54BBC !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.btn-outline:hover { background: #FCE8FA; }

/* ===== SERVICE BOXES / CARDS ===== */
.row-three-boxes {
  padding: 80px 0;
  background: #F9FAFB;
}

.boxes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-box {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid #EDF2F7;
}

.service-box:hover {
  transform: translateY(-5px);
  border-color: #C54BBC;
}

.service-box.linked { text-decoration: none; display: block; }

.service-icon {
  font-size: 2.5rem;
  color: #C54BBC;
  margin-bottom: 20px;
}

.service-box h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.service-box p {
  font-size: 0.95rem;
  color: #718096;
}

/* ===== BOOKING CALENDAR ===== */
.calendar-wrap {
  max-width: 420px;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px;
  background: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.calendar-header button {
  background: white;
  border: 2px solid #C54BBC;
  color: #C54BBC;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
.calendar-header button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.calendar-header h4 {
  font-size: 1.1rem;
  color: #1A252F;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.calendar-daylabel {
  text-align: center;
  font-size: 0.75rem;
  color: #A0AEC0;
  font-weight: 700;
  padding-bottom: 6px;
}
.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #CBD5E0;
}
.calendar-day.empty { visibility: hidden; }
.calendar-day.has-slots {
  color: #1A252F;
  font-weight: 700;
  cursor: pointer;
  background: #FCE8FA;
  transition: 0.15s;
}
.calendar-day.has-slots:hover { background: #C54BBC; color: white; }
.calendar-day.has-slots.selected { background: #C54BBC; color: white; }
.calendar-day.is-busy {
  background: #EDF2F7;
  color: #A0AEC0;
  text-decoration: line-through;
}
.calendar-day.today { box-shadow: inset 0 0 0 2px #C54BBC; }
.calendar-legend {
  display: flex;
  gap: 18px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #E2E8F0;
  font-size: 0.8rem;
  color: #718096;
}
.calendar-legend span { display: inline-flex; align-items: center; gap: 6px; }
.legend-swatch { width: 12px; height: 12px; border-radius: 4px; display: inline-block; }
.legend-swatch.available { background: #FCE8FA; border: 1px solid #C54BBC; }
.legend-swatch.busy { background: #EDF2F7; border: 1px solid #CBD5E0; }
.day-times { margin-top: 18px; }
.day-times h5 { font-size: 0.95rem; margin-bottom: 10px; color: #1A252F; }

/* ===== FAQ ACCORDION (service pages) ===== */
.faq-item {
  border-bottom: 1px solid #E2E8F0;
  padding: 18px 0;
}
.faq-item summary {
  font-weight: 700;
  font-size: 1.05rem;
  color: #1A252F;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: #C54BBC;
  font-size: 1.3rem;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin-top: 12px;
  color: #4A5568;
}

/* ===== CTA BAND (service pages) ===== */
.cta-band {
  background: #1A252F;
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { color: white; font-size: 1.8rem; margin-bottom: 16px; }
.cta-band p { color: #A0AEC0; margin-bottom: 24px; }

/* ===== FOOTER ===== */
.site-footer {
  background: #1A252F;
  color: #E2E8F0;
  padding: 60px 0 30px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand h3 { color: #C54BBC; margin-bottom: 15px; }
.footer-brand p { color: #A0AEC0; }

.bacp-badge {
  height: 48px;
  width: auto;
  margin-top: 16px;
  background: #FFFFFF;
  padding: 6px 10px;
  border-radius: 6px;
  display: inline-block;
}

.contact-item { color: #E2E8F0; margin-bottom: 10px; text-decoration: none; display: block; }
.contact-item i { color: #C54BBC; margin-right: 10px; }

.copyright {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #2D3748;
  font-size: 0.85rem;
  color: #718096;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0;
  }
  .logo-area {
    flex-direction: column;
    gap: 5px;
    width: 100%;
    justify-content: center;
  }
  .brand-text h1 {
    font-size: 1.5rem;
    justify-content: center;
    flex-wrap: nowrap;
  }
  .nav-links {
    justify-content: center;
    width: 100%;
    gap: 15px;
    margin-top: 10px;
  }
  .boxes-grid { grid-template-columns: 1fr; }
  .banner-text h2 { font-size: 2.5rem; }
  .banner-text { padding-left: 30px; }
  .header-inner { flex-direction: column; text-align: center; }
  .page-header h1 { font-size: 2rem; }
}