/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary-red: #961b1a;
  --primary-green: #24c1ae;
  --primary-yellow: #fdd835;
  --white: #ffffff;
  --light-gray: #f8fafc;
  --dark-gray: #1e293b;
  --text-gray: #64748b;
}

body {
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.animate-slide-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.animate-zoom-in {
  animation: zoomIn 0.6s ease-out forwards;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}
.animate-delay-2 {
  animation-delay: 0.2s;
}
.animate-delay-3 {
  animation-delay: 0.3s;
}
.animate-delay-4 {
  animation-delay: 0.4s;
}
.animate-delay-5 {
  animation-delay: 0.5s;
}

/* Scroll Animation Classes - Simple fade in */
.scroll-animate {
  opacity: 0;
  transition: opacity 1.2s ease-out;
}

.scroll-animate.visible {
  opacity: 1;
}

/* Staggered delays for children - longer delays for smoother cascade */
.scroll-animate.stagger-1 {
  transition-delay: 0.15s;
}
.scroll-animate.stagger-2 {
  transition-delay: 0.3s;
}
.scroll-animate.stagger-3 {
  transition-delay: 0.45s;
}
.scroll-animate.stagger-4 {
  transition-delay: 0.6s;
}
.scroll-animate.stagger-5 {
  transition-delay: 0.75s;
}
.scroll-animate.stagger-6 {
  transition-delay: 0.9s;
}

/* Go to Top Button */
.go-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-yellow);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 999;
}

.go-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5);
}

.go-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.go-to-top svg {
  transition: transform 0.3s ease;
}

.go-to-top:hover svg {
  transform: translateY(-3px);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-green);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--primary-red);
}

a.logo img {
  max-height: 60px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-red);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-red);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--primary-red);
  font-weight: 700;
}

.nav-links a.active::after {
  width: 100%;
  background: var(--primary-red);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu span {
  width: 25px;
  height: 3px;
  background: var(--dark-gray);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Stats Section */
.stats-section {
  padding: 5rem 2rem;
  background: var(--white);
  position: relative;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--light-gray);
  border-radius: 16px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-green);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(29, 78, 216, 0.15);
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #ffd81a;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-number span {
  color: #ffd81a;
}

.stat-label {
  color: var(--primary-red);
  font-size: 1rem;
  font-weight: 500;
}

/* Common Section Styles */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary-red);
  color: var(--white);
}

.btn-primary:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 4rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 1rem;
  color: #800000;
}

.section-title p {
  color: var(--text-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-title-bar {
  width: 60px;
  height: 4px;
  background: var(--primary-red);
  margin: 0 auto 1rem;
  border-radius: 2px;
}

/* Why Choose Us Section */
.why-choose {
  padding: 6rem 2rem;
  background: var(--light-gray);
}

.why-choose-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(29, 78, 216, 0.1);
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-green);
}

.why-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-green));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(
    135deg,
    rgba(29, 78, 216, 0.1),
    rgba(220, 38, 38, 0.1)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-green);
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-red));
  color: var(--white);
  transform: scale(1.1);
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.why-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Partners Section */
.partners {
  padding: 6rem 2rem;
  background: var(--white);
}

.partners-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  align-items: center;
}

.partner-card {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  min-height: 120px;
  border: 2px solid transparent;
}

.partner-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-green);
  background: var(--white);
}

.partner-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-gray);
  text-align: center;
  transition: color 0.3s ease;
}

.partner-card:hover .partner-logo {
  color: var(--primary-green);
}

.partner-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-green));
  color: var(--white);
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-top: 0.5rem;
  text-transform: uppercase;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--primary-green) 0%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
}

.testimonials::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.testimonials .section-title h2 {
  color: var(--white);
}

.testimonials .section-title p {
  color: rgba(255, 255, 255, 0.8);
}

.testimonials .section-title-bar {
  background: linear-gradient(90deg, var(--white), var(--primary-red));
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 5rem;
  color: rgba(29, 78, 216, 0.1);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1.5rem;
}

.author-avatar {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.85rem;
  color: var(--text-gray);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  color: #fbc02d;
  font-size: 1rem;
}

/* Footer */
footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-info h3 span {
  color: var(--primary-red);
}

.footer-location {
  margin-bottom: 2rem;
}

.footer-location h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--primary-red);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-location p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-location p svg {
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-hours {
  margin-bottom: 2rem;
}

.footer-hours h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--primary-red);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  max-width: 280px;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list .day {
  font-weight: 500;
  color: var(--white);
}

.footer-wechat {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-wechat h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.wechat-qr {
  width: 150px;
  height: 150px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  padding: 10px;
  position: relative;
}

.wechat-qr::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 3px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-green));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.wechat-qr-placeholder {
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      0deg,
      var(--dark-gray) 0px,
      var(--dark-gray) 8px,
      var(--white) 8px,
      var(--white) 16px
    ),
    repeating-linear-gradient(
      90deg,
      var(--dark-gray) 0px,
      var(--dark-gray) 8px,
      var(--white) 8px,
      var(--white) 16px
    );
  background-blend-mode: difference;
  border-radius: 8px;
}

.wechat-id {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.wechat-id strong {
  color: var(--white);
  display: block;
  font-size: 1rem;
  margin-top: 0.25rem;
}

.footer-quick-links h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-quick-links h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-red);
}

.footer-quick-links ul {
  list-style: none;
}

.footer-quick-links ul li {
  margin-bottom: 0.75rem;
}

.footer-quick-links ul a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-quick-links ul a:hover {
  color: var(--primary-red);
  padding-left: 5px;
}

.footer-quick-links ul a::before {
  content: ">";
  color: var(--primary-red);
  font-weight: bold;
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-red);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .slide-content h1 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .slider-arrows {
    display: none;
  }

  .stats-container {
    grid-template-columns: 1fr 1fr;
  }

  .stat-number {
    font-size: 2rem;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-location p {
    justify-content: center;
  }

  .hours-list li {
    margin: 0 auto;
  }

  .footer-quick-links h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 1.75rem;
  }
}

/* Container Utama Stats */
.stats-overlap {
  position: relative;
  z-index: 20;
  max-width: 1100px; /* Sedikit lebih kecil dari container slider agar cantik */
  margin: -15px auto 40px; /* Margin atas negatif membuat stats menimpa slider */
  padding: 0 20px;
}

/* Bar Biru Utama */
.stats-bar {
  background: #ffffff; /* Warna biru sesuai gambar */
  border-radius: 15px;
  padding: 30px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Item Statistik */
.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #ffffff;
  flex: 1;
  justify-content: center;
}

/* Lingkaran Ikon Putih */
.stat-icon-wrapper {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon-wrapper img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.stat-icon-wrapper svg {
  width: 50px;
  height: 50px;
  color: var(--primary-red); /* Warna biru icon di dalam lingkaran putih */
  display: block;
}

/* Pastikan transisi smooth saat hover */
.stat-item:hover .stat-icon-wrapper svg {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Teks Stats */
.stat-text-wrapper {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
}

.stat-label {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Garis Pemisah (Desktop Only) */
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 20px;
}

/* ===============================
   RESPONSIVE MOBILE
================================ */

@media (max-width: 992px) {
  .stats-overlap {
    margin-top: -30px;
  }

  .stats-bar {
    padding: 20px;
  }

  .stat-number {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .stats-bar {
    flex-direction: column; /* Tumpuk ke bawah di HP */
    gap: 25px;
    padding: 30px 20px;
  }

  .stat-item {
    width: 100%;
    justify-content: flex-start; /* Rata kiri di HP agar rapi */
    padding-left: 15%;
  }

  .stat-divider {
    display: none; /* Sembunyikan garis di HP */
  }
}

/* ===============================
   FULL IMAGE SECTION
================================ */

.full-image-section {
  width: 100%;
  min-height: 100vh; /* full halaman */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.full-image-section.image1 {
  background-image: url("../images/why-choose.jpg");
}

.full-image-section.image2 {
  background-image: url("../images/teacher.jpg");
  min-height: 60vh;
}

.full-image-section.image4 {
  background-image: url("../images/background4.jpg");
}

/* Overlay gelap biar teks kebaca */
.full-image-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

/* Konten Tengah */
.full-image-content {
  text-align: center;
  color: #ffffff;
  max-width: 800px;
}

.full-image-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.full-image-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .full-image-content h2 {
    font-size: 2.2rem;
  }

  .full-image-content p {
    font-size: 1rem;
  }
}

.teachers-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

/* ===============================
   GRID RESPONSIVE CENTERED
================================ */

.teachers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 250px));
  justify-content: center; /* bikin item selalu di tengah */
  gap: 30px;
  max-width: 1400px; /* maksimal 4 kolom */
  margin: 40px auto 0;
  padding: 0 15px;
}

/* ===============================
   CARD
================================ */

.teacher-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 280px;
}

.teacher-card:hover {
  transform: translateY(-10px);
}

/* ===============================
   IMAGE
================================ */

.teacher-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 15px;
}

.teacher-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* ===============================
   TEXT
================================ */

.teacher-info h3 {
  font-size: 1.8rem;
  color: #800000;
  margin: 15px 0 5px;
  font-weight: 700;
}

.teacher-info p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

/* ===============================
   TABLET
================================ */

@media (max-width: 992px) {
  .teachers-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
  }

  .teacher-image-wrapper img {
    padding: 20px 15px 10px;
  }
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 576px) {
  .teachers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .teacher-card {
    max-width: 320px;
    margin: 0 auto;
  }

  .teacher-image-wrapper {
    padding: 25px; /* padding lebih besar di mobile */
  }

  .teacher-info h3 {
    font-size: 1.4rem;
    margin: 0 0 5px;
  }
}

.final-cta {
  background-color: #fdd835; /* Warna kuning sesuai gambar background4.jpg */
  padding: 100px 20px;
  text-align: center;
  width: 100%;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 3rem; /* Ukuran besar yang dominan */
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.cta-subtitle {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: 500;
}

.btn-cta-large {
  display: inline-block;
  background-color: #a00000; /* Warna merah maroon gelap sesuai tombol di gambar */
  color: #ffffff;
  padding: 18px 45px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px; /* Membuat tombol lonjong sempurna */
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(160, 0, 0, 0.3);
}

.btn-cta-large:hover {
  background-color: #7d0000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(160, 0, 0, 0.4);
  color: #ffffff;
}

/* Responsive untuk Mobile */
@media (max-width: 768px) {
  .cta-title {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 1.1rem;
  }

  .final-cta {
    padding: 70px 20px;
  }

  .stats-overlap {
    max-width: 100%;
    margin: 20px 0px;
    padding: 0 15px;
  }

  .stats-bar {
    border-radius: 0; /* hilangkan radius biar full touch edge */
    padding: 25px 15px;
  }
}
