/* =========================
   CONTACT CLEAN PRO UI
========================= */

:root{
  --deep:#020617;
  --navy:#06152b;
  --royal:#1f4ed8;
  --sky:#38bdf8;
  --gold:#f6d365;
  --white:#ffffff;
  --silver:#dbeafe;
  --light:#f8fafc;
  --text:#334155;
}

/* PAGE */
.contact-page{
  overflow:hidden;
  background:#f8fafc;
}

/* HERO */
.contact-hero{
  padding:80px 25px 70px;
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.14), transparent 35%),
    radial-gradient(circle at bottom right, rgba(246,211,101,.18), transparent 30%),
    linear-gradient(135deg,#020617,#06152b,#0f172a,#1e3a8a);
  color:#fff;
}

.contact-wrap{
  max-width:1350px;
  margin:auto;
}

.contact-hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.contact-hero h1{
  font-size:56px;
  line-height:1.1;
  margin-bottom:18px;
  font-weight:900;
}

.contact-hero h1 span{
  background:linear-gradient(90deg,#fff,#38bdf8,#f6d365);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.contact-hero p{
  font-size:18px;
  color:#dbeafe;
  line-height:1.7;
  max-width:620px;
}

.hero-box{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  border-radius:28px;
  padding:28px;
  backdrop-filter:blur(14px);
}

.hero-row{
  background:rgba(255,255,255,.08);
  padding:16px 18px;
  border-radius:16px;
  margin-bottom:14px;
  font-weight:700;
}

/* SECTION */
.section{
  padding:80px 25px;
}

.container{
  max-width:1350px;
  margin:auto;
}

/* GRID */
.contact-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:28px;
}

/* FORM CARD */
.card{
  background:#fff;
  border-radius:28px;
  padding:34px;
  box-shadow:0 20px 45px rgba(0,0,0,.06);
}

.card h2{
  font-size:34px;
  color:#06152b;
  margin-bottom:12px;
}

.card p{
  color:#64748b;
  margin-bottom:28px;
  line-height:1.7;
}

/* FORM */
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.field{
  margin-bottom:16px;
}

.field.full{
  grid-column:1 / -1;
}

label{
  display:block;
  font-size:14px;
  font-weight:700;
  color:#06152b;
  margin-bottom:8px;
}

input,
select,
textarea{
  width:100%;
  border:1px solid #e2e8f0;
  border-radius:16px;
  padding:15px 16px;
  font-size:15px;
  outline:none;
  transition:.25s;
  background:#fff;
}

input:focus,
select:focus,
textarea:focus{
  border-color:#38bdf8;
  box-shadow:0 0 0 4px rgba(56,189,248,.12);
}

textarea{
  resize:vertical;
  min-height:160px;
}

.submit-btn{
  border:none;
  cursor:pointer;
  padding:16px 24px;
  border-radius:16px;
  font-size:16px;
  font-weight:800;
  color:#fff;
  background:linear-gradient(135deg,#38bdf8,#1f4ed8);
  box-shadow:0 18px 35px rgba(31,78,216,.25);
  transition:.3s;
}

.submit-btn:hover{
  transform:translateY(-3px);
}

/* INFO SIDE */
.side-stack{
  display:grid;
  gap:22px;
}

.info-box{
  background:#fff;
  border-radius:26px;
  padding:28px;
  box-shadow:0 20px 45px rgba(0,0,0,.06);
}

.info-box h3{
  font-size:24px;
  color:#06152b;
  margin-bottom:18px;
}

.info-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:14px 0;
  border-bottom:1px solid #eef2f7;
}

.info-item:last-child{
  border-bottom:none;
}

.badge{
  min-width:48px;
  height:48px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  color:#fff;
  background:linear-gradient(135deg,#38bdf8,#1f4ed8);
}

.info-item strong{
  display:block;
  color:#06152b;
  margin-bottom:5px;
}

.info-item span{
  color:#64748b;
  line-height:1.6;
}

/* CTA BOX */
.quote-box{
  background:linear-gradient(135deg,#06152b,#1e3a8a);
  color:#fff;
}

.quote-box h3{ color:#fff; }
.quote-box p{ color:#dbeafe; }

/* RESPONSIVE */
@media(max-width:1100px){
  .contact-hero-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .contact-hero h1{ font-size:46px; }
}

@media(max-width:700px){
  .contact-hero{ padding:70px 18px 55px; }
  .section{ padding:65px 18px; }
  .contact-hero h1{ font-size:34px; }
  .card h2{ font-size:28px; }
  .form-grid{ grid-template-columns:1fr; }
  .field.full{ grid-column:auto; }
  .card, .info-box{ padding:24px; }
}
