/* Reset & base */
:root {
  --bg: #071022; /* deep navy */
  --panel: #0c1724;
  --gold1: #d4a54b;
  --gold2: #b5832a;
  --muted: #bfc8d1;
  --white: #f6f7f9;
  --glass: rgba(255, 255, 255, 0.04);
  --radius: 10px;
  --max-width: 1200px;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
  font-family: Montserrat, system-ui, Arial, sans-serif;
  background: var(--bg);
  color: var(--muted);
}
a {
  color: inherit;
}

/* page container */
.wrap {
  max-width: var(--max-width);
  margin: 40px auto;
  padding: 40px;
  position: relative;
}

/* subtle patterned background (pseudo) */
.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(
      ellipse at 10% 20%,
      rgba(255, 220, 140, 0.06) 0,
      transparent 15%
    ),
    radial-gradient(
      ellipse at 90% 80%,
      rgba(255, 255, 255, 0.02) 0,
      transparent 20%
    ),
    linear-gradient(180deg, #071022 0%, #07162a 60%);
}

/* main contact section */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
  padding: 80px 24px;
  border-radius: 16px;
}

/* Left column (form) */
.contact-left {
  padding: 30px 20px;
}
.label-small {
  font-size: 13px;
  color: var(--gold1);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
h1.title {
  font-family: Playfair Display, serif;
  color: var(--white);
  font-size: 56px;
  margin: 8px 0 6px;
}
p.lead {
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 28px;
}

/* golden flare under heading */
.flare {
  height: 6px;
  width: 420px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 165, 75, 0.95),
    transparent
  );
  border-radius: 6px;
  margin: 20px 0 32px;
}

/* form grid */
form.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}
.form-row {
  display: flex;
  flex-direction: column;
}
label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}
input[type="text"],
input[type="email"],
textarea {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 14px;
  border-radius: 6px;
  color: var(--white);
  font-size: 14px;
}
textarea {
  min-height: 78px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.btn-gold {
  margin-top: 18px;
  background: linear-gradient(180deg, var(--gold1), var(--gold2));
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  color: #111;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
}

/* right column (info) */
.contact-right {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent);
  padding: 28px;
  border-radius: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.03);
}
.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold1), var(--gold2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #072029;
  font-weight: 700;
}
.info h4 {
  margin: 0;
  color: var(--white);
  font-size: 16px;
}
.info p {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.map {
  margin-top: 6px;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  height: 140px;
}
.map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* dots / pager */
.dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 28px 0;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.dot.active {
  background: linear-gradient(180deg, var(--gold1), var(--gold2));
  box-shadow: 0 0 12px rgba(212, 165, 75, 0.2);
}

/* bottom CTA */
.cta {
  margin-top: 64px;
  text-align: center;
  padding: 56px 24px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent);
}
.cta h2 {
  color: var(--white);
  font-size: 28px;
  margin: 0 0 18px;
}
.cta .btn {
  background: linear-gradient(180deg, var(--gold1), var(--gold2));
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  color: #072029;
  font-weight: 700;
}

/* decorative large circles on background */
.decor-right {
  position: absolute;
  right: -120px;
  top: 40px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(20, 30, 45, 0.25),
    rgba(255, 255, 255, 0.01)
  );
  filter: blur(40px);
  pointer-events: none;
}
.decor-left {
  position: absolute;
  left: -140px;
  bottom: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(10, 20, 35, 0.3),
    rgba(255, 255, 255, 0.01)
  );
  filter: blur(28px);
  pointer-events: none;
}

/* responsiveness */
@media (max-width: 1000px) {
  .contact-section {
    grid-template-columns: 1fr 320px;
    padding: 48px;
  }
  h1.title {
    font-size: 44px;
  }
  .flare {
    width: 320px;
  }
}
@media (max-width: 800px) {
  .wrap {
    margin: 20px;
    padding: 20px;
  }
  .contact-section {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px;
  }
  form.contact-form {
    grid-template-columns: 1fr;
  }
  .contact-right {
    order: 2;
  }
  .contact-left {
    order: 1;
  }
  h1.title {
    font-size: 36px;
    text-align: center;
  }
  .label-small {
    text-align: center;
  }
  .flare {
    display: none;
  }
  .cta {
    padding: 36px;
  }
}
