:root {
  --bg: #f2f7fc;
  --bg-soft: #f8fbff;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --text: #163b60;
  --text-soft: #5d7287;
  --navy: #0f4e86;
  --navy-deep: #082c4c;
  --teal: #2f77b5;
  --teal-soft: #deedf9;
  --gold: #c99122;
  --gold-soft: #f5ead0;
  --border: rgba(24, 48, 68, 0.1);
  --shadow: 0 20px 60px rgba(15, 58, 96, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --transition: all 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(47, 119, 181, 0.14), transparent 24%),
    radial-gradient(circle at 80% 10%, rgba(15, 78, 134, 0.12), transparent 26%),
    linear-gradient(180deg, #f9fcff 0%, #edf4fb 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-soft);
}

.section-space {
  padding: 6rem 0;
}

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

.topbar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.82);
}

.main-nav {
  backdrop-filter: blur(20px);
  background: rgba(242, 247, 252, 0.86);
  border-bottom: 1px solid rgba(15, 41, 64, 0.08);
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
}

.container {
  position: relative;
  z-index: 1;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  color: var(--navy);
}

.brand-logo-link {
  padding: 0.15rem 0;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: min(230px, 100%);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(17, 74, 122, 0.08));
}

.header-logo {
  width: clamp(180px, 19vw, 220px);
}

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

.navbar-nav .nav-link {
  color: var(--navy);
  font-weight: 600;
  padding: 0.65rem 0.9rem;
}

.navbar-toggler {
  border: 1px solid rgba(15, 41, 64, 0.14);
  border-radius: 14px;
  padding: 0.45rem 0.7rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(47, 119, 181, 0.14);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--navy);
}

.btn {
  border-radius: 999px;
  padding: 0.95rem 1.55rem;
  font-weight: 700;
  transition: var(--transition);
}

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

.btn-brand {
  background: linear-gradient(135deg, #0d4576, #2973b3);
  color: #fff;
  border: none;
  box-shadow: 0 18px 36px rgba(15, 78, 134, 0.24);
}

.btn-brand:hover,
.btn-brand:focus {
  color: #fff;
  background: linear-gradient(135deg, #0a355b, #205d92);
}

.btn-outline-brand {
  border: 1px solid rgba(15, 41, 64, 0.18);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.54);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  color: var(--navy);
  background: #fff;
  border-color: rgba(15, 41, 64, 0.3);
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 78, 134, 0.1), transparent 38%),
    radial-gradient(circle at 15% 20%, rgba(47, 119, 181, 0.12), transparent 24%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
}

.display-title {
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: 0.95;
  margin-bottom: 1.25rem;
}

.hero-copy {
  font-size: 1.1rem;
  max-width: 41rem;
}

.hero-section .row,
.page-hero .row {
  min-height: min(82vh, 860px);
}

.hero-visual,
.image-panel,
.form-panel,
.info-panel,
.service-card,
.process-card,
.testimonial-card,
.contact-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.hero-visual {
  padding: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(47, 119, 181, 0.16), transparent 24%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(222, 237, 249, 0.8));
}

.contact-hero {
  max-width: 42rem;
  margin-left: auto;
}

.hero-visual img,
.image-panel img,
.contact-hero img {
  width: 100%;
}

.floating-metric {
  position: absolute;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  border: 1px solid rgba(15, 41, 64, 0.08);
  box-shadow: 0 16px 36px rgba(15, 41, 64, 0.12);
  animation: drift 5s ease-in-out infinite;
}

.floating-metric span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.floating-metric strong {
  color: var(--navy);
}

.metric-one {
  left: -1rem;
  bottom: 2.5rem;
}

.metric-two {
  top: 2rem;
  right: -1rem;
  animation-delay: 0.7s;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.trust-pill,
.mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.mini-badge {
  justify-content: center;
  text-align: center;
}

.logo-strip {
  border-top: 1px solid rgba(15, 41, 64, 0.08);
  border-bottom: 1px solid rgba(15, 41, 64, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(222, 237, 249, 0.4));
}

.strip-copy {
  margin: 0;
  color: var(--navy);
  font-weight: 600;
}

.section-heading {
  max-width: 44rem;
}

.section-heading h2 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1;
}

.service-card,
.process-card,
.testimonial-card,
.contact-card,
.info-panel {
  padding: 2rem;
  height: 100%;
}

.services-board {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.35rem;
}

.service-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.4rem;
  padding: 1.45rem;
  border-radius: 30px;
  border: 1px solid rgba(15, 78, 134, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 255, 0.93));
  box-shadow: 0 18px 46px rgba(8, 44, 76, 0.1);
  overflow: hidden;
  transition: var(--transition);
  grid-column: span 6;
}

.service-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(47, 119, 181, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(8, 44, 76, 0.03), transparent 48%);
  pointer-events: none;
}

.service-panel::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, #0a416f, #2d7cbc);
}

.service-panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 58px rgba(8, 44, 76, 0.14);
}

.service-panel-featured {
  grid-column: span 12;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.3fr);
  align-items: stretch;
}

.service-panel-head,
.service-panel-body {
  position: relative;
  z-index: 1;
}

.service-panel-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.2rem 0.2rem 0.2rem 0.8rem;
}

.service-panel-featured .service-panel-head {
  padding-right: 1rem;
  border-right: 1px solid rgba(15, 78, 134, 0.08);
}

.service-panel-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(13, 69, 118, 0.08);
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-panel-icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(8, 44, 76, 0.96), rgba(47, 119, 181, 0.96));
  color: #fff;
  font-size: 1.55rem;
  box-shadow: 0 14px 30px rgba(15, 78, 134, 0.18);
}

.service-panel-title h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.7rem;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 0.55rem;
  color: #071f35;
}

.service-panel-title p {
  margin: 0;
  max-width: 22rem;
}

.service-panel-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.15rem;
  padding: 0.2rem 0.2rem 0.2rem 0.8rem;
}

.service-pill-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.service-pill-list li {
  margin: 0;
}

.service-pill-list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(13, 69, 118, 0.06);
  border: 1px solid rgba(15, 78, 134, 0.08);
  color: #1d5d94;
  font-size: 0.98rem;
  font-weight: 700;
  transition: var(--transition);
}

.service-pill-list a:hover {
  color: #fff;
  background: linear-gradient(135deg, #0d4576, #2d7cbc);
  border-color: transparent;
}

.service-panel-btn {
  align-self: flex-start;
  padding: 0.82rem 1.2rem;
  border-radius: 14px;
  background: #0d1e31;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
}

.service-panel-btn:hover,
.service-panel-btn:focus {
  color: #fff;
  background: #091522;
}

.service-card::before,
.process-card::before,
.contact-card::before,
.form-panel::before,
.info-panel::before {
  content: "";
  position: absolute;
  inset: auto -10% -38% 35%;
  height: 200px;
  background: radial-gradient(circle, rgba(47, 119, 181, 0.14), transparent 60%);
  pointer-events: none;
}

.service-card:hover,
.process-card:hover,
.testimonial-card:hover,
.contact-card:hover {
  transform: translateY(-8px);
}

.icon-wrap {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(8, 44, 76, 0.96), rgba(47, 119, 181, 0.96));
  color: #fff;
  font-size: 1.7rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 16px 28px rgba(17, 74, 122, 0.18);
}

.service-card h3,
.process-card h3,
.testimonial-card strong,
.contact-card h2,
.info-panel h2,
.feature-item h3 {
  font-size: 1.85rem;
}

.service-card a,
.contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  margin-top: 0.8rem;
  color: var(--navy);
  font-weight: 800;
}

.section-alt {
  background:
    radial-gradient(circle at 10% 20%, rgba(47, 119, 181, 0.1), transparent 20%),
    rgba(255, 255, 255, 0.38);
}

.image-panel {
  padding: 1.25rem;
  background:
    radial-gradient(circle at bottom left, rgba(47, 119, 181, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.56));
}

.feature-list {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.8rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-item > div,
.sector-card span,
.footer-links a,
.footer-contact li,
.trust-pill {
  min-width: 0;
}

.feature-item i {
  color: var(--navy);
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat-box {
  padding: 1.2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
}

.stat-box strong {
  display: block;
  color: var(--navy);
  font-size: 1.4rem;
}

.step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-dark {
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 80% 20%, rgba(80, 150, 214, 0.18), transparent 20%),
    linear-gradient(135deg, #082c4c 0%, #145b99 100%);
}

.section-dark h2,
.section-dark p,
.section-dark .eyebrow,
.section-dark .sector-card span {
  color: #fff;
}

.section-dark .eyebrow::before {
  background: rgba(255, 255, 255, 0.65);
}

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

.sector-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.2rem 1.25rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition);
}

.sector-card i {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.35rem;
}

.sector-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
}

.cta-panel {
  padding: 2.5rem;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(123, 182, 233, 0.22), transparent 20%),
    linear-gradient(135deg, #0a416f 0%, #2d7cbc 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 30px 80px rgba(17, 74, 122, 0.18);
}

.cta-panel > * {
  flex: 1 1 0;
}

.article-section {
  position: relative;
}

.article-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.article-topic-card {
  display: block;
  padding: 1.2rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(15, 78, 134, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 255, 0.88));
  box-shadow: 0 14px 34px rgba(8, 44, 76, 0.08);
  transition: var(--transition);
}

.article-topic-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(8, 44, 76, 0.12);
}

.article-topic-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  margin-bottom: 0.9rem;
  background: linear-gradient(135deg, rgba(8, 44, 76, 0.96), rgba(47, 119, 181, 0.96));
  color: #fff;
  font-size: 1.2rem;
}

.article-topic-card strong,
.article-topic-card small {
  display: block;
}

.article-topic-card strong {
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 800;
}

.article-topic-card small {
  margin-top: 0.35rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.article-stack {
  display: grid;
  gap: 1.5rem;
}

.article-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.article-list-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 1.8rem;
  border-radius: 28px;
  border: 1px solid rgba(15, 78, 134, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 255, 0.92));
  box-shadow: 0 18px 46px rgba(8, 44, 76, 0.1);
  transition: var(--transition);
}

.article-list-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(47, 119, 181, 0.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(15, 78, 134, 0.08), transparent 22%);
  pointer-events: none;
}

.article-list-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 56px rgba(8, 44, 76, 0.14);
}

.article-list-icon,
.article-read-btn,
.article-list-card .article-meta-row,
.article-list-card h3,
.article-list-card p {
  position: relative;
  z-index: 1;
}

.article-list-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(8, 44, 76, 0.96), rgba(47, 119, 181, 0.96));
  color: #fff;
  font-size: 1.35rem;
}

.article-list-card h3 {
  font-size: 1.9rem;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.article-read-btn {
  margin-top: auto;
  align-self: flex-start;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--navy);
  font-weight: 700;
}

.featured-article-card,
.article-mini-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(15, 78, 134, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 255, 0.92));
  box-shadow: 0 18px 46px rgba(8, 44, 76, 0.1);
}

.featured-article-card {
  padding: 2.3rem;
}

.featured-article-card::before,
.article-mini-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(47, 119, 181, 0.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(15, 78, 134, 0.08), transparent 22%);
  pointer-events: none;
}

.article-meta-row,
.article-footer-row,
.article-body-grid {
  position: relative;
  z-index: 1;
}

.article-meta-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.article-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0d4576, #2d7cbc);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
}

.article-chip-light {
  background: rgba(15, 78, 134, 0.08);
  color: var(--navy);
}

.featured-article-card h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.article-lead {
  position: relative;
  z-index: 1;
  font-size: 1.08rem;
  color: var(--text);
  max-width: 56rem;
}

.article-body-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.95fr);
  gap: 1.4rem;
  margin-top: 1.6rem;
}

.article-body-copy p:last-child,
.article-mini-card p:last-child {
  margin-bottom: 0;
}

.article-highlight-box {
  padding: 1.35rem 1.25rem;
  border-radius: 22px;
  background: rgba(13, 69, 118, 0.06);
  border: 1px solid rgba(15, 78, 134, 0.08);
}

.article-highlight-label {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-highlight-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
}

.article-highlight-list li + li {
  margin-top: 0.65rem;
}

.article-footer-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.article-side-stack {
  display: grid;
  gap: 1.2rem;
  height: 100%;
}

.article-mini-card {
  padding: 1.45rem 1.35rem;
}

.article-mini-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(8, 44, 76, 0.96), rgba(47, 119, 181, 0.96));
  color: #fff;
  font-size: 1.25rem;
}

.article-mini-card h3 {
  position: relative;
  z-index: 1;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.article-mini-card p {
  position: relative;
  z-index: 1;
}

.cta-panel h2,
.cta-panel p,
.cta-panel .eyebrow {
  color: #fff;
}

.cta-panel .eyebrow::before {
  background: rgba(255, 255, 255, 0.65);
}

.testimonial-card p {
  font-size: 1.05rem;
}

.client-meta strong {
  display: block;
  color: var(--navy);
}

.client-meta span {
  color: var(--text-soft);
}

.faq-section {
  position: relative;
}

.custom-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.74);
}

.custom-accordion .accordion-button {
  font-weight: 800;
  color: var(--navy);
  background: transparent;
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--navy);
  background: rgba(47, 119, 181, 0.08);
}

.site-footer {
  padding: 4rem 0 2rem;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand {
  color: #fff;
}

.footer-copy {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  color: #fff;
  font-size: 1.55rem;
}

.footer-links,
.footer-contact,
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li,
.info-list li {
  margin-bottom: 0.7rem;
}

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

.footer-contact li {
  display: flex;
  gap: 0.7rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.page-hero {
  position: relative;
}

.contact-card span {
  font-weight: 700;
  color: var(--navy);
}

.form-panel {
  padding: 2.4rem;
}

.form-label {
  color: var(--navy);
  font-weight: 700;
}

.form-control,
.form-select {
  border-radius: 16px;
  border: 1px solid rgba(15, 41, 64, 0.12);
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.85);
}

textarea.form-control {
  resize: vertical;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(47, 119, 181, 0.45);
  box-shadow: 0 0 0 0.25rem rgba(47, 119, 181, 0.12);
}

.form-status {
  min-height: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.info-stack {
  display: grid;
  gap: 1.5rem;
}

.info-panel {
  padding: 2rem;
}

.contact-map-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.35fr);
  gap: 1.4rem;
  align-items: stretch;
  padding: 1.45rem;
  border-radius: 30px;
  border: 1px solid rgba(15, 78, 134, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 255, 0.92));
  box-shadow: 0 18px 46px rgba(8, 44, 76, 0.1);
}

.contact-map-copy,
.contact-map-frame-wrap {
  min-width: 0;
}

.contact-map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.7rem 0.5rem 0.7rem 0.9rem;
}

.contact-map-copy h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 0.9rem;
}

.contact-map-frame-wrap {
  overflow: hidden;
  border-radius: 24px;
  min-height: 360px;
  border: 1px solid rgba(15, 78, 134, 0.08);
  background: rgba(255, 255, 255, 0.65);
}

.contact-map-frame {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.info-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--text-soft);
}

.info-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  top: 0.75rem;
  left: 0;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pill-grid span,
.availability-box {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(15, 41, 64, 0.05);
  border: 1px solid var(--border);
  color: var(--navy);
  font-weight: 700;
}

.availability-box {
  border-radius: 20px;
  padding: 1.1rem 1.2rem;
  margin-top: 1rem;
}

.availability-box span {
  display: block;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.availability-box strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.2rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 66px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #16a34a);
  color: #fff;
  font-size: 1.9rem;
  box-shadow: 0 18px 34px rgba(22, 163, 74, 0.28);
  z-index: 1040;
  animation: pulse 2.4s infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 991.98px) {
  .topbar .d-flex {
    text-align: center;
  }

  .main-nav .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 41, 64, 0.08);
    box-shadow: 0 20px 40px rgba(15, 41, 64, 0.08);
  }

  .main-nav .navbar-nav {
    align-items: stretch;
  }

  .main-nav .nav-link {
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }

  .hero-section .row,
  .page-hero .row {
    min-height: auto;
  }

  .hero-section,
  .page-hero {
    text-align: center;
  }

  .hero-copy,
  .section-heading,
  .contact-hero {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-trust {
    justify-content: center;
  }

  .section-space {
    padding: 4.8rem 0;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-grid,
  .sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-one,
  .metric-two {
    position: static;
    margin-top: 1rem;
  }

  .hero-visual {
    max-width: 44rem;
    margin: 0 auto;
  }

  .contact-map-card {
    grid-template-columns: 1fr;
  }

  .contact-map-copy {
    padding: 0.4rem 0.3rem 0;
  }

  .services-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-panel,
  .service-panel-featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .service-panel-featured .service-panel-head {
    padding-right: 0.2rem;
    border-right: 0;
  }

  .article-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-list-grid {
    grid-template-columns: 1fr;
  }

  .article-body-grid {
    grid-template-columns: 1fr;
  }

  .logo-strip .row {
    row-gap: 1rem;
  }

  .strip-copy {
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .topbar {
    font-size: 0.82rem;
  }

  .topbar .d-flex,
  .topbar .gap-3 {
    gap: 0.55rem !important;
  }

  .main-nav {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }

  .navbar-brand {
    max-width: calc(100% - 72px);
  }

  .header-logo {
    width: min(190px, 54vw);
  }

  .section-space {
    padding: 4rem 0;
  }

  .section-space-sm {
    padding: 3.2rem 0 2.2rem;
  }

  .display-title {
    font-size: clamp(2.5rem, 13vw, 3.6rem);
    line-height: 1;
  }

  .section-heading h2 {
    font-size: 2.4rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .eyebrow {
    justify-content: center;
    letter-spacing: 0.17em;
    font-size: 0.72rem;
  }

  .hero-section .btn-lg,
  .page-hero .btn-lg,
  .cta-panel .btn-lg,
  .form-panel .btn-lg {
    width: 100%;
  }

  .hero-trust,
  .pill-grid,
  .d-flex.flex-wrap.justify-content-center.justify-content-lg-end.gap-3 {
    gap: 0.7rem;
  }

  .trust-pill,
  .mini-badge {
    width: 100%;
    justify-content: center;
  }

  .stats-grid,
  .sector-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-card,
  .testimonial-card,
  .contact-card,
  .form-panel,
  .info-panel,
  .cta-panel {
    border-radius: 24px;
  }

  .services-board {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-panel {
    padding: 1.2rem;
    border-radius: 24px;
  }

  .contact-map-card {
    padding: 1rem;
    border-radius: 24px;
  }

  .contact-map-frame-wrap,
  .contact-map-frame {
    min-height: 300px;
    border-radius: 18px;
  }

  .service-panel::after {
    width: 100%;
    height: 5px;
    inset: auto 0 0 0;
  }

  .service-panel-head,
  .service-panel-body {
    padding: 0.15rem;
  }

  .service-panel-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 1.35rem;
  }

  .service-panel-title h3 {
    font-size: 1.45rem;
  }

  .service-pill-list {
    gap: 0.55rem;
  }

  .service-pill-list a {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 0.95rem;
    min-height: 42px;
  }

  .service-panel-btn {
    width: 100%;
    justify-content: center;
    border-radius: 12px;
  }

  .service-directory-card {
    padding: 1.7rem 1.3rem 1.6rem;
    border-radius: 22px;
  }

  .article-topic-grid {
    grid-template-columns: 1fr;
  }

  .article-list-card {
    padding: 1.45rem;
    border-radius: 22px;
  }

  .article-list-card h3 {
    font-size: 1.55rem;
  }

  .article-topic-card {
    padding: 1rem;
    border-radius: 18px;
  }

  .featured-article-card,
  .article-mini-card {
    border-radius: 24px;
  }

  .featured-article-card {
    padding: 1.7rem 1.4rem;
  }

  .featured-article-card h3 {
    font-size: 1.7rem;
  }

  .article-lead {
    font-size: 1rem;
  }

  .article-footer-row .btn {
    width: 100%;
  }

  .service-directory-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .service-link-list {
    gap: 0.45rem;
    margin-bottom: 1.35rem;
  }

  .service-link-list a {
    font-size: 0.98rem;
  }

  .service-tile-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    font-size: 1.35rem;
    margin-bottom: 1.1rem;
  }

  .service-whatsapp-btn {
    width: 100%;
    border-radius: 12px;
  }

  .service-card,
  .process-card,
  .testimonial-card,
  .contact-card,
  .form-panel,
  .info-panel {
    padding: 1.5rem;
  }

  .icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    font-size: 1.45rem;
  }

  .service-card h3,
  .process-card h3,
  .testimonial-card strong,
  .contact-card h2,
  .info-panel h2,
  .feature-item h3 {
    font-size: 1.55rem;
  }

  .feature-item {
    gap: 0.8rem;
  }

  .feature-item i {
    font-size: 1.35rem;
  }

  .process-card,
  .testimonial-card,
  .contact-card,
  .service-card {
    min-height: auto;
  }

  .cta-panel {
    padding: 1.6rem;
    text-align: left;
  }

  .cta-panel > div {
    width: 100%;
  }

  .custom-accordion .accordion-button {
    padding: 1rem 1.1rem;
    font-size: 0.98rem;
  }

  .custom-accordion .accordion-body {
    padding: 0 1.1rem 1rem;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 58px;
    height: 58px;
    font-size: 1.65rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .display-title {
    font-size: clamp(3.2rem, 5vw, 4.5rem);
  }

  .service-panel-title h3 {
    font-size: 1.55rem;
  }

  .service-pill-list a {
    font-size: 0.95rem;
  }

  .service-directory-card h3 {
    font-size: 1.7rem;
  }

  .service-link-list a {
    font-size: 1rem;
  }

  .service-card,
  .process-card,
  .testimonial-card,
  .contact-card {
    padding: 1.7rem;
  }

  .service-card h3,
  .process-card h3,
  .testimonial-card strong,
  .contact-card h2,
  .info-panel h2,
  .feature-item h3 {
    font-size: 1.7rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .section-space {
    padding: 5rem 0;
  }

  .hero-section,
  .page-hero {
    text-align: left;
  }

  .hero-trust {
    justify-content: flex-start;
  }

  .section-heading.text-center {
    text-align: center !important;
  }

  .section-heading:not(.text-center),
  .hero-copy,
  .contact-hero {
    margin-left: 0;
    margin-right: 0;
  }

  .trust-pill,
  .mini-badge {
    width: auto;
  }

  .cta-panel .btn-lg,
  .form-panel .btn-lg {
    width: auto;
  }
}

@media (max-width: 575.98px) {
  body {
    line-height: 1.6;
  }

  .container {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .display-title {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .floating-metric {
    padding: 0.8rem 0.9rem;
    border-radius: 16px;
  }

  .hero-visual {
    padding: 1rem;
  }

  .logo-strip {
    padding-top: 1.3rem;
    padding-bottom: 1.3rem;
  }

  .step-no {
    width: 50px;
    height: 50px;
  }

  .form-control,
  .form-select {
    padding: 0.85rem 0.95rem;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .header-logo {
    width: min(168px, 52vw);
  }

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

@media (min-width: 1400px) {
  .section-space {
    padding: 6.5rem 0;
  }

  .hero-visual {
    padding: 1.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
