/* ── PAGE LOAD ANIMATION ── */
.hero-left > * { animation: fadeUp .7s ease both; }
.hero-left > *:nth-child(1) { animation-delay: .05s; }
.hero-left > *:nth-child(2) { animation-delay: .15s; }
.hero-left > *:nth-child(3) { animation-delay: .25s; }
.hero-left > *:nth-child(4) { animation-delay: .35s; }
.hero-left > *:nth-child(5) { animation-delay: .45s; }
.hero-right { animation: fadeUp .7s .3s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-hero-inner > * { animation: fadeUp .6s ease both; }
.page-hero-inner > *:nth-child(1) { animation-delay: .05s; }
.page-hero-inner > *:nth-child(2) { animation-delay: .12s; }
.page-hero-inner > *:nth-child(3) { animation-delay: .2s; }
.page-hero-inner > *:nth-child(4) { animation-delay: .28s; }

/* ── MOBILE HERO CTA STRIP (shown only on mobile, inside hero) ── */
.hero-mobile-cta {
  display: none;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 12px;
  padding: 20px;
  margin-top: 8px;
}
.hero-mobile-cta-phone {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 700;
  color: var(--gold); display: block; text-align: center; margin-bottom: 6px;
}
.hero-mobile-cta-note { font-size: .72rem; color: rgba(255,255,255,.3); text-align: center; margin-bottom: 14px; }
.hero-mobile-cta-row { display: flex; gap: 10px; }
@media(max-width:1000px) { .hero-mobile-cta { display: block; } }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -100%; left: 16px; z-index: 9999;
  background: var(--gold); color: var(--navy-deep);
  font-family: var(--sans); font-size: .82rem; font-weight: 700;
  padding: 8px 16px; border-radius: 0 0 6px 6px;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── CONTACT FORM ── */
.contact-form {
  background: rgba(10,22,42,.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,.28);
  border-radius: 16px;
  padding: 38px 40px;
  max-width: 680px;
  margin: 36px auto 0;
  box-shadow: 0 24px 70px rgba(0,0,0,.4);
  text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media(max-width:600px) { .form-row { grid-template-columns: 1fr; } .contact-form { padding: 28px 22px; } }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-label {
  font-size: .74rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: rgba(255,255,255,.72);
}
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--sans); font-size: .92rem;
  padding: 13px 15px;
  transition: border-color .2s, background .2s, box-shadow .2s;
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,.4); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.form-select { cursor: pointer; }
.form-select option { background: var(--navy-deep); color: var(--white); }
.form-textarea { resize: vertical; min-height: 96px; }
.form-submit {
  width: 100%; background: var(--gold); color: var(--navy-deep);
  font-family: var(--sans); font-size: .98rem; font-weight: 700;
  border: none; border-radius: 8px; padding: 16px;
  cursor: pointer; transition: background .2s, transform .15s, box-shadow .2s;
  margin-top: 6px; box-shadow: 0 6px 22px rgba(201,168,76,.28);
}
.form-submit:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 10px 30px rgba(201,168,76,.4); }
.form-note { font-size: .76rem; color: rgba(255,255,255,.5); text-align: center; margin-top: 14px; }
.form-success {
  display: none; text-align: center; padding: 20px;
  color: var(--gold); font-family: var(--serif); font-size: 1.2rem; font-style: italic;
}

/* ── TRUST BADGE ── */
.google-trust {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 40px; padding: 7px 16px;
  font-size: .76rem; font-weight: 600; color: rgba(255,255,255,.6);
}
.google-trust .g-logo { font-size: 14px; font-weight: 800; letter-spacing: -.5px; }
.google-trust .g-logo span:nth-child(1) { color: #4285F4; }
.google-trust .g-logo span:nth-child(2) { color: #EA4335; }
.google-trust .g-logo span:nth-child(3) { color: #FBBC05; }
.google-trust .g-logo span:nth-child(4) { color: #4285F4; }
.google-trust .g-logo span:nth-child(5) { color: #34A853; }
.google-trust .g-logo span:nth-child(6) { color: #EA4335; }
.google-trust .g-stars { color: #FBBC05; font-size: 11px; letter-spacing: .5px; }
.google-trust .g-count { color: rgba(255,255,255,.4); font-size: .72rem; }

/* ── ANNOUNCEMENT BAR CLOSE ── */
.ann-bar-inner { display: flex; align-items: center; justify-content: center; gap: 12px; position: relative; }
.ann-close {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,.4);
  cursor: pointer; font-size: 16px; line-height: 1; padding: 4px;
  transition: color .2s;
}
.ann-close:hover { color: rgba(255,255,255,.8); }

/* ── SERVICE AREAS ── */
.areas-section { background: var(--navy); }
.areas-section .sec-head h2 { color: var(--white); }
.areas-section .sec-head p { color: rgba(255,255,255,.55); }
.areas-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-top: 36px;
}
.area-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.22);
  border-radius: 40px;
  padding: 9px 18px;
  font-family: var(--sans); font-size: .82rem; font-weight: 500;
  color: rgba(255,255,255,.82);
  transition: background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.area-tag:last-child {
  background: rgba(201,168,76,.12);
  border-color: rgba(201,168,76,.5);
  color: var(--gold);
  font-weight: 700;
}
.area-tag::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); opacity: .6; flex-shrink: 0;
}
.area-tag:last-child::before { display: none; }
.areas-section .sec-head { border-bottom: 1px solid rgba(201,168,76,.1); padding-bottom: 40px; margin-bottom: 0; }
