@font-face {
  font-family: "Jakarta";
  src: url(../fonts/Plus_Jakarta_Sans/PlusJakartaSans-VariableFont_wght.ttf);
}

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

body,
html {
  overflow-x: hidden;
  font-family: Jakarta;
}

a {
  text-decoration: none;
}

/* Header styles */

header {
  padding: 1rem 7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);

  /* backdrop-filter: blur(5px); */
}

.header-logo {
  width: 9rem;
}

header .right-side {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

header .site-nav ul {
  display: flex;
  gap: 1rem;
  align-items: center;
  list-style-type: none;
}

header a {
  color: #1e293b;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

header .current-menu-item a {
  color: #7c3aed;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}

.contact-button {
  display: flex;
  padding: 0.625rem 1.25rem;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 624.9375rem;
  background: #7c3aed;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  width: fit-content;
}

/* Footer styles */

footer {
  padding: 4rem 7rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  background-color: #1f2937;
}

footer .section-one .footer-logo {
  width: 10rem;
}

footer .section-one p {
  margin-top: 1.5rem;
  color: #9ca3af;
  line-height: 1.5rem;
}

footer h3 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75rem;
}

footer .contact-info,
footer .links {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

footer .contact-info .contact-item {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  font-size: 1rem;
}

footer .contact-info .contact-item i {
  color: #6d28d9;
}

footer .contact-info .contact-item p,
footer .contact-item a,
footer .links a {
  color: #9ca3af;
  font-size: 1rem;
  line-height: 1.5rem;
}

/* Home page styles */

.home-hero {
  padding: 7rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 5rem;
  position: relative;
  overflow: hidden;
}

.home-hero .bottom-left-blur {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.home-hero .top-right-blur {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.home-hero .purple-circle-blur {
  position: absolute;
  bottom: 3rem;
  right: 40%;
  z-index: -1;
}

.home-hero .yellow-circle-blur {
  position: absolute;
  top: 3rem;
  right: 3rem;
  z-index: -1;
}

.home-hero .name-container,
.tutoring-hero .special-container {
  padding: 0.25rem 0.75rem;
  border-radius: 600rem;
  background-color: #ede9fe;
  width: fit-content;
}

.home-hero .name-container p,
.tutoring-hero .special-container p {
  color: #6d28d9;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
}

.home-hero h1 {
  margin-top: 1rem;
  color: #0f172a;
  font-size: 3.75rem;
  font-weight: 700;
}

.home-hero h1 span {
  background: linear-gradient(101deg, #7c3aed 0%, #4c1d95 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-hero .hero-info {
  margin-top: 1.5rem;
  color: #1e293b;
  font-size: 1.125rem;
  line-height: 1.8rem;
}

.home-hero .buttons-container {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.home-hero .buttons-container .tutoring-btn {
  width: 12rem;
  height: 3.8rem;
  border-radius: 624.9375rem;
  background: #6d28d9;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.75rem;
}

.home-hero .buttons-container .home-btn {
  width: 18rem;
  height: 3.8rem;
  border-radius: 624.9375rem;
  background: #fff;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.75rem;
}

.home-hero .image-section {
  position: relative;
}

.home-hero .photo {
  width: 80%;
  object-fit: cover;
  border-radius: 0.625rem;
  transform: rotate(4deg);
}

.home-hero .photo-info {
  padding: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  border-radius: 1rem;
  background: #ffffff90;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  position: absolute;
  transform: rotate(4deg);
  bottom: 2rem;
  left: 1rem;
  z-index: 2;
}

.home-hero .photo-info img {
  width: 2.5rem;
  height: 2.5rem;
}

.home-hero .photo-info .info-text h4 {
  color: #0f172a;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
}

.home-hero .photo-info .info-text p {
  color: #1e293b;
  font-size: 0.75rem;
  line-height: 1rem;
}

.support-section {
  padding: 5rem 7rem;
  background-color: #f8fafc;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h2 {
  color: #0f172a;
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 2.5rem;
}

.heading-section p {
  margin-top: 1rem;
  color: #1e293b;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.75rem;
  width: 100%;
  max-width: 50rem;
}

.support-section .support-grid-container {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.support-section .support-grid-container .support-grid-item {
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid #f1f5f9;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.support-section .support-grid-container .support-grid-item img {
  width: 3.5rem;
  height: 3.5rem;
}

.support-section .support-grid-container .support-grid-item h3 {
  margin-top: 0.75rem;
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.support-section .support-grid-container .support-grid-item p {
  margin-top: 0.75rem;
  color: #1e293b;
  line-height: 1.625rem;
}

.testimonial-section {
  padding: 4rem 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-section img {
  width: 2rem;
}

.testimonial-section .quote-text {
  margin-top: 0.75rem;
  width: 100%;
  max-width: 50rem;
  color: #1f2937;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2rem;
}

.testimonial-section .quote-info {
  margin-top: 2rem;
  text-align: center;
}

.testimonial-section .quote-info h4 {
  color: #1f2937;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.testimonial-section .quote-info p {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  header {
    padding: 1rem 2rem;
  }

  .home-hero {
    padding: 4rem 2rem;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .support-section {
    padding: 4rem 2rem;
  }

  .support-section .support-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }

  footer {
    padding: 3rem 2rem;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* ================= HEADER ================= */

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger span {
    width: 24px;
    height: 3px;
    background: #1e293b;
  }

  header {
    padding: 1rem 1.5rem;
  }

  header .right-side {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 260px;
    background: white;
    backdrop-filter: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: 0.3s;
    z-index: 2000;
  }

  .hamburger {
    z-index: 2100;
  }

  header .right-side.active {
    right: 0;
  }

  header .site-nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }

  header .contact-button {
    width: 80%;
    align-items: center;
    text-align: center;
  }

  /* ================= HERO ================= */

  .home-hero {
    padding: 3rem 1.5rem;
    gap: 2rem;
  }

  .home-hero h1 {
    font-size: 2.2rem;
  }

  .home-hero .buttons-container {
    flex-direction: column;
    align-items: center;
  }

  .home-hero .buttons-container .tutoring-btn,
  .home-hero .buttons-container .home-btn {
    width: 100%;
    max-width: 20rem;
  }

  .home-hero .photo {
    width: 100%;
    transform: rotate(0deg); /* prevents overflow issues on mobile */
  }

  /* ================= SUPPORT ================= */

  .support-section .support-grid-container {
    grid-template-columns: 1fr;
  }

  /* ================= TESTIMONIAL ================= */

  .testimonial-section {
    padding: 3rem 1.5rem;
  }
}

/* ================= HAMBURGER ANIMATION ================= */

.hamburger span {
  transition:
    transform 0.3s ease,
    opacity 0.2s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Tutoring page styles */

.tutoring-hero {
  padding: 8rem 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.tutoring-bl {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.tutoring-tr {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.tutoring-hero h1 {
  margin-top: 1rem;
  color: #0f172a;
  text-align: center;
  font-size: 3.75rem;
  font-weight: 700;
}

.tutoring-hero h1 span {
  background: linear-gradient(97deg, #7c3aed 0%, #4c1d95 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tutoring-hero .hero-text {
  width: 100%;
  max-width: 50rem;
  margin-top: 1.5rem;
  color: #1e293b;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.8rem;
}

.tutoring-hero .request-button {
  margin-top: 2.5rem;
  width: 15rem;
  height: 3.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 600rem;
  background-color: #6d28d9;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  color: #fff;
  gap: 1rem;
}

.who-we-support-section {
  padding: 5rem 7rem;
  background-color: #f8fafc;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 3rem;
}

.who-we-support-section .text-section {
  width: 100%;
}

.who-we-support-section h2 {
  text-align: left;
}

.who-we-support-section .text-section .support-info {
  margin-top: 1.5rem;
  color: #1e293b;
  line-height: 1.625rem;
}

.who-we-support-section .support-section {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  place-items: start;
  width: 100%;
  padding: 0;
}

.who-we-support-section .support-section .left-side,
.who-we-support-section .support-section .right-side {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.who-we-support-section .support-section p i {
  color: #6d28d9;
}

.who-we-support-section .image-section {
  position: relative;
}

.who-we-support-section .image-section .tutoring-photo {
  width: 100%;
  border-radius: 0.625rem;
}

.who-we-support-section .empathy-container {
  width: 20rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  position: absolute;
  left: -1.75rem;
  bottom: -1.75rem;
  z-index: 3000;
}

.who-we-support-section .empathy-container .top-section {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.who-we-support-section .empathy-container .top-section img {
  width: 3rem;
  height: 3rem;
}

.who-we-support-section .empathy-container .top-section h3 {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.who-we-support-section .empathy-container p {
  color: #1e293b;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.session-formats {
  padding: 5rem 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.session-formats-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.session-formats-grid .session-format-item {
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.session-formats-grid .session-format-item .session-icon {
  width: 4rem;
  height: 4rem;
}

.session-format-item h3 {
  margin-top: 1.5rem;
  color: #0f172a;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
}

.session-format-item .info {
  margin-top: 0.75rem;
  color: #1e293b;
  line-height: 1.5rem;
}

.session-format-item .features {
  margin-top: 1.5rem;
}

.session-format-item .features .feature {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
  color: #1e293b;
  line-height: 1.25rem;
  margin-top: 0.75rem;
}

.session-format-item .features .feature i {
  color: #6d28d9;
}

.investment-section {
  padding: 5rem 7rem;
  background-color: #4c1d95;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.investment-section .heading-section h2 {
  color: #fff;
}

.investment-section .heading-section p {
  color: #ddd6fe;
}

.investment-section .packages-section {
  margin-top: 4rem;
  display: grid;

  grid-template-columns: repeat(2, 27rem);
  grid-template-rows: 1fr;
  align-items: stretch;
  gap: 2rem;
}

.investment-section .packages-section .package.standard {
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  width: 100%;
}

.investment-section .packages-section .package.specialised {
  padding: 2rem;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.investment-section .package h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
  color: #fff;
}

.investment-section .specialised h3 {
  color: #0f172a !important;
}

.investment-section .specialised p {
  color: #0f172a !important;
}

.investment-section .package p {
  margin-top: 0.5rem;
  line-height: 1.5rem;
  color: #ddd6fe;
}

.investment-section .cost span {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 2.5rem;
}

.investment-section .specialised .cost {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 2.5rem;
}

.investment-section {
  color: #a78bfa;
}

.investment-section .discuss-button {
  margin-top: 2rem;
  display: flex;
  padding: 0.75rem 1.5rem;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  border-radius: 0.75rem;
  background: #7c3aed;
  color: #fff;
  text-align: center;
  font-weight: 600;
  line-height: 1.5rem;
}

.our-journey-section {
  padding: 5rem 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f8fafc;
}

.our-journey-section .journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.our-journey-section .journey-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.our-journey-section .journey-item .number-container {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 4px solid #fff;
  background: #ede9fe;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-journey-section .journey-item .number-container p {
  color: #7c3aed;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
}

.our-journey-section .journey-item h3 {
  margin-top: 1rem;
  color: #0f172a;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
}

.our-journey-section .journey-item p {
  margin-top: 0.5rem;
  color: #1e293b;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.faq {
  padding: 5rem 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq .heading-section p {
  text-align: center;
}

.faq .questions {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq .question-container {
  width: 100%;
  max-width: 50rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.faq .question-container .question {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.faq .question-container .answer {
  color: #1e293b;
  line-height: 1.5rem;
}

/* ================= TUTORING PAGE RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .tutoring-hero {
    padding: 5rem 2rem;
  }

  .tutoring-hero h1 {
    font-size: 2.75rem;
  }

  .who-we-support-section {
    padding: 4rem 2rem;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .who-we-support-section .image-section {
    order: -1; /* image above text */
  }

  .session-formats {
    padding: 4rem 2rem;
  }

  .session-formats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .investment-section {
    padding: 4rem 2rem;
  }

  .investment-section .packages-section {
    grid-template-columns: 1fr;
    max-width: 30rem;
  }

  .our-journey-section {
    padding: 4rem 2rem;
  }

  .our-journey-section .journey {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq {
    padding: 4rem 2rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .tutoring-hero {
    padding: 4rem 1.5rem;
    text-align: center;
  }

  .tutoring-hero h1 {
    font-size: 2.2rem;
  }

  .tutoring-hero .hero-text {
    font-size: 1rem;
  }

  .tutoring-hero .request-button {
    width: 100%;
    max-width: 20rem;
  }

  /* WHO WE SUPPORT */

  .who-we-support-section .support-section {
    grid-template-columns: 1fr;
  }

  .who-we-support-section .empathy-container {
    position: static; /* prevents overflow */
    width: 100%;
    margin-top: 1rem;
  }

  /* SESSION FORMATS */

  .session-formats-grid {
    grid-template-columns: 1fr;
  }

  /* PACKAGES */

  .investment-section .packages-section {
    width: 100%;
  }

  /* JOURNEY */

  .our-journey-section .journey {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* FAQ */

  .faq .question-container {
    padding: 1.25rem;
  }
}

/* Home from Home page styles */

.from-home-section {
  padding: 5rem 7rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
  place-items: center;
  background: url(../images/from-home-hero-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.from-home-section .adapted-container {
  padding: 0.25rem 0.75rem;
  border-radius: 624.9375rem;
  background: #ede9fe;
  width: fit-content;
}

.from-home-section .adapted-container p {
  color: #6d28d9;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
  letter-spacing: 0.02rem;
}

.from-home-section h1 {
  margin-top: 1rem;
  color: #0f172a;
  font-size: 3.75rem;
  font-weight: 700;
}

.from-home-section h1 span {
  background: linear-gradient(105deg, #7c3aed 0%, #4c1d95 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.from-home-section .main-text {
  margin-top: 1.5rem;
  color: #1e293b;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.from-home-section .kitchen-hero {
  width: 100%;
  transform: rotate(4deg);
  border-radius: 1rem;
}

.from-home-section .book-visit-button {
  margin-top: 3rem;
  width: 10rem;
  height: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.75rem;
  background: #6d28d9;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  color: #fff;
  font-weight: 500;
}

.independence-section {
  padding: 5rem 7rem;
  background-color: #f8fafc;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.learn-independence-items {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 2rem;
}

.learn-independence-item {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #f1f5f9;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.learn-independence-item img {
  width: 3.5rem;
  height: 3.5rem;
}

.learn-independence-item h3 {
  margin-top: 1.5rem;
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.learn-independence-item p {
  margin-top: 0.75rem;
  color: #1e293b;
  line-height: 1.5rem;
}

.accessibility-section {
  padding: 5rem 7rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 3rem;
}

.accessibility-section .accessibility-hero {
  width: 100%;
}

.accessibility-section .text-section h2 {
  text-align: left;
}

.accessibility-section .text-section .main-text {
  margin-top: 1.5rem;
  color: #1e293b;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.accessibility-section .accessibility-items {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.accessibility-section .accessibility-items .accessibility-item {
  display: flex;
  gap: 1rem;
}

.accessibility-item img {
  width: 2rem;
  height: 2rem;
}

.accessibility-item h3 {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.accessibility-item p {
  margin-top: 0.25rem;
  color: #1e293b;
  line-height: 1.5rem;
}

.home-from-home-more-info-section {
  padding: 5rem 7rem;
  background-color: #f8fafc;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: stretch;
}

.home-from-home-more-info-section .pricing,
.home-from-home-more-info-section .rules {
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid #f1f5f9;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.home-from-home-more-info-section .top-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.home-from-home-more-info-section .top-section img {
  width: 1.5rem;
  height: 1.5rem;
}

.home-from-home-more-info-section .top-section h2 {
  text-align: left;
  color: #0f172a;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
}

.home-from-home-more-info-section .session {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid #ede9fe;
  background: #f5f3ff;
}

.home-from-home-more-info-section .session.cooking {
  background-color: #fff;
}

.home-from-home-more-info-section .session .top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-from-home-more-info-section .session h3 {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.home-from-home-more-info-section .session .cost {
  color: #6d28d9;
}

.home-from-home-more-info-section .session .length {
  margin-top: 0.5rem;
  color: #1e293b;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.home-from-home-more-info-section .session .info {
  margin-top: 0.5rem;
  color: #1e293b;
  line-height: 1.5rem;
}

.home-from-home-more-info-section .supervision {
  margin-top: 3rem;
}

.home-from-home-more-info-section .supervision h4 {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.home-from-home-more-info-section .supervision p {
  margin-top: 0.5rem;
  color: #1e293b;
  line-height: 1.5rem;
}

.home-from-home-more-info-section .rules-info {
  margin-top: 1.5rem;
  color: #1e293b;
  line-height: 1.5rem;
}

.home-from-home-more-info-section .rule {
  margin-top: 2.25rem;
  display: flex;
  gap: 0.75rem;
}

.home-from-home-more-info-section .rule img {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}

.home-from-home-more-info-section .rule h3 {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.home-from-home-more-info-section .rule p {
  color: #1e293b;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

/* ================= HOME FROM HOME RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .from-home-section {
    padding: 4rem 2rem;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .from-home-section .text-section {
    text-align: center;
  }

  .from-home-section .kitchen-hero {
    transform: rotate(0deg); /* prevent overflow */
    max-width: 35rem;
  }

  .independence-section {
    padding: 4rem 2rem;
  }

  .learn-independence-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .accessibility-section {
    padding: 4rem 2rem;
    grid-template-columns: 1fr;
  }

  .accessibility-section .text-section {
    text-align: center;
  }

  .home-from-home-more-info-section {
    padding: 4rem 2rem;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .from-home-section {
    padding: 3rem 1.5rem;
  }

  .from-home-section h1 {
    font-size: 2.2rem;
  }

  .from-home-section .main-text {
    font-size: 1rem;
  }

  .from-home-section .book-visit-button {
    width: 100%;
    max-width: 16rem;
    margin-left: auto;
    margin-right: auto;
  }

  /* Independence grid */
  .learn-independence-items {
    grid-template-columns: 1fr;
  }

  /* Accessibility */
  .accessibility-section .accessibility-items {
    gap: 1rem;
  }

  .accessibility-section .accessibility-item {
    align-items: flex-start;
  }

  /* Pricing / rules cards */
  .home-from-home-more-info-section .pricing,
  .home-from-home-more-info-section .rules {
    padding: 1.75rem;
  }

  .home-from-home-more-info-section .session .top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  /* Prevent text squish */
  .home-from-home-more-info-section .rule {
    align-items: flex-start;
  }
}

/* About page styles */

.about-hero {
  padding: 4rem 7rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 4rem;
}

.about-hero .about-photo {
  width: 19.5rem;
  height: 19.5rem;
  border-radius: 50%;
  border: 4px solid #6d28d9;
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #0f172a;
}

.about-hero .qualifications {
  margin-top: 1rem;
  color: #6d28d9;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.75rem;
}

.about-hero .about-me {
  margin-top: 1.5rem;
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.8rem;
}

.about-hero .contact-button {
  margin-top: 2rem;
}

.why-section {
  padding: 5rem 7rem;
  background-color: #faf5ff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-section .why-container {
  padding: 3rem;
  border-radius: 1rem;
  border: 1px solid #f3e8ff;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-container img {
  width: 2.25rem;
}

.why-container p {
  margin-top: 2.5rem;
  color: #4b5563;
  text-align: center;
  line-height: 1.5rem;
}

.experience-section {
  padding: 5rem 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.experience-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 2rem;
}

.experience-item {
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #f3f4f6;
  background: #f9fafb;
}

.experience-item img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.experience-item h4 {
  color: #1e293b;
  font-weight: 600;
  line-height: 1.5rem;
}

.experience-item .details {
  margin-top: 1rem;
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.experience-item .details p {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

@font-face {
  font-family: "Jakarta";
  src: url(../fonts/Plus_Jakarta_Sans/PlusJakartaSans-VariableFont_wght.ttf);
}

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

body,
html {
  overflow-x: hidden;
  font-family: Jakarta;
}

a {
  text-decoration: none;
}

/* Header styles */

header {
  padding: 1rem 7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);

  /* backdrop-filter: blur(5px); */
}

.header-logo {
  width: 9rem;
}

header .right-side {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

header .site-nav ul {
  display: flex;
  gap: 1rem;
  align-items: center;
  list-style-type: none;
}

header a {
  color: #1e293b;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

header .current-menu-item a {
  color: #7c3aed;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}

.contact-button {
  display: flex;
  padding: 0.625rem 1.25rem;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 624.9375rem;
  background: #7c3aed;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  width: fit-content;
}

/* Footer styles */

footer {
  padding: 4rem 7rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  background-color: #1f2937;
}

footer .section-one .footer-logo {
  width: 10rem;
}

footer .section-one p {
  margin-top: 1.5rem;
  color: #9ca3af;
  line-height: 1.5rem;
}

footer h3 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75rem;
}

footer .contact-info,
footer .links {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

footer .contact-info .contact-item {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  font-size: 1rem;
}

footer .contact-info .contact-item i {
  color: #6d28d9;
}

footer .contact-info .contact-item p,
footer .contact-item a,
footer .links a {
  color: #9ca3af;
  font-size: 1rem;
  line-height: 1.5rem;
}

/* Home page styles */

.home-hero {
  padding: 7rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 5rem;
  position: relative;
  overflow: hidden;
}

.home-hero .bottom-left-blur {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.home-hero .top-right-blur {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.home-hero .purple-circle-blur {
  position: absolute;
  bottom: 3rem;
  right: 40%;
  z-index: -1;
}

.home-hero .yellow-circle-blur {
  position: absolute;
  top: 3rem;
  right: 3rem;
  z-index: -1;
}

.home-hero .name-container,
.tutoring-hero .special-container {
  padding: 0.25rem 0.75rem;
  border-radius: 600rem;
  background-color: #ede9fe;
  width: fit-content;
}

.home-hero .name-container p,
.tutoring-hero .special-container p {
  color: #6d28d9;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
}

.home-hero h1 {
  margin-top: 1rem;
  color: #0f172a;
  font-size: 3.75rem;
  font-weight: 700;
}

.home-hero h1 span {
  background: linear-gradient(101deg, #7c3aed 0%, #4c1d95 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-hero .hero-info {
  margin-top: 1.5rem;
  color: #1e293b;
  font-size: 1.125rem;
  line-height: 1.8rem;
}

.home-hero .buttons-container {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.home-hero .buttons-container .tutoring-btn {
  width: 12rem;
  height: 3.8rem;
  border-radius: 624.9375rem;
  background: #6d28d9;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.75rem;
}

.home-hero .buttons-container .home-btn {
  width: 18rem;
  height: 3.8rem;
  border-radius: 624.9375rem;
  background: #fff;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.75rem;
}

.home-hero .image-section {
  position: relative;
}

.home-hero .photo {
  width: 80%;
  object-fit: cover;
  border-radius: 0.625rem;
  transform: rotate(4deg);
}

.home-hero .photo-info {
  padding: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  border-radius: 1rem;
  background: #ffffff90;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  position: absolute;
  transform: rotate(4deg);
  bottom: 2rem;
  left: 1rem;
  z-index: 2;
}

.home-hero .photo-info img {
  width: 2.5rem;
  height: 2.5rem;
}

.home-hero .photo-info .info-text h4 {
  color: #0f172a;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
}

.home-hero .photo-info .info-text p {
  color: #1e293b;
  font-size: 0.75rem;
  line-height: 1rem;
}

.support-section {
  padding: 5rem 7rem;
  background-color: #f8fafc;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h2 {
  color: #0f172a;
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 2.5rem;
}

.heading-section p {
  margin-top: 1rem;
  color: #1e293b;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.75rem;
  width: 100%;
  max-width: 50rem;
}

.support-section .support-grid-container {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.support-section .support-grid-container .support-grid-item {
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid #f1f5f9;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.support-section .support-grid-container .support-grid-item img {
  width: 3.5rem;
  height: 3.5rem;
}

.support-section .support-grid-container .support-grid-item h3 {
  margin-top: 0.75rem;
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.support-section .support-grid-container .support-grid-item p {
  margin-top: 0.75rem;
  color: #1e293b;
  line-height: 1.625rem;
}

.testimonial-section {
  padding: 4rem 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-section img {
  width: 2rem;
}

.testimonial-section .quote-text {
  margin-top: 0.75rem;
  width: 100%;
  max-width: 50rem;
  color: #1f2937;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2rem;
}

.testimonial-section .quote-info {
  margin-top: 2rem;
  text-align: center;
}

.testimonial-section .quote-info h4 {
  color: #1f2937;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.testimonial-section .quote-info p {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  header {
    padding: 1rem 2rem;
  }

  .home-hero {
    padding: 4rem 2rem;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .support-section {
    padding: 4rem 2rem;
  }

  .support-section .support-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }

  footer {
    padding: 3rem 2rem;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* ================= HEADER ================= */

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger span {
    width: 24px;
    height: 3px;
    background: #1e293b;
  }

  header {
    padding: 1rem 1.5rem;
  }

  header .right-side {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 260px;
    background: white;
    backdrop-filter: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: 0.3s;
    z-index: 2000;
  }

  .hamburger {
    z-index: 2100;
  }

  header .right-side.active {
    right: 0;
  }

  header .site-nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }

  header .contact-button {
    width: 80%;
    align-items: center;
    text-align: center;
  }

  /* ================= HERO ================= */

  .home-hero {
    padding: 3rem 1.5rem;
    gap: 2rem;
  }

  .home-hero h1 {
    font-size: 2.2rem;
  }

  .home-hero .buttons-container {
    flex-direction: column;
    align-items: center;
  }

  .home-hero .buttons-container .tutoring-btn,
  .home-hero .buttons-container .home-btn {
    width: 100%;
    max-width: 20rem;
  }

  .home-hero .photo {
    width: 100%;
    transform: rotate(0deg); /* prevents overflow issues on mobile */
  }

  /* ================= SUPPORT ================= */

  .support-section .support-grid-container {
    grid-template-columns: 1fr;
  }

  /* ================= TESTIMONIAL ================= */

  .testimonial-section {
    padding: 3rem 1.5rem;
  }
}

/* ================= HAMBURGER ANIMATION ================= */

.hamburger span {
  transition:
    transform 0.3s ease,
    opacity 0.2s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Tutoring page styles */

.tutoring-hero {
  padding: 8rem 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.tutoring-bl {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.tutoring-tr {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.tutoring-hero h1 {
  margin-top: 1rem;
  color: #0f172a;
  text-align: center;
  font-size: 3.75rem;
  font-weight: 700;
}

.tutoring-hero h1 span {
  background: linear-gradient(97deg, #7c3aed 0%, #4c1d95 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tutoring-hero .hero-text {
  width: 100%;
  max-width: 50rem;
  margin-top: 1.5rem;
  color: #1e293b;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.8rem;
}

.tutoring-hero .request-button {
  margin-top: 2.5rem;
  width: 15rem;
  height: 3.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 600rem;
  background-color: #6d28d9;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  color: #fff;
  gap: 1rem;
}

.who-we-support-section {
  padding: 5rem 7rem;
  background-color: #f8fafc;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 3rem;
}

.who-we-support-section .text-section {
  width: 100%;
}

.who-we-support-section h2 {
  text-align: left;
}

.who-we-support-section .text-section .support-info {
  margin-top: 1.5rem;
  color: #1e293b;
  line-height: 1.625rem;
}

.who-we-support-section .support-section {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  place-items: start;
  width: 100%;
  padding: 0;
}

.who-we-support-section .support-section .left-side,
.who-we-support-section .support-section .right-side {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.who-we-support-section .support-section p i {
  color: #6d28d9;
}

.who-we-support-section .image-section {
  position: relative;
}

.who-we-support-section .image-section .tutoring-photo {
  width: 100%;
  border-radius: 0.625rem;
}

.who-we-support-section .empathy-container {
  width: 20rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  position: absolute;
  left: -1.75rem;
  bottom: -1.75rem;
  z-index: 3000;
}

.who-we-support-section .empathy-container .top-section {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.who-we-support-section .empathy-container .top-section img {
  width: 3rem;
  height: 3rem;
}

.who-we-support-section .empathy-container .top-section h3 {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.who-we-support-section .empathy-container p {
  color: #1e293b;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.session-formats {
  padding: 5rem 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.session-formats-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.session-formats-grid .session-format-item {
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.session-formats-grid .session-format-item .session-icon {
  width: 4rem;
  height: 4rem;
}

.session-format-item h3 {
  margin-top: 1.5rem;
  color: #0f172a;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
}

.session-format-item .info {
  margin-top: 0.75rem;
  color: #1e293b;
  line-height: 1.5rem;
}

.session-format-item .features {
  margin-top: 1.5rem;
}

.session-format-item .features .feature {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
  color: #1e293b;
  line-height: 1.25rem;
  margin-top: 0.75rem;
}

.session-format-item .features .feature i {
  color: #6d28d9;
}

.investment-section {
  padding: 5rem 7rem;
  background-color: #4c1d95;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.investment-section .heading-section h2 {
  color: #fff;
}

.investment-section .heading-section p {
  color: #ddd6fe;
}

.investment-section .packages-section {
  margin-top: 4rem;
  display: grid;

  grid-template-columns: repeat(2, 27rem);
  grid-template-rows: 1fr;
  align-items: stretch;
  gap: 2rem;
}

.investment-section .packages-section .package.standard {
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  width: 100%;
}

.investment-section .packages-section .package.specialised {
  padding: 2rem;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.investment-section .package h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
  color: #fff;
}

.investment-section .specialised h3 {
  color: #0f172a !important;
}

.investment-section .specialised p {
  color: #0f172a !important;
}

.investment-section .package p {
  margin-top: 0.5rem;
  line-height: 1.5rem;
  color: #ddd6fe;
}

.investment-section .cost span {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 2.5rem;
}

.investment-section .specialised .cost {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 2.5rem;
}

.investment-section {
  color: #a78bfa;
}

.investment-section .discuss-button {
  margin-top: 2rem;
  display: flex;
  padding: 0.75rem 1.5rem;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  border-radius: 0.75rem;
  background: #7c3aed;
  color: #fff;
  text-align: center;
  font-weight: 600;
  line-height: 1.5rem;
}

.our-journey-section {
  padding: 5rem 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f8fafc;
}

.our-journey-section .journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.our-journey-section .journey-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.our-journey-section .journey-item .number-container {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 4px solid #fff;
  background: #ede9fe;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-journey-section .journey-item .number-container p {
  color: #7c3aed;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
}

.our-journey-section .journey-item h3 {
  margin-top: 1rem;
  color: #0f172a;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
}

.our-journey-section .journey-item p {
  margin-top: 0.5rem;
  color: #1e293b;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.faq {
  padding: 5rem 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq .heading-section p {
  text-align: center;
}

.faq .questions {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq .question-container {
  width: 100%;
  max-width: 50rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.faq .question-container .question {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.faq .question-container .answer {
  color: #1e293b;
  line-height: 1.5rem;
}

/* ================= TUTORING PAGE RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .tutoring-hero {
    padding: 5rem 2rem;
  }

  .tutoring-hero h1 {
    font-size: 2.75rem;
  }

  .who-we-support-section {
    padding: 4rem 2rem;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .who-we-support-section .image-section {
    order: -1; /* image above text */
  }

  .session-formats {
    padding: 4rem 2rem;
  }

  .session-formats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .investment-section {
    padding: 4rem 2rem;
  }

  .investment-section .packages-section {
    grid-template-columns: 1fr;
    max-width: 30rem;
  }

  .our-journey-section {
    padding: 4rem 2rem;
  }

  .our-journey-section .journey {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq {
    padding: 4rem 2rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .tutoring-hero {
    padding: 4rem 1.5rem;
    text-align: center;
  }

  .tutoring-hero h1 {
    font-size: 2.2rem;
  }

  .tutoring-hero .hero-text {
    font-size: 1rem;
  }

  .tutoring-hero .request-button {
    width: 100%;
    max-width: 20rem;
  }

  /* WHO WE SUPPORT */

  .who-we-support-section .support-section {
    grid-template-columns: 1fr;
  }

  .who-we-support-section .empathy-container {
    position: static; /* prevents overflow */
    width: 100%;
    margin-top: 1rem;
  }

  /* SESSION FORMATS */

  .session-formats-grid {
    grid-template-columns: 1fr;
  }

  /* PACKAGES */

  .investment-section .packages-section {
    width: 100%;
  }

  /* JOURNEY */

  .our-journey-section .journey {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* FAQ */

  .faq .question-container {
    padding: 1.25rem;
  }
}

/* Home from Home page styles */

.from-home-section {
  padding: 5rem 7rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
  place-items: center;
  background: url(../images/from-home-hero-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.from-home-section .adapted-container {
  padding: 0.25rem 0.75rem;
  border-radius: 624.9375rem;
  background: #ede9fe;
  width: fit-content;
}

.from-home-section .adapted-container p {
  color: #6d28d9;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
  letter-spacing: 0.02rem;
}

.from-home-section h1 {
  margin-top: 1rem;
  color: #0f172a;
  font-size: 3.75rem;
  font-weight: 700;
}

.from-home-section h1 span {
  background: linear-gradient(105deg, #7c3aed 0%, #4c1d95 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.from-home-section .main-text {
  margin-top: 1.5rem;
  color: #1e293b;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.from-home-section .kitchen-hero {
  width: 100%;
  transform: rotate(4deg);
  border-radius: 1rem;
}

.from-home-section .book-visit-button {
  margin-top: 3rem;
  width: 10rem;
  height: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.75rem;
  background: #6d28d9;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  color: #fff;
  font-weight: 500;
}

.independence-section {
  padding: 5rem 7rem;
  background-color: #f8fafc;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.learn-independence-items {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 2rem;
}

.learn-independence-item {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #f1f5f9;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.learn-independence-item img {
  width: 3.5rem;
  height: 3.5rem;
}

.learn-independence-item h3 {
  margin-top: 1.5rem;
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.learn-independence-item p {
  margin-top: 0.75rem;
  color: #1e293b;
  line-height: 1.5rem;
}

.accessibility-section {
  padding: 5rem 7rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 3rem;
}

.accessibility-section .accessibility-hero {
  width: 100%;
}

.accessibility-section .text-section h2 {
  text-align: left;
}

.accessibility-section .text-section .main-text {
  margin-top: 1.5rem;
  color: #1e293b;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.accessibility-section .accessibility-items {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.accessibility-section .accessibility-items .accessibility-item {
  display: flex;
  gap: 1rem;
}

.accessibility-item img {
  width: 2rem;
  height: 2rem;
}

.accessibility-item h3 {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.accessibility-item p {
  margin-top: 0.25rem;
  color: #1e293b;
  line-height: 1.5rem;
}

.home-from-home-more-info-section {
  padding: 5rem 7rem;
  background-color: #f8fafc;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: stretch;
}

.home-from-home-more-info-section .pricing,
.home-from-home-more-info-section .rules {
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid #f1f5f9;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.home-from-home-more-info-section .top-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.home-from-home-more-info-section .top-section img {
  width: 1.5rem;
  height: 1.5rem;
}

.home-from-home-more-info-section .top-section h2 {
  text-align: left;
  color: #0f172a;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
}

.home-from-home-more-info-section .session {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid #ede9fe;
  background: #f5f3ff;
}

.home-from-home-more-info-section .session.cooking {
  background-color: #fff;
}

.home-from-home-more-info-section .session .top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-from-home-more-info-section .session h3 {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.home-from-home-more-info-section .session .cost {
  color: #6d28d9;
}

.home-from-home-more-info-section .session .length {
  margin-top: 0.5rem;
  color: #1e293b;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.home-from-home-more-info-section .session .info {
  margin-top: 0.5rem;
  color: #1e293b;
  line-height: 1.5rem;
}

.home-from-home-more-info-section .supervision {
  margin-top: 3rem;
}

.home-from-home-more-info-section .supervision h4 {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.home-from-home-more-info-section .supervision p {
  margin-top: 0.5rem;
  color: #1e293b;
  line-height: 1.5rem;
}

.home-from-home-more-info-section .rules-info {
  margin-top: 1.5rem;
  color: #1e293b;
  line-height: 1.5rem;
}

.home-from-home-more-info-section .rule {
  margin-top: 2.25rem;
  display: flex;
  gap: 0.75rem;
}

.home-from-home-more-info-section .rule img {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}

.home-from-home-more-info-section .rule h3 {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.home-from-home-more-info-section .rule p {
  color: #1e293b;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

/* ================= HOME FROM HOME RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .from-home-section {
    padding: 4rem 2rem;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .from-home-section .text-section {
    text-align: center;
  }

  .from-home-section .kitchen-hero {
    transform: rotate(0deg); /* prevent overflow */
    max-width: 35rem;
  }

  .independence-section {
    padding: 4rem 2rem;
  }

  .learn-independence-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .accessibility-section {
    padding: 4rem 2rem;
    grid-template-columns: 1fr;
  }

  .accessibility-section .text-section {
    text-align: center;
  }

  .home-from-home-more-info-section {
    padding: 4rem 2rem;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .from-home-section {
    padding: 3rem 1.5rem;
  }

  .from-home-section h1 {
    font-size: 2.2rem;
  }

  .from-home-section .main-text {
    font-size: 1rem;
  }

  .from-home-section .book-visit-button {
    width: 100%;
    max-width: 16rem;
    margin-left: auto;
    margin-right: auto;
  }

  /* Independence grid */
  .learn-independence-items {
    grid-template-columns: 1fr;
  }

  /* Accessibility */
  .accessibility-section .accessibility-items {
    gap: 1rem;
  }

  .accessibility-section .accessibility-item {
    align-items: flex-start;
  }

  /* Pricing / rules cards */
  .home-from-home-more-info-section .pricing,
  .home-from-home-more-info-section .rules {
    padding: 1.75rem;
  }

  .home-from-home-more-info-section .session .top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  /* Prevent text squish */
  .home-from-home-more-info-section .rule {
    align-items: flex-start;
  }
}

/* About page styles */

.about-hero {
  padding: 4rem 7rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 4rem;
}

.about-hero .about-photo {
  width: 19.5rem;
  height: 19.5rem;
  border-radius: 50%;
  border: 4px solid #6d28d9;
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #0f172a;
}

.about-hero .qualifications {
  margin-top: 1rem;
  color: #6d28d9;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.75rem;
}

.about-hero .about-me {
  margin-top: 1.5rem;
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.8rem;
}

.about-hero .contact-button {
  margin-top: 2rem;
}

.why-section {
  padding: 5rem 7rem;
  background-color: #faf5ff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-section .why-container {
  padding: 3rem;
  border-radius: 1rem;
  border: 1px solid #f3e8ff;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-container img {
  width: 2.25rem;
}

.why-container p {
  margin-top: 2.5rem;
  color: #4b5563;
  text-align: center;
  line-height: 1.5rem;
}

.experience-section {
  padding: 5rem 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.experience-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 2rem;
}

.experience-item {
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #f3f4f6;
  background: #f9fafb;
}

.experience-item img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.experience-item h4 {
  color: #1e293b;
  font-weight: 600;
  line-height: 1.5rem;
}

.experience-item .details {
  margin-top: 1rem;
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.experience-item .details p {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

/* ================= ABOUT PAGE RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .about-hero {
    padding: 3rem 2rem;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-hero .left-side {
    order: -1; /* image above text */
  }

  .about-hero .right-side {
    text-align: center;
    max-width: 40rem;
  }

  .about-hero .about-photo {
    width: 16rem;
    height: 16rem;
  }

  .why-section {
    padding: 4rem 2rem;
  }

  .why-section .why-container {
    padding: 2rem;
  }

  .experience-section {
    padding: 4rem 2rem;
  }

  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-hero {
    padding: 2.5rem 1.5rem;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero .qualifications {
    font-size: 1rem;
  }

  .about-hero .about-me {
    font-size: 1rem;
  }

  .about-hero .about-photo {
    width: 13rem;
    height: 13rem;
  }

  .about-hero .contact-button {
    margin-left: auto;
    margin-right: auto;
  }

  /* WHY SECTION */

  .why-container p {
    margin-top: 1.5rem;
    font-size: 0.95rem;
  }

  /* EXPERIENCE */

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .experience-item {
    padding: 1.25rem;
  }

  .experience-item .details {
    margin-left: 0;
  }
}

/* Contact page styles */

.contact-hero {
  padding: 5rem 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-hero h1 {
  color: #0f172a;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
}

.contact-hero p {
  width: 100%;
  max-width: 50rem;
  margin-top: 1rem;
  color: #1e293b;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.8rem;
}

.contact-page-container {
  background-color: #f8fafc;
  padding: 5rem 7rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
}

.contact-page-container .contact-form {
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.contact-page-container .contact-form button {
  background-color: #6d28d9 !important;
}

.contact-page-container .contact-details {
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.contact-page-container .contact-details h2 {
  text-align: left;
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.contact-page-container .contact-details .contact-item {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.contact-page-container .contact-details .contact-item img {
  width: 3rem;
  height: 3rem;
}

.contact-page-container .contact-details h3 {
  color: #0f172a;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
}

.contact-page-container .contact-details p,
.contact-page-container .contact-details a {
  color: #6d28d9;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.service-information {
  margin-top: 2rem;
  padding: 2rem;
  border-radius: 1.5rem;
  background: #4c1d95;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.service-information h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.service-information .service-information-item {
  margin-top: 1.5rem;
}

.service-information .service-information-item .heading {
  font-size: 0.875rem;
  color: #c4b5fd;
  font-weight: 600;
  line-height: 1.25rem;
}

.service-information .service-information-item .details {
  margin-top: 0.5rem;
  color: #ede9fe;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

/* Policies page styles */

.policies-hero {
  padding: 5rem 7rem;
  display: flex;
  justify-content: center;
}

.policies-grid {
  margin: 3rem 7rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.policy-card {
  padding: 1.5rem;
  border-radius: 0.625rem;
  background: #f5f5f5;
  text-align: center;
}

.download-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: #6d28d9;
  color: white;
  border-radius: 0.25rem;
}

/* Request tutoring page styles */

.request-hero {
  padding: 5rem 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.request-hero h1 {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 2.5rem;
}

.request-hero p {
  max-width: 50rem;
  text-align: center;
}

.tutoring-request-page {
  padding: 3rem 7rem;
  background-color: #f8fafc;
  display: flex;
  justify-content: center;
}

.tutoring-request-page .contact-form-tutoring {
  display: flex;
  width: 44rem;
  max-width: 100%;
  padding: 3rem 3rem 4rem 3rem;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 1.5rem;
  border: 1px solid #f1f5f9;
  background: #fff;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.tutoring-request-page .contact-form-tutoring .top-section {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.tutoring-request-page .contact-form-tutoring .top-section img {
  width: 2rem;
  height: 2rem;
}

.tutoring-request-page .contact-form-tutoring .top-section h2 {
  color: #0f172a;
  font-size: 1.5rem;
  font-weight: 7000;
  line-height: 2rem;
}

.tutoring-request-page .contact-form-tutoring .contact-tutoring {
  width: 100%;
}

.tutoring-request-page .contact-form-tutoring .contact-tutoring button {
  background-color: #6d28d9 !important;
  align-self: flex-end;
}
