/* ==========================================================================
   KBS PORTAL — CSC DIGITAL SEVA SERVICES
   ========================================================================== */

:root {
  --blue: #0d6efd;
  --blue-dark: #0b1f3a;
  --blue-light: #eaf4ff;
  --white: #ffffff;
  --text-dark: #172033;
  --green: #198754;
  --whatsapp: #25d366;

  --blue-mid: #1c4d8f;
  --blue-soft: #4d8bf0;
  --border-soft: rgba(13, 110, 253, 0.12);

  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --shadow-soft: 0 10px 30px rgba(11, 31, 58, 0.08);
  --shadow-strong: 0 20px 45px rgba(11, 31, 58, 0.16);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue-dark);
}

p {
  line-height: 1.7;
  color: #4a5568;
}

a {
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid var(--blue-soft);
  outline-offset: 2px;
}

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

/* ============ SECTION HELPERS ============ */
.section-pad {
  padding: 96px 0;
}
@media (max-width: 768px) {
  .section-pad {
    padding: 64px 0;
  }
}

.bg-light-blue {
  background: var(--blue-light);
}
.bg-dark-section {
  background: var(--blue-dark);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  font-weight: 700;
}
.section-eyebrow.light {
  background: rgba(255, 255, 255, 0.1);
  color: #8fc0ff;
}

.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-title.light {
  color: #fff;
}

.section-text {
  font-size: 1.02rem;
  max-width: 640px;
}
.section-text.light {
  color: #c7d6ee;
}

/* ============ NAVBAR ============ */
#mainNavbar {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 16px 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
#mainNavbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.08);
  border-bottom: 1px solid var(--border-soft);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff;
  border-radius: 12px;
  font-size: 1.05rem;
  box-shadow: 0 6px 16px rgba(13, 110, 253, 0.3);
}
.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--blue-dark);
}
.brand-text em {
  font-style: normal;
  color: var(--blue);
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
  padding: 8px 16px !important;
  border-radius: 50px;
  transition: var(--transition);
}
.navbar-nav .nav-link:hover {
  color: var(--blue);
  background: var(--blue-light);
}

.nav-cta {
  margin-left: 12px;
}

.btn-outline-nav {
  border: 2px solid var(--blue);
  color: var(--blue);
  font-weight: 700;
  border-radius: 50px;
  padding: 8px 20px;
  background: transparent;
  transition: var(--transition);
}
.btn-outline-nav:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.btn-primary-nav {
  border: 2px solid var(--blue);
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  padding: 8px 20px;
  transition: var(--transition);
}
.btn-primary-nav:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  transform: translateY(-2px);
  color: #fff;
}

.navbar-toggler {
  border: none;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1200;
}
.toggler-bar {
  width: 26px;
  height: 3px;
  background: var(--blue-dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* ============ MOBILE SIDEBAR ============ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 58, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1300;
}
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 300px;
  max-width: 85vw;
  background: #fff;
  z-index: 1400;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 12px 0 40px rgba(0, 0, 0, 0.15);
}
.mobile-sidebar.active {
  transform: translateX(0);
}

.mobile-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px;
  border-bottom: 1px solid #eef2f7;
}
.btn-close-sidebar {
  border: none;
  background: var(--blue-light);
  color: var(--blue);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-links {
  list-style: none;
  padding: 16px 12px;
  margin: 0;
  flex: 1;
  overflow-y: auto;
}
.mobile-nav-links li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 12px;
  color: var(--text-dark);
  font-weight: 600;
  transition: var(--transition);
}
.mobile-nav-links li a i {
  color: var(--blue);
  width: 20px;
  text-align: center;
}
.mobile-nav-links li a:hover {
  background: var(--blue-light);
  color: var(--blue);
  transform: translateX(4px);
}

.mobile-sidebar-foot {
  padding: 18px 20px 24px;
  border-top: 1px solid #eef2f7;
}

/* ============ HERO ============ */
.hero-section {
  position: relative;
  padding: 150px 0 80px;
  background: radial-gradient(
    circle at 85% 15%,
    #dcecff 0%,
    var(--blue-light) 45%,
    #ffffff 80%
  );
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 110, 253, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 110, 253, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 70% 30%, black 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(
    circle at 70% 30%,
    black 0%,
    transparent 65%
  );
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue);
  background: #fff;
  border: 1px solid var(--border-soft);
  padding: 7px 16px;
  border-radius: 50px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.hero-subtitle {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--blue);
  margin-bottom: 16px;
}
.hero-desc {
  font-size: 1.03rem;
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 12px 26px rgba(13, 110, 253, 0.32);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(13, 110, 253, 0.4);
  color: #fff;
}

.btn-hero-secondary {
  background: #fff;
  color: var(--blue-dark);
  font-weight: 700;
  border: 2px solid var(--blue-dark);
  padding: 12px 26px;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-secondary:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-3px);
}

.btn-hero-outline {
  background: transparent;
  color: var(--blue-dark);
  font-weight: 700;
  border: 2px solid transparent;
  padding: 14px 12px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-hero-outline:hover {
  color: var(--blue);
  gap: 14px;
}

.btn-hero-outline-light {
  background: transparent;
  color: #fff;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 14px 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-hero-outline-light:hover {
  background: #fff;
  color: var(--blue-dark);
  border-color: #fff;
  transform: translateY(-3px);
}

/* ---- Hero Signature Art: Digital ID Card ---- */
.hero-art {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-ring {
  position: absolute;
  border: 1.5px dashed rgba(13, 110, 253, 0.25);
  border-radius: 50%;
}
.ring-1 {
  width: 340px;
  height: 340px;
  animation: spin 40s linear infinite;
}
.ring-2 {
  width: 440px;
  height: 440px;
  animation: spin 60s linear infinite reverse;
}

.id-card {
  position: relative;
  width: 280px;
  height: 180px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    var(--blue-dark) 0%,
    var(--blue-mid) 55%,
    var(--blue) 100%
  );
  box-shadow: 0 30px 60px rgba(11, 31, 58, 0.35);
  padding: 22px;
  color: #fff;
  z-index: 3;
  animation: float 5s ease-in-out infinite;
}
.id-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  opacity: 0.9;
  margin-bottom: 20px;
}
.id-card-chip {
  width: 38px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ffe9a8, #f2c14e);
  margin-bottom: 16px;
}
.id-card-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 70%;
}
.id-card-lines span {
  display: block;
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
}
.id-card-lines span:nth-child(2) {
  width: 75%;
}
.id-card-lines span:nth-child(3) {
  width: 55%;
}
.id-card-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 14px 3px rgba(255, 255, 255, 0.6);
  top: 0;
  animation: scanline 3.2s ease-in-out infinite;
}
.id-card-check {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(25, 135, 84, 0.4);
  border: 4px solid #fff;
}

.floating-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue-dark);
  box-shadow: var(--shadow-soft);
  z-index: 4;
}
.floating-chip i {
  color: var(--blue);
}
.chip-1 {
  top: 6%;
  left: 2%;
  animation: float 4.5s ease-in-out infinite;
}
.chip-2 {
  top: 14%;
  right: 0%;
  animation: float 5.5s ease-in-out infinite 1s;
}
.chip-3 {
  bottom: 12%;
  left: 0%;
  animation: float 5s ease-in-out infinite 0.5s;
}
.chip-4 {
  bottom: 2%;
  right: 6%;
  animation: float 4.8s ease-in-out infinite 1.4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes scanline {
  0% {
    top: 6%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  50% {
    top: 88%;
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    top: 6%;
    opacity: 0;
  }
}

/* ---- Hero Stats ---- */
.hero-stats-row {
  margin-top: 64px;
}
.stat-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  height: 100%;
  transition: var(--transition);
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}
.stat-card i {
  font-size: 1.5rem;
  color: var(--blue);
  margin-bottom: 10px;
  display: block;
}
.stat-number,
.stat-static {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--blue-dark);
}
.stat-label {
  display: block;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 2px;
}

/* ============ ABOUT ============ */
.about-art {
  position: relative;
  padding: 20px;
}
.about-art-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 0px;
  text-align: center;
  color: #fff;
}
.about-art-panel i {
  font-size: 3rem;
  margin-bottom: 16px;
  color: #9cc4ff;
}
.about-art-panel p {
  color: #dbe8fb;
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0;
}
.about-art-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  box-shadow: var(--shadow-soft);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-art-badge i {
  color: var(--green);
}
.about-art-badge.badge-2 {
  top: auto;
  bottom: 0;
  right: auto;
  left: 0;
}

.point-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--blue-dark);
  height: 100%;
  transition: var(--transition);
}
.point-item:hover {
  background: #dceafd;
  transform: translateY(-3px);
}
.point-item i {
  color: var(--blue);
  font-size: 1.05rem;
}

/* ============ SERVICE CARDS ============ */
.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 22px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  text-align: center;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: var(--blue);
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  margin: 0 auto 18px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--blue);
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}
.service-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.88rem;
  margin-bottom: 18px;
  min-height: 42px;
}

.btn-apply {
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 22px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
}
.btn-apply:hover {
  background: #146c43;
  transform: translateY(-2px);
  color: #fff;
}

/* ============ FEATURED SERVICES ============ */
.featured-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  height: 100%;
  transition: var(--transition);
}
.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}
.featured-icon {
  min-width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.featured-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.featured-body p {
  font-size: 0.92rem;
  margin-bottom: 16px;
}

/* ============ HOW IT WORKS ============ */
.bg-dark-section {
  position: relative;
}
.steps-row {
  position: relative;
}
.step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  height: 100%;
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-6px);
}
.step-num {
  font-family: var(--font-mono);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
  font-size: 2.4rem;
  position: absolute;
  top: 8px;
  right: 16px;
  line-height: 1;
}
.step-card i {
  font-size: 1.7rem;
  color: #8fc0ff;
  margin-bottom: 14px;
  display: block;
}
.step-card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.step-card p {
  color: #b6c6e0;
  font-size: 0.88rem;
  margin: 0;
}

/* ============ WHY US ============ */
.why-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 16px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  height: 100%;
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  background: var(--blue-light);
}
.why-card i {
  font-size: 1.6rem;
  color: var(--blue);
  margin-bottom: 14px;
  display: block;
}
.why-card h4 {
  font-size: 0.98rem;
  margin: 0;
}

/* ============ DOCUMENTS ============ */
.doc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  font-weight: 600;
  font-size: 0.92rem;
  height: 100%;
  transition: var(--transition);
}
.doc-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}
.doc-item i {
  color: var(--blue);
  font-size: 1.15rem;
}
.doc-note {
  margin-top: 28px;
  font-style: italic;
  color: #64748b;
  font-size: 0.92rem;
}

/* ============ TIMELINE ============ */
.timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding-left: 26px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--blue), var(--blue-light));
}
.timeline-item {
  display: flex;
  gap: 22px;
  margin-bottom: 36px;
  position: relative;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-left: -15px;
  box-shadow:
    0 0 0 6px #fff,
    var(--shadow-soft);
  z-index: 2;
}
.timeline-text h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.timeline-text p {
  font-size: 0.9rem;
  margin: 0;
}

/* ============ BENEFITS ============ */
.benefit-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 18px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: var(--transition);
}
.benefit-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-strong);
}
.benefit-card i {
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 12px;
  display: block;
}
.benefit-card h4 {
  font-size: 1rem;
  margin: 0;
}

/* ============ DIGITAL SECTION ============ */
.digital-section {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  position: relative;
  overflow: hidden;
}
.digital-badge-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 44px 28px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.digital-badge-card i {
  font-size: 2.6rem;
  color: #8fc0ff;
  margin-bottom: 16px;
  display: block;
}
.digital-badge-card p {
  color: #dbe8fb;
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0;
}

/* ============ HIGHLIGHTS ============ */
.highlight-card {
  border-radius: var(--radius-md);
  padding: 34px 16px;
  color: #fff;
  height: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}
.highlight-card:hover {
  transform: translateY(-6px);
}
.highlight-card i {
  font-size: 1.7rem;
  margin-bottom: 12px;
  display: block;
}
.highlight-card p,
.hl-static {
  margin: 6px 0 0;
  font-weight: 700;
  color: #fff;
}
.hl-1 {
  background: linear-gradient(135deg, #0d6efd, #1c4d8f);
}
.hl-2 {
  background: linear-gradient(135deg, #198754, #0f5c39);
}
.hl-3 {
  background: linear-gradient(135deg, #0b1f3a, #1c4d8f);
}
.hl-4 {
  background: linear-gradient(135deg, #25d366, #128c46);
}

/* ============ TESTIMONIALS ============ */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 640px;
  
  text-align: center;
}
.testimonial-stars {
  color: #f5b301;
  margin-bottom: 18px;
  font-size: 1.1rem;
}
.testimonial-card p {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.avatar-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-mono);
}
.testimonial-user div {
  text-align: left;
}
.testimonial-user strong {
  display: block;
  color: var(--blue-dark);
}
.testimonial-user span {
  font-size: 0.85rem;
  color: #64748b;
}

.carousel-control-prev,
.carousel-control-next {
  width: 6%;
  opacity: 1;
}
.carousel-nav-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}
.carousel-indicators-custom {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  position: static;
}
.carousel-indicators-custom button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #c7d6ee;
  padding: 0;
  opacity: 1;
}
.carousel-indicators-custom button.active {
  background: var(--blue);
  width: 26px;
  border-radius: 6px;
  transition: var(--transition);
}

/* ============ FAQ ============ */
.faq-accordion {
  max-width: 800px;
}
.accordion-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 14px;
  overflow: hidden;
}
.accordion-button {
  font-weight: 700;
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 20px 24px;
}
.accordion-button:not(.collapsed) {
  background: var(--blue-light);
  color: var(--blue);
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button::after {
  background-size: 1.1rem;
}
.accordion-body {
  padding: 0 24px 22px;
  color: #4a5568;
  font-size: 0.95rem;
}

/* ============ CTA ============ */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--blue) 0%,
    var(--blue-mid) 60%,
    var(--blue-dark) 100%
  );
  padding: 90px 0;
  text-align: center;
  color: #fff;
}
.cta-section h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  margin-bottom: 14px;
}
.cta-section p {
  color: #dbe8fb;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 32px;
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* ============ CONTACT ============ */
.contact-info-card {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: #fff;
  height: 100%;
}
.contact-info-card h3 {
  color: #fff;
  margin-bottom: 12px;
}
.contact-info-card p {
  color: #c7d6ee;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition);
}
.contact-row:hover {
  color: #8fc0ff;
  gap: 18px;
}
.contact-row i {
  width: 22px;
  text-align: center;
  color: #8fc0ff;
}

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}
.contact-form .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue-dark);
}
.contact-form .form-control,
.contact-form .form-select {
  border-radius: 10px;
  border: 1.5px solid #e1e8f2;
  padding: 11px 14px;
  font-size: 0.95rem;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.14);
}
.form-success-msg {
  color: var(--green);
  font-weight: 700;
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============ MODALS ============ */
.modal-content {
  border-radius: var(--radius-lg);
  border: none;
  overflow: hidden;
}
.modal-header {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  border: none;
  padding: 22px 28px;
}
.modal-title {
  color: #fff;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal-header .btn-close {
  filter: invert(1);
}
.modal-body {
  padding: 28px;
}
.modal .form-label {
  font-weight: 600;
  font-size: 0.9rem;
}
.modal .form-control {
  border-radius: 10px;
  border: 1.5px solid #e1e8f2;
  padding: 11px 14px;
}
.modal .form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.14);
}
.forgot-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--blue-dark);
  color: #c7d6ee;
  padding: 70px 0 26px;
}
.site-footer h5 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.footer-desc {
  color: #a9bde0;
  font-size: 0.92rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a,
.footer-links span {
  color: #a9bde0;
  font-size: 0.92rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover {
  color: #8fc0ff;
  padding-left: 4px;
}
.site-footer hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 36px 0 20px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 0.85rem;
  color: #fff !important;
}
.footer-bottom p{
  color: #fff !important;

}

/* ============ FLOATING BUTTONS ============ */
.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 25px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  animation: pulse-wa 2.4s ease-in-out infinite;
}
.whatsapp-float:hover {
  color: #fff;
}
@keyframes pulse-wa {
  0% {
    box-shadow:
      0 10px 24px rgba(37, 211, 102, 0.4),
      0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow:
      0 10px 24px rgba(37, 211, 102, 0.4),
      0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow:
      0 10px 24px rgba(37, 211, 102, 0.4),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}
.whatsapp-tooltip {
  position: absolute;
  left: 70px;
  background: var(--blue-dark);
  color: #fff;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  left: 76px;
}

.scroll-top-btn {
  position: fixed;
  right: 20px;
  bottom: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  border: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(13, 110, 253, 0.35);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition);
}
.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  background: var(--blue-mid);
  transform: translateY(-4px);
}

@media (max-width: 576px) {
  .whatsapp-float {
    left: 15px;
    bottom: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }
  .scroll-top-btn {
    right: 15px;
    bottom: 20px;
    width: 46px;
    height: 46px;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
  .hero-section {
    padding-top: 120px;
  }
  .hero-art {
    height: 340px;
    margin-top: 20px;
  }
  .id-card {
    width: 240px;
    height: 154px;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 1.6rem;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-btns {
    flex-direction: column;
  }
  .cta-btns {
    flex-direction: column;
  }
  .cta-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .timeline {
    padding-left: 20px;
  }
}

@media (max-width: 400px) {
  .id-card {
    width: 210px;
    height: 140px;
    padding: 16px;
  }
  .floating-chip {
    font-size: 0.75rem;
    padding: 8px 12px;
  }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
