/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --beige:       #d8d5cc;
  --beige-light: #e4e1d8;
  --beige-dark:  #c4c1b8;
  --black:       #1a1a1a;
  --black-soft:  #2d2d2d;
  --cream:       #f0ede6;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--beige);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  padding: 14px 0;
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: block;
  line-height: 0;
}

.logo {
  height: 52px;
  width: auto;
  display: block;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  color: #fff;
  gap: 2px;
}

.header-phone-label {
  font-size: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.55;
}

.header-phone-number {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--black);
  color: #fff;
  text-decoration: none;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: transparent;
  color: var(--black);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ===== SHARED SECTION LABELS ===== */
.section-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 16px;
  line-height: 1.75;
  opacity: 0.68;
  max-width: 580px;
  margin-bottom: 52px;
}

/* ===== HERO ===== */
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero {
  position: relative;
  background: var(--black) url('hero-bg.png') center / cover no-repeat;
  padding: 96px 0 88px;
  color: #fff;
  animation: heroFadeIn 1.4s ease forwards;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 0;
}

.hero-inner {
  max-width: 740px;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 7px 18px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.hero-call:hover {
  opacity: 0.8;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 90px);
  font-weight: 700;
  line-height: 1.02;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  opacity: 0.7;
  max-width: 540px;
  margin-bottom: 44px;
}

.hero-note {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

/* ===== CRIMINAL BONDS ===== */
.criminal-bonds {
  background: var(--black);
  color: #fff;
  padding: 96px 0;
}

.criminal-bonds .section-tag,
.criminal-bonds .section-title,
.criminal-bonds .section-sub {
  color: #fff;
}

.criminal-bonds .section-tag {
  opacity: 0.45;
}

.criminal-bonds .section-sub {
  opacity: 0.65;
}

.bonds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bond-card {
  background: var(--black);
  padding: 40px 30px;
  transition: background 0.2s;
}

.bond-card:hover {
  background: #242424;
}

.bond-icon {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.bond-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.bond-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--beige-light);
  padding: 96px 0;
  border-top: 1px solid var(--beige-dark);
  border-bottom: 1px solid var(--beige-dark);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 52px;
}

.step {
  flex: 1;
}

.step-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  opacity: 1;
  color: var(--black);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.65;
}

.step-arrow {
  font-size: 24px;
  opacity: 0.18;
  padding-top: 22px;
  flex-shrink: 0;
}

/* ===== WHY CHAPMAN ===== */
.why-us {
  background: var(--beige);
  padding: 96px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 52px;
  border-top: 1px solid rgba(26, 26, 26, 0.15);
}

.why-card {
  padding: 36px 32px 36px 0;
  border-right: 1px solid rgba(26, 26, 26, 0.1);
}

.why-card:last-child {
  border-right: none;
  padding-right: 0;
}

.why-card:not(:first-child) {
  padding-left: 32px;
}

.why-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 14px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.6;
}

/* ===== SERVICE AREA ===== */
.service-area {
  background: var(--black);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.service-area .section-tag {
  color: #fff;
  opacity: 0.4;
}

.service-area .section-title {
  color: #fff;
}

.service-area .section-sub {
  color: #fff;
  opacity: 0.6;
  margin: 0 auto 40px;
}

.area-highlight {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--beige-light);
  padding: 96px 0;
  text-align: center;
}

.contact-centered {
  max-width: 620px;
  margin: 0 auto;
}

.contact-body {
  font-size: 16px;
  line-height: 1.75;
  opacity: 0.68;
  margin-bottom: 36px;
}

.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid #25D366;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-whatsapp:hover {
  background: transparent;
  color: #25D366;
  transform: translateY(-2px);
}

.contact-note {
  font-size: 12px;
  opacity: 0.4;
  letter-spacing: 0.06em;
}

/* ===== WHATSAPP BUBBLE ===== */
@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50%       { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

.wa-bubble {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 14px 20px 14px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-bubble:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  animation: none;
}

.wa-bubble-label {
  white-space: nowrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: #fff;
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  height: 52px;
  width: auto;
}

.footer-info {
  text-align: right;
}

.footer-info p {
  font-size: 12px;
  opacity: 0.4;
  line-height: 1.9;
}

.footer-info a {
  color: #fff;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.footer-info a:hover {
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .bonds-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .why-card {
    border-right: none;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
    padding: 28px 0;
  }

  .why-card:not(:first-child) {
    padding-left: 0;
  }

  .why-card:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .hero {
    background-image: url('hero-bg-mobile.png');
    background-position: center top;
  }

  .steps {
    flex-direction: column;
    gap: 0;
  }

  .step {
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
    padding-bottom: 32px;
    margin-bottom: 32px;
  }

  .step:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }

  .step-arrow {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-info {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 64px 0 64px;
  }

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

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

  .contact-form-wrap {
    padding: 28px 24px;
  }

  .header-phone-number {
    font-size: 18px;
  }
}
