/* =========================================================
   DE IMAGE — CONTACT PAGE
   Premium Editorial Design
========================================================= */

:root {
  --bg: #050510;
  --bg-soft: #0b0b1c;
  --white: #ffffff;
  --muted: rgba(255,255,255,0.65);
  --soft: rgba(255,255,255,0.8);
  --accent: #4da3ff;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI",
          Roboto, Helvetica, Arial, sans-serif;
}

/* Reset */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background: var(--bg);
  font-family: var(--font);
  color: var(--white);
  overflow-x: hidden;
}

/* =====================================================
   HERO
===================================================== */

.contact-hero {
  padding: calc(env(safe-area-inset-top) + 120px) 24px 120px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(77,163,255,0.15), transparent 60%),
    #050510;
}

.contact-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero .eyebrow {
  letter-spacing: 3px;
  opacity: 0.6;
  margin-bottom: 18px;
}

.contact-hero h1 {
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 300;
  line-height: 1.1;
}

.contact-hero h1 span {
  font-weight: 600;
  background: linear-gradient(90deg, #4da3ff, #7dc3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-hero p {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--soft);
}

/* =====================================================
   CONTACT SECTION
===================================================== */

.contact-section {
  padding: 100px 24px;
  background: var(--bg-soft);
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 60px;
}

@media (min-width: 900px) {
  .contact-container {
    grid-template-columns: 2fr 1fr;
  }
}

/* FORM */

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 600px) {
  .form-row {
    flex-direction: row;
  }
}

input, select, textarea {
  width: 100%;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: border 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
}

button {
  padding: 16px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(90deg, #4da3ff, #7dc3ff);
  color: #050510;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

button:hover {
  transform: translateY(-3px);
}

/* INFO PANEL */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-block h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.info-block p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* =====================================================
   FOOTER
===================================================== */

.contact-footer {
  padding: 80px 24px 40px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #050510;
}

.footer-inner {
  max-width: 700px;
  margin: 0 auto;
}

.footer-inner h3 {
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.footer-inner p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

.footer-bottom {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}