:root {
  --color-primary: #0b1b56;
  --color-accent: #17ba18;
  --color-bg: #f6f8fb;
  --color-card: #ffffff;
  --color-muted: #d3d8e8;
  --body-font: "Inter", "Source Sans Pro", system-ui, sans-serif;
}

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

body {
  font-family: var(--body-font);
  background-color: var(--color-bg);
  color: var(--color-primary);
  margin: 0;
  min-height: 100vh;
  padding-top: 90px;
}

.letter-spacing {
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.premium-site {
  background: var(--color-bg);
}

.main-content {
  margin-top: 1rem;
}

.premium-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(11, 27, 86, 0.08);
}

.premium-navbar.scrolled {
  background-color: #ffffff;
  box-shadow: 0 12px 30px rgba(11, 27, 86, 0.12);
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.hero-section {
  padding: 5rem 0 4rem;
}

.hero-section .hero-copy h1 {
  font-size: clamp(2.8rem, 4vw, 3.4rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-section .hero-copy p.lead {
  font-size: 1.1rem;
  color: rgba(11, 27, 86, 0.8);
}

.hero-buttons .btn {
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  letter-spacing: 0.1em;
}

.hero-buttons .btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  transition: transform 0.3s ease;
}

.hero-buttons .btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-buttons .btn-outline-primary {
  border-color: var(--color-accent);
  color: var(--color-primary);
}

.hero-visual {
  position: relative;
  min-height: 320px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(11, 27, 86, 0.05), #ffffff);
  box-shadow: 0 30px 80px rgba(11, 27, 86, 0.08);
}

.hero-visual .floating-card {
  position: absolute;
  inset: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(23, 186, 24, 0.4);
  background: rgba(255, 255, 255, 0.85);
  padding: 1.5rem;
  transform: translateY(0);
  animation: float 6s ease-in-out infinite;
}

.hero-visual .floating-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.hero-visual .stat-set {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-visual .stat {
  font-size: 0.9rem;
  color: #6c7390;
}

.services-preview {
  padding: 3rem 0;
}

.services-hero {
  padding: 4rem 3rem;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(11, 27, 86, 0.95), rgba(23, 186, 24, 0.2));
  color: #fff;
  margin-bottom: 2.5rem;
}

.service-detail-card {
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(11, 27, 86, 0.08);
  padding: 2rem;
  box-shadow: 0 20px 45px rgba(11, 27, 86, 0.08);
  min-height: 360px;
}

.service-detail-card h3 {
  font-size: 1.6rem;
}

.service-detail-card ul {
  padding-left: 1.1rem;
}

.faq-accordion .accordion-button {
  color: var(--color-primary);
  font-weight: 600;
}

.faq-accordion .accordion-body {
  background: #fefefe;
}

.contact-hero {
  padding: 4rem 0 2rem;
  text-align: center;
}

.contact-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3rem);
}

.map-placeholder {
  height: 260px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(11, 27, 86, 0.08), rgba(11, 27, 86, 0.02));
  border: 1px solid rgba(11, 27, 86, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(11, 27, 86, 0.45);
  font-weight: 600;
}

.service-card {
  border: 1px solid var(--color-muted);
  border-radius: 24px;
  background: #fff;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(11, 27, 86, 0.15);
}

.service-card .chip {
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 27, 86, 0.2);
  font-size: 0.8rem;
  margin: 0.1rem;
  color: var(--color-primary);
}

.service-card .service-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(23, 186, 24, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.service-card .card-link {
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-primary);
}

.trust-strip {
  padding: 2.5rem 0;
  background: #fff;
  border-radius: 32px;
  border: 1px solid rgba(11, 27, 86, 0.1);
  box-shadow: 0 20px 60px rgba(11, 27, 86, 0.08);
}

.trust-strip .badge {
  background: rgba(23, 186, 24, 0.12);
  color: var(--color-accent);
}

.process-section {
  padding: 3rem 0 4rem;
}

.process-card {
  border-radius: 20px;
  border: 1px solid rgba(11, 27, 86, 0.12);
  padding: 2rem;
  background: #fff;
  min-height: 220px;
}

.process-card h5 {
  color: var(--color-primary);
}

.process-number {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(23, 186, 24, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.cta-strip {
  margin: 3rem 0 1rem;
  padding: 2.5rem;
  border-radius: 32px;
  background: linear-gradient(120deg, rgba(11, 27, 86, 0.9), rgba(23, 186, 24, 0.8));
  color: #fff;
  box-shadow: 0 30px 60px rgba(11, 27, 86, 0.35);
}

.cta-strip p {
  margin-bottom: 0.5rem;
}

.premium-footer {
  background-color: var(--color-primary);
  color: #fff;
  padding: 3rem 0 1.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-link:hover {
  color: #fff;
}

.contact-panel {
  background: #fff;
  border-radius: 28px;
  padding: 2.5rem;
  border: 1px solid var(--color-muted);
  box-shadow: 0 20px 40px rgba(11, 27, 86, 0.08);
}

.contact-panel .form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 0.2rem rgba(23, 186, 24, 0.25);
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(11, 27, 86, 0.08);
  margin-bottom: 1.5rem;
}

.contact-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(23, 186, 24, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.contact-support-bar {
  position: sticky;
  bottom: 1rem;
  z-index: 5;
  background: var(--color-primary);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  width: fit-content;
  margin: 2rem auto 0;
  box-shadow: 0 10px 30px rgba(11, 27, 86, 0.4);
}

.powered-by {
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

@media (max-width: 991px) {
  .premium-navbar {
    padding: 0.6rem 1rem;
  }

  .hero-visual {
    min-height: 280px;
  }
}
