*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0a0a0a;
  --near-black: #111;
  --dark: #1a1a1a;
  --mid: #4a4a4a;
  --muted: #767676;
  --light: #e8e8e8;
  --surface: #f7f6f4;
  --white: #ffffff;
  --gold: #b8933f;
  --gold-soft: #c9a84c;
  --gold-pale: #f9f3e8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

/* HERO */
#hero {
  position: relative;
  max-height: 85vh;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(7, 14, 26, 0.88) 0%,
    rgba(7, 14, 26, 0.45) 25%,
    rgba(7, 14, 26, 0.15) 100%
  );
}

.hero-row {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding: 0 60px;
}

.hero-left {
  max-width: 480px;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(32px, 4.8vw, 58px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 10px;
}

.hero-sub {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-gold {
  background: #fff;
  color: #0f1410;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 14.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-gold:hover {
  background: var(--gold);
  color: #0f1410;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Floating contact card */
.hero-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px 30px;
  min-width: 300px;
  max-width: 340px;
  flex-shrink: 0;
  animation: cardIn 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.card-pill {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.card-name {
  font-size: 21px;
  font-weight: 600;
  color: #111;
  margin-bottom: 5px;
  line-height: 1.2;
}

.card-name span {
  color: var(--gold);
}

.card-address {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 16px;
}

.card-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 14px;
}

.card-row {
  font-size: 12.5px;
  color: #444;
  margin-bottom: 5px;
  display: flex;
  gap: 6px;
}

.card-row strong {
  color: #1a2a6c;
  min-width: 38px;
}

/* INFO STRIP */
.info-strip {
  background: #f8f8f8;
  color: #303030;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.info-strip-item {
  padding: 40px 60px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.info-strip-item:last-child {
  border-right: none;
}

.info-strip-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #303030;
  margin-bottom: 10px;
}

.info-strip-value {
  font-size: 14px;
  color: #303030;
  line-height: 1.7;
}

.info-strip-value a {
  color: var(--gold-soft);
  text-decoration: none;
}

.info-strip-value a:hover {
  text-decoration: underline;
}

/* SECTION COMMON */
.section-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold);
  margin-bottom: 28px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--near-black);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ── CONTACT FORM SECTION ── */
#contact-form-section {
  padding: 100px 40px;
}

.fg {
  margin-bottom: 20px;
}

.fl {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--near-black);
  margin-bottom: 8px;
}

.fi,
.fs,
.fta {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--light);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  -webkit-appearance: none;
}

.fi::placeholder,
.fta::placeholder {
  color: #bbb;
}

.fi:focus,
.fs:focus,
.fta:focus {
  border-color: var(--near-black);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.fs {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23666' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px;
  padding-right: 38px;
}

.fta {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fphone {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
}

.form-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 28px 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-section-label i {
  color: var(--gold);
  font-size: 10px;
}

.privacy-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.privacy-note i {
  color: var(--gold);
  margin-top: 2px;
  font-size: 11px;
  flex-shrink: 0;
}

.submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.submit-btn {
  background: var(--near-black);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 14px 36px;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    background 0.2s,
    transform 0.15s;
}

.submit-btn:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

#form-success {
  display: none;
  text-align: center;
  padding: 80px 24px;
}

#form-success.show {
  display: block;
}

#form-error {
  display: none;
  margin-bottom: 20px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(180, 40, 40, 0.08);
  border: 1px solid rgba(180, 40, 40, 0.35);
  color: #5c1a1a;
  font-size: 14px;
  line-height: 1.5;
}

#form-error.show {
  display: block;
}

.submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.succ-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-pale);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.succ-icon i {
  font-size: 24px;
  color: var(--gold);
}

#form-success h3 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 10px;
}

#form-success p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.form-col-head {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 20px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--light);
}

.form-col-head i {
  color: var(--gold);
}

.contact-form-col {
  padding: 40px;
}

/* ── FAQ SECTION ── */
#faq-section {
  background-color: #09111f;
  padding: 100px 64px;
  margin-top: 80px;
}

.faq-sidebar-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
}

.faq-sidebar-title em {
  font-style: italic;
  color: var(--gold);
}

#faq-section p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  margin-bottom: 32px;
}

.faq-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.faq-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.faq-link i {
  font-size: 11px;
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
}

.faq-q {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  flex: 1;
  transition: color 0.2s;
}

.faq-item.open .faq-q {
  color: #fff;
}

.faq-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.faq-icon i {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  transition:
    transform 0.3s,
    color 0.2s;
}

.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.faq-item.open .faq-icon i {
  color: #fff;
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-body-inner {
  padding: 0 0 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.9;
}

.faq-item.open .faq-body {
  max-height: 300px;
}

/* LOCATIONS */
#locations {
  /* background: var(--surface); */
  padding: 100px 64px;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.loc-group-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 12px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--light);
}

.loc-list {
  list-style: none;
}

.loc-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--light);
  cursor: pointer;
  transition: padding-left 0.25s;
}

.loc-item:last-child {
  border-bottom: none;
}

.loc-item:hover {
  padding-left: 6px;
}

.loc-flag {
  font-size: 20px;
  flex-shrink: 0;
}

.loc-info {
  flex: 1;
}

.loc-name {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 3px;
}

.loc-sub {
  font-size: 12px;
  color: var(--muted);
}

.loc-arr {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--light);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.loc-arr i {
  font-size: 10px;
  color: var(--muted);
  transition: color 0.2s;
}

.loc-item:hover .loc-arr {
  background: var(--near-black);
  border-color: var(--near-black);
}

.loc-item:hover .loc-arr i {
  color: #fff;
}

.map-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.map-tab {
  background: var(--white);
  border: 1.5px solid var(--light);
  border-radius: 100px;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.map-tab:hover {
  border-color: var(--near-black);
  color: var(--dark);
}

.map-tab.active {
  background: var(--near-black);
  border-color: var(--near-black);
  color: #fff;
}

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  height: 440px;
  border: 1px solid var(--light);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* CTA STRIP */

/* ── FINAL CTA STRIP ────────────────────────────────────────────────── */
.final-cta {
  padding: 72px 56px;
  text-align: center;
  /* background: linear-gradient(135deg, #f7f8fc 0%, #fff 100%); */
  background-image: url("/services/gold.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-top: 1px solid var(--border);
  border-radius: 20px;
}

.final-cta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--sky);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.final-cta-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: #2c2c2c;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.final-cta-sub {
  font-size: 15px;
  color: var(--text-body);
  max-width: 500px;
  margin: 0 auto 34px;
  line-height: 1.7;
}

.final-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-strip {
  background: var(--near-black);
  padding: 72px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.cta-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 10px;
}

.cta-title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 8px;
}

.cta-title em {
  font-style: italic;
  color: #e8c97a;
}

.cta-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.35);
}

.cta-btn {
  background: var(--gold-soft);
  color: var(--near-black);
  border-radius: 100px;
  padding: 14px 36px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}

.cta-btn:hover {
  background: #e8c97a;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #363636;
  border: 1px solid #2f2f2f;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-outline:hover {
  background: #252525;
  color: #fff;
  border-color: #2b2c2d;
}

footer {
  background: #060606;
  padding: 24px 64px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.3px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  #hero {
    padding: 110px 28px 52px;
  }

  .info-strip {
    grid-template-columns: 1fr 1fr;
  }

  .info-strip-item {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .info-strip-item:nth-child(2n) {
    border-right: none;
  }

  #contact-form-section,
  #faq-section,
  #locations,
  .cta-strip,
  footer {
    padding: 64px 28px;
  }

  .contact-form-col {
    padding: 28px;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .info-strip {
    grid-template-columns: 1fr;
  }

  .info-strip-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .frow,
  .fphone {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 20px 24px;
  }
}
