/* Hero Section Styles - Clean & Optimized */
#hero {
  min-height: 80vh;
}

.hero-container {
  margin-top: 100px;
}

.hero-title {
  background: linear-gradient(90deg, #28a745 40%, #ffc107 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 1px 2px 8px rgba(40,167,69,0.08);
}

.hero-brand {
  color: #4e7c5a;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 1.2em;
}

.hero-tagline {
  font-size: 1.1em;
  font-weight: 500;
  color: #7a9472;
  margin-top: 0.5rem;
  letter-spacing: 0.5px;
}

.hero-description {
  font-size: 1.25rem;
  color: #198754;
  font-weight: 500;
}

.mobile-showcase-bg {
  background: linear-gradient(135deg, #28a745, #20c997);
}

/* Header Styles - Clean & Optimized */
.logo {
  height: 100px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 90px;
  width: auto;
  border: none;
  box-shadow: none;
  background: transparent;
  display: block;
}

.nav-list {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: #198754;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background-color: rgba(25, 135, 84, 0.1);
  color: #198754;
  text-decoration: none;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  border-radius: 0.5rem;
  padding: 0.75rem 0;
  min-width: 180px;
  z-index: 1000;
  border: 1px solid rgba(0,0,0,0.08);
  margin-top: 0.5rem;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  color: #198754;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.dropdown-menu li a:last-child {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  background-color: rgba(25, 135, 84, 0.1);
  color: #146c43;
  transform: translateX(5px);
}

.dropdown-menu li a i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

/* Dropdown Toggle Styles */
.dropdown-toggle {
  display: flex;
  align-items: center;
}

.dropdown-toggle i {
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.dropdown-toggle:hover i {
  transform: translateY(-1px);
}

/* Dropdown Animation */
.dropdown-menu {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Navbar icons styling */
.nav-link i {
  margin-right: 8px;
  font-size: 1.1em;
}

.dropdown-menu a i {
  margin-right: 10px;
  color: #28a745;
  width: 20px;
  text-align: center;
}

.dropdown-arrow {
  margin-left: 5px;
  font-size: 0.8em;
  transition: transform 0.3s ease;
}

.dropdown.show .dropdown-arrow {
  transform: rotate(180deg);
}

/* Social media specific colors */
.bi-instagram {
  color: #E4405F !important;
}

.bx-tiktok, .bxl-tiktok {
  color: #000000 !important;
}

.bi-share {
  color: #28a745;
}

.bi-geo-alt {
  color: #dc3545;
}

.bi-cart {
  color: #28a745;
}

.bi-info-circle {
  color: #007bff;
}

.bi-box {
  color: #fd7e14;
}

/* Footer Styles - Simple */
.footer-logo {
  border: none;
  box-shadow: none;
  background: transparent;
}

#footer .social-links a {
  color: #28a745;
  text-decoration: none;
}

#footer .social-links a:hover {
  color: #198754;
  text-decoration: underline;
}

.mobile-nav-toggle {
  cursor: pointer;
  font-size: 24px;
  color: #198754;
  display: none;
}

/* Custom style for Pesan Online buttons */
.order-btn-custom {
  font-family: 'Poppins', 'Nunito', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.10);
  border-radius: 2rem;
  padding: 0.75rem 2.2rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.order-btn-custom:hover, .order-btn-custom:focus {
  background: #198754;
  color: #fff;
  box-shadow: 0 4px 16px rgba(40, 167, 69, 0.18);
}
/* Card Visi & Misi */
.visi-misi-card {
  border: none;
  border-radius: 1.2rem;
  background: linear-gradient(120deg, #f8fffa 60%, #e6f7ea 100%);
  box-shadow: 0 4px 24px rgba(44,62,80,0.10);
  transition: box-shadow 0.22s, transform 0.22s;
  margin-bottom: 0;
}
.visi-misi-card:hover {
  box-shadow: 0 8px 32px rgba(30,182,117,0.13);
  transform: translateY(-2px) scale(1.02);
}
.visi-misi-card .card-title {
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}
.visi-misi-card .card-text {
  font-size: 1.08rem;
  color: #2d3a3a;
}
.visi-misi-card ul {
  padding-left: 1.2em;
  margin-bottom: 0;
}

/* Divider/ornamen pemisah antar section */
.ornamental-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 0.7rem 0 1.7rem 0;
}
.divider-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #1eb675 0%, #e6f7ea 100%);
  border-radius: 2px;
  opacity: 0.7;
}
.divider-dot {
  width: 13px;
  height: 13px;
  background: #1eb675;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(30,182,117,0.13);
}
/* Konsistensi navbar: semua menu seperti 'Tentang Kami' */
.navbar .nav-link {
  padding: 0.5rem 1.2rem;
  border-radius: 1.2rem;
  font-weight: 600;
  color: #555;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  margin: 0 0.18rem;
  box-shadow: none;
  background: none;
  position: relative;
}
.navbar .nav-link.active, .navbar .nav-link[aria-current="page"], .navbar .nav-link:focus, .navbar .nav-link:hover {
  background: #e6f7ea;
  color: #1eb675 !important;
  box-shadow: 0 2px 16px rgba(30,182,117,0.08);
  text-shadow: 0 1px 8px rgba(30,182,117,0.07);
}
.navbar .btn-success {
  border-radius: 1.2rem;
  font-weight: 700;
  box-shadow: 0 2px 16px rgba(30,182,117,0.10);
  padding: 0.5rem 1.3rem;
}
body, html, .lead, .section-title h2, .navbar, .btn, .app-title, .app-subtitle {
  font-family: 'Nunito', 'Poppins', 'Segoe UI', Arial, sans-serif !important;
  letter-spacing: 0.01em;
  font-weight: 500;
  color: #232323;
}
.brand-animated-text, .about-hero .lead {
  font-family: 'Poppins', 'Segoe UI', 'Nunito Sans', Arial, sans-serif !important;
  font-size: 1.32rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.5;
  color: #232323;
  text-shadow: 0 2px 12px rgba(44,62,80,0.07);
}
/* Animasi teks utama dan highlight brand */
.brand-animated-text {
  animation: fadeInUp 1.1s cubic-bezier(.4,2,.3,1) 0.1s both;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.brand-highlight {
  color: #1eb675;
  background: linear-gradient(90deg, #e6f7ea 60%, #fff 100%);
  padding: 0 0.25em;
  border-radius: 0.4em;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(30,182,117,0.07);
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(32px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Divider/ornamen pemisah antar section */
.ornamental-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 0.7rem 0 1.7rem 0;
}
.divider-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #1eb675 0%, #e6f7ea 100%);
  border-radius: 2px;
  opacity: 0.7;
}
.divider-dot {
  width: 13px;
  height: 13px;
  background: #1eb675;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(30,182,117,0.13);
}
/* Interaktif untuk halaman Tentang Kami */
.about-gallery-card {
  transition: box-shadow 0.22s, transform 0.22s;
}
.about-gallery-card:hover {
  box-shadow: 0 12px 36px rgba(44,62,80,0.18), 0 2px 12px rgba(40,167,69,0.12);
  transform: translateY(-4px) scale(1.025);
}
.pelanggan-img-fix {
  transition: transform 0.32s cubic-bezier(.4,2,.3,1), box-shadow 0.22s;
  cursor: pointer;
}
.pelanggan-img-fix:hover {
  transform: scale(1.06) rotate(-1.5deg);
  box-shadow: 0 16px 40px rgba(44,62,80,0.22);
  z-index: 2;
}
/* Finishing About Us Page */
.about-hero {
  background: linear-gradient(120deg, #e6f7ea 0%, #f8fffa 100%);
  border-radius: 0 0 2.5rem 2.5rem;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.about-hero-overlay {
  background: linear-gradient(120deg,rgba(255,255,255,0.7) 0%,rgba(230,247,234,0.5) 100%);
  z-index: 1;
}
.about-blob-1, .about-blob-2 {
  background: radial-gradient(circle at 60% 40%, #b6e5c9 0%, #e6f7ea 80%);
  border-radius: 50%;
  opacity: 0.18;
}
.about-divider {
  border-top: 2.5px solid #b6e5c9;
  opacity: 0.5;
}
.about-gallery-card {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 8px 32px rgba(44,62,80,0.13), 0 1.5px 8px rgba(40,167,69,0.08);
  border: 1.5px solid #e6f7ea;
  max-width: 370px;
  width: 100%;
  margin: 0 auto;
  border-radius: 1.2rem;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  transition: box-shadow 0.22s, transform 0.22s;
}
.pelanggan-img-fix {
  max-width: 340px;
  width: 100%;
  height: 260px;
  border-radius: 1.1rem;
  margin-bottom: 10px;
  box-shadow: 0 6px 32px rgba(44,62,80,0.18);
  display: block;
  object-fit: cover;
  background: #fff;
  padding: 6px;
  border: 2.5px solid #e6f7ea;
  transition: transform 0.32s cubic-bezier(.4,2,.3,1), box-shadow 0.22s;
}
.pelanggan-img-fix:hover {
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 12px 32px rgba(0,0,0,0.16);
}
@media (max-width: 600px) {
  .about-hero {
    min-height: 180px;
    border-radius: 0 0 1.2rem 1.2rem;
  }
  .about-gallery-card {
    max-width: 98vw;
    padding: 1rem 0.5rem 1rem 0.5rem;
  }
  .pelanggan-img-fix {
    max-width: 95vw;
    height: 160px;
    padding: 2px;
  }
}
/* Gambar pelanggan di about.html */
.pelanggan-about-img {
  border: 3px solid #e0e0e0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  object-fit: cover;
  max-height: 320px;
  margin-bottom: 2rem;
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
}
.pelanggan-about-img:hover {
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 12px 32px rgba(0,0,0,0.16);
}
.about-gallery-card {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 8px 32px rgba(44,62,80,0.13), 0 1.5px 8px rgba(40,167,69,0.08);
  border: 1.5px solid #e6f7ea;
  max-width: 370px;
  width: 100%;
  margin: 0 auto;
  transition: box-shadow 0.22s, transform 0.22s;
}
.about-gallery-card:hover {
  box-shadow: 0 16px 48px rgba(40,167,69,0.16), 0 2px 12px rgba(44,62,80,0.10);
  transform: translateY(-3px) scale(1.025);
}
.about-divider {
  border: none;
  border-top: 2.5px solid #b6e2c6;
  opacity: 0.7;
  margin: 0 auto 2.2rem auto;
}
.animate-fadein {
  animation: fadeInUp 0.9s cubic-bezier(.4,2,.3,1) 0.1s both;
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(32px); }
  100% { opacity: 1; transform: none; }
}
.about-hero {
  background: linear-gradient(120deg, #e6f7ea 60%, #f6fbf7 100%);
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.about-hero-overlay {
  background: linear-gradient(120deg, rgba(40,167,69,0.08) 60%, rgba(255,255,255,0.7) 100%);
  z-index: 1;
  pointer-events: none;
}
.about-blob-1 {
  background: radial-gradient(circle at 40% 40%, #b6e2c6 0%, rgba(255,255,255,0) 80%);
  filter: blur(12px);
  opacity: 0.35;
  border-radius: 50%;
}
.about-blob-2 {
  background: radial-gradient(circle at 60% 60%, #43e97b 0%, rgba(255,255,255,0) 80%);
  filter: blur(18px);
  opacity: 0.22;
  border-radius: 50%;
}

.about-gallery-img-hover {
  transition: transform 0.35s cubic-bezier(.4,2,.3,1), box-shadow 0.25s;
  cursor: pointer;
}
.about-gallery-img-hover:hover {
  transform: scale(1.045) rotate(-1.5deg);
  box-shadow: 0 10px 36px rgba(40,167,69,0.18), 0 2px 8px rgba(44,62,80,0.10);
  z-index: 2;
}

.btn.btn-success.btn-lg {
  font-size: 1.18rem;
  border-radius: 2rem;
  padding: 0.7em 2.2em;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(40,167,69,0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
}
.btn.btn-success.btn-lg:hover {
  background: #219150;
  box-shadow: 0 6px 24px rgba(40,167,69,0.16);
  transform: translateY(-2px) scale(1.04);
}
.text-logo-green {
  color: #219150;
}
.gallery-caption {
  margin-top: 0.7rem;
  margin-bottom: 0.5rem;
  font-size: 1.08rem;
  color: #555;
  text-align: center;
  line-height: 1.3;
}
/* Sudah diatur di blok utama .about-gallery-row img dan media query di atas, tidak perlu duplikasi. */
/* ======= Galeri Mini About (Dua Foto) ======= */
.about-gallery-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.about-gallery-row > div {
  flex: 0 1 340px;
  max-width: 340px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-gallery-row img {
  width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(44,62,80,0.13);
}
.about-gallery-row .text-muted {
  text-align: center;
  font-size: 1rem;
}
@media (max-width: 700px) {
  .about-gallery-row {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .about-gallery-row > div {
    max-width: 95vw;
    min-width: 0;
  }
}
/* ======= About Hero Section ======= */
.about-hero {
  min-height: 340px;
  background: linear-gradient(120deg, #e8f5e9 60%, #fff 100%);
  overflow: hidden;
  position: relative;
}
.about-hero-img {
  max-width: 340px;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(44,62,80,0.13);
  margin-top: 12px;
}
.about-hero-overlay {
  background: linear-gradient(120deg, rgba(40,167,69,0.08) 60%, rgba(255,255,255,0.7) 100%);
  z-index: 1;
  pointer-events: none;
}
.about-hero .container {
  position: relative;
  z-index: 2;
}
 .about-gallery-row img {
   max-width: 340px;
   height: auto;
   margin-bottom: 0;
   border-radius: 18px;
   box-shadow: 0 4px 24px rgba(44,62,80,0.13);
   display: block;
   margin-left: auto;
   margin-right: auto;
 }
 @media (max-width: 700px) {
   .about-gallery-row img {
     max-width: 95vw;
   }
 }
.text-gradient {
  background: linear-gradient(90deg, #218838 0%, #43e97b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  line-height: 1.1;
}

.about-title-main {
  text-shadow: 0 2px 12px rgba(44,62,80,0.10), 0 1px 0 #fff;
  letter-spacing: -1px;
}

/* ======= Feature Card (Keunggulan) ======= */
.feature-card {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(40,167,69,0.13);
  transform: translateY(-4px) scale(1.04);
}

/* ======= Testimoni Section ======= */
.blockquote {
  border-left: 4px solid #28a745;
  padding-left: 1rem;
  color: #444;
}
.blockquote-footer {
  color: #888;
  font-size: 0.98rem;
}
/* Gressoy Custom Styles */

/* Navbar Logo Styling */
.navbar-logo {
  height: 120px;
  width: auto;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  transition: transform 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.1);
}

/* Footer Logo Styling */
.footer-logo {
  max-height: 120px;
  width: auto;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

/* Navbar Horizontal Styling */
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header.header-scrolled {
  background: rgba(255, 255, 255, 0.9);
  padding: 3px 0;
}

#header .logo {
  line-height: 1;
}

#header .logo a {
  text-decoration: none;
  font-size: 28px;
  font-weight: 700;
  color: #28a745;
}

/* Navbar horizontal styles */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  margin-left: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #666666;
  white-space: nowrap;
  text-decoration: none;
  transition: 0.3s;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #28a745;
}

/* Enhanced active nav pill for "Tentang Kami" */
.navbar a.active {
  background: linear-gradient(90deg, rgba(40,167,69,0.12), rgba(40,167,69,0.06));
  color: #19692f !important;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(40,167,69,0.12);
  transform: translateY(-2px);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.navbar a.active:hover, .navbar a.active:focus {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 30px rgba(40,167,69,0.16);
}

/* small icon spacing when using bootstrap icons */
.navbar a i.bi {
  font-size: 1.05rem;
  vertical-align: -2px;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  color: #666666;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #28a745;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
    position: fixed;
    top: 70px;
    right: 15px;
    left: 15px;
    bottom: 15px;
    background: #fff;
    transition: 0.3s;
    border-radius: 10px;
    z-index: 9997;
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }

  .navbar ul.navbar-mobile {
    display: flex;
  }

  .navbar li {
    width: 100%;
  }

  .navbar a {
    padding: 10px 20px;
    margin: 0;
    justify-content: flex-start;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar li:hover > a {
    color: #28a745;
  }
}

/* Mobile App Showcase Section */
#mobile-showcase {
  position: relative;
  /* izinkan mockup ponsel keluar sedikit tanpa terpotong */
  overflow: visible;
}

/* Decorative gradient blobs / aura */
#mobile-showcase .gradient-blob {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35), rgba(255,255,255,0) 70%);
  filter: blur(10px);
  opacity: 0.35;
  animation: blobFloat 8s ease-in-out infinite;
  pointer-events: none;
}

#mobile-showcase .gradient-blob.blob2 {
  top: auto;
  bottom: -40px;
  right: 10%;
  animation-delay: 3s;
  background: radial-gradient(circle at 70% 70%, rgba(255,255,255,0.25), rgba(255,255,255,0) 65%);
}

@keyframes blobFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-25px) scale(1.05); }
}

/* Left content glass box */
.showcase-content-box {
  position: relative;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  padding: 35px 40px 40px;
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.35), 0 4px 8px -4px rgba(0,0,0,0.25);
  overflow: hidden;
}

.showcase-content-box::before, .showcase-content-box::after {
  content: '';
  position: absolute;
  width: 160px; height: 160px;
  background: radial-gradient(circle at center, rgba(255,255,255,0.55), rgba(255,255,255,0) 70%);
  top: -60px; right: -40px;
  opacity: 0.35;
  animation: pulse 6s ease-in-out infinite;
}

.showcase-content-box::after {
  width: 220px; height: 220px;
  top: auto; bottom: -90px; left: -70px;
  animation-delay: 2.3s; opacity: 0.28;
}

@keyframes pulse {
  0%,100% { transform: scale(0.9); opacity: 0.35; }
  50% { transform: scale(1.05); opacity: 0.55; }
}

.showcase-content-box h3, .showcase-content-box p, .showcase-content-box li, .showcase-content-box a {
  position: relative; /* above blobs */
}

.showcase-content-box ul li i { filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4)); }

/* Shimmer effect on order button */
.showcase-content-box .btn-warning {
  position: relative;
  overflow: hidden;
}
.showcase-content-box .btn-warning::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 50%; height: 100%;
  background: linear-gradient(115deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  animation: shine 3.6s linear infinite;
}
@keyframes shine {
  0% { left: -60%; }
  55%,100% { left: 130%; }
}

/* Smooth entrance animation for columns */
#mobile-showcase .col-lg-6 { opacity: 0; transform: translateY(25px); animation: fadeUp 0.9s ease forwards; }
#mobile-showcase .col-lg-6:nth-child(2) { animation-delay: 0.25s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

#mobile-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.mobile-mockup {
  padding: 40px 0;
}

/* New Phone Container */
.phone-container {
  position: relative;
  display: inline-block;
  max-width: 250px;
  width: 100%;
}

.phone-frame-new {
  position: relative;
  background: linear-gradient(145deg, #2c3e50, #34495e);
  border-radius: 35px;
  padding: 15px;
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.4),
    inset 0 2px 4px rgba(255,255,255,0.1);
  transition: transform 0.3s ease;
}

/* Layered glow for phone */
.phone-frame-new::before, .phone-frame-new::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 30px;
  background: linear-gradient(140deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
  pointer-events: none;
  mix-blend-mode: overlay;
}
.phone-frame-new::after {
  inset: -15px;
  background: radial-gradient(circle at 30% 15%, rgba(255,255,255,0.18), rgba(255,255,255,0) 70%),
              radial-gradient(circle at 80% 85%, rgba(0,0,0,0.25), rgba(0,0,0,0));
  filter: blur(14px);
  opacity: 0.55;
  z-index: -1;
}

/* Turunkan posisi mockup ponsel pada layar besar */
@media (min-width: 992px) {
  .phone-container { 
    margin-top: 60px; /* geser turun */
  }
}

/* Sedikit margin pada tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
  .phone-container {
    margin-top: 30px;
  }
}

/* Pada mobile biarkan tanpa margin ekstra agar tetap muat */
@media (max-width: 767.98px) {
  .phone-container {
    margin-top: 10px;
  }
}

.phone-frame-new:hover {
  transform: scale(1.05);
}

.phone-screen-new {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

/* Light overlay sheen inside screen */
.phone-screen-new::before {
  content: '';
  position: absolute; inset:0;
  background: linear-gradient(120deg, rgba(255,255,255,0.12), rgba(255,255,255,0) 40%);
  pointer-events: none;
}

.woman-illustration {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.maskot-image {
  max-width: 90%;
  max-height: 70%;
  object-fit: contain;
  border-radius: 15px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.maskot-image:hover {
  transform: scale(1.05);
}

.app-overlay {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.7);
  width: 90%;
}

.app-title {
  margin: 0 0 5px 0;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}

.app-subtitle {
  margin: 0 0 10px 0;
  font-size: 12px;
  opacity: 0.9;
  color: rgba(255,255,255,0.8);
}

.app-button {
  margin-top: 8px;
}

.order-btn {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
}

.order-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-1px);
}

.phone-details {
  position: absolute;
}

.camera {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #333;
  border-radius: 50%;
  margin-left: 0px;
}

.speaker {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 4px;
  background: #333;
  border-radius: 2px;
  margin-left: 0px;
}

.home-button {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #333;
  border-radius: 50%;
  margin-left: 0px;
}

/* Animation for mobile showcase */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.phone-frame-new {
  animation: float 3s ease-in-out infinite;
}

/* Slight rotation parallax on hover */
.phone-container:hover .phone-frame-new {
  transform: rotateX(6deg) rotateY(-6deg) scale(1.04);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .phone-container {
    max-width: 200px;
  }
  
  .phone-screen-new {
    height: 320px;
  }
  
  #mobile-showcase .col-lg-6:first-child {
    margin-bottom: 30px;
  }
}

/* Button styling improvements */
.btn-warning {
  background: linear-gradient(45deg, #ffc107, #ff8c00);
  border: none;
  color: #000;
  font-weight: 600;
  text-shadow: none;
  transition: all 0.3s ease;
}

.btn-warning:hover {
  background: linear-gradient(45deg, #ff8c00, #ffc107);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
  color: #000;
}

.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.7);
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,255,255,0.2);
}

/* Hero Section */
#hero {
  position: relative;
  /* Light translucent overlay + background image. Vertical position 65% agar gambar terlihat lebih turun */
  background: linear-gradient(rgba(255,255,255,0.78), rgba(255,255,255,0.65)), url("../BG Gressoy.jpg") center 65% / cover no-repeat;
  background-attachment: fixed; /* parallax ringan (abaikan di beberapa mobile browser) */
  padding: 100px 0 80px 0; /* ruang lebih agar konten tidak mentok header */
  min-height: 90vh;
  display: flex;
  align-items: center;
}

/* OVERRIDE: perkecil logo bg agar seluruh gambar terlihat (tidak terpotong) */
#hero {
  /* Layer 1: gradient full cover, Layer 2: image diperkecil persentase */
  background-image: linear-gradient(rgba(255,255,255,0.78), rgba(255,255,255,0.65)), url("../BG Gressoy.jpg");
  background-repeat: no-repeat, no-repeat;
  background-position: center center, center 60%;
  background-size: cover, 55%; /* ubah 55% ini sesuai kebutuhan (40% - 65%) */
}

/* Penyesuaian responsif: pada layar kecil perbesar sedikit agar tetap terlihat */
@media (max-width: 991.98px) {
  #hero {
    background-size: cover, 75%;
    background-position: center center, center 65%;
  }
}

@media (max-width: 575.98px) {
  #hero {
    background-size: cover, 90%;
    background-position: center center, center 70%;
  }
}

#hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 20px;
}

#hero h2 {
  color: #6c757d;
  font-size: 24px;
  margin-bottom: 30px;
}

/* Section Styling */
.section-title {
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #28a745;
  margin-bottom: 10px;
}

.section-title p {
  color: #6c757d;
  font-size: 1.1rem;
}

/* Social Links */
.social-links a {
  color: #28a745;
  text-decoration: none;
  margin: 0 10px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #1e7e34;
  transform: translateY(-2px);
}

/* Social Media Section */
#social-media .row {
  justify-content: center;
}

#social-media .col-md-6 {
  padding: 20px;
}

#social-media h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

#social-media h4 i {
  margin-right: 8px;
  font-size: 1.2em;
}

#social-media iframe,
#social-media .tiktok-embed {
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

#social-media iframe:hover,
#social-media .tiktok-embed:hover {
  transform: translateY(-5px);
}

.btn-outline-success {
  border: 2px solid #28a745;
  color: #28a745;
  padding: 10px 20px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s;
}

.btn-outline-success:hover {
  background-color: #28a745;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Footer */
#footer {
  color: #444444;
  font-size: 14px;
  background: #f8f9fa;
  padding: 40px 0;
}

#footer h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

/* Button Styling */
.btn-success {
  background-color: #28a745;
  border-color: #28a745;
  padding: 12px 30px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-success:hover {
  background-color: #1e7e34;
  border-color: #1e7e34;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  #hero h1 {
    font-size: 36px;
  }
  
  #hero h2 {
    font-size: 20px;
  }
  
  .btn-success {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Mobile Navigation Styles */
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block !important;
    position: relative;
    z-index: 9999;
    font-size: 24px;
    cursor: pointer;
    touch-action: manipulation;
    padding: 5px;
  }
  
  .navbar ul {
    display: none;
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    flex-direction: column;
    padding: 20px;
    z-index: 9998;
    margin: 0;
    list-style: none;
  }
  
  .navbar ul.mobile-nav-active {
    display: flex !important;
  }
  
  .navbar ul li {
    margin: 10px 0;
  }
  
  .navbar ul li a {
    display: block;
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
  }
}

@media (min-width: 992px) {
  .mobile-nav-toggle {
    display: none !important;
  }
}
