@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #4a5fe8;
  --dark-blue: #2a3b8f;
  --light-blue: #6b7fff;
  --accent-orange: #ff9d42;
  --light-orange: #ffb366;
  --bg-light: #f5f7ff;
  --bg-white: #ffffff;
  --text-dark: #000000;
  --text-gray: #5f6368;
  --shadow-sm: 0 2px 8px rgba(74, 95, 232, 0.08);
  --shadow-md: 0 4px 16px rgba(74, 95, 232, 0.12);
  --shadow-lg: 0 8px 32px rgba(74, 95, 232, 0.16);
  --gradient-blue: linear-gradient(135deg, #4a5fe8 0%, #6b7fff 100%);
  --gradient-orange: linear-gradient(135deg, #ff9d42 0%, #ffb366 100%);
  --gradient-mixed: linear-gradient(135deg, #4a5fe8 0%, #ff9d42 100%);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
  line-height: 1.6;
  padding-top: 80px;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--gradient-blue);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
}

.navbar.scrolled {
  background: rgba(74, 95, 232, 0.95);
  box-shadow: var(--shadow-lg);
  padding: 0.6rem 0;
}

.navbar-brand img {
  height: 50px;
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05) rotate(2deg);
}

.navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  width: 60%;
}

.navbar-toggler {
  border: 2px solid #ffffff;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.3);
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FFFFFF' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: var(--gradient-blue);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 0 6rem;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 157, 66, 0.15);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: floatBlob 15s ease-in-out infinite;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(107, 127, 255, 0.2);
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
  animation: floatBlob 12s ease-in-out infinite reverse;
}

@keyframes floatBlob {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero-text {
  position: relative;
  z-index: 2;
  animation: slideInLeft 1s ease-out;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-section h1 b {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section .lead {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-section .lead strong {
  font-weight: 700;
  color: var(--accent-orange);
}

.hero-section .btn-warning {
  background: var(--gradient-orange);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(255, 157, 66, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hero-section .btn-warning::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero-section .btn-warning:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(255, 157, 66, 0.5);
}

.hero-section .btn-warning:hover::before {
  width: 300px;
  height: 300px;
}

.hero-img {
  position: relative;
  z-index: 2;
  animation: floatImage 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== WAVE DECORATION ===== */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60%;
  height: 4px;
  background: var(--gradient-orange);
  border-radius: 2px;
}

.text-warning {
  color: var(--dark-blue) !important;
}

/* ===== LAYANAN SECTION ===== */
.layanan-section {
  padding: 6rem 0;
  background: var(--bg-light);
  position: relative;
}

.service-card {
  border: none;
  border-radius: 24px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-orange);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-blue {
  background: linear-gradient(135deg, #4a5fe8 0%, #5a6fee 100%);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.service-card-blue:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(74, 95, 232, 0.3);
}

.service-card-yellow {
  background: linear-gradient(135deg, #ff9d42 0%, #ffb366 100%);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.service-card-yellow:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(255, 157, 66, 0.3);
}

.service-card .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.service-card .card-text {
  font-size: 1rem;
  text-align: center;
  opacity: 0.95;
  line-height: 1.7;
}

/* ===== TENTANG SECTION ===== */
.tentang-section {
  padding: 6rem 0;
  background: #ffffff;
}

.tentang-section img {
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease;
}

.tentang-section img:hover {
  transform: scale(1.05) rotate(-2deg);
}

.tentang-section .lead {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.9;
  margin-bottom: 2rem;
}

/* ===== ALUR SECTION ===== */
.alur-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.alur-card {
  border: none;
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  height: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.alur-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.alur-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-blue);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(74, 95, 232, 0.4);
  border: 4px solid #ffffff;
}

.alur-card-blue {
  background: linear-gradient(135deg, rgba(74, 95, 232, 0.08) 0%, rgba(107, 127, 255, 0.08) 100%);
}

.alur-card-yellow {
  background: linear-gradient(135deg, rgba(255, 157, 66, 0.08) 0%, rgba(255, 179, 102, 0.08) 100%);
}

.alur-card-yellow .alur-number {
  background: var(--gradient-orange);
}

.alur-card .card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.alur-card .card-text {
  font-size: 0.95rem;
  color: var(--text-white);
  line-height: 1.6;
}

/* ===== PRICELIST SECTION ===== */
.pricelist-section {
  padding: 6rem 0;
  background: #ffffff;
}

.pricelist-container {
  background: var(--bg-light);
  border-radius: 32px;
  padding: 3rem;
}

.pricelist-card-white {
  background: #ffffff;
  border: 2px solid rgba(74, 95, 232, 0.1);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.pricelist-card-white::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.pricelist-card-white:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: var(--light-blue);
}

.pricelist-card-white:hover::before {
  transform: scaleX(1);
}

.pricelist-card-white .card-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
}

.price-title {
  font-size: 0.9rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-unit {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin-top: -0.5rem;
}

.feature-list,
.feature-list-jurusan {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.feature-list li,
.feature-list-jurusan li {
  padding-left: 1.8rem;
  margin-bottom: 0.8rem;
  position: relative;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.feature-list li::before,
.feature-list-jurusan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: 800;
  font-size: 1.2rem;
}

.feature-list-jurusan li {
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.btn-primary-custom {
  background: var(--gradient-blue);
  border: none;
  padding: 0.9rem 2rem;
  font-weight: 700;
  color: #ffffff;
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(74, 95, 232, 0.3);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(74, 95, 232, 0.4);
  background: linear-gradient(135deg, #3a4fd8 0%, #5a6fee 100%);
  color: #ffffff;
}

/* ===== TESTIMONI SECTION ===== */
.testimoni-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.testimoni-card-white {
  background: #ffffff;
  border: 2px solid rgba(74, 95, 232, 0.1);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.testimoni-card-white:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--light-blue);
}

.testimoni-profile-pic {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-blue);
  box-shadow: 0 4px 12px rgba(74, 95, 232, 0.2);
}

.testimoni-quote {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 1.5rem 0;
  font-style: italic;
}

.testimoni-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.testimoni-image-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.testimoni-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(74, 95, 232, 0) 0%, rgba(74, 95, 232, 0.3) 70%, rgba(74, 95, 232, 0.6) 100%);
  opacity: 1;
  transition: opacity 0.4s ease;
}

.testimoni-card-white:hover .testimoni-overlay {
  opacity: 0;
}

.testimoni-card-white:hover .testimoni-image-wrapper img {
  transform: scale(1.05);
}

/* ===== ARTIKEL SECTION ===== */
.artikel-section {
  padding: 6rem 0;
  background: #ffffff;
}

.artikel-card {
  background: #ffffff;
  border: 2px solid rgba(74, 95, 232, 0.1);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.artikel-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--light-blue);
}

.artikel-card .card-img-top {
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.artikel-card:hover .card-img-top {
  transform: scale(1.1);
}

.artikel-card .card-body {
  padding: 2rem;
}

.artikel-card .card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1rem;
  line-height: 1.4;
  min-height: 60px;
}

.artikel-card .card-text {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer-section {
  background: linear-gradient(135deg, #2a3b8f 0%, #1a2b7f 100%);
  padding: 4rem 0 2rem;
  color: #ffffff;
}

.footer-logo {
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-about {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 8px;
  transform: translateX(5px);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-icon:hover {
  background: var(--accent-orange);
  transform: translateY(-5px) rotate(10deg);
  color: #ffffff;
}

.partner-logo {
  height: 40px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  filter: brightness(0) invert(1);
}

.partner-logo:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float-button:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.whatsapp-float-button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays */
.fade-in:nth-child(1) {
  transition-delay: 0.1s;
}
.fade-in:nth-child(2) {
  transition-delay: 0.2s;
}
.fade-in:nth-child(3) {
  transition-delay: 0.3s;
}
.fade-in:nth-child(4) {
  transition-delay: 0.4s;
}
.fade-in:nth-child(5) {
  transition-delay: 0.5s;
}
.fade-in:nth-child(6) {
  transition-delay: 0.6s;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
  .navbar {
    padding: 0.8rem 0;
  }

  .navbar-brand img {
    height: 40px;
  }

  .navbar-collapse {
    background: rgba(42, 59, 143, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1rem;
    margin-top: 1rem;
    box-shadow: var(--shadow-lg);
  }

  .navbar-nav .nav-link {
    text-align: center;
    margin: 0.5rem 0;
  }

  .hero-section {
    padding: 3rem 0 4rem;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section .lead {
    font-size: 1.1rem;
  }

  .hero-section .btn-warning {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  .hero-img {
    max-width: 80%;
    margin-top: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .layanan-section,
  .tentang-section,
  .alur-section,
  .pricelist-section,
  .testimoni-section,
  .artikel-section {
    padding: 4rem 0;
  }

  .service-card,
  .alur-card,
  .pricelist-card-white,
  .testimoni-card-white,
  .artikel-card {
    margin-bottom: 2rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .service-card .card-title {
    font-size: 1.3rem;
  }

  .alur-card {
    padding: 2rem 1.2rem;
  }

  .pricelist-container {
    padding: 2rem 1.5rem;
  }

  .price-amount {
    font-size: 3rem;
  }

  .price-unit {
    font-size: 1.8rem;
  }

  .whatsapp-float-button {
    width: 55px;
    height: 55px;
    font-size: 1.8rem;
    bottom: 20px;
    right: 20px;
  }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
  body {
    padding-top: 70px;
  }

  .hero-section {
    padding: 2rem 0 3rem;
    min-height: auto;
  }

  .hero-section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero-section .lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-section .btn-warning {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  .hero-img {
    max-width: 80%;
    margin-top: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .layanan-section,
  .tentang-section,
  .alur-section,
  .pricelist-section,
  .testimoni-section,
  .artikel-section {
    padding: 3rem 0;
  }

  .service-card,
  .alur-card,
  .pricelist-card-white,
  .testimoni-card-white,
  .artikel-card {
    margin-bottom: 2rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .service-card .card-title {
    font-size: 1.3rem;
  }

  .alur-card {
    padding: 2rem 1.2rem;
  }

  .pricelist-container {
    padding: 2rem 1.5rem;
  }

  .price-amount {
    font-size: 3rem;
  }

  .price-unit {
    font-size: 1.8rem;
  }

  .whatsapp-float-button {
    width: 55px;
    height: 55px;
    font-size: 1.8rem;
    bottom: 20px;
    right: 20px;
  }
}

/* Mobile Small (max-width: 575px) */
@media (max-width: 575px) {
  .hero-section h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .hero-section .lead {
    font-size: 0.95rem;
  }

  .hero-section .btn-warning {
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .service-card .card-title {
    font-size: 1.2rem;
  }

  .service-card .card-text {
    font-size: 0.9rem;
  }

  .alur-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .alur-card .card-title {
    font-size: 1.1rem;
  }

  .pricelist-card-white .card-title {
    font-size: 1.5rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .price-unit {
    font-size: 1.5rem;
  }

  .testimoni-profile-pic {
    width: 45px;
    height: 45px;
  }

  .artikel-card .card-img-top {
    height: 180px;
  }

  .footer-section {
    padding: 3rem 0 1.5rem;
  }
}

/* Mobile Extra Small (max-width: 390px) */
@media (max-width: 390px) {
  .hero-section h1 {
    font-size: 1.5rem;
  }

  .hero-section .lead {
    font-size: 0.9rem;
  }

  .hero-section .btn-warning {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .service-card {
    padding: 1.75rem 1.2rem;
  }

  .alur-number {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .pricelist-container {
    padding: 1.5rem 1rem;
  }

  .whatsapp-float-button {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-gradient-blue {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-orange {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-blue {
  background: var(--gradient-blue);
}

.bg-gradient-orange {
  background: var(--gradient-orange);
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-blue);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-blue);
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== SELECTION STYLING ===== */
::selection {
  background: var(--accent-orange);
  color: #ffffff;
}

::-moz-selection {
  background: var(--accent-orange);
  color: #ffffff;
}
