/* =========================================
   DRD – Site chrome & sections (header, hero, services, process, footer)
   ========================================= */

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(209, 217, 232, 0.9);
  transition: box-shadow var(--transition-fast), background var(--transition-fast);
}

.site-header--scrolled {
  box-shadow: 0 10px 30px rgba(15, 27, 63, 0.16);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  min-height: 64px;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-logo img {
  height: 44px;
  width: auto;
  border-radius: 0.6rem;
}

.navbar-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.navbar-logo-title {
  color: #1f3f78;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  text-transform: uppercase;
  margin-bottom: 0.05rem;
}

.navbar-logo-subtitle {
  color: #1f3f78;
  font-size: 0.72rem;
  opacity: 0.85;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.nav-links a {
  color: #1f3f78;
  position: relative;
  padding: 0.4rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: #0087a4;
  transition: width 0.2s ease-out;
}

.nav-links a:hover {
  opacity: 0.95;
}

.nav-links a.active::after {
  width: 100%;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  color: #1f3f78;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero – home */
.hero {
  padding: 3.2rem 0 3rem;
  background: transparent;
}

/* IMPORTANT: ensure first big card never causes bottom “flash” on mobile */
.hero-inner,
.services-hero-inner {
  display: grid;
  gap: 2.4rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 40px rgba(15, 27, 63, 0.18);
  padding: 2.2rem 2.4rem;
}

.hero-inner {
  grid-template-columns: 1.25fr 1.05fr;
}

/* Hero text */
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--color-teal);
  margin-bottom: 0.4rem;
  white-space: nowrap;
    max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-title {
  margin: 0 0 0.9rem;
  font-size: 2.2rem;
  line-height: 1.2;
  color: var(--color-navy);
}

.hero-subtitle {
  margin: 0 0 1.5rem;
  font-size: 0.96rem;
  color: var(--color-muted);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.7rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  font-size: 0.86rem;
  color: var(--color-muted);
}

.hero-meta-item {
  position: relative;
  padding-left: 0.9rem;
}

.hero-meta-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-teal);
  position: absolute;
  left: 0;
  top: 0.48rem;
}

/* Hero image */
.hero-right {
  position: relative;
}

.hero-photo-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.hero-photo-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.hero-photo-overlay {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  background: rgba(31, 63, 120, 0.96);
  color: var(--color-white);
  padding: 0.75rem 0.95rem;
  border-radius: 0.9rem;
  font-size: 0.8rem;
  max-width: 220px;
}

.hero-photo-overlay-title {
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.hero-photo-overlay-body {
  opacity: 0.9;
}

/* Hero strip */
.hero-strip {
  margin-top: 2.1rem;
}

.hero-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-strip-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 0.9rem 1rem;
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.hero-strip-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.hero-strip-text-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-navy);
}

.hero-strip-text-sub {
  font-size: 0.82rem;
  color: var(--color-muted);
}

/* Services page hero */
.services-hero {
  padding: 3.1rem 0 2.8rem;
  background: transparent;
}

.services-hero-inner {
  grid-template-columns: 1.3fr 1.1fr;
}

.services-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-teal);
  margin-bottom: 0.6rem;
  white-space: nowrap; max-width: 100%; overflow: hidden; text-overflow: ellipsis;
}

.services-hero-title {
  margin: 0 0 0.7rem;
  font-size: 2rem;
  color: var(--color-navy);
}

.services-hero-text {
  margin: 0 0 1.2rem;
  font-size: 0.95rem;
  color: var(--color-muted);
  max-width: 460px;
}

.services-hero-note {
  font-size: 0.84rem;
  color: var(--color-muted);
}

.services-hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.services-hero-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* Services preview card */
.services-preview {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 2rem 2.2rem;
  margin-top: 2rem;
  box-shadow: 0 12px 26px rgba(15, 27, 63, 0.08);
}

.services-preview-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 2rem;
}

.services-preview-list {
  display: grid;
  gap: 1.4rem;
}

.services-preview-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.services-preview-bullet {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-top: 0.4rem;
  border: 2px solid var(--color-teal);
}

.services-preview-title {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.1rem;
}

.services-preview-sub {
  font-size: 0.86rem;
  color: var(--color-muted);
}

.services-preview-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.services-preview-photo img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* Process blocks */
.process-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
}

.process-steps {
  display: grid;
  gap: 1rem;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem 1rem;
}

.process-step-number {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--color-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-teal);
}

.process-step-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.1rem;
}

.process-step-text {
  font-size: 0.86rem;
  color: var(--color-muted);
}

.process-aside {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 1.4rem 1.5rem;
  box-shadow: 0 10px 24px rgba(15, 27, 63, 0.06);
}

.process-aside-title {
  margin: 0 0 0.6rem;
  font-size: 1rem;
  color: var(--color-navy);
}

.process-aside-list {
  font-size: 0.86rem;
  color: var(--color-muted);
  padding-left: 1.1rem;
}

.process-aside-list li {
  margin-bottom: 0.3rem;
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  padding: 2rem 0 2.3rem;
  background: #182947;
  color: rgba(231, 236, 248, 0.9);
  font-size: 0.82rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  opacity: 0.85;
}

.footer-links a:hover {
  opacity: 1;
}
