/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #45398d;
  text-decoration: none;
}

a:hover {
  color: #45398d;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Header / NavBar
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #f1f2f2;
  padding: 15px 20px;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo colors */
#header .logo h1 a {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: none;
  -webkit-text-fill-color: initial;
}

#header .logo h1 a .pusat {
  color: #4e013d;
}

#header .logo h1 a .kaunseling {
  color: #aa178a;
}

#header .logo h1 a:hover {
  opacity: 0.85;
}

/* Navbar */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  padding: 10px 15px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #252525;
  font-weight: 500;
  transition: 0.3s;
}

.navbar a:hover,
.navbar .active {
  color: #aa178a;
}

.logo-img {
  height: 45px;       
  width: auto;
  object-fit: contain;
  min-height: 45px;
}


/* -------------------------------------------------------------
# Mobile Navbar 
-------------------------------------------------------------- */
.mobile-nav-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  line-height: 0;
  transition: 0.3s;
  color: #252525;
}

/* ===== Mobile navbar: panel turun dari atas, full width ===== */
@media (max-width: 991px) {
  /* Burger/X icon – sentiasa di top right */
  .mobile-nav-toggle {
    display: block;
    position: fixed;      /* 🔥 kunci pada viewport, bukan ikut tinggi header */
    top: 18px;
    right: 20px;
    margin-left: 0;
    z-index: 1100;
  }

  .navbar ul {
    display: none;
    flex-direction: column;
  }

  /* Panel putih melekat bawah header */
  .navbar.navbar-mobile {
    position: fixed;
    top: 60px;          /* tinggi header */
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    z-index: 1000;
  }

  .navbar.navbar-mobile ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 6px 0;
  }

  .navbar.navbar-mobile li {
    width: 100%;
  }

  .navbar.navbar-mobile a {
    display: block;
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    color: #2b2b2b;
    border-top: 1px solid #f5f5f5;
  }

  .navbar.navbar-mobile li:first-child a {
    border-top: none;
  }

  .navbar.navbar-mobile a:hover,
  .navbar.navbar-mobile .active {
    background: #fbefff;
    color: #a2017f;
  }
}

/*--------------------------------------------------------------
# Hero Section - UTAMA page
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #f1f2f2;
  overflow: hidden;
  padding: 8%;
}

/* Left half-circle image */
.hero-circle {
  position: absolute;
  left: -7%;
  top: 50%;
  transform: translateY(-50%);
  width: 120%;
  height: 120%;
  background: url('../img/slide/halfC.png') center left/contain no-repeat;
  z-index: 0;
}

/* Decorative spiral at top-right */
#hero .spiral {
  position: absolute;
  top: 9%;
  right: 0%;
  width: 900px;
  height: 900px;
  background: url('../img/slide/spiral.png') top right / contain no-repeat;
  opacity: 100;
  z-index: 0;
  pointer-events: none;
}

/* Central circle behind content */
#hero .hero-center-circle {
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: url('../img/slide/circle.png') center center / contain no-repeat;
  opacity: 100;
  z-index: 0;
  pointer-events: none;
}

/* Bottom-right dark half circle */
#hero .halfC2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url('../img/slide/halfC2.png') right bottom / contain no-repeat;
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}

/* Central circular counseling photo */
#hero .session-img {
  position: absolute;
  top: 50%;
  left: 68%;
  transform: translate(-50%, -50%);
  width: 440px;
  height: 440px;
  background: url('../img/slide/session.png') center center / cover no-repeat;
  border-radius: 50%;
  z-index: 1;
}

/* Small decorative circle (top-right) */
#hero .small-circle {
  position: absolute;
  top: 75px;
  right: 10px;
  width: 100px;
  height: 100px;
  background: url('../img/slide/small.png') center center / cover no-repeat;
  border-radius: 50%;
  border: 8px solid #a2017f;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

/* Top-right circular image */
#hero .hero-topright-img {
  position: absolute;
  top: 55px;
  right: -13px;
  width: 140px;
  height: 140px;
  background: url('../img/slide/image.png') center center / cover no-repeat;
  z-index: 1;
}

/* Content box */
#hero .content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  text-align: left;
  color: #2a2a2a;
  margin-left: 5%;
}

/* Headings */
#hero h1 {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-left: -80px;
}

#hero h1 .pusat {
  color: #4e013d;
}

#hero h1 .kaunseling {
  color: #aa178a;
}

#hero .tagline {
  display: inline-block;
  background: linear-gradient(
    90deg,
    rgba(162, 1, 127, 1) 0%,
    rgba(162, 1, 127, 0.055) 100%
  );
  color: #fff;
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  padding: 8px 24px;
  border-radius: 3px;
  margin: 15px 0 25px;
  text-align: left;
  margin-left: -80px;
  min-width: 650px;
}

#hero p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 550px;
  margin-left: -80px;
  text-align: left;
}

/* Button */
.btn-gradient {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  background: linear-gradient(90deg, #aa178a, #4e013d);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  margin-left: -80px;
}

.btn-gradient:hover {
  background: linear-gradient(90deg, #4e013d, #aa178a);
  color: #fff;
  transform: translateY(-3px);
}

/* HERO – responsive */
@media (max-width: 991px) {
  #hero {
    flex-direction: column;
    justify-content: center;
    padding: 100px 20px 60px;
  }

  .hero-circle {
    position: absolute;
    top: -25%;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 60%;
    background-position: top center;
  }

  #hero .spiral {
    width: 160px;
    height: 160px;
  }

  #hero .hero-center-circle {
    width: 280px;
    height: 280px;
  }

  #hero .halfC2 {
    width: 260px;
    height: 260px;
    opacity: 0.7;
  }

  #hero .content {
    text-align: center;
    margin-left: 0;
  }

  #hero h1,
  #hero .tagline,
  #hero p,
  .btn-gradient {
    margin-left: 0;
  }

  #hero h1 {
    font-size: 42px;
  }

  #hero .tagline {
    font-size: 18px;
    min-width: auto;
    width: 100%;
  }

  #hero p {
    font-size: 16px;
    max-width: 100%;
  }

  .btn-gradient {
    font-size: 14px;
    padding: 12px 28px;
  }

  /* Gambar bulat turun ke bawah content */
  #hero .session-img {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 24px auto 0;
    width: 220px;
    height: 220px;
  }

  /* lembutkan dekorasi */
  #hero .hero-center-circle,
  #hero .halfC2,
  #hero .small-circle,
  #hero .hero-topright-img {
    opacity: 0.3;
  }
}

@media (max-width: 575.98px) {
  #hero h1 {
    font-size: 32px;
  }

  #hero .tagline {
    font-size: 16px;
    padding: 8px 16px;
  }

  #hero p {
    font-size: 14px;
  }

  #hero .session-img {
    width: 200px;
    height: 200px;
  }
}

/* =========================================================
   GLOBAL SECTION STYLE
========================================================= */
.section-light {
  background: #ffffff;
  padding: 80px 0;
}

.section-bg {
  background: linear-gradient(180deg, #f8f0f7 0%, #ffffff 100%);
  padding: 80px 0;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: #6E0C63;
  margin-bottom: 16px;
  text-align: left;
}

.section-title .black-text {
  color: #0D0D0D;
}

.section-title .gradient-text {
  background: linear-gradient(90deg, #a2017f, #4e013d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 600;
  color: #a2017f;
  margin-bottom: 10px;
}

/* =========================================================
   MENGAPA MEMILIH KAMI
========================================================= */
.why-section {
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: "";
  position: absolute;
  right: -140px;
  top: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at center,
    rgba(162, 1, 127, 0.15),
    rgba(255, 255, 255, 0));
  filter: blur(2px);
  z-index: 0;
}

.why-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.why-intro {
  flex: 1 1 340px;
}

.why-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 10px;
}

.why-grid {
  flex: 1 1 340px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.why-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #fed9f5;
  padding: 20px 18px 22px;
  box-shadow: 0 10px 26px rgba(110, 12, 99, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(162, 1, 127, 0.22),
    rgba(255, 255, 255, 0));
  opacity: 1;
  transition: opacity 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: #a2017f;
  box-shadow: 0 18px 40px rgba(162, 1, 127, 0.25);
}

.why-card:hover::after {
  opacity: 1;
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #fbefff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.why-icon-inner {
  font-size: 13px;
  font-weight: 700;
  color: #6E0C63;
  letter-spacing: 0.12em;
}

.why-title {
  font-size: 17px;
  font-weight: 700;
  color: #2D2654;
  margin: 0 0 6px;
}

.why-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.7;
}

/* Why responsive */
@media (max-width: 992px) {
  .section-title {
    text-align: center;
  }

  .why-container {
    flex-direction: column;
  }

  .why-intro,
  .why-desc {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   TESTIMONI 
========================================================= */
.review-section {
  padding: 80px 0;
  background: #faf5fc;
}

.review-kicker {
  font-size: 15px;
  letter-spacing: 2px;
  color: #6e0c63;
  text-transform: uppercase;
  font-weight: 600;
}

.review-title {
  font-size: 42px;
  font-weight: 800;
  margin: 10px 0;
}

.review-title span {
  color: #a2017f;
}

.review-subtitle {
  max-width: 550px;
  color: #555;
  margin-bottom: 35px;
  line-height: 1.7;
}

.review-rating-summary {
  margin-bottom: 35px;
}

.rating-text {
  font-size: 28px;
  font-weight: 800;
}

.stars {
  font-size: 26px;
  color: #ffb400;
  margin: 5px 0;
}

.stars.small {
  font-size: 18px;
}

/* Gradient shell */
.review-carousel-shell {
  margin-top: 10px;
  padding: 38px 26px 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fde9ff 0%, #d9e8ff 100%);
  position: relative;
}

/* Carousel structure */
.review-carousel {
  overflow: hidden;
  position: relative;
}

.review-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.review-slide {
  min-width: 100%;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Card */
.review-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 70px 26px 26px;
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.08);
  max-width: 320px;
  text-align: center;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: visible;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 18px 38px rgba(0, 0, 0, 0.15);
}

/* Avatar bulat di atas card */
.review-avatar-wrap {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

/* Text inside card */
.review-text {
  color: #555;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 14px;
}

.review-name {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 2px;
}

.review-role {
  font-size: 13px;
  color: #777;
  margin-bottom: 4px;
}

.review-date {
  font-size: 12px;
  color: #9a9a9a;
  margin-bottom: 6px;
}

/* Dots indicator */
.review-indicators {
  text-align: center;
  margin-top: 22px;
}

.review-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  margin: 0 4px;
  background-color: rgba(110, 12, 99, 0.25);
  cursor: pointer;
}

.review-indicators button.active {
  width: 22px;
  background-color: #a2017f;
}

/* Testimoni responsive */
@media (max-width: 767.98px) {
  .review-section {
    padding: 50px 0;
  }

  .review-title {
    font-size: 28px;
  }

  .review-carousel-shell {
    padding: 24px 16px 22px;
  }

  .review-slide {
    justify-content: center;
  }

  .review-card {
    max-width: 100%;
  }
}

/* =========================================================
   HUBUNGI KAMI (HOME)
========================================================= */
.contact-home {
  position: relative;
}

.contact-home-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

.contact-home-text {
  flex: 1 1 360px;
}

.contact-home-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 10px;
}

.contact-steps {
  list-style: none;
  padding: 0;
  margin: 16px 0 6px;
}

.contact-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
}

.contact-steps li span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fbefff;
  color: #6E0C63;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.contact-home-btn {
  margin-top: 25px;
  display: inline-block;
  margin-left: 80px;
}

.contact-home-card {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #fed9f5;
}

.contact-home-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #6E0C63;
  margin-bottom: 14px;
}

.contact-home-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.contact-home-list li {
  margin-bottom: 10px;
}

.contact-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #999;
  margin-bottom: 2px;
}

.contact-home-list a {
  font-size: 15px;
  color: #4e013d;
  font-weight: 600;
}

.contact-home-list a:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: 13px;
  color: #777;
  line-height: 1.7;
}

.contact-map-embed {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}

.contact-map-embed iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

/* ===== Penerima Perkhidmatan ===== */
.partner-section {
  margin-top: 40px;
}

/* Center + big title */
.partner-title {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  color: #7a1b7a;
  margin-bottom: 30px;
}

/* Marquee container */
.partner-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Moving track */
.partner-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

/* Bigger logos */
.partner-track img {
  height: 85px;            /* BIG logo size */
  margin: 0 45px;          /* spacing between logos */
  object-fit: contain;
  display: block;
  opacity: 0.95;
  transition: transform 0.3s ease;
}

/* Subtle hover (optional) */
.partner-track img:hover {
  transform: scale(1.08);
}

/* Animation */
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Tablet */
@media (max-width: 992px) {
  .partner-title {
    font-size: 32px;
  }

  .partner-track img {
    height: 65px;
    margin: 0 30px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .partner-title {
    font-size: 26px;
  }

  .partner-track img {
    height: 50px;
    margin: 0 20px;
  }
}


@media (max-width: 576px) {
  .contact-map-embed iframe {
    height: 220px;
  }
}

/* Contact-home responsive */
@media (max-width: 992px) {
  .contact-home-wrapper {
    flex-direction: column;
  }

  .contact-home-text,
  .contact-home .section-title {
    text-align: center;
  }

  .contact-steps {
    max-width: 360px;
    margin: 16px auto 6px;
    text-align: left;
  }

  .contact-home-btn {
    display: flex;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #f1f2f2;
  color: #4e013d;
  text-align: center;
  padding: 25px 0;
  margin-top: 60px;
}

#footer p {
  margin: 0;
  font-size: 14px;
}

#footer .social-links {
  margin-top: 12px;
}

#footer .social-links a {
  color: #fff;
  margin: 0 8px;
  font-size: 18px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  color: #FFD1E8;
}

@media (max-width: 576px) {
  #footer p {
    font-size: 12px;
  }

  #footer .social-links a {
    font-size: 16px;
    margin: 0 5px;
  }
}

/* ===========================
   BACK TO TOP BUTTON
=========================== */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9f3b89, #d81faf);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 14px 32px rgba(162, 1, 127, 0.45);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease;
  transform: translateY(0);
  z-index: 99999;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: 0 20px 40px rgba(162, 48, 137, 0.55);
  transform: translateY(-4px);
}

@media (max-width: 575.98px) {
  .back-to-top {
    right: 16px;
    bottom: 20px;
    width: 46px;
    height: 46px;
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# About (Pengenalan)
--------------------------------------------------------------*/
.about-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
}

.about-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: nowrap;
  max-width: 1100px;
  margin: 0 auto;
}

.about-text {
  flex: 1 1 50%;
  max-width: 550px;
}

.about-title {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 2px;
  color: #6E0C63;
  margin-bottom: 20px;
}

.about-description {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  text-align: justify;
}

.about-image {
  flex: 1 1 40%;
  text-align: center;
  position: relative;
  margin-top: -80px;
}

.about-image img {
  width: 100%;
  max-width: 360px;
  height: 500px;
  object-fit: cover;
  position: relative;
  z-index: 3;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Decorative glow */
.about-section::after {
  content: "";
  position: absolute;
  top: 15%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(closest-side,
      rgba(170, 23, 138, 0.12),
      rgba(255, 255, 255, 0));
  filter: blur(2px);
  pointer-events: none;
}

/* About responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    max-width: 100%;
  }

  .about-image {
    margin-top: 20px;
  }

  .about-image img {
    max-width: 320px;
    height: auto;
  }

  .about-title {
    font-size: 32px;
  }
}

/* ===== Matlamat Kami Section ===== */
.matlamat-section {
  background-color: #a2017f;
  padding: 160px 0 160px;
  margin-top: -160px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.matlamat-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
}

.matlamat-title {
  font-size: 50px;
  color: #ffffff;
  text-align: right;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: -50px;
  margin-bottom: 40px;
}

.matlamat-text {
  max-width: 500px;
  margin-left: auto;
  text-align: justify;
}

.matlamat-text p {
  font-size: 18px;
  line-height: 1.9;
  color: #ffffff;
  margin: 0;
}

/* Left images */
.matlamat-images {
  position: absolute;
  left: 80px;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  gap: 40px;
  z-index: 0;
}

.matlamat-images img:first-child {
  width: 380px;
  height: 360px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.matlamat-images img:last-child {
  width: 300px;
  height: 320px;
  object-fit: cover;
  position: relative;
  top: 100px;
  left: -200px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Matlamat responsive */
@media (max-width: 767.98px) {
  .matlamat-section {
    padding: 80px 0 80px;
    margin-top: 0;
  }

  .matlamat-container {
    padding: 0 30px;
  }

  .matlamat-images {
    position: static !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
  }

  .matlamat-images img:first-child,
  .matlamat-images img:last-child {
    position: static !important;
    width: 48%;
    height: auto;
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
  }

  .matlamat-title,
  .matlamat-text {
    text-align: center;
  }

  .matlamat-title {
    font-size: 32px;
    margin-top: 0;
  }

  .matlamat-text {
    max-width: 100%;
    margin-left: 0;
  }

  .matlamat-text p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Pengenalan Page – Perkhidmatan
--------------------------------------------------------------*/
.perkhidmatan-section {
  background-color: #ffffff;
  padding: 120px 0;
  text-align: center;
}

.perkhidmatan-section .container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-desc {
  max-width: 950px;
  margin: 0 auto 70px;
  font-size: 18px;
  color: #555;
  line-height: 1.7;
}

/* Service cards row (icon services) */
.service-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  justify-items: center;
}

.service-card {
  background: #fff;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  width: 200px;
  height: 230px;
  padding: 35px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  max-width: 160px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 18px;
}

.service-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #a2017f;
  margin: 0;
}

@media (max-width: 1200px) {
  .service-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .service-cards {
    grid-template-columns: 1fr;
  }
}



/*--------------------------------------------------------------
# Section 1: Services Grid (Harmony)
--------------------------------------------------------------*/
.services-grid {
  padding-top: 24px;
  margin-top: 90px;
}

.svc2-title {
  font-size: 40px;
  font-weight: 800;
  color: #6E0C63;
  margin: 0 0 24px 0;
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  
}

.svc2-intro {
  font-size: 17px;
  color: #444;
  max-width: 900px;
  margin: 0 auto 45px auto;
  line-height: 1.8;
  text-align: center;
}

/* Pyramid grid: 2 atas + 3 bawah */
.svc2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  justify-items: center;
}

.svc2-card:nth-child(1) {
  grid-column: 1 / span 1;
  justify-self: center;
  transform: translateX(190px);
}

.svc2-card:nth-child(2) {
  grid-column: 3 / span 1;
  justify-self: center;
  transform: translateX(-190px);
}

/* Kekalkan posisi masa hover */
.svc2-card:nth-child(1):hover {
  transform: translateX(190px);
  box-shadow: 0 10px 28px rgba(110, 12, 99, 0.08);
  border-color: #a2017f;
}

.svc2-card:nth-child(2):hover {
  transform: translateX(-190px);
  box-shadow: 0 10px 28px rgba(110, 12, 99, 0.08);
  border-color: #a2017f;
}

/* Kad 3–5 ikut grid biasa */
.svc2-card:nth-child(n+3) {
  grid-column: auto;
}

/* Kad styling */
.svc2-card {
  background: #ffffff;
  border: 1px solid #fed9f5;
  border-radius: 14px;
  padding: 25px 20px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-align: left;
  width: 100%;
  max-width: 380px;
}

.svc2-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(110, 12, 99, 0.08);
  border-color: #a2017f;
}

.svc2-icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: #FBEFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
}

.svc2-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.svc2-body {
  text-align: left;
}

.svc2-name {
  font-size: 18px;
  font-weight: 700;
  color: #2D2654;
  margin: 0 0 6px;
}

.svc2-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Button lihat harga */
.svc2-price-btn-wrap {
  display: flex;
  justify-content: center;
  margin: 10px 0 40px;
}

.svc2-price-btn {
  background: #6E0C63;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(110, 12, 99, 0.25);
  transition: all 0.2s ease;
}

.svc2-price-btn:hover {
  background: #A2017F;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(110, 12, 99, 0.35);
}

/* ======================================================
   PERKHIDMATAN MOBILE – FORCE SINGLE VERTICAL SLIDE CARDS
   ====================================================== */
@media (max-width: 991.98px) {

  /* Force grid to behave like a vertical list */
  .svc2-grid {
    display: block !important;
    width: 100% !important;
  }

  /* Each card becomes full width, one-by-one */
  .svc2-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 20px 0 !important; /* spacing between cards */
    transform: none !important;
  }

  /* Remove pyramid translate offsets */
  .svc2-card:nth-child(1),
  .svc2-card:nth-child(2) {
    transform: none !important;
  }

  .svc2-card:nth-child(1):hover,
  .svc2-card:nth-child(2):hover {
    transform: translateY(-3px) !important;
  }

  /* Center everything nicely */
  .svc2-card .svc2-body {
    text-align: left;
  }

  .svc2-title {
    font-size: 26px !important;
  }

  .svc2-intro {
    font-size: 15px !important;
    padding: 0 18px !important;
  }
}


/*--------------------------------------------------------------
   Pricing Section (Perkhidmatan Page)
--------------------------------------------------------------*/
.pricing-section {
  position: relative;
  padding: 80px 0 90px;
  background: #f6f6f8;
  overflow: hidden;
  margin-top: 80px;
}

/* Gradient glow kiri-kanan */
.pricing-section::before,
.pricing-section::after {
  content: "";
  position: absolute;
  top: -140px;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    closest-side,
    #8e0e7a 0%,
    #6e0c63 60%,
    rgba(110, 12, 99, 0) 70%
  );
  opacity: 0.16;
  filter: blur(6px);
  z-index: 0;
}
.pricing-section::before {
  left: -220px;
}
.pricing-section::after {
  right: -220px;
  transform: scaleX(-1);
}

/* Header */
.price-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 45px;
}

.price-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #a2017f;
  margin-bottom: 6px;
}

.price-title {
  text-align: center;
  color: #6e0c63;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 40px;
  margin: 0 0 10px;
}

.price-sub {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: #2e2e2e;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
}

/* Grid 5 kad */
.price-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.price-card {
  flex: 0 0 calc(20% - 18px);
  max-width: calc(20% - 18px);
  min-width: 0;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 20px 20px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
  border: 1px solid #f4cde9;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(110, 12, 99, 0.18);
  border-color: #a2017f;
}

/* Tag popular */
.price-tag {
  position: absolute;
  top: 14px;
  right: -52px;
  background: linear-gradient(90deg, #ff9f7a, #f6629a);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 60px;
  transform: rotate(16deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

/* Highlight */
.price-card.is-featured {
  border-width: 2px;
  border-color: #a2017f;
}

/* Icon atas */
.price-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: #fbefff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
}

.price-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Body */
.price-body {
  flex: 1;
}

.price-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a2017f;
  background: #fbefff;
  margin-bottom: 6px;
}

.price-name {
  color: #2d2654;
  font-size: 18px;
  font-weight: 800;
  margin: 2px 0 6px;
}

.price-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 10px;
}

.price-list {
  list-style: disc;
  text-align: left;
  margin: 0;
  padding-left: 18px;
  color: #333;
  font-size: 13px;
  line-height: 1.6;
}
.price-list li + li {
  margin-top: 4px;
}

/* Footer kad */
.price-footer {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px dashed #e2cde5;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-from {
  font-size: 13px;
  color: #555;
}
.price-from span {
  font-weight: 700;
  color: #6e0c63;
}

/* CTA button */
.price-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: #6e0c63;
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(110, 12, 99, 0.28);
  transition: all 0.2s ease;
}

.price-cta:hover {
  background: #a2017f;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 9px 20px rgba(110, 12, 99, 0.35);
}

/* Nota bawah harga */
.price-notes {
  margin: 40px auto 0;
  max-width: 900px;
  color: #0d0d0d;
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
  padding-left: 20px;
  position: relative;
  z-index: 1;
}
.price-notes li + li {
  margin-top: 6px;
}

/* Pricing responsive */
@media (max-width: 1200px) {
  .price-card {
    flex: 0 0 calc(25% - 18px);
    max-width: calc(25% - 18px);
  }
}

@media (max-width: 992px) {
  .price-card {
    flex: 0 0 calc(33.333% - 18px);
    max-width: calc(33.333% - 18px);
  }

  .price-title {
    font-size: 30px;
  }

  .price-sub {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .price-card {
    flex: 0 0 calc(50% - 18px);
    max-width: calc(50% - 18px);
  }
}

@media (max-width: 480px) {
  .price-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .pricing-section {
    padding: 60px 0 70px;
  }

  .price-card {
    padding: 20px 18px 18px;
  }

  .price-name {
    font-size: 16px;
  }

  .price-desc,
  .price-list {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #a2017f;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #a2017f;
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts .count-box {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
}

.counts .count-box i {
  display: block;
  font-size: 30px;
  color: #e96b56;
  float: left;
  line-height: 0;
}

.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #545454;
  margin-left: 50px;
}

.counts .count-box p {
  padding: 30px 0 0 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #7a7a7a;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #a1a1a1;
}

/* ============================================================
   MODUL TRAINER – HERO
============================================================ */
.modul-trainer-hero {
  padding: 80px 0 40px;
  background: #f9f1fc;
}

.mt-hero-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 32px 40px;
  box-shadow: 0 18px 40px rgba(162, 1, 127, 0.20);
  border: 1px solid rgba(162, 1, 127, 0.12);
}

.mt-hero-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a2017f;
  font-weight: 700;
  margin-bottom: 8px;
}

.mt-hero-title {
  font-size: 30px;
  font-weight: 800;
  color: #6E0C63;
  margin-bottom: 10px;
}

.mt-hero-text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* ============================================================
   MODUL TRAINER – BOOK + CARDS
============================================================ */
.modul-trainer-section {
  padding: 20px 0 90px;
  background: #f9f1fc;
}

.mt-book-wrapper {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  perspective: 1800px;
  height: auto !important;       /* FIX */
  overflow: visible !important;  /* FIX */
  padding-bottom: 0 !important;  /* FIX */
}

/* PAGE (default: hidden but keeps structure) */
.mt-book-page {
  position: relative !important;  /* FIX: Remove absolute height bug */
  width: 100%;
  opacity: 0;
  transform-origin: left center;
  backface-visibility: hidden;
  transform: rotateY(90deg);
  transition: transform 0.55s ease, opacity 0.55s ease;
  overflow: visible;
}

/* Active page = visible */
.mt-active-page {
  opacity: 1 !important;
  transform: rotateY(0deg) !important;
  z-index: 2;
}

/* Hidden pages removed completely from height */
.mt-page-hidden {
  opacity: 0 !important;
  pointer-events: none;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.mt-page-indicator {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  color: #6E0C63;
  font-weight: 600;
}

/* Flip Buttons */
.mt-book-button {
  position: absolute;
  top: 18px;
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  background: linear-gradient(135deg, #a2017f, #d45bb8);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(162, 1, 127, 0.30);
  white-space: nowrap;
  z-index: 30;
}

.mt-book-next { right: 30px; }
.mt-book-prev { right: 200px; }

.mt-book-button:hover {
  box-shadow: 0 8px 18px rgba(162, 1, 127, 0.38);
}

/* ============================================================
   CARDS + SHADOW FIX (MAIN FIX)
============================================================ */

/* REMOVE shadow footprint from actual box */
.mt-category-block {
  position: relative;
  background: #fef7ff;
  border-radius: 26px;
  padding: 28px 30px 30px;
  border: 1px solid rgba(162, 1, 127, 0.20);

  box-shadow: none !important;   /* Remove real shadow */
}

/* RE-APPLY shadow without affecting height */
.mt-category-block::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -35px;                 /* depth below card */
  height: 40px;
  border-radius: 26px;

  box-shadow: 0 20px 40px rgba(162, 1, 127, 0.18);
  pointer-events: none;
  z-index: -1;
}

.mt-category-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.mt-category-label {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mt-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
}

.mt-chip-youth { background: linear-gradient(135deg, #a2017f, #d45bb8); }
.mt-chip-corporate { background: linear-gradient(135deg, #7a0aa5, #c057e0); }
.mt-chip-family { background: linear-gradient(135deg, #b80064, #e25f9b); }

.mt-category-title {
  font-size: 22px;
  font-weight: 800;
  color: #6E0C63;
}

.mt-category-subtitle {
  font-size: 13px;
  color: #b14ea3;
}

.mt-category-desc {
  font-size: 14px;
  color: #555;
  max-width: 760px;
}

.mt-program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
}

.mt-program-card {
  background: #ffeefd;
  border-radius: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(162, 1, 127, 0.35);
  box-shadow: 0 10px 24px rgba(162, 1, 127, 0.25);
}

.mt-program-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.mt-program-title {
  font-size: 15px;
  font-weight: 700;
  color: #6E0C63;
}

.mt-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fdd6f6;
  color: #8c0b6c;
}

.mt-program-text {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}

/* ============================================================
   RESPONSIVE — TABLET
============================================================ */
@media (max-width: 991px) {
  .mt-hero-card { padding: 28px; }
  .mt-hero-title { font-size: 26px; }

  .mt-book-wrapper { min-height: 560px; }

  .mt-book-prev { left: -10px; }
  .mt-book-next { right: -10px; }
}

/* ============================================================
   RESPONSIVE — MOBILE
============================================================ */
@media (max-width: 768px) {

  .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .col-lg-9 {
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  .modul-trainer-hero {
    padding: 50px 0 20px;
  }

  .mt-hero-card {
    border-radius: 20px;
    padding: 22px;
  }

  .mt-hero-title {
    font-size: 22px;
  }

  .mt-book-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    min-height: 580px !important;
  }

  .mt-book-button {
    position: relative !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 30px;

    width: 48%;
    margin: 10px 1%;
    text-align: center;

    padding: 8px 6px !important;
    font-size: 12px !important;
    border-radius: 12px !important;
  }

  .mt-book-prev { float: left; }
  .mt-book-next { float: right; }

  .mt-category-block {
    padding: 18px !important;
    border-radius: 20px;
    margin-top: 40px !important;
  }

  .mt-program-grid {
    grid-template-columns: 1fr;
    gap: 10px !important;
  }

  .mt-program-card {
    padding: 12px;
  }

  #mt-page-label {
    display: none;
  }
}




/*--------------------------------------------------------------
# Team – Kenali Kami
--------------------------------------------------------------*/
.team-profile-page {
  padding: 70px 0;
  position: relative;
  background: #faf5fc;
  overflow: visible;
}

.team-profile-page::before,
.team-profile-page::after {
  content: none !important;
}

.team-page-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #6E0C63;
  margin-bottom: 10px;
}

.team-page-subtitle {
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.team-profile-page .col-lg-6 {
  display: flex;
}

.counselor-box {
  flex: 1;
  height: 100%;
  background: #fcf7fb;
  border-radius: 28px;
  padding: 32px;
  border: 1px solid rgba(162, 1, 127, 0.15);
  box-shadow: 0 10px 28px rgba(162, 1, 127, 0.10);
  display:flex;
  flex-direction: column;
}

/* Card header */
.counselor-header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 26px;
  min-height: 260px;
}

.counselor-photo img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 22px;
  border: 3px solid #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

.counselor-info { flex: 1; }

.counselor-name {
  font-size: 23px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #111827;
}

.counselor-role {
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 4px;
}

.counselor-license {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 8px;
}

.counselor-tagline {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  border-left: 4px solid #a2017f;
  padding-left: 14px;
}

/* Accordion */
.accordion details {
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  padding: 14px 18px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  display: block;
  transition: 0.25s ease;
  box-sizing: border-box;
}

.accordion details::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 12px;
  background: linear-gradient(180deg, #a2017f, #d861be);
  border-radius: 999px 0 0 999px;
}

.accordion details[open] {
  border-radius: 20px;
  padding: 18px 22px 18px 18px;
  border-color: #a2017f;
  overflow: visible;
  box-shadow: 0 8px 22px rgba(162, 1, 127, 0.18);
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .06em;
  color: #111827;
  padding-left: 20px;
  padding-right: 50px;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
}

summary::-webkit-details-marker { display: none; }

.accordion summary::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: #fff;
  border: 2px solid #6E0C63;
  border-radius: 50%;
  z-index: 5;
}

.accordion summary::before {
  content: ">";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: #6E0C63;
  transition: transform .25s ease, color .25s ease;
  z-index: 6;
}

details[open] summary::before {
  transform: translateY(-50%) rotate(90deg);
  color: #a2017f;
}

.acc-content {
  margin-top: 12px;
  padding: 4px 8px 0 8px;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

/* Team responsive */
@media (max-width: 991.98px) {
  .counselor-header {
    gap: 16px;
  }
}

@media (max-width: 767.98px) {
  .team-page-title { font-size: 32px; }
  .counselor-box { padding: 24px 20px; }
  .counselor-photo img {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 575.98px) {
  .counselor-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: auto;
  }

  .counselor-tagline {
    text-align: left;
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Contact Page - HUBUNGI KAMI
--------------------------------------------------------------*/
.contact-header {
  background: #fff;
  padding: 100px 0 60px 0;
  margin-bottom: 40px;
  text-align: center;
}

/* Hero Hubungi Kami – button utama */
.contact-header a {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  background: linear-gradient(90deg, #aa178a, #4e013d);
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  margin-top: 20px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.contact-header a:hover {
  background: linear-gradient(90deg, #4e013d, #aa178a);
  color: #f4b7e7;
  transform: translateY(-2px);
}


#contact-header .btn-gradient-temujanji {
  margin-top: 50px !important;
  display: inline-block;
}

.contact-header h2 {
  color: #6E0C63;
  font-weight: 700;
  font-size: 36px;
}

.contact-header p {
  color: #555;
  font-size: 16px;
  max-width: 600px;
  margin: 10px auto 0;
}

/* Contact info section */
.contact-info {
  background: #fff;
}

.info-item {
  padding: 20px;
  margin-top: -20px;
  
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: rgba(131, 37, 146, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: 0.3s;
  text-decoration: none;
}

.icon-circle i {
  font-size: 34px;
  color: #832592;
  transition: 0.3s;
}

.icon-circle:hover {
  background: rgba(131, 37, 146, 0.15);
  transform: scale(1.05);
}

.icon-circle:hover i {
  color: #620f77;
}

.info-item h5 {
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.info-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

.info-item a {
  color: #555;
  text-decoration: none;
}

.info-item a:hover {
  color: #832592;
  text-decoration: underline;
}

/* Map section */
.map-section {
  background: #ffffff;
  padding: 60px 0;
}

.map-section h2 {
  color: #6E0C63;
  font-weight: 700;
}

.map-section p {
  color: #555;
  font-size: 15px;
  margin-bottom: 25px;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Button temujanji (contact page) */
.btn-gradient-temujanji {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  background: linear-gradient(90deg, #aa178a, #4e013d);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  margin-top: 35px;
}

.btn-gradient-temujanji:hover {
  background: linear-gradient(90deg, #4e013d, #aa178a);
  color: #f4b7e7;
  transform: translateY(-3px);
}

/* Section button styling */
.temujanji-btn-section {
  background: #fff;
  padding: 20px 0 40px 0;
  margin-top: -30px;
}

/* Contact header responsive */
@media (max-width: 575.98px) {
  .contact-header {
    padding: 80px 0 40px 0;
    margin-bottom: 20px;
  }

  .contact-header h2 {
    font-size: 28px;
  }

  .contact-header p {
    font-size: 14px;
  }

  .info-item {
    margin-top: -60px;
  }
}
