/* /home/headajyj/public_html/headsntail/webpages/pages/contact/css/contact.css */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#0f172a;
  color:#ffffff;
  line-height:1.6;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* hero */

.contact-hero{
  padding:110px 0 70px 0;
  text-align:center;
  background:linear-gradient(180deg,#0f172a 0%,#020617 100%);
  border-bottom:1px solid #1e293b;
}

.contact-hero__content{
  max-width:860px;
  margin:0 auto;
}

.eyebrow,
.section-tag{
  display:inline-block;
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#38bdf8;
  margin-bottom:12px;
  font-weight:700;
}

.contact-hero h1{
  font-size:46px;
  line-height:1.15;
  margin-bottom:18px;
}

.contact-hero .hero-sub{
  max-width:760px;
  margin:auto;
  color:#cbd5f5;
  font-size:18px;
}

/* notices */

.notice{
  margin:0 0 20px 0;
  padding:14px 16px;
  border-radius:12px;
  border:1px solid #1e293b;
  background:#020617;
  color:#cbd5f5;
}

.notice.success{
  border-color:rgba(79,222,255,.35);
  background:rgba(79,222,255,.08);
  color:rgba(210,250,255,.95);
}

.notice.error{
  border-color:rgba(255,77,77,.35);
  background:rgba(255,77,77,.08);
  color:rgba(255,220,220,.95);
}

/* layout */

.contact-wrap{
  padding:80px 0 90px 0;
}

.contact-grid{
  display:grid;
  grid-template-columns:1.45fr .95fr;
  gap:28px;
  align-items:start;
}

.contact-card{
  background:#020617;
  border:1px solid #1e293b;
  border-radius:16px;
  padding:30px;
  box-shadow:0 10px 30px rgba(0,0,0,.22);
}

.section-heading{
  margin-bottom:24px;
}

.section-heading h2{
  font-size:32px;
  margin-bottom:10px;
}

.section-heading p{
  color:#cbd5f5;
  max-width:720px;
}

/* form */

.contact-form{
  width:100%;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-bottom:16px;
}

.field{
  display:flex;
  flex-direction:column;
}

.field label{
  font-size:12px;
  color:#9fb0d6;
  margin:0 0 7px 0;
  text-transform:uppercase;
  letter-spacing:.6px;
  font-weight:700;
}

.field input,
.field textarea{
  width:100%;
  padding:14px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(10,18,34,.55);
  color:#ffffff;
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field input::placeholder,
.field textarea::placeholder{
  color:#8ea3c7;
}

.field textarea{
  min-height:170px;
  resize:vertical;
}

.field input:focus,
.field textarea:focus{
  border-color:rgba(56,189,248,.65);
  box-shadow:0 0 0 4px rgba(56,189,248,.18);
  background:rgba(10,18,34,.75);
}

.form-actions{
  margin-top:8px;
}

.btn{
  display:inline-block;
  padding:13px 22px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.10);
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  transition:all .2s ease;
}

.btn-primary{
  width:100%;
  background:#2563eb;
  color:#ffffff;
}

.btn-primary:hover{
  background:#1d4ed8;
}

/* sidebar */

.contact-side{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.info-card{
  background:#020617;
  border:1px solid #1e293b;
  border-radius:16px;
  padding:22px;
  box-shadow:0 10px 30px rgba(0,0,0,.16);
}

.info-card h3{
  font-size:22px;
  margin-bottom:10px;
  color:#ffffff;
}

.info-card p{
  color:#cbd5f5;
  margin-bottom:10px;
}

.contact-points{
  padding-left:18px;
}

.contact-points li{
  color:#cbd5f5;
  margin-bottom:8px;
}

.mini-link{
  display:inline-block;
  margin-top:8px;
  color:#38bdf8;
  text-decoration:none;
  border-bottom:1px dashed rgba(56,189,248,.45);
  padding-bottom:2px;
  transition:all .2s ease;
}

.mini-link:hover{
  color:#7dd3fc;
  border-bottom-color:rgba(125,211,252,.8);
}

/* responsive */

@media (max-width: 980px){
  .contact-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 768px){
  .contact-hero{
    padding:90px 0 60px 0;
  }

  .contact-hero h1{
    font-size:36px;
  }

  .contact-hero .hero-sub{
    font-size:16px;
  }

  .contact-wrap{
    padding:60px 0 70px 0;
  }

  .contact-card,
  .info-card{
    padding:22px;
  }

  .section-heading h2{
    font-size:28px;
  }

  .form-row{
    grid-template-columns:1fr;
  }
}

@media (max-width: 560px){
  .container{
    width:92%;
  }

  .contact-hero h1{
    font-size:30px;
  }

  .section-heading h2{
    font-size:24px;
  }
}