/* FILE
   /public_html/assets/css/contact.css
*/

:root{
  --ink: #1c2a3a;
  --muted: rgba(28,42,58,0.72);
  --ivory: #f7f5f0;
  --panel: rgba(255,255,255,0.86);
  --line: rgba(28,42,58,0.14);
  --line2: rgba(28,42,58,0.20);
  --gold: #c8a45d;

  --wa: #25D366;
  --wa2: #1faa52;

  --shadow: 0 18px 52px rgba(16,22,28,0.12);
  --shadow2: 0 10px 26px rgba(16,22,28,0.10);

  --r: 18px;
  --max: 1080px;
  --pad: 18px;
}

*{ box-sizing: border-box; }

.co-shell{
  padding: 26px 0 44px 0;
}

.co-wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.co-hero{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 14px;
}

.co-hero-main{
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.70);
  box-shadow: var(--shadow2);
  padding: 18px;
}

.co-title{
  margin: 0 0 6px 0;
  font-size: 30px;
  font-weight: 820;
  letter-spacing: -0.5px;
  color: var(--ink);
}

.co-sub{
  margin: 0 0 10px 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14.6px;
  max-width: 65ch;
}

.co-intro{
  color: rgba(28,42,58,0.86);
  font-size: 14.8px;
  line-height: 1.85;
}

.co-hero-media{
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.70);
  box-shadow: var(--shadow2);
  overflow: hidden;
  min-height: 220px;
}

.co-hero-img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.co-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  align-items: start;
}

.co-card{
  border-radius: var(--r);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 16px;
}

.co-card-title{
  font-weight: 820;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
  color: var(--ink);
}

.co-help{
  margin: 0 0 12px 0;
  color: var(--muted);
  font-size: 13.6px;
  line-height: 1.6;
}

.co-line{
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px;
  align-items: center;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(28,42,58,0.12);
  background: rgba(255,255,255,0.70);
  margin-top: 10px;
  text-decoration: none;
}

.co-line:hover{
  border-color: rgba(28,42,58,0.22);
}

.co-ico{
  font-weight: 700;
  font-size: 13px;
  color: rgba(28,42,58,0.76);
}

.co-val{
  font-weight: 650;
  color: rgba(28,42,58,0.90);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.co-wa{
  border-color: rgba(37,211,102,0.22);
  background: rgba(37,211,102,0.08);
}

.co-addr{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(28,42,58,0.10);
}

.co-addr-k{
  font-weight: 760;
  font-size: 13px;
  color: rgba(28,42,58,0.80);
  margin-bottom: 6px;
}

.co-addr-v{
  color: rgba(28,42,58,0.78);
  line-height: 1.7;
  font-size: 13.8px;
}

.co-note{
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(200,164,93,0.22);
  background: rgba(200,164,93,0.10);
  color: rgba(28,42,58,0.82);
  line-height: 1.6;
  font-size: 13.6px;
}

.co-form{
  display: grid;
  gap: 10px;
}

.co-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.co-label{
  display:block;
  font-size: 13px;
  font-weight: 650;
  color: rgba(28,42,58,0.86);
  margin-bottom: 6px;
}

.co-input{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(28,42,58,0.14);
  background: rgba(255,255,255,0.92);
  padding: 11px 12px;
  font-size: 14.2px;
  outline: none;
}

.co-input:focus{
  border-color: rgba(200,164,93,0.45);
  box-shadow: 0 0 0 4px rgba(200,164,93,0.16);
}

.co-textarea{
  resize: vertical;
  min-height: 140px;
}

.co-actions{
  display:flex;
  gap: 10px;
  align-items:center;
  margin-top: 4px;
}

.co-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(28,42,58,0.18);
  background: rgba(255,255,255,0.75);
  color: rgba(28,42,58,0.92);
  font-weight: 700;
  font-size: 13.8px;
  cursor: pointer;
  text-decoration:none;
  box-shadow: var(--shadow2);
}

.co-btn:hover{
  border-color: rgba(28,42,58,0.24);
}

.co-btn-primary{
  border-color: rgba(200,164,93,0.30);
  background: rgba(200,164,93,0.16);
}

.co-btn-wa{
  border-color: rgba(37,211,102,0.26);
  background: rgba(37,211,102,0.12);
}

.co-small{
  color: rgba(28,42,58,0.62);
  font-size: 12.8px;
  line-height: 1.55;
  margin-top: 6px;
}

.co-map{
  margin-top: 14px;
}

.co-map-card{
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.70);
  box-shadow: var(--shadow2);
  overflow: hidden;
}

.co-iframe{
  width: 100%;
  height: 360px;
  border: 0;
  display:block;
}

@media (max-width: 980px){
  .co-hero{ grid-template-columns: 1fr; }
  .co-grid{ grid-template-columns: 1fr; }
  .co-hero-media{ min-height: 200px; }
}

@media (max-width: 560px){
  .co-row{ grid-template-columns: 1fr; }
}

.co-alert{
  margin: 0 0 12px 0;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(28,42,58,0.14);
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow2);
  font-size: 13.8px;
  line-height: 1.55;
}

.co-alert-ok{
  border-color: rgba(37,211,102,0.24);
  background: rgba(37,211,102,0.10);
}

.co-alert-err{
  border-color: rgba(160,40,40,0.22);
  background: rgba(160,40,40,0.10);
}
