/* =========================
   CONTACT – PAGE ONLY
   Uses variables from style.css
   ========================= */

.page-header{
  text-align:center;
  margin-bottom: 26px;
}

.eyebrow{
  letter-spacing:.18em;
  font-size:.75rem;
  color: var(--accent);
}

.page-title{
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  background: linear-gradient(90deg, #fff, var(--accent2));
  -webkit-background-clip: text;
  color: transparent;
}

.page-subtitle{
  max-width: 720px;
  margin: 10px auto 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Card wrapper (same as other pages) */
.content-card{
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  padding: 28px;
}

/* Grid layout */
.contact-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
}

.contact-copy h2{
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 950;
  letter-spacing: -0.02em;
  color: rgba(219,231,255,0.92);
}

.contact-copy p{
  margin: 0 0 12px;
  line-height: 1.65;
  color: var(--muted);
}

.contact-points{
  list-style: none;
  padding: 0;
  margin: 14px 0 12px;
  display: grid;
  gap: 10px;
}

.contact-points li{
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(18,24,40,0.30);
  border: 1px solid rgba(140,180,255,0.14);
  color: rgba(219,231,255,0.86);
  font-weight: 800;
}

.contact-hint{
  margin-top: 12px;
  color: rgba(219,231,255,0.62);
  font-size: 0.95rem;
}

/* Form */
#contact-form{
  display: grid;
  gap: 14px;
}

.field label{
  display: inline-block;
  margin: 0 0 8px;
  font-weight: 850;
  color: rgba(219,231,255,0.84);
  font-size: 0.92rem;
}

.form-control{
  position: relative;
}

/* Inputs (no rename; just style your existing classes) */
.input{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(140,180,255,0.18);
  background: rgba(18,24,40,0.35);
  color: rgba(219,231,255,0.92);
  padding: 12px 12px;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.input::placeholder{
  color: rgba(219,231,255,0.55);
  font-weight: 650;
}

.textarea{
  min-height: 140px;
  resize: vertical;
  padding-top: 12px;
  line-height: 1.55;
}

/* Focus polish */
.input:focus{
  border-color: rgba(124,219,255,0.55);
  background: rgba(18,24,40,0.50);
  box-shadow: 0 0 0 4px rgba(88,166,255,0.14);
}

/* Keep your spans but make them harmless (no “weird bar”) */
.input-border{
  display: none;
}

/* Send button (premium, matches homepage CTAs) */
.send-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100%;
  padding: 12px 16px;

  border: none;
  cursor: pointer;

  border-radius: 14px;
  color: #06101d;
  font-weight: 950;
  letter-spacing: 0.2px;

  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  box-shadow: 0 18px 40px rgba(88,166,255,0.20);

  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.send-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 52px rgba(88,166,255,0.28);
}

.send-btn:active{
  transform: translateY(0px);
  filter: brightness(0.98);
}

.send-btn .svg-wrapper-1,
.send-btn .svg-wrapper{
  display:flex;
  align-items:center;
  justify-content:center;
}

.send-btn svg{
  display:block;
}

/* Responsive */
@media (max-width: 980px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .content-card{
    padding: 22px;
  }
}

@media (max-width: 520px){
  .content-card{
    padding: 18px;
  }
}


@media (max-width: 600px) {

  /* --- Menu button: SAME design, smaller --- */
  .menu-btn {
    width: 38px;
    height: 30px;
    gap: 5px;
  }

  .menu-btn span,
  .menu-btn div {
    width: 35px;   /* slightly shorter */
    height: 3px;   /* unchanged thickness */
  }

  /* --- Menu: do NOT touch width or left --- */
  .menu {
    padding-top: 5rem !important;
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }

  .menu a {
    font-size: 0.92rem !important;
    padding: 10px 12px !important;
  }

  /* --- Page container --- */
  .page-shell,
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    padding-top: 4.8rem !important;
  }

  /* --- Headers --- */
  .page-header {
    margin-bottom: 1.2rem !important;
  }

  .page-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem) !important;
    line-height: 1.12 !important;
  }

  .page-subtitle {
    font-size: 0.95rem !important;
    line-height: 1.45 !important;
    max-width: 100% !important;
  }

  /* --- Cards --- */
  .content-card {
    padding: 1.25rem !important;
    border-radius: 18px !important;
  }

  .content-card h2 {
    font-size: 1.1rem !important;
  }

  .content-card p {
    font-size: 0.95rem !important;
  }

  /* --- Forms (contact page) --- */
  form,
  input,
  textarea,
  button {
    width: 100% !important;
  }
}