/* /public_html/assets/css/contact-us.css */

:root{
  --bg:#ffffff;
  --soft:#f6faf7;
  --text:#102015;
  --muted:#4d5f55;
  --line:rgba(0,0,0,.10);
  --green:#15803d; /* Matching Premium Brand Green */
  --green2:#0f5f2a; /* Matching Dark Brand Green */
  --shadow:0 14px 34px rgba(0,0,0,.08);
  --r:18px;
  --w:800px; /* Narrower width specifically for readable forms */
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: 'Lato', sans-serif !important;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

a{ color:inherit; }
.wrap{
  width:min(var(--w), calc(100% - 40px));
  margin:0 auto;
}

/* Header */
.topbar{
  background:linear-gradient(135deg, var(--green), var(--green2));
  color:#fff;
  padding:40px 0;
  border-bottom:1px solid rgba(255,255,255,.18);
  text-align: center;
}
.topbar h1{
  margin:0;
  font-weight:900;
  letter-spacing:-.02em;
  font-size:clamp(28px, 3vw, 44px);
  line-height:1.15;
}
.topbar p{
  margin:12px auto 0;
  max-width:64ch;
  color:rgba(255,255,255,.92);
  font-size:16.5px;
  line-height:1.6;
}

/* Section */
.sec{
  padding:40px 0 60px;
}
.sec.soft{
  background:var(--soft);
  border-top:1px solid rgba(0,0,0,.06);
  border-bottom:1px solid rgba(0,0,0,.06);
}

.card{
  background:#fff;
  border:1px solid rgba(0,0,0,.10);
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:32px;
}

/* Alerts */
.alert{
  padding:14px 18px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.10);
  margin-bottom:20px;
  font-size: 15px;
}
.alert.ok{
  background:rgba(21,128,61,.10);
  border-color:rgba(21,128,61,.25);
  color: #102015;
}
.alert.bad{
  background:rgba(200,0,0,.07);
  border-color:rgba(200,0,0,.20);
  color: #5c0000;
}

/* Form */
.form{
  display:grid;
  gap:20px;
}
.field label{
  display:block;
  font-weight:800;
  color:#143024;
  margin-bottom:8px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.field input, .field textarea{
  width:100%;
  border:1px solid rgba(0,0,0,.18);
  border-radius:12px;
  padding:14px 16px;
  font-family: 'Lato', sans-serif;
  font-size:16px;
  background:#fafafa;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.field textarea{ min-height:160px; resize:vertical; }

/* Premium Input Focus State */
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: rgba(21,128,61,.55);
  box-shadow: 0 0 0 4px rgba(21,128,61,.14);
  background: #fff;
}

/* Button */
.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  padding:18px 24px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:linear-gradient(180deg, var(--green), var(--green2));
  color:#fff;
  font-weight:900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
  text-decoration:none;
  cursor:pointer;
  width:min(360px, 100%);
  box-shadow:0 10px 20px rgba(0,0,0,.12);
  transition:transform .12s ease, box-shadow .12s ease;
}
.btn:hover{ 
    transform:translateY(-2px); 
    box-shadow:0 14px 28px rgba(0,0,0,.16); 
}
.btn:active{ transform:translateY(0); }

.note{
  display:inline-block;
  padding:14px 18px;
  border-radius:14px;
  background:linear-gradient(135deg, var(--green), var(--green2));
  color:#fff;
  font-weight:700;
  text-align: center;
  margin-top: 20px;
}

/* Footer */
.footer{
  background:#1e1f22;
  color:#cfd6d1;
  padding:40px 0 30px;
  text-align: center;
}
.footer .wrap {
    max-width: 900px;
}
.legal{
  margin:0 0 12px;
  font-size:13.5px;
  line-height:1.75;
  color:#d9e3dd;
}
.links{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  font-weight:700;
  margin:20px 0 14px;
}
.links a{
  color:#ffffff;
  text-decoration:none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.links a:hover {
    opacity: 0.8;
}
.dot{ opacity:.5; }
.copy{
  text-align:center;
  font-size:13px;
  color:#aeb7b1;
  margin-top: 20px;
}