@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Roboto:wght@400;500&display=swap');
/* VARIABEL WARNA */


:root{
  --blue-dark: #003399;
  --blue-light: #0099CC;
}

html {
  scroll-behavior: smooth;
}

body{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:#222;
  /* kalau mau hero mulai setelah navbar, aktifkan baris ini */
  /* padding-top: 56px; */
}

.navbar.bg-primary {
  background: linear-gradient(90deg,var(--blue-dark),var(--blue-light));
}

/* HERO FULLSCREEN RESPONSIVE */
header.hero {
  position: relative;
  width: 100%;
  height: calc(100vh); /* penuh layar dikurangi tinggi navbar */
  overflow: hidden;
  margin: 0;
  padding: 0;
}

header.hero .carousel,
header.hero .carousel-inner,
header.hero .carousel-item {
  height: 100%;
}

header.hero .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* gambar memenuhi frame */
  object-position: center;
}

.partner-logo {
  height:70px;
  object-fit:contain;
  filter:grayscale(0.05);
}

.card img {
  object-fit:cover;
  height:180px;
}

/* footer {
  background:#03224a;
} */

/* small responsive tweaks */
@media (max-width:576px){
  .partner-logo{height:50px}
}

/* AOS animasi smooth + delay */
[data-aos] {
  transition-duration: 600ms !important;
  transition-timing-function: ease-out !important;
}

[data-aos][data-aos-delay="100"] { transition-delay: 100ms; }
[data-aos][data-aos-delay="200"] { transition-delay: 200ms; }
[data-aos][data-aos-delay="300"] { transition-delay: 300ms; }
[data-aos][data-aos-delay="400"] { transition-delay: 400ms; }
[data-aos][data-aos-delay="500"] { transition-delay: 500ms; }
[data-aos][data-aos-delay="600"] { transition-delay: 600ms; }
[data-aos][data-aos-delay="700"] { transition-delay: 700ms; }
[data-aos][data-aos-delay="800"] { transition-delay: 800ms; }
[data-aos][data-aos-delay="900"] { transition-delay: 900ms; }
[data-aos][data-aos-delay="1000"] { transition-delay: 1000ms; }
[data-aos][data-aos-delay="1100"] { transition-delay: 1100ms; }
[data-aos][data-aos-delay="1200"] { transition-delay: 1200ms; }

/* KODING BARU UNTUK TOMBOL MODERN DI HERO */
.btn-modern {
  display: inline-block;   /* pas sama teks */
  width: auto;             /* jangan full width */
  padding: 10px 24px;      /* nyaman */
  font-size: 1rem;
  border-radius: 30px;
  background: linear-gradient(45deg, #0066ff, #0099ff);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.btn-modern:hover {
  background: #0056d8; /* warna primary */
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}





/* ABOUT SECTION */
.about-section {
  background: #fafafa;
}

.about-section .line {
  width: 150px;
  height: 2px;
  background: var(--blue-dark);
}
.about-section p,
.about-section ul {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.about-section ul li {
  margin-bottom: 8px;
}

.about-section .btn-sm {
  padding: 6px 16px;
  font-size: 0.9rem;
  border-radius: 20px;
}



/* Quote Section Fullscreen */
/* Quote Section Fullscreen */
.quote-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('../assets/images/quote.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  margin: 0;
  padding: 0;
  border-radius: 20px; /* ✅ rounded corner */
  overflow: hidden;    /* pastikan background tidak keluar sudut */
}
/* Overlay teks */
.quote-hero .quote-overlay {
  width: 100%;
  max-width: 800px;
  margin-left: 8%;
  margin-right: auto;
  z-index: 2;
  background: rgba(0,0,0,0.45); /* overlay gelap supaya teks kontras */
  padding: 2rem;
  border-radius: 12px;
}

.quote-hero h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.quote-hero p {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* RESPONSIVE SETTINGS */
@media (max-width: 992px) {
  .quote-hero {
    background-position: left center; /* fokus ke kiri */
  }
  .quote-hero .quote-overlay {
    max-width: 90%;
    margin-left: 5%;
    padding: 1.5rem;
  }
  .quote-hero h3 {
    font-size: 1.6rem;
  }
  .quote-hero p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .quote-hero {
    background-position: left top; /* di HP lebih dominan kiri */
  }
  .quote-hero .quote-overlay {
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
  }
  .quote-hero h3 {
    font-size: 1.4rem;
  }
  .quote-hero p {
    font-size: 0.95rem;
  }
}


/* ==== FOOTER GLASS STYLE ==== */
      .footer-glass {
        background: linear-gradient(90deg,var(--blue-dark),var(--blue-light));
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
        position: relative;
        overflow: hidden;
      }

      .footer-glass::before {
        content: "";
        position: absolute;
        top: 0;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at 10% 10%, rgba(0, 123, 255, 0.15), transparent 60%),
                    radial-gradient(circle at 90% 90%, rgba(255, 0, 123, 0.15), transparent 60%);
        z-index: 0;
      }

      .footer-glass .container {
        position: relative;
        z-index: 1;
      }

      .social-icon {
        color: white;
        transition: 0.3s ease;
      }

      .social-icon.instagram:hover {
        color: #e4405f;
        text-shadow: 0 0 10px #e4405f;
        transform: translateY(-3px);
      }

      .social-icon.facebook:hover {
        color: #1877f2;
        text-shadow: 0 0 10px #1877f2;
        transform: translateY(-3px);
      }

      .social-icon.youtube:hover {
        color: #ff0000;
        text-shadow: 0 0 10px #ff0000;
        transform: translateY(-3px);
      }

      .social-icon.email:hover {
        color: #ffa500;
        text-shadow: 0 0 10px #ffa500;
        transform: translateY(-3px);
      }

      .footer-glass h5 {
        letter-spacing: 0.5px;
      }

      .footer-glass a {
        transition: 0.3s;
      }

      .footer-glass a:hover {
        opacity: 0.9;
      }

      .footer-glass hr {
        border-color: rgba(255, 255, 255, 0.2);
      }

      .footer-bottom {
        text-align: center;
        font-size: 0.9rem;
      }
      
     