/* === GLOBAL RESETS === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* outline: 1px solid red; */
  /* Debug only */
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #086981, #0D47A1);
  overflow-x: hidden;
}

/* === SCROLL MARGIN FOR SECTION NAVIGATION === */
#about,
#services,
#programs,
#education,
#gallery,
#testimonials,
#faq,
#contact {
  scroll-margin-top: 120px;
}

/* === LOGO STYLE === */
.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 50px;
  width: 50px;
  margin-right: 10px;
  border-radius: 50%;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: bold;
  color: #00B6FF;
  transition: color 0.3s ease;
}

.logo-text:hover {
  color: #0077cc;
}

/* === GLOBAL ELEMENT STYLE === */
a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* === NAVBAR === */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(90deg, #1976d2cc, #63a4ffcc);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  background-size: 300px 300px;
  animation: patternScroll 30s linear infinite;
}

#navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

/* === NAV LINKS === */
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  position: relative;
  font-weight: 600;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  padding: 4px 0;
  transition: color 0.3s ease;
}

/* Underline Animation */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #ffeb3b;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  background-color: #ffeb3b;
}

/* === ANIMASI BACKGROUND NAVBAR === */
@keyframes patternScroll {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 300px 300px;
  }
}

/* === RESPONSIVE NAVBAR (<=768px) === */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: linear-gradient(to bottom right, #1976d2, #63a4ff);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 999;
  }

  .nav-links.show {
    right: 0;
  }

  .nav-links a {
    font-size: 1.25rem;
    margin: 0.5rem 0;
  }
}

/* === BUBBLE BACKGROUND === */
.bubble-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

/* === BUBBLE DASAR === */
.bubble {
  position: absolute;
  bottom: -50px;
  width: 20px;
  height: 20px;
  background: rgba(135, 206, 250, 0.3);
  box-shadow: 0 0 8px rgba(135, 206, 250, 0.5);
  border-radius: 50%;
  animation: floatUpFast 5s infinite ease-in;
  opacity: 0.8;
  filter: blur(1px);
}

/* === VARIASI UKURAN BUBBLE OTOMATIS === */
.bubble:nth-child(2n) {
  width: 15px;
  height: 15px;
}

.bubble:nth-child(3n) {
  width: 30px;
  height: 30px;
}

.bubble:nth-child(4n) {
  width: 25px;
  height: 25px;
}

.bubble:nth-child(5n) {
  width: 35px;
  height: 35px;
}

/* === VARIASI WARNA PASTEL BUBBLE === */
.bubble:nth-child(1) {
  background: rgba(255, 183, 197, 0.3);
  /* pink pastel */
  box-shadow: 0 0 10px rgba(255, 183, 197, 0.4);
}

.bubble:nth-child(2) {
  background: rgba(173, 216, 230, 0.3);
  /* light blue */
  box-shadow: 0 0 10px rgba(173, 216, 230, 0.4);
}

.bubble:nth-child(3) {
  background: rgba(144, 238, 144, 0.3);
  /* light green */
  box-shadow: 0 0 10px rgba(144, 238, 144, 0.4);
}

.bubble:nth-child(4) {
  background: rgba(255, 255, 153, 0.3);
  /* light yellow */
  box-shadow: 0 0 10px rgba(255, 255, 153, 0.4);
}

.bubble:nth-child(5) {
  background: rgba(221, 160, 221, 0.3);
  /* lavender */
  box-shadow: 0 0 10px rgba(221, 160, 221, 0.4);
}

.bubble:nth-child(6) {
  background: rgba(255, 204, 153, 0.3);
  /* peach */
  box-shadow: 0 0 10px rgba(255, 204, 153, 0.4);
}

.bubble:nth-child(7) {
  background: rgba(204, 255, 229, 0.3);
  /* mint */
  box-shadow: 0 0 10px rgba(204, 255, 229, 0.4);
}

.bubble:nth-child(8) {
  background: rgba(255, 204, 255, 0.3);
  /* soft pink */
  box-shadow: 0 0 10px rgba(255, 204, 255, 0.4);
}

.bubble:nth-child(9) {
  background: rgba(200, 200, 255, 0.3);
  /* light purple */
  box-shadow: 0 0 10px rgba(200, 200, 255, 0.4);
}

.bubble:nth-child(10) {
  background: rgba(255, 240, 200, 0.3);
  /* light cream */
  box-shadow: 0 0 10px rgba(255, 240, 200, 0.4);
}

/* === ANIMASI GELEMBUNG === */
@keyframes floatUpFast {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    transform: translateY(-120vh) scale(1.2);
    opacity: 0;
  }
}

/* === BUTTON === */
.btn-primary {
  background-color: #1D4ED8;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #1e40af;
}

/* === HAMBURGER MENU === */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger jadi X saat aktif */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === RESPONSIVE NAV (Mobile) === */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    /* Jangan 0 agar tidak menutupi navbar */
    right: 0;
    width: 70%;
    height: calc(100vh - 80px);
    /* Kurangi tinggi navbar */
    padding: 2rem 2rem;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 1.5rem;

    background: linear-gradient(135deg, #1976d2, #63a4ff);
    backdrop-filter: blur(10px);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);

    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.show {
    transform: translateX(0);
    opacity: 1;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    text-align: right;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
  }

  .nav-links li a:hover {
    color: #ffeb3b;
  }
}

/* === HERO SECTION === */
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero {
  background: linear-gradient(to right,
      rgba(29, 78, 216, 0.9),
      rgba(29, 78, 216, 0.6)),
    url('../images/hero.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 6rem 0;
  padding-top: 100px;
}

/* === HERO GRAPHICS (Animasi + Gambar) === */
.hero-graphics {
  position: relative;
  margin: 2rem auto 0;
  max-width: 90%;
  height: auto;

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: fadeInZoomUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

.hero-graphics img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 20px;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
}

@media (max-width: 768px) {
  .hero-graphics {
    max-width: 75%;
    margin-top: 1rem;
  }
}

/* === ANIMASI HERO === */
@keyframes fadeInZoomUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, #1976d2, #0d47a1);
  color: white;
  padding: 3rem 1.5rem;
  text-align: center;
  border-radius: 16px;
  margin: 3rem auto;
  max-width: 900px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-section h2 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.cta-section p {
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.cta-button {
  display: inline-block;
  background-color: white;
  color: #1976d2;
  font-weight: bold;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #e3f2fd;
  transform: scale(1.05);
}

/* === RESPONSIVE CTA === */
@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 1.4rem;
  }

  .cta-section p {
    font-size: 0.95rem;
  }

  .cta-button {
    padding: 0.7rem 1.4rem;
  }
}

/* === HERO TEXT ANIMASI === */
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
  animation-delay: 0.3s;
  animation-fill-mode: backwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === SECTION LAYOUT UMUM === */
.section {
  padding-top: 100px;
  padding: 4rem 0;
  scroll-margin-top: 100px;
  background-color: white;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #1D4ED8;
}

/* === SERVICE SECTION === */
.service-section {
  position: relative;
  width: 100%;
  padding: 4rem 0;
  background: linear-gradient(to bottom, #e0f7fa, #b3e5fc);
  color: #1D4ED8;
  border-radius: 20px;
  border-top: 2px solid #ffffff88;
  border-bottom: 2px solid #ffffff88;
  overflow: hidden;
}

.service-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/cubes.png');
  opacity: 0.015;
  z-index: 0;
}

.service-section h2 {
  text-align: center;
  font-weight: bold;
  color: #1e40af;
  margin-bottom: 2.5rem;
  font-size: 2rem;
  z-index: 2;
  position: relative;
}

.service-section .container {
  position: relative;
  z-index: 2;
}

/* Card Style */
.service-section .card {
  background-color: #f0f9ff;
  border: none;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-section .card h5 {
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.service-section .card p {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Bawah garis pelangi */
.service-section .card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, #ef4444, #8b5cf6);
  border-radius: 0 0 1.5rem 1.5rem;
}


/* === ABOUT SECTION === */
.about-section {
  position: relative;
  width: 100%;
  padding: 4rem 0;
  background: linear-gradient(to bottom right, #E3F2FD, #FFF8E1);
  color: #1e293b;
  overflow: hidden;
  border-radius: 20px;
}

.about-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200%;
  height: 200%;
  background: url("https://www.transparenttextures.com/patterns/geometry.png");
  opacity: 0.05;
  z-index: 0;
}

.about-section .container {
  position: relative;
  z-index: 2;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 0;
}

.about-card {
  position: relative;
  padding: 2rem;
  background: url('https://www.transparenttextures.com/patterns/stardust.png') top center repeat;
  background-size: contain;
  border-radius: 10px;
  z-index: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* === RESPONSIVE ABOUT SECTION === */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    margin: auto;
    max-width: 90%;
  }
}

/* === AOS ANIMATION HANDLER === */
@import url('libs/aos/aos.css');

[data-aos] {
  will-change: transform, opacity;
  transition-property: transform, opacity;
  transition-timing-function: ease;
}

[data-aos][data-aos-easing] {
  transition-timing-function: var(--aos-easing, ease);
}

/* === SECTION SUBTITLE === */
.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 2rem;
}

/* === CARD GRID === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* === CARD STYLE === */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  background: #f1f5f9;
  border-radius: 20px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: none;
}

.card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #0f172a;
  font-weight: 600;
}

.card p {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.card i {
  display: inline-block;
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  background: none;
  transition: transform 0.5s ease;
}

/* === CARD GRADIENT LINE === */
.card::after {
  content: "";
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(270deg, red, blue, red);
  background-size: 400% 400%;
  animation: animate-gradient 4s ease infinite;
}

/* === WHATSAPP BUTTON === */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #25d366;
  background: transparent;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background: #25d366;
  color: #ffffff;
}

/* === HOVER EFFECTS === */
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px 5px rgba(210, 224, 13, 0.6);
}

.card:hover i {
  transform: rotate(380deg);
}

/* === CARD ANIMATION === */
@keyframes animate-gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

/* === PARALLAX EFFECT === */
.parallax {
  position: relative;
  overflow: hidden;
}

.parallax::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/parallax-bg.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  transform: translateZ(0);
  will-change: transform;
  filter: brightness(0.8);
  z-index: -1;
  transition: transform 0.5s ease;
}

.parallax .container {
  position: relative;
  z-index: 2;
}

/* === GALLERY SECTION === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item a {
  display: block;
  position: relative;
}

.gallery-item a img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  pointer-events: none;
}

.gallery-item:hover a img {
  transform: scale(1.05);
}

.gallery-item:hover span {
  opacity: 1;
}

/* === TESTIMONIAL SECTION === */
#testimonials {
  overflow-x: hidden;
  position: relative;
}

.testimonialSwiper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  overflow: hidden;
  box-sizing: border-box;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
  padding: 1.5rem;
  box-sizing: border-box;
  transform-style: preserve-3d;
}

/* === TESTIMONIAL CARD === */
.testimonial-card {
  max-width: 100%;
  padding: 2rem;
  background: #ffffff;
  border-radius: 1rem;
  text-align: center;
  word-wrap: break-word;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  will-change: transform;
}

.testimonial-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-card img {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #3f51b5;
  transition: transform 0.3s ease;
}

.testimonial-card:hover img {
  transform: scale(1.05);
}

.testimonial-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1E3A8A;
  margin-bottom: 0.5rem;
  text-align: center;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #4B5563;
  line-height: 1.6;
  text-align: center;
}

/* === NAVIGATION BUTTONS === */
.custom-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  color: #1D4ED8;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: bounceButton 2.8s ease-in-out infinite;
  transition: background 0.3s ease, transform 0.3s ease;
}

.custom-nav i {
  font-size: 1.2rem;
}

.custom-nav:hover {
  animation: none;
  background: #e0f2fe;
  transform: translateY(-50%) scale(1.1) rotate(10deg);
  box-shadow: 0 0 10px rgba(33, 150, 243, 0.4);
}

.swiper-button-prev.custom-nav {
  left: 10px;
}

.swiper-button-next.custom-nav {
  right: 10px;
}

/* === BOUNCE ANIMATION === */
@keyframes bounceButton {

  0%,
  100% {
    transform: translateY(-50%) scale(1);
  }

  50% {
    transform: translateY(-50%) scale(1.15);
  }
}

/* === FAQ SECTION === */
.faq-container {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
  overflow: hidden;
}

/* Tombol pertanyaan */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1rem;
  font-weight: 600;
  color: #1D4ED8;
  padding: 1rem 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: color 0.3s ease;
}

/* Ikon +/− */
.faq-icon {
  font-weight: bold;
  font-size: 1.3rem;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

/* Jawaban tersembunyi */
.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

/* Saat aktif: tampilkan jawaban dan ganti ikon */
.faq-item.active .faq-answer {
  max-height: 500px;
  /* cukup tinggi untuk konten apapun */
  opacity: 1;
}

/* Ubah ikon jadi minus */
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  /* visual seperti minus */
}

/* === CONTACT SECTION === */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 3rem 1.5rem;
  background-color: #f9fafb;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  max-width: 1200px;
  margin: 0 auto;
}

/* === GOOGLE MAPS === */
.contact-info iframe {
  border-radius: 16px;
  width: 100%;
  height: 350px;
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

/* === KONTAK SECTION === */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  /* 🌈 Lembut biru muda */
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  max-width: 1200px;
  margin: 0 auto;
}

/* === INFO KONTAK === */
.contact-info {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #3b82f6;
  /* aksen garis kiri */
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1e3a8a;
}

.contact-info p {
  margin-bottom: 0.8rem;
  color: #334155;
  line-height: 1.6;
  font-size: 1rem;
}

.contact-info a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-info iframe {
  border-radius: 16px;
  width: 100%;
  height: 300px;
  border: none;
  margin-top: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* === FORMULIR KONTAK === */
.contact-form {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  border-top: 5px solid #1d4ed8;
  /* aksen garis atas */
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #1e3a8a;
}

.contact-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
  color: #1e293b;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  margin-bottom: 1.2rem;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background-color: #f8fafc;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
  outline: none;
}

/* Tombol Kirim */
.contact-form button {
  width: 100%;
  padding: 0.95rem 1.2rem;
  background: linear-gradient(135deg, #2563eb, #1e3a8a);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.contact-form button:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
}

.contact-form button:focus {
  outline: 2px dashed #bfdbfe;
  outline-offset: 4px;
}

/* Responsif */
@media (max-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }

  .contact-form,
  .contact-info {
    padding: 1.5rem;
  }

  .contact-form button {
    font-size: 1rem;
  }
}

/* === FOOTER === */

/* === FOOTER === */
.site-footer {
  background: linear-gradient(135deg, #91d3f6, #fefefe);
  padding: 1.2rem 1rem 0.8rem;
  color: #333;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
}


/* === RESPONSIVE FOOTER === */
.footer-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand h2 {
  font-size: 1.4rem;
  margin: 0;
  color: #1976d2;
}

.footer-brand .tagline {
  font-size: 0.85rem;
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  color: #555;
}

.footer-contact p {
  margin: 0.3rem 0;
  line-height: 1.3;
  font-size: 0.85rem;
}

.footer-contact a {
  color: #1976d2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #0d47a1;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 0.6rem;
  font-size: 0.75rem;
  color: #666;
  border-top: 1px solid #ccc;
  margin-top: 1rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }

  .footer-brand h2 {
    font-size: 1.3rem;
  }

  .footer-brand .tagline {
    font-size: 0.8rem;
  }

  .footer-contact p {
    font-size: 0.8rem;
  }

  .footer-bottom {
    font-size: 0.7rem;
  }
}

.card-container,
.card {
  position: relative;
  z-index: 1;
}

.cta-section {
  position: relative;
  z-index: 2;
}

/* Cursor Follower */

/* position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1); */
/* warna gelap soft */
/* pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out, opacity 0.2s;
  mix-blend-mode: multiply;
} */

.fade-left.in-view {
  transform: translateX(0);
  opacity: 1;
}

.fade-right {
  transform: translateX(-50px);
}

.fade-right.in-view {
  transform: translateX(0);
  opacity: 1;
}

.btn-soft {
  background-color: #2563eb;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-soft:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}


[data-aos] {
  opacity: 1 !important;
  transform: none !important;
}