html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Cormorant Garamond', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Fixed Header Section */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 40px;
    box-sizing: border-box;
    height: 110px;
}
.fixed-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px; 
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.945) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
}
.fixed-logo img {
    height: 100px;
    width: auto;
}
.fixed-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
}
.fixed-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 25px;
    transition: opacity 0.3s;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    letter-spacing: 0.2px;
}
.fixed-nav a:hover {
    opacity: 0.8;
}

/* Home section */
.home-section{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.home-section::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.scrolled .home-section::before {
    opacity: 1;
}
.header-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: rgba(80, 73, 73);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.header-backdrop.visible {
    opacity: 1;
}
.home-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.home-carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.home-carousel-item.active {
    opacity: 1;
}
.home-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}
.home-content {
    position: absolute;
    font-size: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    color: #fff;
}
.rotating-text {
    position: relative;
    height: 60px;
}
.rotating-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    font-size: 60px;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
.rotating-item.active {
    opacity: 1;
}

/* Intro Section */
.tutor-section {
    position: relative;
    width: 100%;
    padding-top: 100px;
}

.tutor-section h2 {
    font-size: 50px;
    color: #472f04;
    margin: 30px 0 20px 0;
    display: flex;
    align-items: center;
    padding-left: 85px;
    gap: 16px;
}
.tutor-section h2::after {
    content: "";
    flex: 1;
    height: 2px;
    background: #472f04;
}

.tutor-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.tutor-content {
    flex: 1; 
    min-width: 0;
    margin-left: 85px;
    padding-right: 50px;
}
.tutor-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: #472f04;
}
.tutor-content h4 {
    font-size: 25px;
    font-weight: 700;
    color: #472f04;
}
.tutor-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}
.tutor-image {
    flex: 1;
    display: flex;
    justify-content: center;
}
.tutor-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Stats Section */
.stats-section {
    position:relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding-top: 100px;
}
.stats-section h2 {
    font-size: 50px;
    color: #472f04;
    margin: 30px 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 85px;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}
.stats-section h2::before {
    content: "";
    flex: 1;
    height: 2px;
    background: #472f04;
    min-width: 0;
}
.stats-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  flex-wrap: nowrap;
  width: 100%;
  padding: 0 85px;
  box-sizing: border-box;
}
.stat-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  background: white;
  border: 1px solid #e8e2d8;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.stat-card:first-child {
  border-radius: 12px 0 0 12px;
}
.stat-card:last-child {
  border-radius: 0 12px 12px 0;
}
.stat-number {
  font-size: 80px;
  font-weight: 900;
  color: #472f04;
  line-height: 1;
}
.stat-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: #7a6245;
  margin-top: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* About Section */
.about-section{
    position:relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding-top: 100px;
}

.about-section h2 {
    font-size: 50px;
    color: #472f04;
    margin: 30px 0 20px 0;
    display: flex;
    align-items: center;
    padding-left: 85px;
    gap: 16px;
}
.about-section h2::after {
    content: "";
    flex: 1;
    height: 2px;
    background: #472f04;
}

.about-card {
    width: 100%;
    height: 100%;
}
.about-video {
    position: relative;
    width: min(90%, 960px);
    margin: 0 auto 60px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 12px 34px rgba(0,0,0,0.18);
}
.about-video-player {
    /* width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    background: #000; */
    width: 100%;
    height: 600px;
    display: block;
    border-radius: 8px;
    background: #000;
    border: none;
}
.about-video iframe,
.about-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    background: #000;
}

/* Services Section */
.services-section {
    position:relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding-top: 100px;
}
.services-section h2 {
    font-size: 50px;
    color: #472f04;
    margin: 30px 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 85px;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}
.services-section h2::before {
    content: "";
    flex: 1;
    height: 2px;
    background: #472f04;
    min-width: 0;
}
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    padding: 0 20px;
}
.service-card {
    height: 500px;
    width: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}
.service-card:hover {
    transform: scale(1.03);
}
.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 240px;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.99) 0%, 
        rgba(0, 0, 0, 0.7) 40%, 
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}
.service-content h3 {
    font-weight: 700;
    font-size: 40px;
    margin: 0 0 8px;
    text-align: center;
}
.service-content p {
    font-family: 'Times New Roman', serif;
    font-size: 20px;
    font-weight: 350;
    opacity: 0.9;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    position:relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding-top: 120px;
}
.testimonials-section > div {
    background: #c7b794;
    padding: 60px 0;
    width: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.testimonials-section h2 {
    font-size: 50px;
    color: #472f04;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    padding-left: 85px;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}
.testimonials-section h2::after {
    content: "";
    flex: 1;
    height: 2px;
    background: #472f04;
}
.testimonials-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.testimonial-sign {
    width: 80px;
    height: auto;
    margin-bottom: 32px;
    opacity: 0.8;
}
.testimonial-slide {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}
.testimonial-slide.active {
    display: block;
}
.testimonial-slide p {
    font-size: 35px;
    color: white;
    line-height: 1.6;
}
.testimonial-author {
    font-size: 30px;
    color: white;
    margin-top: 50px;
    padding-top: 50px;
}
.testimonial-dots {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 12px;
}
.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}
.dot.active {
    background: white;
    border-color: white;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.more-reviews-image {
    width: 100%;
    max-width:322px;
    height: auto;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.more-reviews-image:hover {
    transform: scale(1.03);
}

/* Contact Section */
.contact-section {
    position: relative;
    width: 100%;
    padding-top: 100px;
}
.contact-section > div {
    background: black;
    padding: 60px 0;
    width: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
}
.contact-section h2 {
    font-size: 50px;
    color: #472f04;
    margin: 30px 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 85px;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}
.contact-section h2::before {
    content: "";
    flex: 1;
    height: 2px;
    background: #472f04;
    min-width: 0;
}
.contact-container {
    width: 100%;
    text-align: left;
    position: relative;
}
.contact-image {
    width: 800px;
    height: auto;
    display: block;
    margin-top: 60px;
}

/* .contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 100px;
    box-sizing: border-box;
    width: 100%;
    gap: 40px;
} */

.contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 100px;
    padding-right: 190px;
    box-sizing: border-box;
    width: 100%;
    gap: 40px;
}

.contact-details {
    color: white;
    font-size: 18px;
    line-height: 1.6;
}
.contact-details h3 {
    font-weight: 700;
    font-size: 35px;
    color: #f8f5f0;
}
.contact-details p {
    margin: 6px 0;
    font-family: serif;
}
.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}
.social-icons img {
    width: 28px;
    height: 28px;
}
.logo-link {
    display: block;
    cursor: pointer;
}
.logo-link:hover {
    cursor: pointer;
}
.logo-link img {
    display: block;
    transition: transform 0.3s ease;
}
.logo-link:hover img {
    transform: scale(1.02);
}

/* Footer Section */
.final-divider {
    border: 0;
    border-top: 1px solid #555;
    margin: 160px 0 20px;
    width: 100%;
}
.copyright-text {
    text-align: center;
    color: #999;
    font-size: 14px;
    font-family: serif;
    padding-top: 30px;
}

/* Cookie Widget */
#cookie-widget {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9999;
  cursor: pointer;
}
#cookie-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25));
}
#cookie-icon-btn:hover {
  transform: scale(1.08);
}
#cookie-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
}
#cookie-overlay.open {
  display: block;
}
#cookie-dialog {
  display: none;
  position: fixed;
  bottom: 100px;
  left: 28px;
  width: 340px;
  background: #2b2b2b;
  border-radius: 12px;
  padding: 28px;
  z-index: 10001;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  color: white;
  font-family: 'Cormorant Garamond', serif;
}
#cookie-dialog.open {
  display: block;
}
#cookie-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
#cookie-close:hover { opacity: 1; }
#cookie-dialog h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  padding-right: 24px;
}
#cookie-dialog > p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}
.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.cookie-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: white;
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-option label {
  font-size: 13px;
  line-height: 1.5;
  cursor: pointer;
}
.cookie-option label span {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.cookie-buttons button {
  flex: 1;
  padding: 12px;
  border-radius: 6px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-buttons button:first-child {
  background: #6b6b6b;
  color: white;
  border: none;
}
.cookie-buttons button:first-child:hover {
  background: #888;
}
.cookie-buttons button:last-child {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.cookie-buttons button:last-child:hover {
  background: white;
  color: #2b2b2b;
}

/* --------------------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------------------- */

/* Hamburger Menu */
.hamburger {
   display: none;
   flex-direction: column;
   justify-content: center;
   gap: 5px;
   background: none;
   border: none;
   cursor: pointer;
   padding: 8px;
   z-index: 200;
}
.hamburger span {
   display: block;
   width: 26px;
   height: 2px;
   background: white;
   border-radius: 2px;
   transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) {
   transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
   opacity: 0;
}
.hamburger.open span:nth-child(3) {
   transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 768px) {

   /* Header */
   .fixed-header {
      height: 70px;
      padding: 0 20px;
   }
   .fixed-logo img {
      height: 55px;
   }
   .hamburger {
      display: flex;
   }
   .fixed-nav ul {
      display: none;
      flex-direction: column;
      position: fixed;
      top: 70px;
      left: 0;
      width: 100%;
      background: rgba(30, 20, 10, 0.97);
      padding: 0;
      gap: 0;
      z-index: 999;
      margin: 0;
   }
   .fixed-nav ul.open {
      display: flex;
   }
   .fixed-nav ul li a {
      display: block;
      padding: 14px 30px;
      font-size: 20px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
   }
   /* Home section */
   .home-section {
      height: 100vh;
      width: 100%;
   }
   .home-content {
      width: 90%;
      font-size: 28px;
   }
   .home-content h1 {
      font-size: 32px;
      line-height: 1.2;
   }
   .rotating-text {
      height: 45px;
   }
   .rotating-item {
      font-size: 28px;
   }
   /* All section headings */
   .tutor-section h2,
   .about-section h2,
   .services-section h2,
   .testimonials-section h2,
   .contact-section h2 {
      font-size: 28px;
      padding-left: 20px;
      padding-right: 20px;
   }
   /* Tutor section */
   .tutor-section {
      padding-top: 80px;
      min-height: 100vh;
      box-sizing: border-box;
   }
   .tutor-container {
      flex-direction: column;
      padding-bottom: 40px;
   }
   .tutor-content {
      margin-left: 20px;
      margin-right: 20px;
      padding-right: 0;
   }
   .tutor-content h3 {
      font-size: 24px;
   }
   .tutor-content h4 {
      font-size: 18px;
   }
   .tutor-content p {
      font-size: 15px;
   }
   .tutor-image {
      width: 100%;
      padding: 0 20px;
      box-sizing: border-box;
      margin-top: 30px;
   }
   .tutor-image img {
      width: 100%;
      max-width: 400px;
      margin: 0 auto;
      display: block;
   }
   /* About section */
   .about-section {
      padding-top: 80px;
      min-height: 100vh;
      box-sizing: border-box;
   }
   .about-video-player {
      border-radius: 0;
   }
   /* Stats section */
   .stats-grid {
      flex-wrap: wrap;
      gap: 12px;
      padding: 0 20px;
   }
   .stat-card {
      flex: 1 1 40%;
      padding: 28px 12px;
      border-radius: 12px;
   }
   .stat-card:first-child,
   .stat-card:last-child {
      border-radius: 12px;
   }
   .stat-number {
      font-size: 42px;
   }
   .stat-label {
      font-size: 13px;
      margin-top: 10px;
      letter-spacing: 1px;
   }
   /* Services section */
   .services-section {
      padding-top: 80px;
      min-height: 100vh;
      box-sizing: border-box;
   }
   .services-section h2 {
      justify-content: flex-start;
      padding-left: 20px;
      padding-right: 20px;
   }
   .services-section h2::before {
      display: none;
   }
   .services-section h2::after {
      content: "";
      flex: 1;
      height: 2px;
      background: #472f04;
   }
   .services-grid {
      flex-direction: column;
      align-items: center;
      padding: 0 20px;
      gap: 12px;
   }
   .service-card {
      width: 100%;
      max-width: 420px;
      height: 280px;
   }
   .service-content h3 {
      font-size: 26px;
   }
   .service-content p {
      font-size: 15px;
   }
   /* Testimonials section */
   .testimonials-section {
      padding-top: 80px;
      min-height: 100vh;
      box-sizing: border-box;
   }
   .testimonials-section h2 {
      display: flex;
      align-items: center;
      margin: 0 0 20px 0;
      padding-left: 20px;
      white-space: normal;
      position: static;
   }
   .testimonials-section h2::after {
      content: "";
      flex: 1;
      height: 2px;
      background: #472f04;
      position: static;
      width: auto;
      margin-left: 16px;
   }
   .testimonials-section > div {
      padding: 40px 20px;
      align-items: center;
      width: 100%;
      box-sizing: border-box;
      margin: 0;
   }
   .testimonials-container {
      /* padding: 0 10px; */
      padding: 0 20px;
      box-sizing: border-box;
      width: 100%;
      max-width: 100%;
      text-align: center;
   }
   .testimonial-slide p {
      /* font-size: 18px; */
          font-size: 18px;
          word-wrap: break-word;
          overflow-wrap: break-word;
   }
   .testimonial-author {
      font-size: 16px;
      margin-top: 20px;
      padding-top: 20px;
   }
   .testimonial-sign {
      width: 50px;
      margin-bottom: 20px;
   }
   /* Contact section */
   .contact-section {
      padding-top: 80px;
      min-height: 100vh;
      box-sizing: border-box;
   }
   .contact-section h2 {
      justify-content: flex-start;
      padding-left: 20px;
      padding-right: 20px;
   }
   .contact-section h2::before {
      display: none;
   }
   .contact-section h2::after {
      content: "";
      flex: 1;
      height: 2px;
      background: #472f04;
   }
   .contact-content {
      flex-direction: column;
      gap: 30px;
      align-items: flex-start;
      padding: 0 20px;
   }
   .contact-image {
      width: 100%;
      max-width: 300px;
      margin-top: 20px;
   }
   .contact-container {
      margin: 0;
      width: 100%;
      padding: 0 20px;
      box-sizing: border-box;
   }
   .contact-details h3 {
      font-size: 24px;
   }
   .contact-details {
      font-size: 15px;
   }
   .final-divider {
      margin: 60px 0 20px;
   }
}
/* ===== Enrolment build additions ===== */

/* Hero CTA */
.hero-cta {
   display: inline-block;
   margin-top: 34px;
   padding: 16px 38px;
   background: #472f04;
   color: #f5edda;
   font-family: 'Playfair Display', serif;
   font-size: 20px;
   letter-spacing: 1px;
   text-decoration: none;
   border-radius: 6px;
   border: 1px solid rgba(245, 237, 218, 0.5);
   transition: background 0.3s ease, transform 0.2s ease;
}
.hero-cta:hover { background: #5d3f08; transform: translateY(-2px); }
.nav-cta { font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }

/* Assessment section */
.assessment-section { position: relative; width: 100%; padding-top: 100px; }
.assessment-section h2 {
   font-size: 50px; color: #472f04; margin: 30px 0 20px 0;
   display: flex; align-items: center; padding-left: 85px; gap: 16px;
}
.assessment-section h2::after { content: ""; flex: 1; height: 2px; background: #472f04; }
.assessment-container { max-width: 760px; margin: 0 auto; padding: 20px 85px 60px; }
.assessment-intro { font-size: 18px; line-height: 1.6; color: #333; margin-bottom: 28px; }
#assessment-form label, #calc-form label {
   display: block; font-family: 'Cormorant Garamond', serif; font-size: 17px;
   color: #472f04; font-weight: 600; margin-bottom: 18px;
}
.form-row { display: flex; gap: 24px; }
.form-row > label { flex: 1; }
#assessment-form input[type="text"], #assessment-form select, #assessment-form textarea,
#calc-form select, #access-gate input {
   display: block; width: 100%; box-sizing: border-box; margin-top: 6px;
   padding: 12px 14px; font-size: 16px; font-family: inherit;
   border: 1px solid #d5c9b5; border-radius: 6px; background: #fff; color: #333;
}
.checkbox-group { display: flex; gap: 28px; margin-top: 12px; }
.check-inline { display: flex !important; align-items: center; gap: 8px; font-size: 17px !important; margin-bottom: 0 !important; }
.check-inline input { width: 18px; height: 18px; accent-color: #472f04; }
.optional { font-weight: 400; color: #9a8a72; }
.assessment-submit {
   display: inline-block; margin-top: 8px; padding: 14px 34px;
   background: #472f04; color: #f5edda; font-family: 'Playfair Display', serif;
   font-size: 17px; letter-spacing: 1px; border: none; border-radius: 6px;
   cursor: pointer; text-decoration: none; transition: background 0.3s ease;
}
.assessment-submit:hover { background: #5d3f08; }
.assessment-alt { margin-top: 16px; font-size: 15px; color: #7a6245; }
.assessment-alt a { color: #472f04; }

/* FAQ */
.faq-section { position: relative; width: 100%; padding-top: 100px; }
.faq-section h2 {
   font-size: 50px; color: #472f04; margin: 30px 0 20px 0;
   display: flex; align-items: center; padding-left: 85px; gap: 16px;
}
.faq-section h2::after { content: ""; flex: 1; height: 2px; background: #472f04; }
.faq-container { max-width: 860px; margin: 0 auto; padding: 10px 85px 40px; }
.faq-container details {
   border: 1px solid #e8e2d8; border-radius: 8px; margin-bottom: 12px;
   background: #fff; overflow: hidden;
}
.faq-container summary {
   cursor: pointer; padding: 18px 22px; font-family: 'Playfair Display', serif;
   font-size: 19px; color: #472f04; list-style: none; position: relative;
}
.faq-container summary::-webkit-details-marker { display: none; }
.faq-container summary::after {
   content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
   font-size: 24px; color: #7a6245;
}
.faq-container details[open] summary::after { content: "−"; }
.faq-container details p {
   padding: 0 22px 18px; margin: 0; font-size: 17px; line-height: 1.6; color: #444;
}

/* Safeguarding */
.safeguarding-section { position: relative; width: 100%; padding-top: 100px; padding-bottom: 40px; }
.safeguarding-section h2 {
   font-size: 50px; color: #472f04; margin: 30px 0 20px 0;
   display: flex; align-items: center; padding-left: 85px; gap: 16px;
}
.safeguarding-section h2::after { content: ""; flex: 1; height: 2px; background: #472f04; }
.safeguarding-container { max-width: 860px; margin: 0 auto; padding: 10px 85px; }
.safeguarding-container p { font-size: 18px; line-height: 1.6; color: #333; }
.policy-links { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 22px; }
.policy-links a {
   padding: 12px 22px; border: 1px solid #472f04; border-radius: 6px;
   color: #472f04; text-decoration: none; font-family: 'Playfair Display', serif;
   font-size: 16px; transition: background 0.3s ease, color 0.3s ease;
}
.policy-links a:hover { background: #472f04; color: #f5edda; }

/* WhatsApp float */
.whatsapp-float {
   position: fixed; bottom: 24px; right: 24px; z-index: 1000;
   width: 58px; height: 58px; border-radius: 50%;
   background: #25D366; color: #fff;
   display: flex; align-items: center; justify-content: center;
   box-shadow: 0 4px 14px rgba(0,0,0,0.25);
   transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 34px; height: 34px; }

/* Footer enrol link */
.footer-enrol { margin-left: 18px; }
.footer-enrol a { color: inherit; opacity: 0.7; }

/* Enrolment page */
.enrol-page { background: #f7f3ec; min-height: 100vh; }
.enrol-section { position: relative; width: 100%; padding-top: 110px; }
.enrol-section h2 {
   font-size: 44px; color: #472f04; margin: 10px 0 20px 0;
   display: flex; align-items: center; padding-left: 85px; gap: 16px;
}
.enrol-section h2::after { content: ""; flex: 1; height: 2px; background: #472f04; }
.enrol-section + .enrol-section { padding-top: 40px; }
.enrol-card {
   max-width: 720px; margin: 0 auto 20px; background: #fff;
   border: 1px solid #e8e2d8; border-radius: 12px; padding: 34px 38px;
}
.enrol-card p { font-size: 17px; line-height: 1.6; color: #333; }
.enrol-help { font-size: 15px; color: #7a6245; }
.enrol-help a { color: #472f04; }
.enrol-steps { padding-left: 20px; }
.enrol-steps li { font-size: 17px; line-height: 1.6; color: #333; margin-bottom: 14px; }
#calc-result { margin-top: 28px; border-top: 2px solid #472f04; padding-top: 22px; }
.result-monthly {
   font-family: 'Playfair Display', serif; font-size: 54px; font-weight: 900; color: #472f04;
}
.result-monthly span { font-size: 64px; }
.result-detail { font-size: 16px; color: #555; line-height: 1.7; }
.result-cta { margin-top: 10px; }

@media (max-width: 768px) {
   .assessment-section h2, .faq-section h2, .safeguarding-section h2, .enrol-section h2 {
      font-size: 28px; padding-left: 20px; padding-right: 20px;
   }
   .assessment-container, .faq-container, .safeguarding-container { padding-left: 20px; padding-right: 20px; }
   .form-row { flex-direction: column; gap: 0; }
   .enrol-card { margin-left: 16px; margin-right: 16px; padding: 24px 20px; }
   .hero-cta { font-size: 17px; padding: 14px 28px; }
   .whatsapp-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
}

/* Video play overlay */
.video-play-btn {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   background: transparent;
   border: none;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 0;
}
.video-play-btn svg {
   width: 92px;
   height: 92px;
   transition: transform 0.2s ease;
   filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35));
}
.video-play-btn:hover svg { transform: scale(1.08); }
.video-play-btn.hidden { display: none; }
@media (max-width: 768px) {
   .video-play-btn svg { width: 64px; height: 64px; }
}

/* Enrolment wizard */
.step-label {
   font-family: 'Playfair Display', serif;
   font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
   color: #9a8a72; margin-top: 0;
}
#details-form input, #details-form select {
   display: block; width: 100%; box-sizing: border-box; margin-top: 6px;
   padding: 12px 14px; font-size: 16px; font-family: inherit;
   border: 1px solid #d5c9b5; border-radius: 6px; background: #fff; color: #333;
}
#details-form label {
   display: block; font-family: 'Cormorant Garamond', serif; font-size: 17px;
   color: #472f04; font-weight: 600; margin-bottom: 18px;
}
