/* =========================================================
   Paradita Sertifikasi - Main Stylesheet
   Tema: Konstruksi, Industri, Profesional
   Color Scheme: Navy Blue, Cyan Blue, Sky Blue
   ========================================================= */

:root {
  --primary: #0D2F92;
  /* Navy Blue */
  --primary-dark: #0A2370;
  /* Darker Navy */
  --primary-light: #1e3a8a;
  --accent: #39B5E8;
  /* Sky Blue (sebagai aksen utama) */
  --accent-dark: #1696D2;
  /* Cyan Blue (untuk hover/dark) */
  --accent-light: #7BC9EF;
  --secondary: #1696D2;
  /* Cyan Blue */
  --dark: #10203A;
  /* Text Primary */
  --gray-900: #10203A;
  /* Text Primary */
  --gray-800: #1A2C4E;
  --gray-700: #2D3A5E;
  --gray-600: #5F6B7A;
  /* Text Secondary */
  --gray-500: #7A8798;
  --gray-400: #9AA5B5;
  --gray-300: #BCC6D0;
  --gray-200: #DCE1E8;
  --gray-100: #EBEFF4;
  --gray-50: #F7F9FC;
  /* Background */
  --white: #FFFFFF;
  --success: #10b981;
  --danger: #ef4444;

  --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --shadow-accent: 0 10px 30px -10px rgba(57, 181, 232, 0.4);
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #1696D2;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0D2F92;
}

/* ===== FAQ SECTION STYLES ===== */
.faq-section {
  background: var(--white);
  padding: 80px 0;
}

.faq-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.faq-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 20px 24px;
  background: var(--white);
  font-weight: 700;
  font-size: 16px;
  color: var(--gray-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.faq-question:hover {
  background: var(--gray-50);
  color: var(--primary);
}

.faq-question.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
}

.faq-question i {
  font-size: 20px;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-question.active i {
  color: white;
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--gray-50);
  border-top: 1px solid transparent;
}

.faq-answer.active {
  padding: 20px 24px;
  max-height: 500px;
  border-top-color: var(--gray-200);
}

.faq-answer p {
  color: var(--gray-700);
  line-height: 1.7;
  margin: 0;
  font-size: 14px;
}

/* FAQ Category Badge (opsional) */
.faq-category {
  display: inline-block;
  background: rgba(57, 181, 232, 0.1);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

/* FAQ dengan icon sebelum pertanyaan */
.faq-question .question-icon {
  margin-right: 12px;
  color: var(--accent);
  font-size: 20px;
}

.faq-question.active .question-icon {
  color: white;
}

/* Layout 2 kolom untuk FAQ (opsional) */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 14px;
  }

  .faq-answer.active {
    padding: 16px 20px;
  }
}

/* ===== FLIP CARD STYLES ===== */
.flip-card {
  background-color: transparent;
  width: 100%;
  height: 480px;
  perspective: 1000px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s ease-in-out;
  transform-style: preserve-3d;
  border-radius: 20px;
}

.flip-card-inner.flipped {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.flip-card-front {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  z-index: 2;
}

.flip-card-back {
  background: var(--white);
  transform: rotateY(180deg);
  z-index: 1;
}


/* Tombol balik */
.flip-back-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

.flip-back-btn:hover {
  background: var(--accent-dark);
  transform: scale(1.05);
}



.testi-avatar {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;

  border-radius: 50%;

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

  flex-shrink: 0;

  background: #383696;
  color: #fff;
  font-weight: 600;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-600);
  background: var(--gray-50);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--gray-900);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* ===== SECTION TITLE ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(57, 181, 232, 0.1);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid rgba(57, 181, 232, 0.2);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
  font-weight: 800;
}

.section-title .highlight {
  background: linear-gradient(120deg, var(--accent) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: var(--gray-500);
  font-size: 1.075rem;
  max-width: 700px;
  margin: 0 auto;
}

section {
  padding: 100px 0;
  position: relative;
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--primary-dark);
  color: var(--gray-300);
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar a {
  color: var(--gray-300);
  margin-right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar a:hover {
  color: var(--accent);
}

.topbar .bi {
  color: var(--accent);
}

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  padding: 16px 0;
  transition: all 0.3s ease;
  z-index: 1030;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

.navbar-brand img {
  height: 55px;
}
/* Partner logos di footer */
.footer-partners {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  margin-top: 15px;
  background-color: white;
  padding: 10px;
}

.partner-logo {
  height: 45px;
  width: auto;
  
  opacity: 0.8;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
 
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 576px) {
  .partner-logos {
    gap: 20px;
  }
  .partner-logo {
    height: 35px;
  }
}

.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--gray-700) !important;
  padding: 10px 16px !important;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary) !important;
}

.navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.btn-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 11px 26px !important;
  border-radius: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--accent);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-accent);
}

.btn-cta:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  color: var(--white) !important;
}

.btn-outline-cta {
  background: transparent;
  color: var(--primary);
  padding: 11px 26px;
  border-radius: 10px;
  font-weight: 700;
  border: 2px solid var(--gray-200);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-outline-cta:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 120px 0 100px;
  background: linear-gradient(135deg,
      var(--primary-dark) 0%,
      var(--primary) 50%,
      var(--secondary) 100%);
  color: var(--white);
  overflow: hidden;
}

/* IMAGE LAYER */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;

  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url('../img/bg.jpg') center/cover no-repeat;

  opacity: 0.35;
  mix-blend-mode: screen;

  pointer-events: none;
}

/* GLOW EFFECT */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;

  background-image:
    radial-gradient(circle at 20% 30%, rgba(57, 181, 232, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(22, 150, 210, 0.3) 0%, transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);

  background-size:
    auto,
    auto,
    60px 60px,
    60px 60px;

  mask-image: radial-gradient(ellipse at center,
      black 30%,
      transparent 80%);

  pointer-events: none;
}

/* BIAR CONTENT DI ATAS SEMUA */
.hero>* {
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(57, 181, 232, 0.15);
  border: 1px solid rgba(57, 181, 232, 0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
}

.hero-badge .pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.4;
  animation: pulse 1.5s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0.6;
  }

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

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 800;
  line-height: 1.1;
}

.hero h1 .accent {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.4;
}

.hero p.lead {
  font-size: 1.125rem;
  color: var(--gray-300);
  margin-bottom: 36px;
  max-width: 580px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-hero-primary {
  background: var(--accent);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  box-shadow: var(--shadow-accent);
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.hero-trust {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-300);
  font-size: 14px;
}

.hero-trust-item .bi {
  color: var(--accent);
  font-size: 18px;
}

/* Hero Visual Side */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-card-main {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.hero-card-main::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(57, 181, 232, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px;
  text-align: left;
}

.hero-stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  color: var(--gray-300);
  font-size: 13px;
  font-weight: 500;
}

.hero-cert-list {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
}

.hero-cert-item .bi {
  width: 26px;
  height: 26px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Floating decoration */
.hero-deco-1 {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: var(--accent);
  border-radius: 20px;
  opacity: 0.15;
  transform: rotate(15deg);
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.hero-deco-2 {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 100px;
  height: 100px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0.2;
  z-index: 1;
  animation: float 7s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(15deg);
  }

  50% {
    transform: translateY(-20px) rotate(20deg);
  }
}

/* ===== TRUSTED SECTION ===== */
.trusted-bar {
  background: var(--white);
  padding: 36px 0;
  border-bottom: 1px solid var(--gray-200);
}

.trusted-label {
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}

.trusted-items {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.trusted-item {
  color: var(--gray-600);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.trusted-item:hover {
  opacity: 1;
}

.trusted-item .bi {
  color: var(--accent);
  font-size: 20px;
}

/* ===== ABOUT ===== */
.about {
  background: var(--white);
}

.about-image-wrap {
  position: relative;
  padding: 20px;
}

.about-image {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 24px;
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}

.about-image-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 40px;
}

.about-image-icon {
  width: 110px;
  height: 110px;
  background: rgba(57, 181, 232, 0.2);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.about-image-icon .bi {
  font-size: 56px;
  color: var(--accent);
}

.about-image-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.about-tag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

.about-floating-card {
  position: absolute;
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}

.about-floating-card.fc-1 {
  top: 40px;
  left: -10px;
}

.about-floating-card.fc-2 {
  bottom: 40px;
  right: -10px;
}

.about-fc-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.about-fc-icon.alt {
  background: var(--primary);
}

.about-fc-number {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.about-fc-label {
  font-size: 12px;
  color: var(--gray-600);
  margin-top: 2px;
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--gray-700);
  font-size: 15px;
}

.about-features li .bi {
  width: 28px;
  height: 28px;
  background: rgba(57, 181, 232, 0.15);
  color: var(--accent-dark);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
}

/* ===== SERVICES ===== */
.services {
  background: var(--gray-50);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(57, 181, 232, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(13, 47, 146, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.services .container {
  position: relative;
}

.service-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  position: relative;
}

.service-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border: 2px dashed rgba(57, 181, 232, 0.3);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover .service-icon::after {
  opacity: 1;
}

.service-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.service-desc {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  margin-top: auto;
}

.service-link:hover {
  color: var(--primary);
  gap: 10px;
}

.service-category-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== WHY US ===== */
.why-us {
  background: var(--white);
  position: relative;
}

.why-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.why-card:hover {
  border-color: var(--gray-200);
  background: var(--gray-50);
  transform: translateY(-4px);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(57, 181, 232, 0.15) 0%, rgba(57, 181, 232, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.why-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  opacity: 0.2;
  border-style: dashed;
}

.why-icon .bi {
  font-size: 36px;
  color: var(--accent-dark);
}

.why-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gray-900);
}

.why-desc {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== PROCESS ===== */
.process {
  background: var(--primary-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(57, 181, 232, 0.1) 0%, transparent 40%);
}

.process .section-title {
  color: var(--white);
}

.process .section-subtitle {
  color: var(--gray-400);
}

.process-step {
  position: relative;
  text-align: center;
  padding: 24px 16px;
}

.process-number {
  width: 70px;
  height: 70px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  position: relative;
  z-index: 2;
}

.process-number::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: rgba(57, 181, 232, 0.2);
  border-radius: 50%;
  z-index: -1;
}

.process-title {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-desc {
  color: var(--gray-400);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--gray-50);
}

.testi-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all 0.3s ease;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testi-quote {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 60px;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  font-family: serif;
}

.testi-stars {
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  gap: 2px;
}

.testi-text {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.testi-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
  font-family: var(--font-display);
}

.testi-name {
  font-weight: 700;
  color: var(--gray-900);
  font-size: 15px;
}

.testi-company {
  color: var(--gray-500);
  font-size: 13px;
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(57, 181, 232, 0.2) 0%, transparent 50%);
}

.cta-box {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-box h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.cta-box p {
  color: var(--gray-300);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--white);
}

.contact-info-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(57, 181, 232, 0.2) 0%, transparent 70%);
}

.contact-info-title {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 12px;
  font-weight: 800;
}

.contact-info-desc {
  color: var(--gray-300);
  margin-bottom: 32px;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-align: left;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  background: rgba(57, 181, 232, 0.15);
  border: 1px solid rgba(57, 181, 232, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  font-size: 20px;
  color: var(--accent);
}

.contact-info-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 14px;
  font-weight: 600;
  color: white;
  line-height: 1.4;
  word-break: break-word;
}

.contact-info-value a {
  color: white;
  text-decoration: none;
  transition: all 0.2s;
}

.contact-info-value a:hover {
  color: var(--accent);
}

.contact-info-value small {
  font-size: 11px;
  font-weight: normal;
  color: var(--gray-400);
  display: block;
  margin-top: 4px;
}

/* Scroll bar styling */
.contact-info-list {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 8px;
}

.contact-info-list::-webkit-scrollbar {
  width: 4px;
}

.contact-info-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.contact-info-list::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info-list li {
    gap: 12px;
  }

  .contact-info-icon {
    width: 38px;
    height: 38px;
  }

  .contact-info-icon i {
    font-size: 18px;
  }

  .contact-info-value {
    font-size: 13px;
  }
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.form-label {
  font-weight: 600;
  color: var(--gray-700);
  font-size: 13px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control,
.form-select {
  border: 1.5px solid var(--gray-200);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14.5px;
  transition: all 0.3s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(13, 47, 146, 0.1);
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.btn-submit {
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  width: 100%;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary-dark);
  color: var(--gray-300);
  padding: 70px 0 0;
}

.footer-about p {
  color: var(--gray-400);
  font-size: 14px;
  margin: 20px 0;
  line-height: 1.7;
}

.footer-title {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--gray-400);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-links a::before {
  content: '›';
  color: var(--accent);
  font-weight: 700;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--gray-400);
  align-items: flex-start;
}

.footer-contact-item .bi {
  color: var(--accent);
  font-size: 18px;
  margin-top: 2px;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 18px;
}

.social-btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  margin-top: 50px;
  font-size: 13px;
  color: var(--gray-500);
}

.footer-bottom a {
  color: var(--accent);
}

/* ===== WHATSAPP FLOATING ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 1050;
}

.wa-toggle {
  width: 64px;
  height: 64px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  position: relative;
  transition: all 0.3s;
}

.wa-toggle:hover {
  transform: scale(1.08);
}

.wa-toggle::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: rgba(37, 211, 102, 0.5);
  border-radius: 50%;
  z-index: -1;
  animation: pulse-wa 2s ease-out infinite;
}

@keyframes pulse-wa {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

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

.wa-popup {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 340px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.3s ease;
}

.wa-popup.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-header {
  background: #128c7e;
  color: white;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-header img {
  width: 38px;
  height: 38px;
  background: white;
  border-radius: 50%;
  padding: 4px;
}

.wa-header h6 {
  color: white;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.wa-header span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
}

.wa-body {
  padding: 16px;
  background: #ece5dd;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  max-height: 380px;
  overflow-y: auto;
}

.wa-intro {
  background: white;
  padding: 12px 14px;
  border-radius: 0 8px 8px 8px;
  font-size: 13.5px;
  color: var(--gray-700);
  margin-bottom: 16px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  position: relative;
}

.wa-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent white transparent transparent;
}

.wa-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: white;
  border-radius: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  color: var(--gray-800);
  transition: all 0.2s;
}

.wa-contact:hover {
  background: #f0f9f4;
  transform: translateX(2px);
  color: var(--gray-800);
}

.wa-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.wa-contact-info {
  flex: 1;
  min-width: 0;
}

.wa-contact-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--gray-900);
}

.wa-contact-role {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 2px;
}

.wa-contact-phone {
  font-size: 11.5px;
  color: #128c7e;
  margin-top: 2px;
}

.wa-contact-icon {
  color: #25d366;
  font-size: 22px;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ALERTS ===== */
.alert-floating {
  position: fixed;
  top: 100px;
  right: 28px;
  z-index: 2000;
  min-width: 320px;
  max-width: 400px;
  padding: 16px 20px;
  border-radius: 12px;
  background: white;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(120%);
  transition: transform 0.4s ease;
}

.alert-floating.show {
  transform: translateX(0);
}

.alert-floating.success {
  border-left: 4px solid var(--success);
}

.alert-floating.error {
  border-left: 4px solid var(--danger);
}

.alert-floating .bi {
  font-size: 22px;
}

.alert-floating.success .bi {
  color: var(--success);
}

.alert-floating.error .bi {
  color: var(--danger);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  section {
    padding: 70px 0;
  }

  .hero {
    padding: 90px 0 70px;
  }

  .navbar-collapse {
    background: white;
    padding: 20px;
    margin-top: 16px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
  }

  .hero-trust {
    gap: 20px;
  }

  .about-floating-card {
    display: none;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 28px;
  }
}

@media (max-width: 767px) {
  .topbar {
    display: none;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .wa-popup {
    width: 300px;
  }

  .wa-float {
    bottom: 20px;
    right: 20px;
  }

  .hero-stat-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PRINT STYLES (untuk export company profile) ===== */
@media print {

  .navbar,
  .topbar,
  .wa-float,
  .btn,
  footer,
  .cta-section,
  .filter-btn,
  .service-filter {
    display: none !important;
  }

  body {
    font-size: 11pt;
  }

  section {
    padding: 20px 0;
    page-break-inside: avoid;
  }

  .hero {
    color: #000;
    background: white !important;
  }

  .hero h1,
  .hero p {
    color: #000 !important;
  }
}