.contact-hero {
  min-height: 390px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1600&q=80') center/cover no-repeat;
  filter: brightness(0.32);
  transform: scale(1.04);
}

.contact-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,8,0.9), rgba(8,8,8,0.48));
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  padding: 90px 8%;
  max-width: 850px;
}

.contact-eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-eyebrow::before {
  content: '';
  width: 44px;
  height: 1px;
  background: var(--gold);
}

.contact-hero h1 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: clamp(44px, 7vw, 78px);
  font-weight: 300;
  line-height: 0.98;
  margin-bottom: 20px;
}

.contact-hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.contact-hero p {
  color: rgba(245,240,232,0.7);
  font-size: 15px;
  line-height: 1.9;
  max-width: 560px;
}

.channels-strip {
  background: var(--dark);
  border-bottom: 1px solid rgba(212,160,23,0.12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.channel {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 40px;
  border-right: 1px solid rgba(212,160,23,0.12);
  text-decoration: none;
  transition: var(--transition);
}

.channel:last-child {
  border-right: none;
}

.channel:hover {
  background: rgba(212,160,23,0.06);
}

.channel-icon {
  width: 50px;
  height: 50px;
  background: rgba(212,160,23,0.08);
  border: 1px solid rgba(212,160,23,0.25);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  flex-shrink: 0;
  transition: var(--transition);
}

.channel:hover .channel-icon {
  background: var(--gold);
  color: var(--black);
}

.channel-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-mid);
  font-weight: 700;
  margin-bottom: 4px;
}

.channel-value {
  font-size: 14px;
  color: var(--cream);
  font-weight: 600;
}

.channel-sub {
  font-size: 11px;
  color: var(--gray-mid);
  margin-top: 3px;
}

.contact-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 560px;
  background: var(--black);
  min-height: 80vh;
}

.contact-info-panel {
  padding: 80px 8%;
  border-right: 1px solid rgba(212,160,23,0.12);
}

.info-block {
  margin-bottom: 54px;
}

.info-block:last-child {
  margin-bottom: 0;
}

.info-block-title {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212,160,23,0.15);
}

.location-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.location-item:first-child {
  padding-top: 0;
}

.location-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(212,160,23,0.08);
}

.location-city {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 5px;
}

.location-address {
  font-size: 13px;
  color: var(--gray-light);
  line-height: 1.75;
}

.location-hours {
  font-size: 12px;
  color: rgba(212,160,23,0.75);
  margin-top: 5px;
}

.showroom-img-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212,160,23,0.15);
}

.showroom-img-wrap img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}

.showroom-img-wrap:hover img {
  transform: scale(1.04);
}

.showroom-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(8,8,8,0.82));
  display: flex;
  align-items: flex-end;
  padding: 22px;
}

.showroom-caption {
  font-size: 12px;
  color: rgba(245,240,232,0.75);
  font-style: italic;
}

.social-links {
  display: flex;
  flex-direction: column;
}

.social-link {
  color: var(--cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.social-link:hover {
  color: var(--gold);
  padding-left: 6px;
}

.social-link i {
  color: var(--gold);
  font-size: 20px;
  width: 22px;
}

.contact-form-panel {
  padding: 80px 8%;
  background: radial-gradient(circle at top right, rgba(212,160,23,0.08), transparent 35%), var(--black);
}

.form-card {
  background: var(--dark);
  border: 1px solid rgba(212,160,23,0.16);
  padding: 36px;
  position: sticky;
  top: 95px;
}

.form-title {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 36px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 10px;
}

.form-title em {
  color: var(--gold);
  font-style: italic;
}

.form-subtitle {
  color: var(--gray-light);
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.enquiry-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.enquiry-type {
  border: 1px solid rgba(212,160,23,0.18);
  background: var(--dark-2);
  color: var(--gray-light);
  padding: 12px 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.enquiry-type i {
  font-size: 18px;
  display: block;
  margin-bottom: 6px;
}

.enquiry-type:hover,
.enquiry-type.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,160,23,0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.f-group {
  margin-bottom: 18px;
}

.f-label {
  display: block;
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}

.f-input {
  width: 100%;
  background: var(--dark-2);
  border: 1px solid rgba(212,160,23,0.18);
  color: var(--cream);
  padding: 14px;
  font-family: var(--font-body);
  font-size: 13.5px;
  outline: none;
  transition: var(--transition);
}

.f-input:focus {
  border-color: var(--gold);
  background: rgba(212,160,23,0.04);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.07);
}

.f-input.error {
  border-color: #e74c3c;
}

.f-textarea {
  min-height: 120px;
  resize: vertical;
}

.f-error {
  display: none;
  font-size: 11px;
  color: #e74c3c;
  margin-top: 6px;
}

.f-error.show {
  display: block;
}

.budget-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.budget-chip {
  border: 1px solid rgba(212,160,23,0.18);
  background: var(--dark-2);
  color: var(--gray-light);
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.budget-chip:hover,
.budget-chip.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,160,23,0.08);
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray-light);
  font-size: 12px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.consent-row input {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.submit-btn {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 18px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(212,160,23,0.24);
}

.submit-btn.loading {
  pointer-events: none;
  opacity: 0.75;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0,0,0,0.25);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}

.submit-btn.loading .spinner {
  display: block;
}

.submit-btn.loading .btn-label {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-success {
  display: none;
  text-align: center;
  padding: 38px 0;
}

.form-success.show {
  display: block;
}

.success-ring {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(212,160,23,0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 22px;
}

.success-title {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 34px;
  font-weight: 300;
}

.success-title em {
  color: var(--gold);
  font-style: italic;
}

.success-sub {
  color: var(--gray-light);
  font-size: 13px;
  line-height: 1.8;
  margin: 14px auto 24px;
  max-width: 380px;
}

.map-section,
.faq-section {
  padding: 90px 8%;
}

.map-section {
  background: var(--black);
}

.faq-section {
  background: var(--dark);
}

.section-mini-title {
  text-align: center;
  margin-bottom: 44px;
}

.section-mini-title .eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-mini-title h2 {
  font-family: var(--font-heading);
  font-size: 44px;
  color: var(--white);
  font-weight: 300;
}

.section-mini-title h2 em {
  color: var(--gold);
  font-style: italic;
}

.map-wrap {
  background: var(--dark);
  border: 1px solid rgba(212,160,23,0.14);
  overflow: hidden;
}

.map-placeholder {
  height: 410px;
  background:
    linear-gradient(rgba(212,160,23,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,23,0.055) 1px, transparent 1px),
    var(--dark-2);
  background-size: 42px 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.map-pin {
  width: 54px;
  height: 54px;
  border-radius: 50% 50% 50% 0;
  background: var(--gold);
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 26px rgba(212,160,23,0.45);
}

.map-pin i {
  transform: rotate(45deg);
  color: var(--black);
  font-size: 22px;
}

.map-label {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 24px;
}

.map-address {
  color: var(--gray-light);
  font-size: 13px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 70px;
}

.faq-item {
  border-bottom: 1px solid rgba(212,160,23,0.12);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  cursor: pointer;
}

.faq-q-text {
  color: var(--cream);
  font-size: 14px;
  font-weight: 700;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(212,160,23,0.25);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--black);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: 0.35s ease;
}

.faq-item.open .faq-a {
  max-height: 220px;
}

.faq-a-inner {
  color: rgba(245,240,232,0.65);
  font-size: 13px;
  line-height: 1.85;
  padding-bottom: 20px;
}

.notif {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--dark);
  color: var(--cream);
  border: 1px solid rgba(212,160,23,0.35);
  padding: 14px 18px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: 0.25s ease;
}

.notif.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .contact-main {
    grid-template-columns: 1fr;
  }

  .contact-info-panel {
    border-right: none;
    border-bottom: 1px solid rgba(212,160,23,0.12);
  }

  .form-card {
    position: static;
  }

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

@media (max-width: 760px) {
  .channels-strip {
    grid-template-columns: 1fr;
  }

  .channel {
    border-right: none;
    border-bottom: 1px solid rgba(212,160,23,0.12);
  }

  .form-row,
  .enquiry-types {
    grid-template-columns: 1fr;
  }

  .contact-info-panel,
  .contact-form-panel,
  .map-section,
  .faq-section {
    padding: 60px 6%;
  }
}