﻿:root {
  --primary: #dc9b07;
  --primary-dark: #b07c05;
  --secondary: #0d1b46;
  --text: #1d2433;
  --muted: #6b7387;
  --surface: #f6f8fc;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 12px 34px rgba(13, 27, 70, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--white);
}

a {
  text-decoration: none;
}

.section-space {
  padding: 72px 0;
}

.section-soft {
  background: var(--surface);
}

.section-head {
  margin-bottom: 32px;
  text-align: center;
}

.section-head h2 {
  margin: 0 0 8px;
  font-size: 2rem;
  color: var(--secondary);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.top-strip {
  background: var(--secondary);
  color: #dfe6ff;
  font-size: 0.9rem;
}

.top-strip-wrap {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.top-contact a {
  color: #dfe6ff;
}

.top-cta {
  color: var(--secondary);
  background: var(--primary);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #ebeff8;
}

.navbar {
  padding: 4px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary);
  font-weight: 700;
}

.brand-logo {
  height: 86px;
  width: auto;
  display: block;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary);
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-link {
  color: #37415f;
  font-weight: 600;
  margin-left: 12px;
}

.nav-link.active,
.nav-link:hover {
  color: var(--primary-dark);
}

.navbar .dropdown-menu {
  border: 1px solid #e3e9f7;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(13, 27, 70, 0.12);
  padding: 8px;
}

.navbar .dropdown-item {
  border-radius: 8px;
  font-weight: 500;
  color: #2d3d63;
  padding: 8px 12px;
}

.navbar .dropdown-item:hover {
  background: #f4f7ff;
  color: #0f245f;
}

.hero-section {
  position: relative;
  background: url("../images/head-background.jpg") center/cover no-repeat;
  min-height: 640px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 18, 54, 0.88), rgba(8, 18, 54, 0.55));
}

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

.tagline {
  display: inline-block;
  margin-bottom: 12px;
  background: rgba(220, 155, 7, 0.18);
  border: 1px solid rgba(220, 155, 7, 0.45);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
}

.hero-content p {
  margin: 18px 0 24px;
  max-width: 620px;
  color: #d8def4;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary-main,
.btn-light-main,
.btn-outline-main {
  display: inline-block;
  padding: 11px 20px;
  border-radius: 10px;
  font-weight: 600;
}

.btn-primary-main {
  background: var(--primary);
  color: var(--secondary);
}

.btn-primary-main:hover {
  background: #f5b11b;
}

.btn-light-main {
  background: #fff;
  color: var(--secondary);
}

.btn-outline-main {
  border: 1px solid var(--primary);
  color: var(--primary-dark);
}

.quote-card {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.quote-card h2 {
  font-size: 1.3rem;
  margin: 0 0 14px;
  color: var(--secondary);
}

.quote-card form {
  display: grid;
  gap: 10px;
}

.quote-card input,
.quote-card select,
.quote-card button {
  border-radius: 10px;
  border: 1px solid #d7deec;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 0.95rem;
}

.quote-card button {
  background: var(--primary);
  border: none;
  color: var(--secondary);
  font-weight: 700;
}

.check-list {
  list-style: none;
  margin: 18px 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "\F26A";
  font-family: bootstrap-icons;
  position: absolute;
  left: 0;
  top: 0;
  color: #1ca64b;
}

.about-premium {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.about-kicker {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(13, 27, 70, 0.08);
  color: #0f245f;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.about-title {
  margin: 14px 0 14px;
  color: var(--secondary);
  line-height: 1.3;
  font-size: clamp(1.6rem, 2.3vw, 2.15rem);
}

.about-copy {
  color: #445376;
  line-height: 1.85;
  margin: 0 0 10px;
}

.about-shape-wrap {
  position: relative;
  padding: 14px;
  border-radius: 36px;
  background: linear-gradient(140deg, rgba(220, 155, 7, 0.28), rgba(13, 27, 70, 0.18));
}

.about-shaped-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 42% 58% 63% 37% / 36% 37% 63% 64%;
  box-shadow: 0 16px 34px rgba(13, 27, 70, 0.2);
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 24px;
}

.about-metrics div {
  background: #ffffff;
  border: 1px solid #e4eaf8;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}

.about-metrics strong {
  display: block;
  color: #0f245f;
  font-size: 1.15rem;
}

.about-metrics span {
  color: #5d6a8d;
  font-size: 0.9rem;
}

.about-premium-v2 {
  background:
    radial-gradient(circle at 12% 14%, rgba(220, 155, 7, 0.13), transparent 45%),
    radial-gradient(circle at 90% 84%, rgba(13, 27, 70, 0.1), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
}

.about-premium-shell {
  background: linear-gradient(140deg, #ffffff 0%, #fbfcff 100%);
  border: 1px solid #e6ecfa;
  border-radius: 28px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 16px 42px rgba(13, 27, 70, 0.12);
}

.about-visual-stack {
  position: relative;
}

.about-premium-v2 .about-shaped-image {
  height: 560px;
  border-radius: 24px;
}

.about-trust-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(13, 27, 70, 0.86);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 12px 14px;
  max-width: 300px;
  backdrop-filter: blur(3px);
}

.about-trust-badge i {
  font-size: 1.2rem;
  color: var(--primary);
}

.about-trust-badge strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
}

.about-trust-badge span {
  display: block;
  font-size: 0.8rem;
  color: #e0e7ff;
}

.about-content-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.95));
  border: 1px solid #e3e9f8;
  border-radius: 22px;
  padding: clamp(20px, 2.6vw, 30px);
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border: 1px solid #e5ebf8;
  border-radius: 12px;
  padding: 12px;
  color: #334368;
  font-size: 0.93rem;
  line-height: 1.55;
}

.about-feature-item i {
  color: #0f245f;
  font-size: 1rem;
  margin-top: 1px;
}

.about-bottom-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.about-premium-v2 .about-metrics {
  margin: 0;
  max-width: 430px;
  flex: 1 1 360px;
}

.about-intro-premium {
  background:
    radial-gradient(circle at 8% 14%, rgba(220, 155, 7, 0.17), transparent 42%),
    radial-gradient(circle at 92% 90%, rgba(13, 27, 70, 0.12), transparent 44%),
    linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.about-intro-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid #d4def3;
  border-radius: 26px;
  background: linear-gradient(145deg, #ffffff 0%, #fbfdff 58%, #f4f8ff 100%);
  box-shadow: 0 20px 40px rgba(13, 27, 70, 0.12);
  padding: clamp(22px, 2.8vw, 34px);
}

.about-intro-shell::before {
  content: "";
  position: absolute;
  top: -70px;
  left: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 155, 7, 0.2) 0%, rgba(220, 155, 7, 0) 70%);
  pointer-events: none;
}

.about-intro-shell-v2 {
  border-color: #ccd8f1;
}

.about-intro-visual {
  position: relative;
}

@media (min-width: 992px) {
  .about-intro-pro .about-intro-visual {
    margin-top: -18px;
  }
}

.about-intro-image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 20px 34px rgba(13, 27, 70, 0.2);
}

.about-intro-badge {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border-radius: 14px;
  background: rgba(13, 27, 70, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.86rem;
  line-height: 1.4;
}

.about-intro-badge i {
  color: #ffe093;
  font-size: 1rem;
}

.about-intro-title {
  margin: 10px 0 10px;
  line-height: 1.3;
}

.about-intro-pro .about-intro-shell {
  border-color: #ccd8f1;
  box-shadow: 0 20px 40px rgba(13, 27, 70, 0.13);
}

.about-intro-content {
  position: relative;
  border: 1px solid #dce5f8;
  border-radius: 20px;
  background: linear-gradient(165deg, #ffffff 0%, #f8fbff 100%);
  padding: clamp(20px, 2.5vw, 30px);
}

.about-intro-content p {
  color: #3f4f74;
  line-height: 1.85;
  margin-bottom: 12px;
}

.about-intro-floating {
  position: absolute;
  right: 16px;
  top: 16px;
  display: grid;
  gap: 4px;
  padding: 13px 15px;
  border-radius: 13px;
  background: rgba(13, 27, 70, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  max-width: 230px;
}

.about-intro-floating strong {
  font-size: 1.1rem;
  line-height: 1.2;
  color: #ffe093;
}

.about-intro-floating span {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #e4ebff;
}

.about-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 18px 0 16px;
}

.about-trust-tile {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: #fff;
  border: 1px solid #dfe7f8;
  border-radius: 14px;
  padding: 11px 13px;
}

.about-trust-tile i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f245f;
  color: #ffffff;
  font-size: 0.9rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.about-trust-tile h3 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  color: #132b66;
}

.about-trust-tile p {
  margin: 0;
  color: #4b5a7f;
  font-size: 0.86rem;
  line-height: 1.55;
}

.about-process-band {
  border: 1px solid #d9e3f8;
  border-radius: 14px;
  background: linear-gradient(160deg, #ffffff 0%, #f5f8ff 100%);
  padding: 12px;
  margin: 4px 0 16px;
}

.about-process-band h3 {
  margin: 0 0 10px;
  font-size: 0.98rem;
  color: #12295f;
}

.about-process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.about-process-steps span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #dee6f8;
  border-radius: 999px;
  padding: 8px 10px;
  background: #ffffff;
  color: #334466;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
}

.about-process-steps strong {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f245f;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  flex-shrink: 0;
}

.about-quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.about-quick-facts div {
  background: linear-gradient(155deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid #d8e3f8;
  border-radius: 12px;
  padding: 11px 9px;
  text-align: center;
}

.about-quick-facts strong {
  display: block;
  color: #10285e;
  font-size: 1.04rem;
}

.about-quick-facts span {
  color: #526286;
  font-size: 0.8rem;
}

.about-mvv-premium {
  background:
    radial-gradient(circle at 10% 14%, rgba(13, 27, 70, 0.12), transparent 42%),
    radial-gradient(circle at 90% 86%, rgba(220, 155, 7, 0.12), transparent 42%),
    linear-gradient(180deg, #f3f7ff 0%, #edf3ff 100%);
}

.about-mvv-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid #dbe4f9;
  border-radius: 24px;
  background: linear-gradient(150deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 18px 36px rgba(13, 27, 70, 0.12);
  padding: clamp(22px, 2.8vw, 34px);
}

.about-mvv-shell-v2::after {
  content: "";
  position: absolute;
  right: -56px;
  top: -56px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 155, 7, 0.25) 0%, rgba(220, 155, 7, 0) 70%);
  pointer-events: none;
}

.mvv-side-panel {
  border: 1px solid #d7e1f7;
  border-radius: 16px;
  background: linear-gradient(160deg, #ffffff 0%, #f4f8ff 100%);
  padding: 18px;
}

.mvv-side-panel h2 {
  margin: 12px 0 10px;
  color: #0f245f;
  line-height: 1.3;
}

.mvv-side-panel p {
  margin: 0;
  color: #445376;
  line-height: 1.8;
}

.mvv-side-note {
  margin-top: 16px;
  border: 1px solid rgba(220, 155, 7, 0.52);
  border-radius: 12px;
  background: linear-gradient(165deg, #fffaf0 0%, #fff5dc 100%);
  padding: 12px;
}

.mvv-side-note h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: #8a5e04;
}

.mvv-side-note h3 i {
  color: #c78a03;
  margin-right: 6px;
}

.mvv-side-note p {
  margin: 0;
  color: #5d4b29;
  line-height: 1.65;
  font-size: 0.88rem;
}

.about-mvv-premium .info-card.mvv-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(220, 155, 7, 0.46);
  background: linear-gradient(165deg, #ffffff 0%, #fff8eb 100%);
  border-radius: 14px;
  padding-top: 48px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.about-mvv-premium .info-card.mvv-card:hover {
  transform: translateY(-6px);
  border-color: #dc9b07;
  box-shadow: 0 16px 30px rgba(220, 155, 7, 0.26);
}

.about-mvv-premium .mvv-card h3 {
  margin-bottom: 8px;
}

.about-mvv-premium .mvv-card p {
  color: #4a587b;
  line-height: 1.75;
  font-size: 0.9rem;
}

.mvv-step {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f245f;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
}

.mvv-points {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.mvv-points li {
  position: relative;
  padding-left: 22px;
  color: #4b5a80;
  font-size: 0.85rem;
  line-height: 1.6;
}

.mvv-points li::before {
  content: "\F633";
  font-family: bootstrap-icons;
  position: absolute;
  left: 0;
  top: 0;
  color: #0f245f;
}

.mvv-promise-strip {
  margin-top: 22px;
  border: 1px solid #dbe4f9;
  border-radius: 16px;
  background: linear-gradient(160deg, #ffffff 0%, #f5f9ff 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
}

.mvv-promise-strip-pro {
  border-color: #d1ddf5;
}

.mvv-promise {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  border: 1px solid #dde5f6;
  border-radius: 12px;
  background: #ffffff;
  padding: 10px 12px;
  color: #2d3d62;
  font-weight: 600;
  font-size: 0.84rem;
  line-height: 1.5;
}

.mvv-promise i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f245f;
  color: #ffffff;
  flex-shrink: 0;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(13, 27, 70, 0.08);
  height: 100%;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-body {
  padding: 18px;
}

.service-body h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--secondary);
}

.service-body p {
  margin: 0 0 12px;
  color: var(--muted);
}

.service-body a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 9px 16px;
  border-radius: 999px;
  background: #dc9b07;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.service-body a:hover {
  background: #c68d06;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(220, 155, 7, 0.35);
}

.testimonial-section-premium {
  background:
    radial-gradient(circle at 15% 15%, rgba(220, 155, 7, 0.12), transparent 40%),
    radial-gradient(circle at 84% 90%, rgba(13, 27, 70, 0.12), transparent 44%),
    linear-gradient(180deg, #f4f7ff 0%, #eef3ff 100%);
}

.testimonial-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid #dbe4f9;
  background: linear-gradient(155deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 18px 38px rgba(13, 27, 70, 0.12);
  padding: clamp(24px, 3vw, 38px);
}

.testimonial-shell::before,
.testimonial-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.testimonial-shell::before {
  width: 220px;
  height: 220px;
  background: rgba(220, 155, 7, 0.14);
  top: -90px;
  right: -90px;
}

.testimonial-shell::after {
  width: 170px;
  height: 170px;
  background: rgba(13, 27, 70, 0.08);
  bottom: -70px;
  left: -70px;
}

.testimonial-head {
  position: relative;
  z-index: 1;
}

.testimonial-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(13, 27, 70, 0.09);
  color: #0f245f;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.9px;
  margin-bottom: 8px;
}

.testimonial-box {
  position: relative;
  z-index: 1;
  background: linear-gradient(165deg, #ffffff 0%, #f7f9ff 100%);
  border-radius: 20px;
  border: 1px solid #e4eaf8;
  box-shadow: 0 18px 32px rgba(13, 27, 70, 0.13);
  padding: 34px 32px;
  margin: 0 auto;
  max-width: 860px;
  text-align: left;
}

.testimonial-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.testimonial-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(220, 155, 7, 0.2);
  color: #8a6103;
  border: 1px solid rgba(220, 155, 7, 0.42);
  font-size: 0.78rem;
  font-weight: 700;
}

.testimonial-box p {
  margin: 0 0 16px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #2f3d63;
}

.quote-mark {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 155, 7, 0.2);
  color: #8a6103;
  font-size: 1.25rem;
  margin-bottom: 0;
}

.testimonial-rating {
  color: #f2b50c;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-client {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.client-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f245f;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}

.testimonial-client strong {
  display: block;
  color: #0f245f;
  font-size: 1rem;
  text-align: left;
}

.testimonial-client small {
  display: block;
  color: #6b7898;
  font-size: 0.85rem;
  text-align: left;
}

.premium-control {
  width: 46px;
  height: 46px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(145deg, rgba(13, 27, 70, 0.84), rgba(13, 27, 70, 0.62));
  opacity: 1;
}

.premium-control:hover {
  background: linear-gradient(145deg, rgba(11, 26, 72, 0.95), rgba(11, 26, 72, 0.82));
}

.premium-indicators {
  bottom: -56px;
}

.premium-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #9ea8c0;
  border: 0;
}

.premium-indicators .active {
  background-color: #0f245f;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.counter-card {
  background: #fff;
  border: 1px solid #e9eef8;
  border-radius: 12px;
  padding: 24px 12px;
}

.counter-card h3 {
  margin: 0;
  color: var(--secondary);
  font-size: 2rem;
}

.counter-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.counter-section {
  background: radial-gradient(circle at 10% 20%, #12265f 0%, #0b163c 45%, #091233 100%);
}

.counter-section-premium {
  background:
    radial-gradient(circle at 8% 14%, rgba(220, 155, 7, 0.24), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(129, 161, 255, 0.16), transparent 42%),
    radial-gradient(circle at 10% 20%, #12265f 0%, #0b163c 45%, #091233 100%);
}

.counter-shell {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: clamp(22px, 3vw, 34px);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 24px 36px rgba(5, 10, 30, 0.3);
}

.counter-head {
  margin-bottom: 26px;
}

.counter-head h2 {
  color: #ffffff;
  margin-bottom: 8px;
}

.counter-head p {
  color: #dbe5ff;
}

.counter-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(220, 155, 7, 0.45);
  background: rgba(220, 155, 7, 0.16);
  color: #ffd782;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.premium-counter-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 18px 12px 20px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.premium-counter-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -50px;
  top: -52px;
  border-radius: 50%;
  background: rgba(220, 155, 7, 0.16);
  pointer-events: none;
}

.premium-counter-card:hover {
  transform: translateY(-8px);
  border-color: rgba(220, 155, 7, 0.6);
  box-shadow: 0 18px 28px rgba(4, 10, 30, 0.35);
}

.counter-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(220, 155, 7, 0.35);
  background: rgba(220, 155, 7, 0.14);
  color: #ffd782;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.counter-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 155, 7, 0.18);
  color: #ffd06e;
  border: 1px solid rgba(220, 155, 7, 0.45);
  font-size: 1.35rem;
}

.premium-counter-card h3 {
  color: #ffffff;
}

.premium-counter-card p {
  color: #dce4ff;
}

.locations-premium {
  background:
    radial-gradient(circle at 12% 18%, rgba(220, 155, 7, 0.12), transparent 34%),
    linear-gradient(180deg, #f5f8ff 0%, #eef3ff 100%);
}

.locations-shell {
  border-radius: 24px;
  border: 1px solid #dce5f8;
  background: linear-gradient(150deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 18px 34px rgba(13, 27, 70, 0.1);
  padding: clamp(22px, 3vw, 34px);
}

.locations-head {
  margin-bottom: 24px;
}

.locations-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(220, 155, 7, 0.38);
  background: rgba(220, 155, 7, 0.14);
  color: #9a6c04;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.9px;
  margin-bottom: 8px;
}

.office-card {
  background: linear-gradient(160deg, #ffffff 0%, #f7f9ff 100%);
  padding: 22px 20px;
  border-radius: 16px;
  height: 100%;
  border: 1px solid #dfe6f5;
  box-shadow: 0 10px 24px rgba(13, 27, 70, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.office-card h3 {
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--secondary);
  font-size: 1.18rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.office-card h3 i {
  color: var(--primary-dark);
}

.office-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 27, 70, 0.22);
  box-shadow: 0 18px 30px rgba(13, 27, 70, 0.14);
}

.office-card-premium {
  position: relative;
  overflow: hidden;
  padding-top: 48px;
}

.office-card-premium::before {
  content: "";
  position: absolute;
  right: -46px;
  top: -46px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(220, 155, 7, 0.14);
}

.office-chip {
  position: absolute;
  top: 16px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 11px;
  border-radius: 999px;
  background: #0f245f;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.office-meta {
  color: #425073;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.7;
}

.office-meta i {
  color: var(--primary-dark);
  margin-top: 4px;
}

.office-meta a {
  color: #2f3e61;
  font-weight: 500;
}

.map-wrap iframe {
  width: 100%;
  height: 430px;
}

.site-footer {
  background: #0b163c;
  color: #d9e1ff;
}

.site-footer .container {
  padding-left: 16px;
  padding-right: 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding: 56px 0 36px;
}

.site-footer h4 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.45rem;
}

.footer-logo {
  width: min(220px, 100%);
  height: auto;
  display: block;
  margin-bottom: 14px;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}

.footer-about {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.8;
  color: #edf2ff;
  max-width: 480px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: #d9e1ff;
  font-size: 1.02rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: "\F285";
  font-family: bootstrap-icons;
  font-size: 0.78rem;
  color: inherit;
  line-height: 1;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #edf2ff;
  font-size: 1.02rem;
  line-height: 1.7;
}

.footer-contact-list i {
  color: var(--primary);
  font-size: 1.05rem;
  margin-top: 4px;
}

.footer-social {
  margin-top: 18px;
}

.footer-social h5 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.08rem;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.25s ease;
}

.social-icons a i {
  font-size: 1rem;
}

.social-icons a:hover {
  background: var(--primary);
  color: #081236;
  transform: translateY(-2px);
}

.copyright {
  border-top: 1px solid rgba(217, 225, 255, 0.2);
  text-align: center;
  padding: 14px 16px;
  font-size: 0.9rem;
}

.site-footer-premium {
  background:
    radial-gradient(circle at 12% 18%, rgba(220, 155, 7, 0.14), transparent 36%),
    linear-gradient(170deg, #091438 0%, #081236 45%, #060f2d 100%);
}

.site-footer-premium .footer-shell {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  margin-top: 32px;
}

.site-footer-premium .footer-grid {
  padding: 38px 28px 32px;
}

.site-footer-premium .footer-logo {
  width: min(205px, 100%);
}

.site-footer-premium .footer-about {
  max-width: 430px;
}

.footer-trust-list {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.footer-trust-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e8efff;
  font-size: 0.93rem;
}

.footer-trust-list i {
  color: #ffd26f;
  font-size: 0.95rem;
}

.footer-cta-row {
  margin-top: 16px;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: #dc9b07;
  color: #0d1b46 !important;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.footer-cta-btn:hover {
  background: #c58d05;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(220, 155, 7, 0.35);
}

.site-footer-premium .copyright {
  margin-top: 18px;
  border-top-color: rgba(217, 225, 255, 0.24);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: #081236;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
  z-index: 99;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.float-action {
  position: fixed;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
  z-index: 98;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  animation: floatPulse 2.2s ease-in-out infinite;
}

.float-action:hover {
  transform: translateY(-2px);
}

@keyframes floatPulse {
  0% {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24), 0 0 0 0 rgba(220, 155, 7, 0.34);
  }
  70% {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24), 0 0 0 10px rgba(220, 155, 7, 0);
  }
  100% {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24), 0 0 0 0 rgba(220, 155, 7, 0);
  }
}

.float-whatsapp {
  bottom: 142px;
  background: #25d366;
}

.float-call {
  bottom: 86px;
  background: #0f245f;
}

@media (max-width: 991px) {
  .top-cta {
    display: none;
  }

  .section-space {
    padding: 56px 0;
  }

  .hero-section {
    min-height: 560px;
    padding: 40px 0;
  }

  .about-process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 42px 0 26px;
    gap: 22px;
  }
}

@media (max-width: 767px) {
  .brand-logo {
    height: 68px;
  }

  .top-strip-wrap {
    justify-content: center;
    padding: 8px 0;
  }

  .top-contact {
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .quote-card {
    padding: 18px;
  }

  .section-head h2 {
    font-size: 1.55rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 210px;
  }

  .about-shaped-image {
    height: 360px;
    border-radius: 26px;
  }

  .about-premium-shell {
    border-radius: 20px;
    padding: 18px;
  }

  .about-premium-v2 .about-shaped-image {
    height: 360px;
    border-radius: 20px;
  }

  .about-trust-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }

  .about-feature-grid {
    grid-template-columns: 1fr;
  }

  .about-content-card {
    border-radius: 16px;
    padding: 16px;
  }

  .about-bottom-row {
    align-items: stretch;
  }

  .about-metrics {
    grid-template-columns: 1fr;
  }

  .about-intro-shell,
  .about-mvv-shell {
    border-radius: 16px;
    padding: 18px 14px 20px;
  }

  .about-intro-image {
    height: 360px;
    border-radius: 16px;
  }

  .about-intro-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    font-size: 0.82rem;
    padding: 9px 10px;
  }

  .about-intro-content {
    border-radius: 14px;
    padding: 15px;
  }

  .about-intro-floating {
    top: 12px;
    right: 12px;
    max-width: 180px;
    padding: 10px 11px;
  }

  .about-trust-grid {
    grid-template-columns: 1fr;
  }

  .about-process-steps {
    grid-template-columns: 1fr;
  }

  .about-process-steps span {
    border-radius: 12px;
  }

  .about-quick-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mvv-side-panel {
    padding: 15px;
  }

  .about-mvv-premium .info-card.mvv-card {
    padding-top: 44px;
  }

  .mvv-promise-strip {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mvv-promise {
    font-size: 0.86rem;
  }

  .site-footer h4 {
    font-size: 1.35rem;
  }

  .site-footer-premium .footer-shell {
    margin-top: 22px;
    border-radius: 14px;
  }

  .site-footer-premium .footer-grid {
    padding: 24px 16px 22px;
    gap: 20px;
  }

  .footer-logo {
    width: min(200px, 100%);
  }

  .footer-about,
  .footer-contact-list li,
  .site-footer a {
    font-size: 1rem;
    line-height: 1.75;
  }

  .social-icons {
    gap: 8px;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
  }

  .footer-trust-list span {
    font-size: 0.9rem;
  }

  .footer-cta-btn {
    width: 100%;
  }

  .float-action {
    right: 14px;
    width: 56px;
    height: 56px;
    animation-duration: 1.9s;
  }

  .float-whatsapp {
    bottom: 156px;
  }

  .float-call {
    bottom: 86px;
  }

  .float-action i {
    font-size: 1.2rem;
  }

  .testimonial-box {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .testimonial-shell {
    border-radius: 18px;
    padding: 20px 14px 28px;
  }

  .testimonial-topline {
    align-items: flex-start;
  }

  .testimonial-tag {
    font-size: 0.72rem;
    padding: 6px 10px;
  }

  .testimonial-box p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .premium-control {
    width: 38px;
    height: 38px;
  }

  .premium-indicators {
    bottom: -46px;
  }

  .counter-icon {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }

  .counter-shell {
    border-radius: 16px;
    padding: 18px 14px 20px;
  }

  .counter-kicker {
    font-size: 0.7rem;
    padding: 5px 10px;
  }

  .counter-label {
    font-size: 0.68rem;
  }

  .locations-shell {
    border-radius: 16px;
    padding: 18px 14px 20px;
  }

  .locations-kicker {
    font-size: 0.7rem;
    padding: 5px 10px;
  }

  .office-card-premium {
    padding-top: 44px;
  }

  .office-chip {
    top: 14px;
    left: 14px;
  }

  .site-footer .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .copyright {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.page-hero {
  background: linear-gradient(110deg, #0b163c, #182a67);
  color: #fff;
  padding: 76px 0;
}

.page-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.page-hero p {
  margin: 0;
  color: #d6def8;
}

.inner-title {
  color: var(--secondary);
  margin-bottom: 12px;
}

.info-card,
.mini-card,
.faq-item,
.contact-panel,
.cta-banner {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e7ecf7;
}

.info-card,
.mini-card,
.faq-item {
  padding: 20px;
  height: 100%;
}

.info-card h3,
.mini-card h4,
.faq-item h4 {
  color: var(--secondary);
  margin-top: 0;
}

.info-card h3 i,
.mini-card i {
  color: var(--primary-dark);
  margin-right: 6px;
}

.about-mvv-section .info-card {
  border: 1.5px solid rgba(220, 155, 7, 0.55);
  background: linear-gradient(165deg, #ffffff 0%, #fff9ec 100%);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.about-mvv-section .info-card:hover {
  transform: translateY(-7px);
  border-color: #dc9b07;
  box-shadow: 0 16px 30px rgba(220, 155, 7, 0.28);
}

.about-mvv-section .info-card h3 i {
  color: #c88b04;
}

.mini-card i {
  font-size: 1.4rem;
  display: inline-block;
  margin-bottom: 8px;
}

.mini-card p,
.info-card p,
.faq-item p {
  margin: 0;
  color: #49577b;
}

.cta-banner {
  text-align: center;
  padding: 36px 20px;
  background: linear-gradient(120deg, #0d1b46, #173177);
  color: #fff;
  border: none;
}

.cta-banner h2 {
  margin: 0 0 10px;
}

.cta-banner p {
  margin: 0 0 16px;
  color: #d6def8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.contact-panel {
  padding: 22px;
}

.contact-panel h3 {
  margin-top: 0;
  color: var(--secondary);
}

.contact-panel p {
  color: #465473;
}

.contact-panel ul {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.contact-panel li {
  color: #354466;
}

.contact-panel i {
  color: var(--primary-dark);
  margin-right: 6px;
}

.contact-panel a {
  color: #354466;
}

.quote-card textarea {
  border-radius: 10px;
  border: 1px solid #d7deec;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
}

.mini-map {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
}

.mini-map iframe {
  width: 100%;
  height: 240px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-faq-section .faq-premium-wrap {
  background: linear-gradient(155deg, #ffffff 0%, #fff8e9 100%);
  border: 1px solid rgba(220, 155, 7, 0.34);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 16px 34px rgba(13, 27, 70, 0.12);
}

.contact-faq-section .faq-premium-head {
  max-width: 700px;
  margin: 0 auto 24px;
}

.contact-faq-section .faq-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(220, 155, 7, 0.16);
  border: 1px solid rgba(220, 155, 7, 0.4);
  color: #8a6202;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-faq-section .faq-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid #e1e8f8;
  border-radius: 14px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 10px 18px rgba(13, 27, 70, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-faq-section .faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(220, 155, 7, 0.65);
  box-shadow: 0 14px 24px rgba(13, 27, 70, 0.12);
}

.contact-faq-section .faq-badge {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(160deg, #f6b725 0%, #d58f01 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-faq-section .faq-content {
  min-width: 0;
}

.contact-faq-section .faq-content h4 {
  margin: 0;
  color: #132551;
  font-size: 1.03rem;
}

.contact-faq-section .faq-content p {
  margin-top: 8px;
}

.service-layout-wrap {
  background: #fff;
  border: 1px solid #e5eaf7;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 24px rgba(13, 27, 70, 0.08);
}

.service-main-image {
  border-radius: 16px;
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.service-detail-block {
  background: #fff;
  border: 1px solid #e6ebf8;
  border-radius: 14px;
  padding: 20px;
  color: #425075;
  line-height: 1.85;
}

.price-table-wrap {
  border: 1px solid #e6ebf8;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(13, 27, 70, 0.07);
}

.price-table thead th {
  background: #0f245f;
  color: #fff;
  border: none;
}

.price-table tbody td {
  color: #38476d;
  vertical-align: middle;
}

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

  .contact-faq-section .faq-grid {
    grid-template-columns: 1fr;
  }
}

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

  .service-layout-wrap {
    padding: 16px;
  }

  .service-main-image {
    height: 250px;
  }
}


