/* SL Digital Info - White Theme (Yellow & Black Accents) */

:root {
  --sl-yellow: #facc15;
  --sl-yellow-soft: rgba(250, 204, 21, 0.14);
  --sl-black: #020617;
  --sl-grey: #6b7280;
  --sl-border: rgba(15, 23, 42, 0.08);
  --sl-radius-xl: 26px;
  --sl-shadow-soft: 0 26px 60px rgba(15, 23, 42, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f9fafb;
  color: #0f172a;
  min-height: 100vh;
}

/* Header / Navbar */
.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.navbar-light .navbar-nav .nav-link {
  color: #0f172a;
  font-size: 0.9rem;
  padding-inline: 0.9rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link.active {
  color: #eab308;
  transform: translateY(-1px);
}

/* Brand logo mark */
.logo-mark {
  height: 42px;
  width: 42px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 10% 0, #fefce8 0, #facc15 45%, #eab308 100%);
  color: #111;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  font-size: 18px;
}

.logo-text span.d-block.fw-bold {
  font-size: 1.05rem;
}

.logo-text small {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: #9ca3af;
}

/* Page wrapper */
.page-wrapper {
  padding-top: 86px;
}

/* Hero section */
.hero-section {
  padding: 110px 0 90px;
  background: radial-gradient(circle at top left, #eef2ff 0, #ffffff 45%, #f9fafb 100%);
}

.hero-card {
  border-radius: var(--sl-radius-xl);
  background: #ffffff;
  box-shadow: var(--sl-shadow-soft);
  border: 1px solid var(--sl-border);
  padding: clamp(2.5rem, 3vw, 3rem);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -120px;
  background:
    radial-gradient(circle at 0 0, rgba(250, 204, 21, 0.18), transparent 55%),
    radial-gradient(circle at 100% 0, rgba(59, 130, 246, 0.12), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
}

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

.hero-kicker {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  border-radius: 999px;
  background: #fefce8;
  border: 1px solid rgba(250, 204, 21, 0.6);
  color: #854d0e;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.3rem, 3vw + 1.1rem, 3.1rem);
  line-height: 1.1;
  font-weight: 700;
  color: #020617;
  margin-top: 1rem;
}

.hero-title span.highlight {
  background: linear-gradient(120deg, #022c22, #0f172a, #eab308);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  color: #4b5563;
  max-width: 540px;
  font-size: 0.96rem;
}

/* Hero metrics */
.hero-metrics {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.hero-metric strong {
  font-size: 1.4rem;
  display: block;
  color: #0f172a;
}

.hero-metric span {
  font-size: 0.8rem;
  color: #6b7280;
}

/* Hero CTA */
.btn-sl-primary {
  position: relative;
  border-radius: 999px;
  border: none;
  padding: 0.8rem 1.8rem;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(120deg, #fef9c3, #facc15, #eab308);
  color: #111827;
  box-shadow: 0 18px 40px rgba(234, 179, 8, 0.4);
  overflow: hidden;
}

.btn-sl-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.65), transparent 40%, rgba(255,255,255,.65), transparent 75%);
  transform: translateX(-120%);
  opacity: 0;
}

.btn-sl-primary:hover {
  color: #111827;
  transform: translateY(-1px);
}

.btn-sl-primary:hover::before {
  transform: translateX(120%);
  opacity: 1;
  transition: all 0.7s ease;
}

.btn-sl-ghost {
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  padding: 0.8rem 1.6rem;
  font-size: 0.9rem;
  color: #111827;
  background: #ffffff;
}

.btn-sl-ghost:hover {
  border-color: #eab308;
  color: #111827;
}

/* Hero media */
.hero-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: radial-gradient(circle at 0 0, #eff6ff, #dbeafe);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Glass highlight */
.hero-glass-card {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-glass-icon {
  height: 36px;
  width: 36px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fef9c3;
  color: #a16207;
}

/* Sections */
.section-padding {
  padding: 80px 0;
}

.section-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #eab308;
  font-weight: 600;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 600;
  color: #111827;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #4b5563;
}

/* Cards */
.service-card {
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--sl-border);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.04);
  padding: 1.7rem 1.5rem;
}

.service-icon {
  height: 40px;
  width: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sl-yellow-soft);
  color: #eab308;
}

/* Forms */
.form-control,
.form-select {
  border-radius: 14px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  color: #111827;
}

.form-control:focus,
.form-select:focus {
  border-color: #eab308;
  box-shadow: 0 0 0 0.15rem rgba(250, 204, 21, 0.28);
}

/* Footer */
.main-footer {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
}

.footer-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #111827;
}

.footer-subtitle {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
}

.footer-text {
  color: #6b7280;
}

/* WhatsApp Floating */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 22px;
  height: 52px;
  width: 52px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.30);
  font-size: 1.6rem;
  z-index: 998;
}

/* Page hero for inner pages */
.page-hero {
  padding: 80px 0 30px;
  background: #f9fafb;
}

.page-hero-title {
  font-size: 2rem;
  font-weight: 600;
  color: #111827;
}

.page-hero-subtitle {
  font-size: 0.95rem;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 991.98px) {
  .page-wrapper {
    padding-top: 78px;
  }

  .hero-section {
    padding-top: 90px;
  }

  .hero-card {
    padding: 2rem 1.6rem;
  }

  .hero-glass-card {
    position: static;
    margin-top: 1rem;
  }

  .navbar-light .navbar-nav .nav-link {
    padding-inline: 0.6rem;
  }

  #mainNavbar {
    background: #ffffff;
    border-radius: 0 0 18px 18px;
    padding: 0.75rem 0.3rem 0.75rem;
    margin-top: 0.4rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
  }

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