* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

html,
body {
  overscroll-behavior: none;
  height: 100%;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-decoration: none;
}



.produk_tes {
  background-color: #fff;
  min-height: 150vh;
  overflow: hidden;
}







/* SECTION HERO */
.section-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 40px;
    background: #f8f8f8;
    overflow: hidden;
    z-index: 0;
}

.section-hero::before,
.section-hero::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    opacity: 0.3;
    top: -50px;
    z-index: 1;
}

.section-hero::before {
    background: radial-gradient(circle at center, #ff6f91, transparent 70%);
    left: -150px;
}

.section-hero::after {
    background: radial-gradient(circle at center, #845ec2, transparent 70%);
    right: -150px;
}

.hero-content {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    z-index: 2;
}

.hero-text {
    width: 50%;
    padding-right: 40px;
}

.hero-text h1 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    margin-bottom: 20px;
    color: #333;
    font-weight: 100;
}

.hero-text p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 30px;
    color: #666;
    font-weight: 100;
}

/* RESPONSIVE HERO BUTTONS */
.hero-buttons a {
    padding: clamp(0.5rem, 0.8vw, 1rem) clamp(0.9rem, 2vw, 1.8rem);
    margin-right: 1rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    font-size: clamp(0.7rem, 0.9vw, 1rem);
    transition: all 0.3s ease;
}

.hero-buttons .download {
    background-color: orange;
    color: #fff;
}

.hero-buttons .download:hover {
    background-color: #29c96c;
}

.hero-buttons .book {
    background: linear-gradient(to right, #29c96c 30%, #1a5038 80%);
    color: white;
    background-size: 200%;
    background-position: left;
}

.hero-buttons .book:hover {
    background-position: right;
}

.hero-image {
    width: 50%;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}
@media (max-width: 1200px) {
  .hero-content {
    flex-direction: column-reverse;
  }
}

@media (max-width: 480px) {
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .hero-buttons a {
        width: 100%;
        text-align: center;
        margin-right: 0;
    }
}








/* SECTION BRANDS */
.section-brands {
    background-color: #fff;
    padding: 50px 40px;
    text-align: center;
}

.section-brands h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 10px;
    margin-top: -10px;
    font-weight: 400;
    color: #000;
}

.section-brands .divider {
    width: 200px;
    height: 2px;
    background-color: #FF6600;
    margin: 20px auto 40px;
}

.brands-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    justify-items: center;
    align-items: center;
    box-sizing: border-box;
}

.brand-logo {
    flex: 0 1 200px;
    text-align: center;
}

.brand-logo img {
    width: 250px;
    object-fit: contain;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .brands-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        flex-wrap: wrap;
        text-align: center;
    }

    .hero-text,
    .hero-image {
        width: 100%;
        padding: 0;
    }

    .hero-text {
        padding-bottom: 30px;
    }

    .brand-logo {
        flex: 0 1 45%;
    }
}

@media (max-width: 600px) {
    .brand-logo {
        flex: 0 1 100%;
    }

    .brand-logo img {
        max-height: 180px;
    }
}

@media (max-width: 599px) {
    .brands-wrapper {
        grid-template-columns: 1fr;
    }
}









/* SECTION PRODUCT FEATURES */
.product-feature-section {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.product-feature-heading {
    font-size: 35px;
    font-weight: 100;
    color: #222;
}

.product-feature-divider {
    width: 400px;
    height: 1.5px;
    background-color: #FF6600;
    margin: 20px auto 100px;
}

.product-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 24px;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 1024px) {
    .product-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .product-feature-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.product-feature-card-wrapper {
    width: 350px;
    max-width: 100%;
    height: 400px;
    position: relative;
    border-radius: 20px;
    perspective: 1000px;
    overflow: visible;
    margin-bottom: 200px;
}

.product-feature-card-bg {
    background: white;
    height: 100%;
    border-radius: 20px;
    transform: skewY(10deg);
    transition: all 0.6s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.product-feature-card-bg::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0%;
    height: 0%;
    background: linear-gradient(-46deg, #1a5038 30%, #29c96c 60%);
    transition: all 1.3s ease;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    z-index: 0;
}

.product-feature-card-wrapper:hover .product-feature-card-bg::before {
    width: 300%;
    height: 300%;
}

.product-feature-card-wrapper:hover .product-feature-card-bg {
    transform: skewY(-10deg);
}

.product-feature-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-feature-image-wrapper {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
    height: 170px;
    overflow: visible;
    z-index: 3;
}

.product-feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-feature-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 100px;
}

.product-feature-title {
    text-align: center;
    max-width: 200px;
    font-size: 28px;
    font-weight: 500;
    color: #222;
    transition: color 0.3s ease;
}

.product-feature-sub {
    text-align: center;
    max-width: 250px;
    font-size: 18px;
    color: #555;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.product-feature-card-wrapper:hover .product-feature-title,
.product-feature-card-wrapper:hover .product-feature-sub {
    color: white;
}

.product-feature-arrow-wrapper {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.arrow-outer {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-inner {
    width: 60px;
    height: 60px;
    background: linear-gradient(to right, #29c96c 30%, #1a5038 80%);
    color: white;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-position 0.4s ease;
    background-size: 200%;
    background-position: left;
}

.arrow-inner:hover {
    background-position: right;
}

.arrow-inner .material-icons {
    font-size: 20px;
    color: white;
}










/* SECTION TRUSTED SLIDER */
.trusted-slider-section {
    display: flex;
    justify-content: center;
    padding: 60px 0;
    background: white;
}

.trusted-slider-outer {
    position: relative;
    width: 100%;
    max-width: 1300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.trusted-slider-container {
    width: 90%;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.trusted-slider-title {
    font-size: 35px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 100;
}

.trusted-slider-divider {
    width: 180px;
    height: 1.5px;
    background-color: #FF6600;
    margin: 20px auto 100px;
}

.trusted-slider-wrapper {
    overflow: hidden;
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.trusted-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
    user-select: none;
    align-items: center;
}

.trusted-slide {
    flex: 0 0 calc(25% - 15px);
    /* 4 gambar per baris */
    display: flex;
    justify-content: center;
    align-items: center;
}

.trusted-slide img {
    max-width: 250px;
    width: 100%;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.trusted-slider-arrow {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #333;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.trusted-slider-arrow.prev {
    left: 0;
}

.trusted-slider-arrow.next {
    right: 0;
}

.trusted-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.trusted-slider-dots .dot {
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.trusted-slider-dots .dot.active {
    background: #333;
    transform: scale(1.4);
}

@media (max-width: 1024px) {
    .trusted-slider-arrow {
        font-size: 36px;
    }

    .trusted-slider-arrow.prev {
        left: 20px;
    }

    .trusted-slider-arrow.next {
        right: 20px;
    }

    .trusted-slide {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 640px) {
    .trusted-slider-arrow {
        font-size: 32px;
    }

    .trusted-slider-arrow.prev {
        left: 20px;
    }

    .trusted-slider-arrow.next {
        right: 20px;
    }

    .trusted-slide {
        flex: 0 0 100%;
    }

    .trusted-slider-title {
        font-size: 28px;
    }
}








/* ABOUT FEATURES SECTION */
.about-features-section {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.about-features-section::before,
.about-features-section::after {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  opacity: 0.3;
  top: -50px;
  z-index: 1;
}

.about-features-section::before {
  background: radial-gradient(circle at center, #ff6f91, transparent 70%);
  left: 50px;
  top: 100px;
}

.about-features-section::after {
  background: radial-gradient(circle at center, #845ec2, transparent 70%);
  right: -400px;
}

.about-features-heading {
  position: relative;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  /* margin-bottom: 60px; */
  z-index: 2;
  font-weight: 100;
  color: #222;
}

.about-features-divider {
    width: 250px;
    height: 1.5px;
    background-color: #FF6600;
    margin: 20px auto 50px;
}

.about-features-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

.about-feature-card {
  text-align: center;
  padding: 0 10px;
}

.about-feature-img {
  display: block;
  margin: 0 auto 20px;
  width: clamp(80px, 10vw, 120px);
  height: auto;
}

.about-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.about-feature-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  max-width: 280px;
  margin: 0 auto;
}

/* Responsive: tablet */
@media (max-width: 1024px) {
  .about-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive: mobile */
@media (max-width: 600px) {
  .about-features-grid {
    grid-template-columns: 1fr;
  }
}









/* SECTION PMS INTEGRATIONS SLIDER */
.pms-slider-section {
    display: flex;
    justify-content: center;
    padding: 60px 0;
    background: white;
}

.pms-slider-outer {
    position: relative;
    width: 100%;
    max-width: 1300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.pms-slider-container {
    width: 90%;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.pms-slider-title {
    font-size: 35px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 100;
}

.pms-slider-divider {
    width: 180px;
    height: 1.5px;
    background-color: #FF6600;
    margin: 20px auto 100px;
}

.pms-slider-wrapper {
    overflow: hidden;
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.pms-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
    user-select: none;
    align-items: center;
}

.pms-slide {
    flex: 0 0 calc(25% - 15px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.pms-slide img {
    max-width: 250px;
    width: 100%;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.pms-slider-arrow {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #333;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.pms-slider-arrow.prev {
    left: 0;
}

.pms-slider-arrow.next {
    right: 0;
}

.pms-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.pms-slider-dots .dot {
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pms-slider-dots .dot.active {
    background: #333;
    transform: scale(1.4);
}

@media (max-width: 1024px) {
    .pms-slider-arrow {
        font-size: 36px;
    }

    .pms-slider-arrow.prev {
        left: 20px;
    }

    .pms-slider-arrow.next {
        right: 20px;
    }

    .pms-slide {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 640px) {
    .pms-slider-arrow {
        font-size: 32px;
    }

    .pms-slider-arrow.prev {
        left: 20px;
    }

    .pms-slider-arrow.next {
        right: 20px;
    }

    .pms-slide {
        flex: 0 0 100%;
    }

    .pms-slider-title {
        font-size: 28px;
    }
}











/* ABOUT WHY SECTION */
.about-why-section {
  position: relative;
  padding: 80px 20px;
  background: #fafafa;
  text-align: center;
  overflow: hidden;
}

.about-why-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-why-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 16px;
  color: #222;
  font-weight: 100;
}

.about-why-divider {
    width: 400px;
    height: 1.5px;
    background-color: #FF6600;
    margin: 20px auto 20px;
}

.about-why-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  font-weight: 100;
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.about-why-card {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  padding: 24px;
  text-align: left;
  border-radius: 12px;
}

.about-why-img-wrapper {
  background: orange;
  border-radius: 12px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.about-why-img-wrapper img {
  width: 48px;
  height: 48px;
}

.about-why-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.about-why-card-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.about-why-button {
  display: inline-block;
  background: #29c96c;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px 32px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
}

.about-why-button a{
  text-decoration: none;
}

.about-why-button:hover {
  background: #1a5038;
}

/* Background circles */
.about-why-section::before,
.about-why-section::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  opacity: 0.3;
  top: -50px;
  z-index: 0;
}

.about-why-section::before {
  background: radial-gradient(circle at center, #ff6f91, transparent 70%);
  left: -150px;
}

.about-why-section::after {
  background: radial-gradient(circle at center, #845ec2, transparent 70%);
  right: -150px;
}

/* Responsive: tablet */
@media (max-width: 1024px) {
  .about-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive: mobile */
@media (max-width: 600px) {
  .about-why-grid {
    grid-template-columns: 1fr;
  }
}










/* SECTION UNLIMITED ENTERTAINMENT SLIDER */
.entertainment-slider-section {
    display: flex;
    justify-content: center;
    padding: 60px 0;
    background: white;
}

.entertainment-slider-outer {
    position: relative;
    width: 100%;
    max-width: 1300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.entertainment-slider-container {
    width: 90%;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.entertainment-slider-title {
    font-size: 35px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 100;
}

.entertainment-slider-divider {
    width: 180px;
    height: 1.5px;
    background-color: #FF6600;
    margin: 20px auto 100px;
}

.entertainment-slider-wrapper {
    overflow: hidden;
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.entertainment-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
    user-select: none;
    align-items: center;
}

.entertainment-slide {
    flex: 0 0 calc(25% - 15px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.entertainment-slide img {
    max-width: 250px;
    width: 100%;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.entertainment-slider-arrow {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #333;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.entertainment-slider-arrow.prev {
    left: 0;
}

.entertainment-slider-arrow.next {
    right: 0;
}

.entertainment-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.entertainment-slider-dots .dot {
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.entertainment-slider-dots .dot.active {
    background: #333;
    transform: scale(1.4);
}

@media (max-width: 1024px) {
    .entertainment-slider-arrow {
        font-size: 36px;
    }

    .entertainment-slider-arrow.prev {
        left: 20px;
    }

    .entertainment-slider-arrow.next {
        right: 20px;
    }

    .entertainment-slide {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 640px) {
    .entertainment-slider-arrow {
        font-size: 32px;
    }

    .entertainment-slider-arrow.prev {
        left: 20px;
    }

    .entertainment-slider-arrow.next {
        right: 20px;
    }

    .entertainment-slide {
        flex: 0 0 100%;
    }

    .entertainment-slider-title {
        font-size: 28px;
    }
}










/* ABOUT STATS SECTION */
.about-stats-section {
  text-align: center;
  padding: 80px 20px;
  background: transparent;
}

.about-stats-title {
  font-size: 2.5rem;
  color: #1c1c1c;
  font-weight: 100;
}

.about-stats-divider {
    width: 250px;
    height: 1.5px;
    background-color: #FF6600;
    margin: 20px auto 50px;
}

.about-stats-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about-stat-box {
  min-width: 150px;
}

.about-stat-number {
  font-size: 3rem;
  color: orange;
  font-weight: bold;
}

.about-stat-label {
  font-size: 1.2rem;
  color: #1c1c1c;
  margin-top: 10px;
}

/* entrance animation */
.about-stats-section.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}
.about-stats-section.animate.show {
  opacity: 1;
  transform: none;
}

/* responsive */
@media (max-width: 768px) {
  .about-stats-container {
    flex-direction: column;
    align-items: center;
  }
}










/* ABOUT TESTIMONIAL SECTION */
.about-testimonial-section {
  display: flex;
  justify-content: center;
  padding: 60px 0;
  margin-bottom: 80px;
}

.about-testimonial-outer {
  position: relative;
  width: 100%;
  max-width: 1300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.about-testimonial-section-title {
  font-size: 35px;
  color: black;
  font-weight: 100;
  text-align: center;
}

.about-testimonial-divider {
    width: 250px;
    height: 1.5px;
    background-color: #FF6600;
    margin: 20px auto 50px;
}

.about-testimonial-slider {
  position: relative;
  width: 95%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-testimonial-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: transparent;
  box-sizing: content-box;
  padding: 20px 13px 20px 10px;
}

.about-testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
  user-select: none;
  align-items: start;
}

.about-testimonial-card {
  margin-right: 20px;
  flex: 0 0 calc(20% - 15px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px 20px;
  position: relative;
  box-shadow: 0 8px 24px rgba(146, 118, 194, 0.25);
  overflow: visible;
}

.about-testimonial-track > .about-testimonial-card:last-child {
  margin-right: 0;
}

.about-logo-wrapper {
  position: absolute;
  top: 20px;
  left: -5%;
  width: 60px;
  height: 60px;
}

.about-logo-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  height: 1px;
  width: 250%;
  background: black;
}

.about-logo-wrapper img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
}

.about-testimonial-content {
  margin-top: 90px;
  text-align: left;
}

.about-testimonial-content .nama {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 12px;
}

.about-testimonial-content .jabatan {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 24px;
}

.about-testimonial-content .pesan {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
}

.about-testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: black;
  background: transparent;
  border: none;
  z-index: 100;
  cursor: pointer;
  padding: 0;
  display: none;
}

.about-testimonial-arrow.prev {
  left: 0px;
}

.about-testimonial-arrow.next {
  right: 0px;
}

.about-testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.about-testimonial-dots .dot {
  width: 8px;
  height: 8px;
  background: orange;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s;
}

.about-testimonial-dots .dot.active {
  transform: scale(1.4);
  background: #29c96c;
}

@media (max-width: 1024px) {
  .about-testimonial-arrow {
    font-size: 36px;
    top: 55%;
  }

  .about-testimonial-arrow.prev {
    left: 40px;
  }

  .about-testimonial-arrow.next {
    right: 40px;
  }

  .about-testimonial-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 640px) {
  .about-testimonial-slider {
    width: 80%;
  }

  .about-testimonial-section-title {
    font-size: 28px;
  }

  .about-testimonial-card {
    flex: 0 0 100%;
  }

  .about-logo-wrapper {
    left: 0;
  }

  .about-testimonial-content {
    text-align: center;
  }
}










/* ABOUT FAQ SECTION */
.about-faq-section {
  padding: 80px 20px;
  text-align: center;
}

.about-faq-heading {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}

.about-faq-container {
  max-width: 1200px; /* increased from 800px for wider desktop display */
  margin: 0 auto;
}

.about-faq-item {
  border: 1px solid #000;
  background: #fff;
  margin-bottom: 16px;
  overflow: hidden;
}

.about-faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px;
  font-size: 1.1rem;
  text-align: left;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.toggle-icon {
  display: inline-block;
  width: 24px;
  text-align: center;
  margin-right: 12px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.about-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in, padding 0.4s ease-in;
  padding: 0 16px;
  text-align: left;
}

.about-faq-answer p {
  margin: 12px 0;
  line-height: 1.5;
}

.about-faq-item.active .about-faq-answer {
  max-height: 500px; /* ensure enough height to display content */
  padding: 16px;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.about-faq-item.active .toggle-icon {
  transform: rotate(45deg);
}

/* responsive: mobile */
@media (max-width: 600px) {
  .about-faq-question {
    font-size: 1rem;
    padding: 12px;
  }
  .about-faq-answer {
    padding: 0 12px;
  }
}
