:root {
  --primary: #163B6D;
  --primary-2: #245C9F;
  --accent: #C7A15A;
  --bg-soft: #F7F9FC;
  --text: #1F2937;
  --muted: #6B7280;
  --white: #FFFFFF;
  --shadow: 0 15px 40px rgba(22, 59, 109, 0.12);
  --radius: 18px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background-color: #fff;
}

h1, h2, h3, h4, h5,
.brand-title {
  font-family: 'Playfair Display', serif;
}

.navbar {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
  height: 52px;
  width: auto;
}

.nav-link {
  color: var(--primary);
  font-weight: 600;
  margin-left: 0.6rem;
}

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

.btn-brand {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  border: none;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(36, 92, 159, 0.25);
  transition: all 0.25s ease;
}

.btn-brand:hover {
  color: white;
  transform: translateY(-2px);
}

.btn-outline-brand {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
  font-weight: 600;
}

.btn-outline-brand:hover {
  background: var(--primary);
  color: white;
}

.hero,
.page-hero {
  color: white;
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 130px 0 90px;
}

.page-hero {
  padding: 130px 0 80px;
}

.hero-badge,
.badge-soft {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.hero-badge {
  margin-bottom: 1.2rem;
}

.badge-soft {
  margin-bottom: 1rem;
}

.hero h1,
.page-hero h1 {
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.hero p.lead,
.page-hero p {
  font-size: 1.08rem;
  max-width: 760px;
  color: rgba(255,255,255,0.9);
}

.hero p.lead {
  max-width: 700px;
  color: rgba(255,255,255,0.92);
}

.hero-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 1.4rem;
  margin-top: 2rem;
}

.hero-card .mini-stat {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.65rem;
}

.section {
  padding: 90px 0;
}

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

.section-title {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto;
}

.info-card,
.service-card,
.value-card,
.contact-card,
.cta-contact-box,
.content-card,
.pillar-card,
.director-card,
.metric-card,
.service-block,
.mini-card,
.cta-box,
.trust-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(22, 59, 109, 0.06);
  box-shadow: var(--shadow);
}

.info-card,
.contact-card,
.content-card,
.director-card,
.mini-card,
.trust-card {
  padding: 2rem;
}

.info-card,
.contact-card,
.value-card,
.content-card,
.service-block,
.mini-card {
  height: 100%;
}

.service-card {
  padding: 2rem 1.6rem;
  height: 100%;
  transition: all 0.25s ease;
}

.service-card:hover,
.service-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(22, 59, 109, 0.15);
}

.value-card {
  padding: 2rem;
  text-align: center;
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(22, 59, 109, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.service-icon,
.contact-icon,
.pillar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  font-size: 1.5rem;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  margin-bottom: 1rem;
}

.service-card h4,
.value-card h4,
.pillar-card h4,
.director-card h3,
.mini-card h4 {
  color: var(--primary);
}

.service-card h4,
.value-card h4,
.mini-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.service-card p,
.value-card p,
.info-card p,
.contact-card p,
.cta-contact-box p,
.content-card p,
.director-card p,
.metric-card p,
.pillar-card p,
.mini-card p,
.trust-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.highlight-box,
.cta-box,
.cta-mini {
  background: linear-gradient(135deg, var(--primary), #0F2747);
  color: white;
  box-shadow: var(--shadow);
}

.highlight-box {
  border-radius: 28px;
  padding: 3rem;
}

.cta-box {
  border-radius: 30px;
  padding: 3rem;
}

.cta-mini {
  border-radius: 24px;
  padding: 2rem;
  margin-top: 1.75rem;
}

.highlight-box p,
.cta-box p,
.cta-mini p {
  color: rgba(255,255,255,0.88);
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(22, 59, 109, 0.08);
  color: var(--primary);
  font-size: 1.2rem;
}

.contact-label {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0;
  word-break: break-word;
}

.contact-value a {
  color: var(--primary);
  text-decoration: none;
}

.contact-value a:hover {
  color: var(--primary-2);
}

.form-control,
.form-select {
  border-radius: 14px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(22, 59, 109, 0.15);
  box-shadow: none;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-2);
  box-shadow: 0 0 0 0.2rem rgba(36, 92, 159, 0.15);
}

.trust-list,
.check-list,
.service-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.check-list {
  margin: 1.25rem 0 0;
}

.trust-list li,
.check-list li,
.service-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.65rem 0;
  color: var(--text);
  border-bottom: 1px solid rgba(22, 59, 109, 0.08);
}

.service-list li {
  padding: 0.6rem 0;
}

.trust-list li:last-child,
.check-list li:last-child,
.service-list li:last-child {
  border-bottom: none;
}

.trust-list i,
.check-list i,
.service-list i {
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.pillar-card {
  padding: 2rem;
  text-align: center;
  height: 100%;
}

.pillar-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: rgba(22, 59, 109, 0.08);
  color: var(--primary);
  font-size: 1.6rem;
}

.metric-card {
  padding: 1.8rem;
  text-align: center;
}

.metric-card h3 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.director-badge {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(22, 59, 109, 0.08);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-block {
  overflow: hidden;
  transition: all 0.25s ease;
}

.service-header {
  padding: 2rem 2rem 1rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.service-header .service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  font-size: 1.6rem;
  margin-bottom: 0;
}

.service-header h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}

.service-header p {
  color: var(--muted);
  margin-bottom: 0;
}

.service-body {
  padding: 0 2rem 2rem;
}

.mini-card {
  text-align: center;
}

.mini-card i {
  font-size: 2rem;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 1rem;
}

.cta-contact-box {
  padding: 2.5rem;
  text-align: center;
}

.cta-contact-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.cta-contact-meta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(22, 59, 109, 0.08);
}

.cta-contact-meta .meta-item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  color: var(--text);
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.cta-contact-meta .meta-item:last-child {
  margin-bottom: 0;
}

.cta-contact-meta i {
  color: var(--accent);
}

.footer {
  background: #0F2138;
  color: rgba(255,255,255,0.82);
  padding: 30px 0;
}

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

.footer a:hover {
  color: white;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: white;
  font-size: 1.7rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  z-index: 999;
  text-decoration: none;
  transition: all 0.25s ease;
}

.whatsapp-float:hover {
  color: white;
  transform: translateY(-2px);
}

.whatsapp-float i {
  display: inline-flex;
  width: 1em;
  height: 1em;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.card {
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  max-width: 500px;
}

@media (max-width: 991.98px) {
  .hero,
  .page-hero {
    padding-top: 110px;
  }

  .navbar-brand img {
    height: 45px;
  }

  .section {
    padding: 70px 0;
  }

  .highlight-box,
  .cta-contact-box,
  .cta-box {
    padding: 2rem;
  }

  .service-header,
  .service-body {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .contact-card,
  .info-card,
  .trust-card {
    height: auto;
  }
}