:root {
  --navy: #0d2b6e;
  --navy-dark: #081840;
  --navy-light: #1a3a8f;
  --accent: #2563eb;
  --accent-light: #60a5fa;
  --accent-pale: #dbeafe;
  --white: #ffffff;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --bg-light: #f8fafc;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(13, 43, 110, 0.08);
  --shadow-hover: 0 12px 48px rgba(13, 43, 110, 0.18);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--navy);
}

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

.btn-primary {
  background-color: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.4rem;
  transition: background-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn-primary:hover, .btn-primary:focus {
  background-color: var(--navy-light);
  border-color: var(--navy-light);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(13, 43, 110, 0.3);
  transform: translateY(-1px);
}

.btn-outline-primary {
  border-color: var(--navy);
  color: var(--navy);
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.4rem;
  transition: all var(--transition);
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-accent {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.75rem;
  transition: all var(--transition);
}
.btn-accent:hover, .btn-accent:focus {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.45);
  transform: translateY(-2px);
}

.btn-outline-light {
  border-width: 2px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.75rem;
  transition: all var(--transition);
}
.btn-outline-light:hover {
  transform: translateY(-2px);
}

.btn-light {
  background-color: var(--white);
  color: var(--navy);
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.75rem;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.btn-light:hover {
  background-color: var(--accent-pale);
  color: var(--navy);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) {
  transition-delay: 0.1s;
}
.reveal:nth-child(3) {
  transition-delay: 0.2s;
}
.reveal:nth-child(4) {
  transition-delay: 0.3s;
}
.reveal:nth-child(5) {
  transition-delay: 0.4s;
}
.reveal:nth-child(6) {
  transition-delay: 0.5s;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.text-navy {
  color: var(--navy) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.bg-navy {
  background-color: var(--navy) !important;
}

.bg-light-custom {
  background-color: var(--bg-light) !important;
}

.navbar-logo--dark {
  display: none;
}
.navbar-logo--light {
  display: block;
}

#mainNav.scrolled .navbar-logo--light {
  display: none;
}
#mainNav.scrolled .navbar-logo--dark {
  display: block;
}

#mainNav {
  background-color: transparent;
  transition: background-color 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  z-index: 1050;
}
#mainNav.scrolled {
  background-color: var(--white);
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  box-shadow: 0 2px 16px rgba(13, 43, 110, 0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.35rem;
  letter-spacing: -0.5px;
  color: var(--white) !important;
  transition: color var(--transition);
}

.brand-icon {
  color: var(--accent-light);
  font-size: 1.5rem;
  line-height: 1;
}

.brand-text {
  font-weight: 400;
  color: inherit;
}
.brand-text strong {
  font-weight: 800;
}

#mainNav.scrolled .navbar-brand {
  color: var(--navy) !important;
}
#mainNav.scrolled .brand-icon {
  color: var(--accent);
}

#mainNav .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
#mainNav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-light);
  transition: width var(--transition);
  border-radius: 2px;
}
#mainNav .nav-link:hover, #mainNav .nav-link.active {
  color: var(--white);
}
#mainNav .nav-link:hover::after, #mainNav .nav-link.active::after {
  width: calc(100% - 1.7rem);
}

#mainNav.scrolled .nav-link {
  color: var(--text-muted);
}
#mainNav.scrolled .nav-link:hover, #mainNav.scrolled .nav-link.active {
  color: var(--navy);
}
#mainNav.scrolled .nav-link::after {
  background: var(--accent);
}

.nav-cta {
  font-weight: 600;
  font-size: 0.9rem;
}

.lang-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  opacity: 1;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--white);
  transition: opacity var(--transition), transform var(--transition), color var(--transition);
}
.lang-flag .fi {
  font-size: 18px;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

#mainNav.scrolled .lang-flag {
  color: var(--text-muted);
}

.lang-dropdown__menu {
  min-width: auto;
  padding: 0.3rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.lang-dropdown__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.4rem 0.75rem;
  border-radius: 5px;
  font-size: 0.9rem;
}
.lang-dropdown__item .fi {
  font-size: 16px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#mainNav.scrolled .navbar-toggler {
  border-color: var(--border);
}
#mainNav.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2813,43,110,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#mainNav .dropdown-menu {
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(13, 43, 110, 0.15);
  padding: 0.5rem 0;
  min-width: 200px;
  margin-top: 0.35rem;
}
#mainNav .dropdown-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.55rem 1.25rem;
  transition: background-color var(--transition), color var(--transition);
}
#mainNav .dropdown-item i {
  color: var(--accent);
  font-size: 0.95rem;
}
#mainNav .dropdown-item:hover, #mainNav .dropdown-item:focus {
  background-color: var(--accent-pale);
  color: var(--navy);
}
#mainNav .dropdown-item:hover i, #mainNav .dropdown-item:focus i {
  color: var(--navy);
}
#mainNav .nav-link.dropdown-toggle::after {
  position: static;
  transform: none;
  border: none;
  content: "\f282";
  font-family: "bootstrap-icons";
  font-size: 0.7rem;
  width: auto;
  height: auto;
  background: none;
  vertical-align: middle;
  margin-left: 0.3rem;
  display: inline-block;
  transition: transform var(--transition);
}
#mainNav .nav-item.dropdown.show .nav-link.dropdown-toggle::after {
  transform: rotate(180deg);
}

@media (max-width: 991px) {
  #mainNav {
    background-color: var(--white);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    box-shadow: 0 2px 16px rgba(13, 43, 110, 0.1);
  }
  #mainNav .navbar-logo--light {
    display: none;
  }
  #mainNav .navbar-logo--dark {
    display: block;
  }
  #mainNav .navbar-toggler {
    border-color: var(--border);
  }
  #mainNav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2813,43,110,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  #mainNav .navbar-collapse {
    background-color: var(--white);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
  }
  #mainNav .nav-link {
    color: var(--navy) !important;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--border);
  }
  #mainNav .nav-link:hover, #mainNav .nav-link.active {
    color: var(--accent) !important;
  }
  #mainNav .nav-link::after {
    display: none;
  }
  #mainNav .dropdown-menu {
    box-shadow: none;
    padding-left: 1rem;
    margin-top: 0;
  }
  #mainNav .dropdown-item {
    border-bottom: 1px solid var(--border);
    padding: 0.65rem 0.5rem;
  }
  #mainNav .dropdown-item:last-child {
    border-bottom: none;
  }
  .lang-dropdown {
    border-top: 1px solid var(--border);
    padding: 0.5rem 0;
  }
  .lang-dropdown .lang-flag {
    color: var(--navy) !important;
    padding: 0.4rem 0.5rem;
  }
  .lang-dropdown .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0.25rem 0;
  }
  .lang-dropdown__item {
    color: var(--text) !important;
    padding: 0.5rem 0.5rem;
    border-bottom: 1px solid var(--border);
  }
  .lang-dropdown__item:last-child {
    border-bottom: none;
  }
  .lang-dropdown__item:hover {
    background: var(--accent-pale);
    color: var(--navy) !important;
  }
  .nav-cta {
    display: inline-flex !important;
    margin-top: 0.75rem;
    width: 100%;
    justify-content: center;
  }
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at 20% 80%, rgba(37, 99, 235, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(96, 165, 250, 0.1) 0%, transparent 50%), linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #1a4b9e 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: -5%;
  bottom: -5%;
  width: 55%;
  height: 110%;
  background: rgba(37, 99, 235, 0.06);
  border-radius: 40% 0 0 30%;
  transform: rotate(-8deg);
  pointer-events: none;
}
.hero--inner {
  min-height: 55vh;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(96, 165, 250, 0.2);
  color: var(--accent-light);
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: 50px;
  padding: 0.3rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.hero-lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero--inner img {
  filter: brightness(0) invert(1);
}

@media (min-width: 992px) {
  .hero-actions {
    justify-content: flex-start;
  }
  .hero-lead {
    margin-left: 0;
  }
  .hero--inner .hero-lead {
    margin-left: auto;
  }
  .hero--inner .hero-actions {
    justify-content: center;
  }
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero-scroll a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  display: block;
}
.hero-scroll a:hover {
  color: var(--white);
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
.hero-breadcrumb .breadcrumb-item a,
.hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.55);
}
.hero-breadcrumb .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.85);
}

section {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 1rem;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.section-badge {
  display: inline-block;
  background: var(--accent-pale);
  color: var(--accent);
  border-radius: 50px;
  padding: 0.25rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
}

.section-stats {
  background: var(--bg-light);
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-box {
  padding: 1.5rem 1rem;
}

.stat-number {
  display: block;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.section-about {
  background: var(--white);
  padding: 5rem 0;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.1rem;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.about-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 43, 110, 0.08) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.about-image {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.about-value-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-pale);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.45rem 1rem;
  border-radius: 50px;
}
.about-value-item i {
  color: var(--accent);
  font-size: 1rem;
}

.bs-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  height: 100%;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  border-top: 4px solid var(--border);
}
.bs-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.bs-card--featured {
  border-top-color: var(--accent);
}
.bs-card--featured .bs-card-icon {
  background: var(--accent);
  color: var(--white);
}
.bs-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.bs-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--accent);
}

.bs-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.bs-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.bs-list li:last-child {
  border-bottom: none;
}
.bs-list li i {
  color: var(--accent);
  flex-shrink: 0;
}

.section-services {
  background: var(--white);
}
.section-services--alt {
  background: var(--bg-light);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.service-card--featured h3, .service-card--featured p {
  color: var(--white);
}
.service-card--featured::before {
  background: linear-gradient(90deg, var(--accent-light), var(--white));
  transform: scaleX(1);
}
.service-card--featured .service-card-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--accent-light);
}
.service-card--featured .service-benefits li {
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.12);
}
.service-card--featured .service-benefits li i {
  color: var(--accent-light);
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.section-services .row > div:nth-child(1) .service-card::before {
  background: #1D1D1B;
}

.section-services .row > div:nth-child(2) .service-card::before {
  background: #1C3155;
}

.section-services .row > div:nth-child(3) .service-card::before {
  background: #2376BB;
}

.service-card-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  transition: background-color var(--transition);
}

.service-benefits {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}
.service-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px dashed var(--border);
}
.service-benefits li:last-child {
  border-bottom: none;
}
.service-benefits li i {
  color: var(--accent);
  flex-shrink: 0;
}

.service-link {
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
  align-self: flex-start;
}

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

.why-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.why-box h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.why-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.why-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--accent));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1rem;
}

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

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-pale), var(--accent), var(--accent-pale));
  border-radius: 2px;
}
@media (max-width: 767px) {
  .process-steps::before {
    left: 22px;
  }
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  position: relative;
}
.process-step:hover .process-num {
  background: var(--accent);
  transform: scale(1.08);
}

.process-num {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--accent-pale);
  transition: transform var(--transition), background-color var(--transition);
}
@media (max-width: 767px) {
  .process-num {
    width: 46px;
    height: 46px;
    font-size: 0.875rem;
  }
}

.process-body {
  padding-top: 0.5rem;
  flex: 1;
}
.process-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.process-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

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

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.partner-logo {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-height: 110px;
  max-height: 200px;
  padding: 1.75rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
  filter: grayscale(1);
  opacity: 0.6;
}
.partner-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.section-team {
  background: var(--white);
}

.team-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.team-avatar {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--navy), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  margin: 0 auto 1.25rem;
}

.team-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.team-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}
.team-links a {
  width: 38px;
  height: 38px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: all var(--transition);
}
.team-links a:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.section-cta {
  background: var(--bg-light);
  padding: 3rem 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--accent) 100%);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.cta-box h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}
.cta-box p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.it-service-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.it-service-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.it-service-box h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.it-service-box p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.it-service-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.section-pricing {
  background: var(--white);
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.pricing-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
}
.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-5px);
}
.pricing-card--featured .pricing-header {
  border-color: rgba(255, 255, 255, 0.15);
}
.pricing-card--featured .pricing-tier {
  color: rgba(255, 255, 255, 0.6);
}
.pricing-card--featured .price-amount {
  color: var(--white);
}
.pricing-card--featured .price-unit {
  color: rgba(255, 255, 255, 0.6);
}
.pricing-card--featured .pricing-desc {
  color: rgba(255, 255, 255, 0.65);
}
.pricing-card--featured .pricing-features li {
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}
.pricing-card--featured .pricing-features li i {
  color: var(--accent-light);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pricing-tier {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.price-unit {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.pricing-features li:last-child {
  border-bottom: none;
}
.pricing-features li i {
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}
.pricing-features li.disabled {
  opacity: 0.4;
}
.pricing-features li.disabled i {
  color: var(--text-muted) !important;
}

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

.faq-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  font-size: 0.95rem;
  padding: 1.1rem 1.5rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--accent);
  background: var(--accent-pale);
  box-shadow: none;
}
.faq-accordion .accordion-button::after {
  filter: invert(24%) sepia(88%) saturate(2000%) hue-rotate(210deg) brightness(85%);
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: invert(38%) sepia(90%) saturate(1800%) hue-rotate(200deg);
}
.faq-accordion .accordion-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 1rem 1.5rem;
  background: var(--white);
}

.section-references {
  background: var(--white);
}

.reference-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.reference-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.reference-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.reference-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.reference-icon {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.reference-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-pale);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.section-career {
  background: var(--white);
}

.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.job-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.job-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.job-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.job-card-img {
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius);
}
.job-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.job-type {
  display: inline-block;
  background: var(--accent-pale);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.job-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
}
.job-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.25rem 0;
}
.job-benefits li i {
  color: var(--accent);
  flex-shrink: 0;
}

.section-recruitment {
  background: var(--bg-light);
  padding: 4rem 0;
}

.recruit-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  justify-content: center;
}

.recruit-step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.recruit-step h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.recruit-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.recruit-step-num {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.section-contact {
  background: var(--white);
}

.contact-block {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
}

.contact-block-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent-pale);
}

.contact-block-main {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.contact-block-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.contact-block-note {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0;
}

.contact-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-detail-list li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
}
.contact-detail-list li:last-child {
  border-bottom: none;
}
.contact-detail-list a {
  color: var(--accent);
  font-weight: 500;
}
.contact-detail-list a:hover {
  color: var(--navy);
}

.cdl-label {
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  font-size: 0.85rem;
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-person-photo {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--accent-pale);
}
.contact-person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.contact-person-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.contact-person-info strong {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 700;
}
.contact-person-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.branch-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.branch-address {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2rem;
  color: var(--white);
  height: 100%;
}
.contact-info-card h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.contact-info-list li:last-child {
  border-bottom: none;
}
.contact-info-list li i {
  color: var(--accent-light);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-list a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.contact-info-list a:hover {
  color: var(--white);
}

.branch-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
}
.branch-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.branch-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.map-placeholder {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-placeholder iframe {
  width: 100%;
  height: 340px;
  border: none;
  display: block;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.section-contact-form {
  background: var(--bg-light);
}

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.section-contact-person {
  padding: 5rem 0;
  background: var(--white);
}

.contact-person-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  box-shadow: var(--shadow);
}

.cp-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.cp-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.cp-name {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.cp-role {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.cp-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--accent);
  font-size: 1rem;
}
.cp-contact:hover {
  color: var(--navy);
}

.form-control,
.form-select {
  border-radius: var(--radius-sm);
  border-color: var(--border);
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15);
}

.form-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.form-check-input:checked {
  background-color: var(--navy);
  border-color: var(--navy);
}

.site-footer {
  background: radial-gradient(ellipse at 20% 80%, rgba(37, 99, 235, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(96, 165, 250, 0.1) 0%, transparent 50%), linear-gradient(135deg, #1a4b9e 0%, var(--navy) 45%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  color: var(--white) !important;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-heading {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--white);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  margin-bottom: 0.6rem;
}
.footer-contact i {
  color: var(--accent-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-contact a:hover {
  color: var(--white);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0 1.5rem;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  margin: 0;
}

.footer-legal {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-legal:hover {
  color: var(--white);
}

.footer-sep {
  color: rgba(255, 255, 255, 0.25);
  margin: 0 0.4rem;
  font-size: 0.82rem;
}

@media (max-width: 991.98px) {
  section {
    padding: 3.5rem 0;
  }
  .hero-content {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }
  .cta-box {
    padding: 2rem 1.5rem;
    text-align: center;
  }
  .cta-box .d-flex {
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  section {
    padding: 2.5rem 0;
  }
  .section-stats {
    padding: 2.5rem 0;
  }
  .process-steps::before {
    left: 22px;
  }
  .contact-form-card,
  .contact-form-box {
    padding: 1.5rem;
  }
  .cta-box {
    padding: 1.75rem 1.25rem;
  }
  .pricing-card--featured {
    transform: scale(1);
  }
  .pricing-card--featured:hover {
    transform: translateY(-5px);
  }
}
@media (max-width: 575.98px) {
  .hero--inner {
    min-height: 40vh;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .recruit-steps {
    flex-direction: column;
    align-items: center;
  }
  .recruit-step {
    max-width: 100%;
    width: 100%;
  }
}
