/* Warna biru Skintific */
.text-primary-blue {
  color: #2a5d9f !important;
}

.text-primary-blue:hover {
  color: #589de3 !important;
}

/* Override Bootstrap text-danger untuk menggunakan warna biru Skintific */
.text-danger {
  color: #2a5d9f !important;
}

.text-danger:hover {
  color: #589de3 !important;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1050;
  background-color: #ffffff !important;
}

.navbar .navbar-brand {
  font-size: 26px;
}

.navbar-nav .nav-link {
  font-size: 16px;
}

.icon-circle {
  width: 36px;
  height: 36px;
  background-color: #cce7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.icon-circle:hover {
  background-color: #a4d0f4;
}

/* Hamburger Menu Styles */
.hamburger-menu {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hamburger-menu:hover {
  transform: scale(1.1);
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #2a5d9f;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 2px;
  transform-origin: center;
}

/* Hamburger Animation - Transform to X */
.navbar-toggler.collapsed .hamburger-line {
  background-color: #2a5d9f;
}

.navbar-toggler.collapsed .hamburger-line:nth-child(1) {
  transform: rotate(0deg) translateY(0);
}

.navbar-toggler.collapsed .hamburger-line:nth-child(2) {
  opacity: 1;
  transform: scale(1) translateX(0);
}

.navbar-toggler.collapsed .hamburger-line:nth-child(3) {
  transform: rotate(0deg) translateY(0);
}

/* When menu is OPEN (not collapsed) - show X */
.navbar-toggler:not(.collapsed) .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background-color: #2a5d9f;
}

.navbar-toggler:not(.collapsed) .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0) translateX(-20px);
}

.navbar-toggler:not(.collapsed) .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background-color: #2a5d9f;
}

/* Bounce effect when toggling */
.navbar-toggler:active .hamburger-menu {
  transform: scale(0.9);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.4s ease-in-out;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .navbar-collapse.show {
    transform: translateY(0);
    opacity: 1;
  }
  
  .navbar-collapse.collapsing {
    transform: translateY(-10px);
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
  }
  
  .navbar-nav {
    text-align: left;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    font-size: 18px;
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
    text-align: left;
    transform: translateX(-30px);
    opacity: 0;
    animation: slideInLeft 0.5s ease-out forwards;
  }
  
  .navbar-nav .nav-item:nth-child(1) .nav-link {
    animation-delay: 0.1s;
  }
  
  .navbar-nav .nav-item:nth-child(2) .nav-link {
    animation-delay: 0.2s;
  }
  
  .navbar-nav .nav-item:nth-child(3) .nav-link {
    animation-delay: 0.3s;
  }
  
  .navbar-nav .nav-item:nth-child(4) .nav-link {
    animation-delay: 0.4s;
  }
  
  .navbar-nav .nav-item:nth-child(5) .nav-link {
    animation-delay: 0.5s;
  }
  
  .navbar-nav .nav-link:hover {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding-left: 1.5rem;
    transform: translateX(10px);
    box-shadow: 0 2px 8px rgba(42, 93, 159, 0.1);
  }
  
  .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: none;
  }
  
  /* Mobile icons animation */
  .d-flex.d-lg-none {
    transform: translateY(20px);
    opacity: 0;
    animation: slideInUp 0.6s ease-out 0.6s forwards;
  }
}

/* Keyframe Animations */
@keyframes slideInLeft {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Tablet Specific Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .navbar .navbar-brand {
    font-size: 28px;
  }
  
  .navbar-nav .nav-link {
    font-size: 17px;
  }
  
  .hamburger-menu {
    width: 26px;
    height: 20px;
  }
  
  .hamburger-line {
    height: 3px;
  }
}

/* Mobile Specific Styles */
@media (max-width: 767.98px) {
  .navbar {
    padding: 0.75rem 1rem;
  }
  
  .navbar .navbar-brand {
    font-size: 24px;
  }
  
  .navbar-nav .nav-link {
    font-size: 16px;
    padding: 0.5rem 1rem;
  }
  
  .icon-circle {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

/* Small Mobile Styles */
@media (max-width: 575.98px) {
  .navbar {
    padding: 0.5rem 0.75rem;
  }
  
  .navbar .navbar-brand {
    font-size: 22px;
  }
  
  .hamburger-menu {
    width: 22px;
    height: 16px;
  }
  
  .icon-circle {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

/* Extra small mobile */
@media (max-width: 360px) {
  .hero-full-section {
    height: 32vh;
    min-height: 170px;
    margin-top: -35px;
    padding-top: 45px;
  }
  
  .hero-products-container {
    transform: rotate(-15deg) translateY(25px);
  }
  
  .hero-product-item {
    width: 60px;
    height: 120px;
    margin-left: -12px;
  }
  
  .hero-product-item:first-child {
    margin-left: 0;
  }
}

/* iPhone 12 Pro and similar (390px width) */
@media (max-width: 390px) and (min-width: 361px) {
  .hero-full-section {
    height: 35vh;
    min-height: 180px;
    margin-top: -35px;
    padding-top: 50px;
  }
  
  .hero-products-container {
    transform: rotate(-15deg) translateY(10px);
  }
  
  .hero-product-item {
    width: 65px;
    height: 130px;
    margin-left: -13px;
  }
}

/* iPhone 13 Pro and similar (393px width) */
@media (max-width: 393px) and (min-width: 391px) {
  .hero-full-section {
    height: 35vh;
    min-height: 180px;
    margin-top: -35px;
    padding-top: 50px;
  }
  
  .hero-products-container {
    transform: rotate(-15deg) translateY(10px);
  }
  
  .hero-product-item {
    width: 65px;
    height: 130px;
    margin-left: -13px;
  }
}

/* iPhone 14 Pro Max and similar (430px width) */
@media (max-width: 430px) and (min-width: 415px) {
  .hero-full-section {
    height: 35vh;
    min-height: 190px;
    margin-top: -35px;
    padding-top: 50px;
  }
  
  .hero-products-container {
    transform: rotate(-15deg) translateY(15px);
  }
  
  .hero-product-item {
    width: 70px;
    height: 140px;
    margin-left: -14px;
  }
}

/* Galaxy S20/S21 and similar (412px width) */
@media (max-width: 414px) and (min-width: 394px) {
  .hero-full-section {
    height: 35vh;
    min-height: 185px;
    margin-top: -35px;
    padding-top: 50px;
  }
  
  .hero-products-container {
    transform: rotate(-15deg) translateY(12px);
  }
  
  .hero-product-item {
    width: 68px;
    height: 135px;
    margin-left: -13px;
  }
}

/* Smooth Transitions */
.navbar-collapse {
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Hover Effects for Desktop */
@media (min-width: 992px) {
  .navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover {
    transform: translateY(-2px);
  }
  
  .navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #2a5d9f;
    transition: all 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover:before {
    width: 100%;
    left: 0;
  }
}

.hero-full-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg,  #2a5d9f 0%, #f5f1ed 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -80px;
  padding-top: 80px;
}

.hero-products-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  transform: rotate(-15deg);
  z-index: 1;
}

.hero-product-item {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 200px;
  height: 400px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
  transition: all 0.5s ease;
  cursor: pointer;
  margin-left: -40px; /* Overlap gambar agar saling berdempetan */
  z-index: 1;
}

/* First item tidak perlu margin-left negatif */
.hero-product-item:first-child {
  margin-left: 0;
}

.hero-product-item:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2)) brightness(1.1);
  z-index: 5;
}

/* Floating animations untuk semua produk */
.hero-product-item:nth-child(1) { animation: float1 6s ease-in-out infinite; }
.hero-product-item:nth-child(2) { animation: float2 7s ease-in-out infinite; }
.hero-product-item:nth-child(3) { animation: float3 8s ease-in-out infinite; }
.hero-product-item:nth-child(4) { animation: float4 6.5s ease-in-out infinite; }
.hero-product-item:nth-child(5) { animation: float5 7.5s ease-in-out infinite; }
.hero-product-item:nth-child(6) { animation: float1 5.5s ease-in-out infinite; }
.hero-product-item:nth-child(7) { animation: float2 8.5s ease-in-out infinite; }
.hero-product-item:nth-child(8) { animation: float3 7s ease-in-out infinite; }
.hero-product-item:nth-child(9) { animation: float4 6s ease-in-out infinite; }
.hero-product-item:nth-child(10) { animation: float5 9s ease-in-out infinite; }

/* Floating animations */
@keyframes float1 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes float3 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes float4 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}

@keyframes float5 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* Responsive for laptops - sedikit turun */
@media (min-width: 1025px) and (max-width: 1440px) {
  .hero-products-container {
    transform: rotate(-15deg) translateY(65px);
  }
}

/* Responsive for large tablets */
@media (max-width: 1024px) {
  .hero-full-section {
    height: 35vh;
    min-height: 220px;
    margin-top: -70px;
    padding-top: 70px;
  }
  
  .hero-products-container {
    transform: rotate(-15deg) translateY(50px);
  }
  
  .hero-product-item {
    width: 120px;
    height: 240px;
    margin-left: -24px;
  }
}

/* Responsive for tablets */
@media (max-width: 768px) {
  .hero-full-section {
    height: 30vh;
    min-height: 190px;
    margin-top: -65px;
    padding-top: 65px;
  }
  
  .hero-products-container {
    transform: rotate(-15deg) translateY(60px);
  }
  
  .hero-product-item {
    width: 100px;
    height: 200px;
    margin-left: -20px;
  }
}

/* Mobile phones */
@media (max-width: 576px) {
  .hero-full-section {
    height: 32vh;
    min-height: 180px;
    margin-top: -35px;
    padding-top: 50px;
  }
  
  .hero-products-container {
    transform: rotate(-15deg) translateY(35px);
  }
  
  .hero-product-item {
    width: 70px;
    height: 140px;
    margin-left: -14px;
  }
}

/* Large mobile phones (iPhone 12 Pro Max, Galaxy Note series) */
@media (max-width: 480px) and (min-height: 700px) {
  .hero-full-section {
    height: 28vh;
    min-height: 170px;
  }
  
  .hero-products-container {
    transform: rotate(-15deg) translateY(25px);
  }
}

/* Standard mobile phones */
@media (max-width: 430px) {
  .hero-full-section {
    height: 30vh;
    min-height: 160px;
    margin-top: -30px;
    padding-top: 45px;
  }
  
  .hero-products-container {
    transform: rotate(-15deg) translateY(30px);
  }
  
  .hero-product-item {
    width: 65px;
    height: 130px;
    margin-left: -13px;
  }
}

/* Small mobile phones */
@media (max-width: 390px) {
  .hero-full-section {
    height: 28vh;
    min-height: 150px;
    margin-top: -25px;
    padding-top: 40px;
  }
  
  .hero-products-container {
    transform: rotate(-15deg) translateY(20px);
  }
  
  .hero-product-item {
    width: 60px;
    height: 120px;
    margin-left: -12px;
  }
}

/* Extra small mobile phones */
@media (max-width: 360px) {
  .hero-full-section {
    height: 26vh;
    min-height: 140px;
    margin-top: -20px;
    padding-top: 35px;
  }
  
  .hero-products-container {
    transform: rotate(-15deg) translateY(15px);
  }
  
  .hero-product-item {
    width: 55px;
    height: 110px;
    margin-left: -11px;
  }
}

/* Device-specific adjustments */
/* iPhone 12 Pro, iPhone 13 Pro, iPhone 14 Pro */
@media (max-width: 393px) and (min-height: 790px) {
  .hero-full-section {
    height: 28vh;
    min-height: 160px;
  }
  
  .hero-products-container {
    transform: rotate(-15deg) translateY(27px);
  }
}

/* iPhone 12 Pro Max, iPhone 13 Pro Max, iPhone 14 Pro Max */
@media (max-width: 430px) and (min-height: 920px) {
  .hero-full-section {
    height: 26vh;
    min-height: 170px;
  }
  
  .hero-products-container {
    transform: rotate(-15deg) translateY(23px);
  }
}

/* iPhone SE (3rd generation) */
@media (max-width: 375px) and (min-height: 667px) {
  .hero-full-section {
    height: 30vh;
    min-height: 150px;
  }
  
  .hero-products-container {
    transform: rotate(-15deg) translateY(25px);
  }
}

/* Galaxy S20, S21, S22 */
@media (max-width: 412px) and (min-height: 800px) {
  .hero-full-section {
    height: 28vh;
    min-height: 165px;
  }
  
  .hero-products-container {
    transform: rotate(-15deg) translateY(25px);
  }
}

/* Galaxy S20 Ultra, S21 Ultra, S22 Ultra */
@media (max-width: 412px) and (min-height: 915px) {
  .hero-full-section {
    height: 26vh;
    min-height: 170px;
  }
  
  .hero-products-container {
    transform: rotate(-15deg) translateY(20px);
  }
}

/* Pixel 6, Pixel 7 */
@media (max-width: 412px) and (min-height: 869px) {
  .hero-full-section {
    height: 27vh;
    min-height: 165px;
  }
  
  .hero-products-container {
    transform: rotate(-15deg) translateY(23px);
  }
}

/* End Hero Full Product Section */

/* Body adjustment for fixed navbar */
body {
  padding-top: 80px; /* Adjust based on navbar height */
}

@media (max-width: 991.98px) {
  body {
    padding-top: 70px;
  }
}

@media (max-width: 767.98px) {
  body {
    padding-top: 65px;
  }
}

/* Section 2 */
body {
  background-color: #fff9f9;
  font-family: 'Segoe UI', sans-serif;
}

.hero-section {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.hero-desc {
  color: #555;
  font-size: 1rem;
}

.hero-price {
  margin-top: 10px;
  font-size: 1.25rem;
}

.bunga {
  position: absolute;
  width: 120px;
  z-index: 0;
}

.bunga-kiri {
  top: 0;
  left: 0;
}

.bunga-kanan {
  top: 0;
  right: 0;
}

.produk-section {
  background: linear-gradient(135deg, #f5f1ed 0%, #2a5d9f 100%);
}

.card-produk {
  background-color: #fff0f5;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
  overflow: hidden;
  border: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-produk::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.card-produk:hover::before {
  left: 100%;
}

.card-produk:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.circle-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: relative;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    inset 0 -5px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.circle-img:hover {
  transform: rotateY(15deg) rotateX(5deg);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.15),
    inset 0 -8px 15px rgba(0, 0, 0, 0.08);
}

.circle-img img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.circle-img:hover img {
  transform: scale(1.1) rotate(5deg);
}

.makeup-serong {
  transform: rotate(-10deg);
  animation: floatImage 3s ease-in-out infinite;
}

.makeup-serong:hover {
  animation-play-state: paused;
  transform: rotate(0deg) rotateY(15deg) rotateX(5deg);
}

.reflection {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4) 0%,
    transparent 30%,
    transparent 70%,
    rgba(255, 255, 255, 0.2) 100%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
}

/* Card Content Animations */
.card-produk h6 {
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.card-produk h5 {
  transition: all 0.3s ease;
  color: #2c3e50;
  font-family: 'Segoe UI', 'Roboto', 'Arial', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
  line-height: 1.4;
}

.card-produk p {
  transition: all 0.3s ease;
  color: #6c757d;
  line-height: 1.5;
  font-family: 'Segoe UI', 'Roboto', 'Arial', sans-serif;
}

.card-produk small {
  transition: all 0.3s ease;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.card-produk:hover h6 {
  transform: translateY(-2px);
  color: #e74c3c;
}

.card-produk:hover h5 {
  transform: translateY(-3px);
  color: #2c3e50;
}

.card-produk:hover p {
  transform: translateY(-2px);
  color: #495057;
}

.card-produk:hover small {
  transform: translateY(-2px) scale(1.05);
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  background-clip: text;
  -webkit-background-clip: text;
}

/* Keyframe Animations */
@keyframes floatImage {
  0%, 100% {
    transform: rotate(-10deg) translateY(0px);
  }
  50% {
    transform: rotate(-10deg) translateY(-10px);
  }
}

/* Card Entrance Animation */
.card-produk {
  animation: cardSlideUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(50px);
}

.card-produk:nth-child(1) {
  animation-delay: 0.1s;
}

.card-produk:nth-child(2) {
  animation-delay: 0.3s;
}

.card-produk:nth-child(3) {
  animation-delay: 0.5s;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .circle-img {
    width: 120px;
    height: 120px;
  }
  
  .circle-img img {
    width: 100px;
    height: 100px;
  }
  
  .card-produk {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .circle-img {
    width: 100px;
    height: 100px;
  }
  
  .circle-img img {
    width: 80px;
    height: 80px;
  }
  
  .card-produk {
    padding: 1.5rem !important;
  }
  
  .produk-section {
    padding: 2rem 0;
  }
}

/* Custom Sign In Button */
.btn-signin {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #2a5d9f, #589de3);
  color: white !important;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(42, 93, 159, 0.3);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-signin::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #589de3, #78b3eb);
  transition: left 0.5s ease;
  z-index: -1;
}

.btn-signin:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 93, 159, 0.4);
  color: white !important;
}

.btn-signin:hover::before {
  left: 0;
}

.btn-signin:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(42, 93, 159, 0.3);
}

/* Mobile responsive untuk button Sign In */

/* Section 3 - 6 Produk */
.empat-produk {
  background-color: #f8f9fa;
  padding: 3rem 0;
}

.produk-item {
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.produk-item:hover {
  transform: translateY(-5px);
}

.produk-img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  border-radius: 12px;
  transition: all 0.3s ease;
}

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

.produk-item h5 {
  font-size: 0.95rem;
  margin-top: 0.8rem;
  color: #2c3e50;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', 'Roboto', 'Arial', sans-serif;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.4;
}

.produk-item:hover h5 {
  color: #2a5d9f;
}

/* Responsive untuk section 3 */
@media (max-width: 1200px) {
  .produk-img {
    height: 130px;
  }
}

@media (max-width: 992px) {
  .produk-img {
    height: 120px;
  }
}

@media (max-width: 768px) {
  .produk-img {
    height: 110px;
  }
}

@media (max-width: 576px) {
  .produk-img {
    height: 100px;
  }
  
  .produk-item h5 {
    font-size: 1rem;
  }
}

/* Mobile responsive untuk button Sign In */

/* Section 4 */

body {
  background-color: #f5ede9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.testimonial-grid {
  background: linear-gradient(135deg, #2a5d9f 0%, #f5f1ed 100%);
  color: #333;
  padding: 60px 0;
}

/* Styling untuk judul section 4 */
.testimonial-grid h2 {
  color: white !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.testimonial-grid .text-muted {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.testimonial-section {
  background: white;
  color: #333;
}

.bg-pink {
  background: linear-gradient(135deg, #2a5d9f, #589de3);
  color: white;
  border-radius: 12px;
}

.btn-pink {
  background: linear-gradient(135deg, #2a5d9f, #589de3);
  border: none;
  border-radius: 25px;
  padding: 10px 30px;
  color: white;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-pink:hover {
  background: linear-gradient(135deg, #589de3, #2a5d9f);
  color: white;
}

.circle-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  justify-content: start;
  margin-top: 15px;
}

.icon-circle {
  width: 40px;
  height: 40px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s;
}

.icon-circle:hover {
  background-color: #589de3;
  color: #000;
}

.flower-img {
  max-width: 200px;
  height: auto;
  animation: floatFlower 4s ease-in-out infinite;
  transform-origin: center bottom;
  transition: transform 0.3s ease;
}

.flower-img:hover {
  animation-play-state: paused;
  transform: scale(1.1) rotate(5deg);
}

/* Keyframe untuk animasi flower */
@keyframes floatFlower {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  25% { 
    transform: translateY(-15px) rotate(-2deg) scale(1.02);
  }
  50% { 
    transform: translateY(-25px) rotate(0deg) scale(1.05);
  }
  75% { 
    transform: translateY(-15px) rotate(2deg) scale(1.02);
  }
}

/* Keyframe untuk animasi flower mobile */
@keyframes floatFlowerMobile {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  50% { 
    transform: translateY(-10px) rotate(1deg) scale(1.02);
  }
}

@media (max-width: 767px) {
  .flower-img {
    max-width: 150px;
    margin-top: 20px;
    animation: floatFlowerMobile 3s ease-in-out infinite;
  }
  
  .flower-img:hover {
    transform: scale(1.05) rotate(3deg);
  }
  
  /* Responsive untuk ikon circle */
  .circle-icons {
    justify-content: center !important;
    gap: 12px;
    margin-top: 20px;
  }
  
  .icon-circle {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .icon-circle i {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .circle-icons {
    gap: 10px;
    margin-top: 15px;
  }
  
  .icon-circle {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  
  .icon-circle i {
    font-size: 12px;
  }
}

/* Perbaikan kontras teks untuk section 5 */
.testimonial-section h2 {
  color: #2a5d9f !important;
  text-shadow: none;
}

.testimonial-section h4 {
  color: #2a5d9f !important;
  text-shadow: none;
}

.testimonial-section .text-muted {
  color: #6c757d !important;
  text-shadow: none;
}

/* Section 5 */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

.testimonial-grid {
  background: linear-gradient(135deg, #2a5d9f 0%, #f5f1ed 100%);
  color: #333;
  padding: 60px 0;
}

/* Styling untuk judul section 4 */
.testimonial-grid h2 {
  color: white !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.testimonial-grid .text-muted {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.pink-box {
  background: linear-gradient(135deg, #2a5d9f 0%, #589de3 100%);
  color: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(42, 93, 159, 0.25);
  min-height: 100%;
  padding: 2.5rem;
  border: none;
  position: relative;
  overflow: hidden;
}

.pink-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  z-index: 1;
}

.pink-box > * {
  position: relative;
  z-index: 2;
}

.text-pink {
  color: #2a5d9f !important;
  font-weight: 700;
}

/* Styling khusus untuk section 4 testimonial */
.testimonial-grid h6 {
  color: white !important;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.testimonial-grid p {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  font-size: 14px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.testimonial-grid small {
  color: rgba(255, 255, 255, 0.8) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.pink-box h2, .pink-box h3, .pink-box h5 {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.pink-box p {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  line-height: 1.6;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.2);
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 767px) {
  .testimonial-grid {
    padding: 40px 0;
  }
  
  .pink-box {
    text-align: center;
    padding: 2rem 1.5rem;
    margin: 10px;
    border-radius: 12px;
  }

  .testimonial-card {
    margin-bottom: 20px;
  }

  .testimonial-img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .testimonial-grid {
    padding: 30px 0;
  }
  
  .pink-box {
    padding: 1.5rem 1rem;
    margin: 8px;
  }
  
  .testimonial-img {
    width: 45px;
    height: 45px;
  }
}

/* Responsive bunga di section 2 */
.hero-section .bunga {
  position: absolute;
  top: 0;
  width: 120px;
  height: auto;
  z-index: 1;
}
.bunga-kiri {
  left: 0;
}
.bunga-kanan {
  right: 0;
}
@media (max-width: 768px) {
  .hero-section .bunga {
    width: 60px;
    top: 10px;
  }
}
@media (max-width: 480px) {
  .hero-section .bunga {
    width: 40px;
    top: 20px;
  }
}

html {
  scroll-behavior: smooth;
}

/* Hapus custom style untuk .scroll-top-btn agar Bootstrap murni digunakan */
.scroll-top-btn {
  background: linear-gradient(135deg, #2a5d9f 0%, #589de3 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
}

.scroll-top-btn:hover {
  background: linear-gradient(135deg, #589de3 0%, #78b3eb 100%);
}