/*
  Bay Tree Learning - Professional Modern CSS (Brighter Green/Yellow)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500&display=swap');

/* ... existing code ... */
:root {
  --primary-green: #388e3c;
  --accent-yellow: #ffe066;
  --primary-brown: #462f06;
  --gray-bg: #fafbfc;
  --gray-light: #f5f5f7;
  --gray-dark: #222;
  --text-dark: #1d1d1f;
  --white: #fff;
  --max-width: 1100px;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --transition: 0.18s cubic-bezier(.4,0,.2,1);
}

html {
  box-sizing: border-box;
  font-size: 19px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  /* box-sizing: inherit; */
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: var(--gray-bg);
  color: var(--text-dark);
  min-height: 100vh;
  line-height: 1.7;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.site-header {
  background: var(--primary-green);
  color: var(--white);
  border-bottom: none;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition);
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0 1.2rem 0;
}
.logo img {
  height: 56px;
  width: auto;
  display: block;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
}
.main-nav a {
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  font-size: 1.08rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  letter-spacing: 0.01em;
  position: relative;
}
.main-nav a.active,
.main-nav a:hover {
  background: var(--accent-yellow);
  color: var(--primary-green);
}
.header-banner {
  width: 100%;
  background: var(--gray-bg);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1.2rem;
  box-shadow: var(--shadow);
}
.banner-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 220px;
  object-fit: cover;
  border-bottom: 3px solid var(--primary-green);
}
.main-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2.8rem;
  margin-top: 2.8rem;
  margin-bottom: 2.8rem;
}
.intro {
  flex: 2 1 420px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  margin-bottom: 2rem;
  border-left: 6px solid var(--primary-green);
}
.intro-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  margin-bottom: 1.7rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.intro h1 {
  color: var(--primary-brown);
  font-size: 2.4rem;
  margin-bottom: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.intro h2 {
  color: var(--primary-green);
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.7rem;
  font-weight: 600;
}
.intro p {
  margin-bottom: 1.3rem;
  line-height: 1.85;
  font-size: 1.08rem;
}
.testimonials, .testimonials-list {
  flex: 1 1 340px;
  background: var(--white);
  border-left: 4px solid var(--accent-yellow);
  padding: 2.2rem 1.7rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  margin-bottom: 2rem;
}
.testimonial blockquote {
  font-style: italic;
  color: var(--primary-brown);
  margin: 0 0 0.5rem 0;
  quotes: "\201C" "\201D" "\2018" "\2019";
  font-size: 1.13rem;
  line-height: 1.7;
  position: relative;
  padding-left: 1.5rem;
}
.testimonial blockquote:before {
  content: open-quote;
  color: var(--accent-yellow);
  font-size: 2.5rem;
  position: absolute;
  left: 0;
  top: -0.2em;
}
.testimonial cite {
  display: block;
  font-size: 1.01rem;
  color: var(--primary-green);
  margin-top: 0.5rem;
  font-style: normal;
}
.site-footer {
  background: var(--primary-green);
  color: var(--white);
  padding: 2.7rem 0 1.7rem 0;
  text-align: center;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: var(--shadow);
  margin-top: 3.2rem;
  border-top: none;
}
.footer-nav {
  margin-bottom: 0.7rem;
}
.footer-nav a {
  color: var(--white);
  text-decoration: underline;
  margin: 0 0.8rem;
  font-weight: 600;
  font-size: 1.07rem;
  transition: color var(--transition);
}
.footer-nav a:hover {
  text-decoration: none;
  color: var(--accent-yellow);
}
.footer-copy {
  font-size: 1.01rem;
  opacity: 0.93;
  margin-top: 0.6rem;
}
.contact-form input, .contact-form textarea {
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 1rem;
  margin-top: 0.2rem;
  margin-bottom: 0.7rem;
  padding: 0.7rem 1rem;
  width: 100%;
  background: #fafbfc;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--primary-green);
  outline: none;
  box-shadow: 0 0 0 2px #e8f5e9;
}
.contact-form button {
  background: var(--primary-green);
  color: #fff;
  border: none;
  padding: 1rem 2.3rem;
  border-radius: var(--radius);
  font-size: 1.13rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(56,142,60,0.08);
  transition: background var(--transition), box-shadow var(--transition);
  margin-top: 0.5rem;
  letter-spacing: 0.01em;
}
.contact-form button:hover {
  background: var(--accent-yellow);
  color: var(--primary-green);
  box-shadow: 0 4px 16px rgba(255,224,102,0.13);
}
hr {
  border: none;
  border-top: 1.5px solid var(--gray-light);
  margin: 2.7rem 0;
}
/* Hamburger menu for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: 1rem;
}
.hamburger span {
  height: 3px;
  width: 28px;
  background: var(--primary-green);
  margin: 4px 0;
  border-radius: 2px;
  transition: all var(--transition);
}
@media (max-width: 950px) {
  .main-content {
    flex-direction: column;
    gap: 2.2rem;
  }
  .header-flex {
    flex-direction: column;
    gap: 1.3rem;
    align-items: flex-start;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0.8rem;
    background: var(--primary-green);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.1rem 0.6rem;
    margin-top: 0.6rem;
  }
}
@media (max-width: 650px) {
  html {
    font-size: 16px;
  }
  .container {
    padding: 0 0.7rem;
  }
  .intro-img {
    max-width: 100%;
  }
  .site-header, .site-footer {
    padding-left: 0;
    padding-right: 0;
  }
  .header-flex {
    padding: 1rem 0 0.5rem 0;
  }
  .main-nav ul {
    width: 100%;
    padding: 0.7rem 0.2rem;
  }
  .intro, .testimonials, .testimonials-list {
    padding: 1.2rem 0.7rem;
  }
}

/* --- Bay Tree Learning Modern Homepage Styles --- */
body { background: #fff; color: #222; font-family: 'Lato', Arial, sans-serif; }
.bt-header { position: sticky; top: 0; background: #fff; box-shadow: 0 2px 12px rgba(88,136,51,0.07); z-index: 100; }
.bt-header-flex { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 0; }
.bt-logo img { height: 60px; }
.bt-logo-text {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-green);
  letter-spacing: -0.01em;
  font-family: 'Cinzel', serif;
  line-height: 1.4;
  text-align: left;
  margin-left: 0.7rem;
}
.bt-logo-text-top {
  display: block;
}
.bt-logo-text-bottom {
  display: block;
  color: #111;
  font-size: 1.18rem;
  font-weight: 500;
}
.bt-nav a { color: #588833; text-decoration: none; font-weight: 700; margin-left: 2rem; font-size: 1.1rem; transition: color 0.2s; position: relative; }
.bt-nav a:after { content: ''; display: block; width: 0; height: 2px; background: #588833; transition: width .2s; position: absolute; left: 0; bottom: -4px; }
.bt-nav a:hover, .bt-nav a:focus { color: #462f06; }
.bt-nav a:hover:after, .bt-nav a:focus:after { width: 100%; }
.bt-hero { background: #f4fbd2; padding: 3.5rem 0 2.5rem 0; }
.bt-hero-content { display: flex; align-items: start; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.bt-hero-text { flex: 1 1 350px; }
.bt-hero-text h1 { font-size: 2.7rem; color: #588833; font-weight: 900; margin-bottom: 1.2rem; line-height: 1.1; margin-top: 0px; }
.bt-hero-sub { font-size: 1.3rem; color: #462f06; margin-bottom: 2rem; }
.bt-cta { display: inline-block; background: #588833; color: #fff; font-weight: 700; font-size: 1.1rem; padding: 0.9rem 2.2rem; border-radius: 2rem; box-shadow: 0 2px 8px rgba(88,136,51,0.10); text-decoration: none; transition: background 0.2s, box-shadow 0.2s, transform 0.2s; }
.bt-cta:hover { background: #462f06; color: #fff; transform: translateY(-2px) scale(1.03); box-shadow: 0 6px 24px rgba(88,136,51,0.13); }
.bt-hero-img img { border-radius: 1.5rem; box-shadow: 0 4px 24px rgba(70,47,6,0.08); width: 340px; max-width: 100%; }
.bt-about { background: #fff; padding: 3rem 0 2rem 0; }
.bt-about-flex { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.bt-about-text { flex: 1 1 350px; }
.bt-about-text h2 { color: #462f06; font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.bt-about-img img { border-radius: 1.5rem; box-shadow: 0 4px 24px rgba(70,47,6,0.08); width: 260px; max-width: 100%; }
.bt-services { background: #f4fbd2; padding: 3rem 0 2rem 0; }
.bt-services h2 { color: #588833; font-size: 2rem; font-weight: 900; text-align: center; margin-bottom: 2.5rem; }
.bt-services-cards { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.bt-service-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(88,136,51,0.07);
  padding: 2rem 1.5rem;
  flex: 1 1 220px;
  max-width: 320px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}


.bt-service-card-index {
  align-items: center;
}
.bt-service-card:hover { box-shadow: 0 8px 32px rgba(88,136,51,0.13); transform: translateY(-4px) scale(1.03); }
.bt-service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.bt-service-card h3 { color: #588833; font-size: 1.2rem; font-weight: 800; margin-bottom: 0.7rem; }
.bt-service-card p { color: #462f06; font-size: 1rem; }
.bt-service-card ul {
  list-style: disc inside;
  margin: 1.1rem 0 0.2rem 0;
  padding: 0 0 0 0.5rem;
  text-align: left;
  line-height: 1.7;
  font-size: 1.01rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.bt-service-card ul li {
  margin-bottom: 0.3rem;
  padding-left: 0.1rem;
  line-height: 1.7;
  word-break: break-word;
}
.bt-service-card img {
  width: 80px;
  height: 80px;
  filter: brightness(0) saturate(100%) invert(41%) sepia(29%) saturate(749%) hue-rotate(57deg) brightness(1.1);
}
.bt-testimonial { background: #fff; padding: 3rem 0 2rem 0; text-align: center; }
.bt-testimonial blockquote { font-size: 1.3rem; color: #462f06; font-style: italic; margin-bottom: 1.2rem; font-weight: 600; }
.bt-testimonial cite { color: #588833; font-size: 1.1rem; font-style: normal; }
.bt-contact { background: #f4fbd2; padding: 3rem 0 2rem 0; }
.bt-contact-flex {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}
.bt-contact-info {
  flex: 1 1 33%;
  max-width: 33%;
}
.bt-contact-form {
  flex: 2 1 67%;
  max-width: 67%;
}
.bt-contact-info h2 { color: #462f06; font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }
.bt-contact-info p { color: #222; font-size: 1rem; margin-bottom: 0.7rem; }
.bt-contact-form input, .bt-contact-form textarea { border: 1.5px solid #e0e0e0; border-radius: 0.7rem; font-size: 1rem; padding: 0.7rem 1rem; background: #fafafa; transition: border-color 0.2s, box-shadow 0.2s; }
.bt-contact-form input:focus, .bt-contact-form textarea:focus { border-color: #588833; outline: none; box-shadow: 0 0 0 2px #f4fbd2; }
.bt-contact-form button {background: var(--primary-green);color: #fff;border: none;padding: 0.9rem 2.2rem;border-radius: 2rem;font-size: 1.1rem;font-weight: 700;cursor: pointer;box-shadow: 0 2px 8px rgba(88,136,51,0.08);transition: background 0.2s, box-shadow 0.2s;}
.bt-contact-form button:hover { background: #462f06; color: #fff; }
.bt-footer { background: #588833; color: #fff; padding: 2.2rem 0 1.2rem 0; text-align: center; }
.bt-footer-logo img { height: 40px; margin-bottom: 0.7rem; }
.bt-footer-links { margin-bottom: 0.7rem; }
.bt-footer-links a { color: #fff; text-decoration: none; margin: 0 1.2rem; font-weight: 700; font-size: 1.05rem; transition: color 0.2s; }
.bt-footer-links a:hover { color: #f4fbd2; }
.bt-footer-copy { font-size: 1rem; opacity: 0.92; }
@media (max-width: 900px) {
  .bt-hero-content, .bt-about-flex, .bt-contact-flex, .bt-services-cards { flex-direction: column; align-items: center; gap: 2rem; }
  .bt-header-flex { flex-direction: column; gap: 1.2rem; align-items: flex-start; }
  .bt-nav { margin-top: 1rem; }
  .bt-contact-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }
  .bt-contact-info, .bt-contact-form {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 700px) {
  .bt-header-flex, .bt-hero-content, .bt-about-flex, .bt-contact-flex, .bt-services-cards { padding: 0 0.5rem; }
  .bt-hero-img img, .bt-about-img img { width: 100%; min-width: 0; }
  .bt-hero-text h1 { font-size: 2rem; }
  .bt-about-text h2, .bt-services h2 { font-size: 1.3rem; }
  .bt-footer-links {
    max-width: 450px;
    margin: 0 auto;
    display: grid;
    /* align-items: unset; */
    /* flex-flow: column-reverse; */
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

/* --- Bay Tree Learning Modern Homepage Styles (Remix) --- */
.bt-success { background: #fff; padding: 3rem 0 2rem 0; }
.bt-success-flex { display: flex; gap: 2.5rem; flex-wrap: wrap; justify-content: center; }
.bt-success-card { background: #f4fbd2; border-radius: 1.2rem; box-shadow: 0 2px 12px rgba(88,136,51,0.07); padding: 2.2rem 1.5rem; flex: 1 1 320px; max-width: 420px; margin-bottom: 2rem; }
.bt-success-card h3 { color: #588833; font-size: 1.3rem; font-weight: 800; margin-bottom: 1rem; }
.bt-success-card p { color: #462f06; font-size: 1rem; margin-bottom: 0.7rem; }
.bt-testimonials { background: #fff; padding: 3rem 0 2rem 0; }
.bt-testimonials-cards { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.bt-testimonial-card { background: #f4fbd2; border-radius: 1.2rem; box-shadow: 0 2px 12px rgba(88,136,51,0.07); padding: 2rem 1.5rem; flex: 1 1 280px; max-width: 340px; text-align: center; margin-bottom: 2rem; }
.bt-testimonial-card blockquote { font-size: 1.1rem; color: #462f06; font-style: italic; margin-bottom: 1rem; font-weight: 600; }
.bt-testimonial-card cite { color: #588833; font-size: 1rem; font-style: normal; }
@media (max-width: 900px) {
  .bt-success-flex, .bt-testimonials-cards { flex-direction: column; align-items: center; gap: 2rem; }
}

/* Highlights Section */
.bt-highlights {
  background: #f4fbd2;
  padding: 3rem 0;
}
.bt-highlights-flex {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.bt-highlight-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(88,136,51,0.07);
  padding: 2rem 1.5rem;
  flex: 1 1 220px;
  max-width: 320px;
  text-align: center;
  margin: 0.5rem 0;
}
.bt-highlight-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Services Section */
.bt-services-intro {
  text-align: center;
  margin-bottom: 2rem;
  color: #462f06;
  font-size: 1.1rem;
}
.bt-services-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.bt-service-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(88,136,51,0.07);
  padding: 2rem 1.5rem;
  flex: 1 1 220px;
  max-width: 320px;
  text-align: center;
  margin: 0.5rem 0;
}
.bt-service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Journey Section */
.bt-journey {
  background: #fff;
  padding: 3rem 0 2rem 0;
}
.bt-journey-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.bt-journey-step {
  background: #f4fbd2;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(70,47,6,0.07);
  padding: 1.5rem 1rem;
  text-align: center;
  min-width: 180px;
  max-width: 240px;
  flex: 1 1 180px;
}
.bt-journey-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.bt-journey-arrow {
  font-size: 2rem;
  color: #588833;
  margin: 0 0.5rem;
}
.bt-journey-emotion {
  margin-top: 2rem;
  text-align: center;
  color: #462f06;
  font-size: 1.1rem;
}

/* Testimonials Section */
.bt-testimonials {
  background: #f4fbd2;
  padding: 3rem 0;
}
.bt-testimonials-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.bt-testimonial-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(88,136,51,0.07);
  padding: 2rem 1.5rem;
  flex: 1 1 260px;
  max-width: 340px;
  min-width: 220px;
  text-align: left;
  margin: 0.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bt-testimonial-card blockquote {
  font-style: italic;
  color: #588833;
  margin-bottom: 1rem;
  quotes: "\201C" "\201D" "\2018" "\2019";
}
.bt-testimonial-card cite {
  font-size: 0.95rem;
  color: #462f06;
  font-style: normal;
}

/* Responsive Design */
@media (max-width: 900px) {
  .bt-highlights-flex,
  .bt-services-cards,
  .bt-testimonials-cards,
  .bt-journey-flex {
    flex-direction: column;
    align-items: center;
  }
  .bt-journey-arrow {
    display: none;
  }
}

@media (max-width: 700px) {
  .bt-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .bt-hero-content {
    flex-direction: column;
    text-align: center;
  }
  .bt-hero-img img {
    max-width: 100%;
    height: auto;
  }
  .bt-footer {
    font-size: 0.95rem;
  }
}

/* Apple.com-inspired minimal, premium style */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
  --primary-green: #388e3c;
  --accent-yellow: #ffe066;
  --primary-brown: #462f06;
  --gray-bg: #fafbfc;
  --gray-light: #f5f5f7;
  --gray-dark: #222;
  --text-dark: #1d1d1f;
  --white: #fff;
  --max-width: 1100px;
  --radius: 12px;
  --transition: 0.18s cubic-bezier(.4,0,.2,1);
}

html {
  box-sizing: border-box;
  font-size: 19px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  /* box-sizing: inherit; */
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: var(--gray-bg);
  color: var(--text-dark);
  min-height: 100vh;
  line-height: 1.7;
}
.bt-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 700px) {
  .bt-container {
    padding: 0 1rem;
  }
}

/* Header */
.bt-header {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 100;
  border-bottom: 1px solid #e5e5e7;
  box-shadow: none;
}
.bt-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1rem;
}
.bt-logo-group {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.bt-logo img {
  height: 58px;
  border-radius: 8px;
}
.bt-logo-text {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-green);
  letter-spacing: -0.01em;
  font-family: 'Cinzel', serif;
  line-height: .6;
  text-align: left;
  margin-left: 0.7rem;
  text-decoration: none;
}
.bt-logo-text-top {
  display: block;
}
.bt-logo-text-bottom {
  display: block;
  color: #53401a;
  font-size: 1.1rem;
  font-weight: 500;
}
.bt-nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  margin-left: 2.2rem;
  font-size: 1.13rem;
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.2rem 0;
  transition: color var(--transition);
}
.bt-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--primary-green);
  transition: width .2s;
  position: absolute;
  left: 0;
  bottom: -4px;
}
.bt-nav a:hover, .bt-nav a:focus {
  color: var(--primary-green);
}
.bt-nav a:hover:after, .bt-nav a:focus:after {
  width: 100%;
}

/* Hero */
.bt-hero {
  background: var(--white);
  padding: 4.5rem 0 3.5rem 0;
  border-bottom: 1px solid #e5e5e7;
}
.bt-hero-content {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.bt-hero-text {
  flex: 1 1 350px;
}
.bt-hero-text h1 {
  font-size: 3.2rem;
  color: var(--text-dark);
  font-weight: 800;
  margin-bottom: 1.2rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.bt-hero-sub {
  font-size: 1.35rem;
  color: #555;
  margin-bottom: 2.2rem;
  font-weight: 400;
}
.bt-cta {
  display: inline-block;
  background: var(--primary-green);
  color: #fff;
  font-weight: 600;
  font-size: 1.13rem;
  padding: 0.9rem 2.2rem;
  border-radius: 2rem;
  box-shadow: none;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  border: none;
}
.bt-cta:hover {
  background: #222;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
.bt-hero-img img {
  border-radius: 1.2rem;
  box-shadow: none;
  width: 340px;
  max-width: 100%;
}

/* Highlights Section */
.bt-highlights {
  background: var(--gray-light);
  padding: 3.5rem 0;
  border-bottom: 1px solid #e5e5e7;
}
.bt-highlights-flex {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.bt-highlight-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: none;
  padding: 2.2rem 1.7rem;
  flex: 1 1 220px;
  max-width: 320px;
  text-align: center;
  margin: 0.5rem 0;
  border: 1px solid #ececec;
}
.bt-highlight-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.bt-highlight-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--text-dark);
}
.bt-highlight-card p {
  color: #555;
  font-size: 1.05rem;
}

/* Services Section */
.bt-services {
  background: var(--white);
  padding: 3.5rem 0;
  border-bottom: 1px solid #e5e5e7;
}
.bt-services h2 {
  color: var(--text-dark);
  font-size: 2.1rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}
.bt-services-intro {
  text-align: center;
  margin-bottom: 2rem;
  color: #555;
  font-size: 1.13rem;
}
.bt-services-cards {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.7rem;
}
.bt-service-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  box-shadow: none;
  padding: 2.2rem 1.7rem;
  flex: 1 1 220px;
  max-width: 320px;
  text-align: center;
  margin: 0.5rem 0;
  border: 1px solid #ececec;
  transition: border-color 0.2s;
}
.bt-service-card:hover {
  border-color: var(--primary-green);
}
.bt-service-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.bt-service-card h3 {
  color: var(--text-dark);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.bt-service-card p {
  color: #555;
  font-size: 1.03rem;
}

/* Journey Section */
.bt-journey {
  background: var(--white);
  padding: 3.5rem 0 2.5rem 0;
  border-bottom: 1px solid #e5e5e7;
}
.bt-journey-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.bt-journey-step {
  background: var(--gray-light);
  border-radius: var(--radius);
  box-shadow: none;
  padding: 1.7rem 1.2rem;
  text-align: center;
  min-width: 180px;
  max-width: 240px;
  flex: 1 1 180px;
  border: 1px solid #ececec;
}
.bt-journey-icon {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}
.bt-journey-step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}
.bt-journey-step p {
  color: #555;
  font-size: 1.01rem;
}
.bt-journey-arrow {
  font-size: 2rem;
  color: #bbb;
  margin: 0 0.5rem;
}
.bt-journey-emotion {
  margin-top: 2rem;
  text-align: center;
  color: #555;
  font-size: 1.13rem;
}

/* Testimonials Section */
.bt-testimonials {
  background: var(--gray-light);
  padding: 3.5rem 0;
}
.bt-testimonials-cards {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.bt-testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: none;
  padding: 2.2rem 1.7rem;
  flex: 1 1 260px;
  max-width: 340px;
  min-width: 220px;
  text-align: left;
  margin: 0.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bt-testimonial-card blockquote {
  font-style: italic;
  color: var(--primary-green);
  margin-bottom: 1rem;
  font-size: 1.13rem;
  quotes: "\201C" "\201D" "\2018" "\2019";
}
.bt-testimonial-card cite {
  font-size: 0.98rem;
  color: #555;
  font-style: normal;
}

/* Footer */
.bt-footer {
  background: var(--white);
  color: #888;
  padding: 2.2rem 0 1.2rem 0;
  text-align: center;
  border-top: 1px solid #e5e5e7;
  font-size: 1.01rem;
}
.bt-footer-logo img {
  height: 40px;
  margin-bottom: 0.7rem;
}
.bt-footer-links {
  margin-bottom: 0.7rem;
}
.bt-footer-links a {
  color: var(--text-dark);
  text-decoration: none;
  margin: 0 1.2rem;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.2s;
}
.bt-footer-links a:hover {
  color: var(--primary-green);
}
.bt-footer-copy {
  font-size: .7rem;
  opacity: 0.92;
}

/* Responsive Design */
@media (max-width: 900px) {
  .bt-header-flex,
  .bt-hero-content,
  .bt-highlights-flex,
  .bt-services-cards,
  .bt-journey-flex,
  .bt-testimonials-cards {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .bt-nav { margin-top: 1rem; }
  .bt-hero-img img { margin-top: 2rem; }
  .bt-journey-arrow { display: none; }
}
@media (max-width: 700px) {
  .bt-header-flex,
  .bt-hero-content,
  .bt-highlights-flex,
  .bt-services-cards,
  .bt-journey-flex,
  .bt-testimonials-cards {
    padding: 0.8rem 0.5rem;
  }
  .bt-hero-img img { width: 100%; min-width: 0; }
  .bt-hero-text h1 { font-size: 2.1rem; }
  .bt-services h2 { font-size: 1.3rem; }
}

/* Mission Section (two-column, accent background) */
.bt-mission {
  background: #f5fbe7;
  padding: 4rem 0 3rem 0;
  border-bottom: 1px solid #e5e5e7;
}
.bt-mission-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.bt-mission-left {
  flex: 1 1 340px;
  min-width: 260px;
}
.bt-mission-left h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 1.2rem;
}
.bt-mission-statement {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-weight: 500;
}
.bt-mission-callout {
  display: flex;
  align-items: end;
  gap: 1.2rem;
  margin-bottom: 0.7rem;
}
.bt-mission-stat {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-green);
}
.bt-mission-label {
  font-size: 1.05rem;
  color: #555;
}
.bt-mission-fineprint {
  font-size: 0.95rem;
  color: #aaa;
  margin-top: 0.5rem;
}
.bt-mission-right {
  flex: 1 1 320px;
  min-width: 220px;
  display: flex;
  justify-content: center;
}
.bt-mission-right img {
  border-radius: 1.2rem;
  width: 340px;
  max-width: 100%;
  box-shadow: none;
}

/* Journey Vertical Timeline Section */
.bt-journey-vertical {
  background: var(--white);
  padding: 4rem 0 3rem 0;
  border-bottom: 1px solid #e5e5e7;
}
.bt-journey-vertical h2 {
  font-size: 2.1rem;
  font-weight: 800;
  /* color: var(--primary-green); */
  margin-bottom: 0.7rem;
}
.bt-journey-intro {
  color: #555;
  font-size: 1.13rem;
  margin-bottom: 2.5rem;
}
.bt-journey-timeline {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  position: relative;
  margin-left: 0;
  align-items: center;
  width: 100%;
  max-width: 500px;
  margin-right: auto;
  margin-left: auto;
}
.bt-journey-timeline:before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 4px;
  background: #e5e5e7;
  border-radius: 2px;
  z-index: 0;
}
.bt-journey-step-vert {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  justify-content: center;
  min-height: 80px;
}
.bt-journey-step-icon {
  font-size: 1.8rem;
  background: #9ac89d;
  color: #fff;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-top: 0.1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(56,142,60,0.07);
}
.bt-journey-step-content {
  background: #f5fbe7;
  border-radius: 0.8rem;
  padding: 1.1rem 1.3rem;
  box-shadow: none;
  min-width: 220px;
  max-width: 340px;
  margin-left: 0;
}
.bt-journey-step-content h4 {
  font-size: 1.13rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--primary-green);
    margin-top: 0px;
}
.bt-journey-step-content p {
  color: #555;
  font-size: 1.01rem;
  margin: 0;
}
.bt-journey-why {
  margin-top: 2.5rem;
  text-align: center;
  color: #555;
  font-size: 1.13rem;
  background: #d7d7d7;
  border-radius: 0.8rem;
  padding: 1.2rem 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Testimonials Pull-Quote Section */
.bt-testimonials-pull {
  background: var(--gray-light);
  padding: 4rem 0 3rem 0;
}
.bt-testimonials-pull-list {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  align-items: center;
}
.bt-testimonial-pull {
  background: var(--white);
  border-radius: 1.2rem;
  box-shadow: none;
  padding: 2.8rem 2.2rem 2.2rem 2.2rem;
  max-width: 700px;
  width: 100%;
  text-align: center;
  border: 1px solid #ececec;
  position: relative;
}
.bt-testimonial-pull blockquote {
  font-size: 1.45rem;
  color: var(--primary-green);
  font-style: italic;
  margin: 0 0 1.2rem 0;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
}
.bt-testimonial-pull blockquote:before {
  content: "\201C";
  font-size: 3.5rem;
  color: #e5e5e7;
  position: absolute;
  left: 0.5rem;
  top: -1.2rem;
  line-height: 1;
}
.bt-testimonial-pull blockquote:after {
  content: "\201D";
  font-size: 3.5rem;
  color: #e5e5e7;
  position: absolute;
  right: 0.5rem;
  bottom: -1.2rem;
  line-height: 1;
}
.bt-testimonial-pull cite {
  display: block;
  font-size: 1.01rem;
  color: #888;
  font-style: normal;
  margin-top: 0.7rem;
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  .bt-testimonials-pull-list {
    gap: 2.2rem;
  }
  .bt-testimonial-pull {
    padding: 1.7rem 0.7rem 1.2rem 0.7rem;
    max-width: 100%;
  }
  .bt-testimonial-pull blockquote {
    font-size: 1.1rem;
  }
}
@media (max-width: 700px) {
  .bt-testimonials-pull {
    padding: 2rem 0 1.5rem 0;
  }
  .bt-testimonial-pull {
    padding: 2.2rem 0.7rem 1.3rem 0.7rem;
  }
}

/* About Page - Qualifications Card Grid */
.bt-qualifications-groups {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 2rem;
}
.bt-qualifications-group h3 {
  font-size: 1.15rem;
  color: var(--primary-green);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}
.bt-qualifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.bt-qualification-card {
  background: #f5fbe7;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(88,136,51,0.06);
  padding: 1.5rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 500;
  min-height: 80px;
  transition: box-shadow 0.18s;
}

.bt-qualifications-card {
  margin-bottom: 70px;
}
.bt-qualification-card:hover {
  box-shadow: 0 8px 32px rgba(88,136,51,0.13);
}
.bt-qualification-icon {
  font-size: 1.7rem;
  margin-right: 0.5rem;
  flex-shrink: 0;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bt-qualification-accent {
  display: inline-block;
  width: 7px;
  height: 36px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--primary-green) 60%, var(--accent-yellow) 100%);
  margin-right: 1rem;
  vertical-align: middle;
  flex-shrink: 0;
}
.bt-signature {
  margin-top: 1.2rem;
  font-family: 'Dancing Script', 'Pacifico', 'Brush Script MT', cursive, sans-serif;
  font-size: 1.3rem;
  color: #888;
  font-style: italic;
  letter-spacing: 0.02em;
}
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');
@media (max-width: 700px) {
  .bt-qualifications-grid {
    grid-template-columns: 1fr;
  }
}

/* About Page - Hero Photo and Text */
.bt-about-hero {
  margin-bottom: 2.5rem;
  padding: 0;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(88,136,51,0.07);
}
.bt-about-hero-flex {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  padding: 2.5rem 2rem;
  flex-wrap: wrap;
}
.bt-about-hero-img {
  flex: 0 0 320px;
  max-width: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bt-about-hero-img img {
  width: 100%;
  max-width: 320px;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(70,47,6,0.10);
  object-fit: cover;
  aspect-ratio: 4/5;
}
.bt-about-hero-content {
  flex: 1 1 340px;
  min-width: 220px;
}
.bt-about-hero-content h1 {
  font-size: 2.2rem;
  color: var(--primary-green);
  font-weight: 800;
  margin-bottom: 0.7rem;
  margin-top: 0;
}
.bt-about-hero-content .bt-section-sub {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 1.2rem;
}
@media (max-width: 900px) {
  .bt-about-hero-flex {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.2rem 0.5rem;
    align-items: center;
  }
  .bt-about-hero-img {
    max-width: 100%;
  }
  .bt-about-hero-img img {
    max-width: 100%;
    aspect-ratio: 4/5;
  }
  .bt-about-hero-content {
    width: 100%;
  }
}

.bt-qualifications-groups-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2rem;
  justify-content: space-between;
}
.bt-qualifications-group-compact {
  flex: 1 1 260px;
  min-width: 220px;
  background: none;
  border-radius: 0;
  border: none;
  padding: 0;
  margin-bottom: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.bt-qualifications-group-compact h3 {
  font-size: 0.98rem;
  color: #888;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
  border-bottom: 1px solid #ececec;
  padding-bottom: 0.3rem;
}
.bt-qualifications-list-compact {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.97rem;
  color: #222;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}
.bt-qualifications-list-compact li {
  margin: 0;
  padding: 0.12rem 0 0.12rem 1.2rem; /* space for bullet */
  line-height: 1.5;
  font-weight: 400;
  border: none;
  position: relative; /* establish positioning context for bullet */
}

/* Decorative bullet */
.bt-qualifications-list-compact li::before {
  content: "\2022"; /* bullet character */
  position: absolute;
  left: 0;
  top: 0.34em;
  color: #588833; /* Bay Tree green */
  font-size: 0.8rem;
  line-height: 1;
}
@media (max-width: 900px) {
  .bt-qualifications-groups-compact {
    flex-direction: column;
    gap: 1.2rem;
  }
  .bt-qualifications-group-compact {
    min-width: 0;
    width: 100%;
  }
}

.bt-nav-current {
  background: #f5fbe7;
  color: var(--primary-green) !important;
  border-radius: 2rem;
  padding: 0.35rem 1.2em !important;
  font-weight: 700;
  /* box-shadow: 0 2px 8px rgba(88,136,51,0.06); */
  /* transition: background 0.18s, color 0.18s; */
  position: relative;
  z-index: 1;
}

@media (max-width: 700px) {
  .bt-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .bt-logo-group {
    gap: 0;
  }
  .bt-logo-text {
    font-size: 1.1rem;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
  .bt-logo-text-bottom {
    font-size: 0.95rem;
  }
  .bt-logo img {
    height: 45px;
  }
} 

.bt-testimonials-pull h2 {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 800;
  margin-top: 0;
}

.bt-logo-group-link {
  text-decoration: none;
}

/* About Page - Qualifications Card (Apple.com-inspired) */
.bt-qualifications-card-green {
  background: #f5fbe7;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(88,136,51,0.07);
  padding: 2.5rem 2.2rem 2.2rem 2.2rem;
  margin-bottom: 3.5rem;
  border: none;
  margin-left: auto;
  margin-right: auto;
}
.bt-qualifications-card-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}
.bt-qualifications-card-header .bt-qualification-icon {
  font-size: 1.7rem;
  color: var(--primary-green);
  background: #d6e3ce;
  border-radius: 50%;
  width: 2.3rem;
  height: 2.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(88,136,51,0.07);
  /* filter: hue-rotate(191deg) saturate(200%); */
}
.bt-qualifications-card-green .bt-section-sub {
  color: var(--primary-green);
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
}
.bt-qualifications-intro {
  font-size: 1.08rem;
  color: #555;
  margin-bottom: 1.7rem;
  margin-top: 0.2rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.bt-qualifications-groups-card {
  display: flex;
  gap: 2.5rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
.bt-qualifications-group-compact {
  background: none;
  border-radius: 0.7rem;
  border: none;
  padding: 0 0.5rem;
  margin-bottom: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 200px;
  flex: 1 1 220px;
}
.bt-qualifications-group-compact h3 {
  font-size: 0.98rem;
  color: #888;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 0.3rem;
}
.bt-qualifications-list-compact {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.97rem;
  color: #222;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}
.bt-qualifications-list-compact li {
  margin: 0;
  padding: 0.12rem 0 0.12rem 1.2rem; /* space for bullet */
  line-height: 1.5;
  font-weight: 400;
  border: none;
  position: relative; /* establish positioning context for bullet */
}

/* Decorative bullet */
.bt-qualifications-list-compact li::before {
  content: "\2022"; /* bullet character */
  position: absolute;
  left: 0;
  top: 0.34em;
  color: #588833; /* Bay Tree green */
  font-size: 1rem;
  line-height: 1;
}
@media (max-width: 900px) {
  .bt-qualifications-groups-card {
    flex-direction: column;
    gap: 1.2rem;
  }
  .bt-qualifications-card-green {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  }
}

/* Enhanced Services Details Section */
.bt-services-details-card {
  background: #eeeeee;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(88,136,51,0.07);
  margin-bottom: 2.7rem;
  border: none;
  padding: 0;
  overflow: hidden;
}
.bt-services-details-accent.bt-services-details-reading {
  background: #f5fbe7;
}
.bt-services-details-accent.bt-services-details-writing {
  background: #fff6e0;
}
.bt-services-details-accent.bt-services-details-therapy {
  background: #e6f0fa;
}
.bt-services-details-flex {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
}
.bt-services-details-flex-alt {
  flex-direction: row-reverse;
}
.bt-services-img-col {
  flex: 0 0 320px;
  max-width: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  padding: 0;
}
.bt-services-img-lg {
  width: 100%;
  max-width: 340px;
  min-width: 180px;
  aspect-ratio: 4/5;
  border-radius: 1.2rem;
  object-fit: cover;
  box-shadow: 0 6px 32px rgba(56,142,60,0.10), 0 1.5px 8px rgba(70,47,6,0.07);
  /* border: 2.5px solid #eaf7e2; */
  margin: 0;
  background: #fff;
  transition: box-shadow 0.18s, border-color 0.18s;
  margin: 20px;
}
.bt-services-img-lg:hover {
  box-shadow: 0 12px 48px rgba(56,142,60,0.13), 0 2.5px 12px rgba(70,47,6,0.10);
  border-color: #c6e2c3;
}
.bt-services-details-flex-alt .bt-services-img-lg {
  border-radius: 1.2rem;
  /* padding: 20px; */
}
.bt-services-details-content {
  flex: 1 1 340px;
  min-width: 220px;
  padding: 2.7rem 2.5rem 2.2rem 2.5rem;
  /* padding: 2rem 1.2rem 1.5rem 1.2rem; */
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bt-services-details-content h2 {
  /* color: var(--primary-green); */
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 1.2rem;
}
.bt-services-details-content p {
  color: #555;
  font-size: 1.08rem;
  margin-bottom: 1.1rem;
}
.bt-services-details-content ul {
  margin: 0 0 1.1rem 1.2rem;
  padding: 0;
  font-size: 1.01rem;
  line-height: 1.7;
}
@media (max-width: 1100px) {
  .bt-services-details-flex, .bt-services-details-flex-alt {
    display: block !important;
    flex-direction: column !important;
  }
  .bt-services-img-col {
    max-width: 100%;
    width: 100%;
    min-width: 0;
    padding: 0;
    margin-bottom: 1.2rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
  }
  .bt-services-img-lg {
    border-radius: 1.2rem;
    max-width: 100%;
    width: 100%;
    min-width: 0;
    aspect-ratio: 4/3;
    margin-bottom: 0.7rem;
    height: auto;
    object-fit: cover;
  }
  .bt-services-details-content {
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    min-width: 0;
    width: 100%;
    overflow: hidden;
  }
}
@media (max-width: 700px) {
  .bt-services-details-flex, .bt-services-details-flex-alt {
    flex-direction: column !important;
  }
  .bt-services-img-col {
    max-width: 100%;
    width: 100%;
    min-width: 0;
    padding: 0;
    margin-bottom: 1.2rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
  }
  .bt-services-img-lg {
    border-radius: 1.2rem;
    max-width: 100%;
    width: 100%;
    min-width: 0;
    aspect-ratio: 4/3;
    margin-bottom: 0.7rem;
    height: auto;
    object-fit: cover;
  }
  .bt-services-details-content {
    /* padding: 1.2rem 0.5rem 1rem 0.5rem; */
    padding: 2rem 1rem 1.5rem 1rem;
    min-width: 0;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }
}

.bt-testimonials-divider {
  margin-bottom: -2.5rem;
  line-height: 0;
  position: relative;
  z-index: 1;
}
.bt-testimonials-bg {
  position: relative;
  overflow: hidden;
}
.bt-testimonials-bg:before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg width="400" height="400" viewBox="0 0 400 400" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse cx="200" cy="200" rx="180" ry="80" fill="%23eaf7e2" fill-opacity="0.35"/><ellipse cx="320" cy="100" rx="60" ry="30" fill="%23ffe066" fill-opacity="0.18"/><ellipse cx="80" cy="320" rx="50" ry="20" fill="%23388e3c" fill-opacity="0.08"/></svg>');
  background-repeat: repeat;
  background-size: 500px 300px;
  opacity: 0.5;
  z-index: 0;
}
.bt-testimonials-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 2.2rem;
}
.bt-testimonials-heading-underline {
  display: block;
  width: 120px;
  height: 7px;
  margin: 0.7rem auto 0 auto;
  border-radius: 4px;
  background: linear-gradient(90deg, #eaf7e2 0%, #ffe066 100%);
  opacity: 0.7;
}
.bt-fadein {
  opacity: 0;
  transform: translateY(30px);
  animation: bt-fadein-up 0.9s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes bt-fadein-up {
  to {
    opacity: 1;
    transform: none;
  }
}

.bt-testimonials-timeline {
  position: relative;
  padding: 4rem 0 3rem 0;
  box-shadow: 0 8px 32px rgba(56,142,60,0.07);
  border-radius: 1.5rem;
  background: var(--gray-light);
  margin-bottom: 3rem;
  overflow: visible;
}
.bt-timeline-vertical {
  position: absolute;
  top: 60px;
  bottom: 60px;
  left: 50%;
  width: 6px;
  background: linear-gradient(180deg, #eaf7e2 0%, #ffe066 100%);
  border-radius: 3px;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.7;
  pointer-events: none;
}
.bt-testimonials-timeline-section {
  background: none;
  box-shadow: none;
  position: relative;
  z-index: 2;
  padding: 0;
}
.bt-testimonials-pull-list {
  position: relative;
  z-index: 2;
}
.bt-timeline-left {
  width: 48%;
  margin-left: 0;
  margin-right: 52%;
  clear: both;
  float: left;
  margin-bottom: 3.5rem;
}
.bt-timeline-right {
  width: 48%;
  margin-right: 0;
  margin-left: 52%;
  clear: both;
  float: right;
  margin-bottom: 3.5rem;
}
.bt-timeline-leaf, .bt-timeline-star {
  pointer-events: none;
  position: absolute;
}
@media (max-width: 900px) {
  .bt-timeline-vertical {
    display: none;
  }
  .bt-timeline-left, .bt-timeline-right {
    width: 100%;
    margin: 0 0 2.2rem 0;
    float: none;
    clear: both;
  }
  .bt-testimonials-timeline {
    padding: 2rem 0 1.5rem 0;
    border-radius: 1rem;
  }
}

.bt-testimonials-visual {
  background: linear-gradient(135deg, #eaf7e2 0%, #ffe066 100%);
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(56,142,60,0.10);
  padding: 4.5rem 0 4rem 0;
  margin-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
}
.bt-testimonials-bg-quote {
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.bt-testimonials-heading-pill {
  display: inline-block;
  background: linear-gradient(90deg, #fffbe7 0%, #eaf7e2 100%);
  color: #388e3c;
  font-weight: 800;
  font-size: 2.1rem;
  border-radius: 2rem;
  padding: 0.7rem 2.5rem;
  margin: 0 auto 1.2rem auto;
  box-shadow: 0 2px 12px rgba(88,136,51,0.07);
  position: relative;
  z-index: 2;
  text-align: center;
}
.bt-testimonials-intro {
  text-align: center;
  font-style: italic;
  color: #53401a;
  font-size: 1.18rem;
  margin-bottom: 2.7rem;
  margin-top: 0.5rem;
  z-index: 2;
  position: relative;
}
.bt-testimonials-pull {
  position: relative;
  z-index: 2;
  background: none;
  box-shadow: none;
}
@media (max-width: 900px) {
  .bt-testimonials-visual {
    padding: 2.2rem 0 2rem 0;
    border-radius: 1.2rem;
  }
  .bt-testimonials-heading-pill {
    font-size: 1.3rem;
    padding: 0.5rem 1.2rem;
  }
  .bt-testimonials-bg-quote svg {
    width: 100px;
    height: 70px;
  }
}

.bt-testimonials-modern-bg {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  /* background: linear-gradient(135deg, #fff 60%, #eaf7e2 100%); */
  overflow: hidden;
  padding: 0;
  margin-bottom: 3rem;
}
.bt-testimonials-modern-bg-svg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100vw;
  min-width: 100vw;
  max-width: 100vw;
  height: 180px;
  z-index: 1;
  pointer-events: none;
  display: block;
}
.bt-testimonials-modern-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 2rem 3rem 2rem;
  position: relative;
  z-index: 2;
  text-align: center;
}
.bt-testimonials-modern-heading {
  font-size: 2.7rem;
  font-weight: 900;
  color: #222;
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
}
.bt-testimonials-modern-subtitle {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.bt-testimonials-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 2.2rem;
}
.bt-testimonials-carousel {
  display: flex;
  gap: 2.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1.5rem;
  scrollbar-width: none;
  width: 100%;
  max-width: 1000px;
}
.bt-testimonials-carousel::-webkit-scrollbar {
  display: none;
}
.bt-testimonial-card-modern {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px rgba(56,142,60,0.07);
  min-width: 340px;
  max-width: 370px;
  flex: 0 0 340px;
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  scroll-snap-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.bt-testimonial-card-modern:hover {
  box-shadow: 0 8px 48px rgba(56,142,60,0.13);
  transform: translateY(-6px) scale(1.03);
}
.bt-testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(56,142,60,0.10);
  border: 3px solid #eaf7e2;
}
.bt-testimonial-card-modern blockquote {
  font-size: 1.18rem;
  color: #222;
  font-style: italic;
  margin: 0 0 1.2rem 0;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
}
.bt-testimonial-card-modern blockquote:before {
  content: "\201C";
  font-size: 2.5rem;
  color: #eaf7e2;
  position: absolute;
  left: -1.2rem;
  top: -1.2rem;
  line-height: 1;
}
.bt-testimonial-card-modern blockquote:after {
  content: "\201D";
  font-size: 2.5rem;
  color: #eaf7e2;
  position: absolute;
  right: -1.2rem;
  bottom: -1.2rem;
  line-height: 1;
}
.bt-testimonial-meta {
  font-size: 1.01rem;
  color: #388e3c;
  font-weight: 600;
  margin-top: 0.7rem;
  letter-spacing: 0.01em;
}
.bt-carousel-arrow {
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(56,142,60,0.10);
  width: 44px;
  height: 44px;
  font-size: 1.7rem;
  color: #388e3c;
  cursor: pointer;
  margin: 0 1rem;
  transition: box-shadow 0.2s, background 0.2s;
  z-index: 3;
}
.bt-carousel-arrow:hover {
  background: #eaf7e2;
  box-shadow: 0 4px 16px rgba(56,142,60,0.13);
}
.bt-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 0.5rem;
}
.bt-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #eaf7e2;
  opacity: 0.7;
  transition: background 0.2s, opacity 0.2s;
  cursor: pointer;
}
.bt-carousel-dot.active {
  background: #388e3c;
  opacity: 1;
}
.bt-testimonials-modern-bg-svg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 700px) {
  .bt-testimonials-modern-container {
    padding: 2.2rem 0.5rem 1.5rem 0.5rem;
  }
  .bt-testimonials-carousel {
    gap: 1.2rem;
    padding-bottom: 0.7rem;
  }
  .bt-testimonial-card-modern {
    min-width: 90vw;
    max-width: 98vw;
    flex: 0 0 90vw;
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .bt-carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    margin: 0 0.3rem;
  }
}

/* Add this for vertical testimonials list */
.bt-testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
  /* margin-bottom: 6.2rem; */
}
/* Make testimonial cards responsive and full width on small screens */
.bt-testimonial-card-modern {
  width: 100%;
  max-width: 420px;
  min-width: 0;
  margin: 0 auto;
}
/* Remove carousel-specific styles */
.bt-testimonials-carousel-wrapper,
.bt-testimonials-carousel,
.bt-carousel-arrow,
.bt-carousel-dots {
  display: none !important;
}

/* --- Redesigned Service Card Headers --- */
.bt-service-card-header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  border-top-left-radius: 1.2rem;
  border-top-right-radius: 1.2rem;
  margin: -2rem -1.5rem 1.2rem -1.5rem;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}
.bt-service-card-header-reading {
  background: linear-gradient(135deg, #eaf7e2 60%, #d0f2c7 100%);
}
.bt-service-card-header-writing {
  background: linear-gradient(135deg, #fff6e0 60%, #ffe6b3 100%);
}
.bt-service-card-header-therapy {
  background: linear-gradient(135deg, #e6f0fa 60%, #cbe3fa 100%);
}
.bt-service-emoji-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  font-size: 2.3rem;
  box-shadow: 0 4px 16px rgba(60,60,60,0.10), 0 1.5px 4px rgba(60,60,60,0.08);
  background: #fff;
  border: 2.5px solid #f3f3f3;
  margin: 0 auto;
  transition: box-shadow 0.18s;
}
.bt-service-emoji-circle-reading {
  /* background: linear-gradient(135deg, #d0f2c7 60%, #eaf7e2 100%); */
  border-color: #b6e6a7;
}
.bt-service-emoji-circle-writing {
  /* background: linear-gradient(135deg, #ffe6b3 60%, #fff6e0 100%); */
  border-color: #ffe066;
}
.bt-service-emoji-circle-therapy {
  /* background: linear-gradient(135deg, #cbe3fa 60%, #e6f0fa 100%); */
  border-color: #a3cfff;
}
/* Remove old icon margin */
.bt-service-icon { display: none !important; }

/* --- Service Details Section Headings --- */
.bt-services-details-heading {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
  margin-top: 0;
}
.bt-services-details-heading-reading {
  color: #388e3c; /* dark green, matches theme */
}
.bt-services-details-heading-writing {
  color: #b48a00 !important; /* dark gold, matches yellow accent */
}
.bt-services-details-heading-therapy {
  color: #2a5d8f !important; /* dark blue, matches blue accent */
}

/* --- Modern Contact Card Redesign --- */
.bt-contact-card-modern {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 6px 32px rgba(56, 142, 60, 0.07), 0 1.5px 4px rgba(70,47,6,0.04);
  padding: 2.5rem 2.5rem 2.2rem 2.5rem;
  margin: 3rem auto 2.5rem auto;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.bt-contact-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.bt-contact-card-header h1 {
  font-size: 2.2rem;
  font-weight: 900;
  /* color: #388e3c; */
  margin-bottom: 0.7rem;
  margin-top: 0;
}
.bt-contact-card-lead {
  color: #462f06;
  font-size: 1.15rem;
  margin-bottom: 0;
  line-height: 1.7;
}
.bt-contact-card-flex {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.bt-contact-card-info {
  flex: 1 1 220px;
  background: #f5fbe7;
  border-radius: 1.1rem;
  box-shadow: 0 2px 12px rgba(56,142,60,0.06);
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  /* max-width: 260px; */
}
.bt-contact-card-info-inner {
  width: 100%;
  text-align: center;
}
.bt-contact-card-info h2 {
  color: #388e3c;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
}
.bt-contact-card-info p {
  color: #222;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.bt-contact-card-info a {
  color: #388e3c;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.18s;
}
.bt-contact-card-info a:hover {
  color: #b48a00;
}
.bt-contact-card-form {
  flex: 2 1 320px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: #f5f5f7;
  border-radius: 1.1rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(56,142,60,0.04);
}
.bt-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.bt-form-group label {
  font-weight: 600;
  color: #388e3c;
  margin-bottom: 0.2rem;
}
.bt-form-group input,
.bt-form-group textarea {
  border: 1.5px solid #e0e0e0;
  border-radius: 0.7rem;
  font-size: 1rem;
  padding: 0.7rem 1rem;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.bt-form-group input:focus,
.bt-form-group textarea:focus {
  border-color: #388e3c;
  outline: none;
  box-shadow: 0 0 0 2px #eaf7e2;
}
@media (max-width: 900px) {
  .bt-contact-card-flex {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
  .bt-contact-card-info, .bt-contact-card-form {
    max-width: 100%;
    min-width: 0;
  }
}

.bt-service-learn-btn {
  align-self: center;
  margin-top: auto;
  font-size: 0.98rem;
  padding: 0.45rem 1.2rem;
  border-radius: 1.2rem;
  min-width: unset;
  box-shadow: 0 1.5px 6px rgba(56,142,60,0.07);
}

.bt-footer-service-area {
  font-size: 0.8em;
  color: #888;
  font-style: italic;
  max-width: 830px;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (max-width: 700px) {
  .bt-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    margin: 1.2rem 0 0 0;
  }
  .bt-nav a {
    display: block;
    width: 78vw;
    max-width: 340px;
    margin: 0.2rem 0;
    padding: 1rem 0;
    font-size: 1.15rem;
    border-radius: 1.2rem;
    background: #f4fbd2;
    color: #588833;
    text-align: center;
    box-shadow: 0 1.5px 6px rgba(56,142,60,0.07);
    font-weight: 700;
    transition: background 0.18s, color 0.18s;
  }
  .bt-nav a.bt-nav-current,
  .bt-nav a:hover,
  .bt-nav a:focus {
    background: #588833;
    color: #fff;
  }
  .bt-nav a:after {
    display: none;
  }
  .bt-nav a.bt-nav-current {
    background: #588833;
    color: #fff !important;
    border-left: none;
    border-radius: 1.2rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(56,142,60,0.08);
  }
  .bt-nav a:hover,
  .bt-nav a:focus {
    background: #588833;
    color: #fff;
  }
}

@media (max-width: 700px) {
  .bt-hamburger {
    display: block;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 200;
    cursor: pointer;
  }
  .bt-hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 5px auto;
    background: #588833;
    border-radius: 2px;
    transition: all 0.2s;
  }
  .bt-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 12px rgba(88,136,51,0.07);
    position: absolute;
    top: 60px;
    left: 0;
    padding: 0.5rem 0 1rem 0;
    z-index: 150;
  }
  .bt-nav.bt-nav-open {
    display: flex;
  }
}

@media (min-width: 701px) {
  .bt-hamburger { display: none; }
}

@media (max-width: 700px) {
  .bt-contact-card-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0.5rem;
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
    max-width: 500px;
    margin: 20px 0;
  }
  .bt-contact-card-flex {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    /* box-sizing: border-box; */
  }
  .bt-contact-card-info,
  .bt-contact-card-form {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
  }
  .bt-form-group {
    padding: 7px;
    width: 100%;
    box-sizing: border-box;
    /* margin: 0 auto; */
  }
  .bt-contact-card-form {
    gap: 0;
    /* box-sizing: border-box; */
  }
}
@media (max-width: 700px) {
  .bt-service-card {
    padding: 2.2rem 1.2rem;
  }
  .bt-service-card-header {
    margin: -2rem -1.2rem 1.2rem -1.2rem;
  }
}

@media (max-width: 700px) {
.bt-testimonial-card-modern {
  box-sizing: border-box;
}
}