/* ===== US-CONTACT SECTION ===== */

#us-contact {
  position: relative;
  overflow: hidden;
}

/* MAP */
#us-contact .ct-map-wrap {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

#us-contact .ct-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.7) contrast(1.05);
}

#us-contact .ct-map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(5,13,8,0.85) 100%);
  pointer-events: none;
}

/* INFO BAR */
#us-contact .ct-info-bar {
  background: linear-gradient(135deg, #0a1a0f 0%, #050d0a 60%, #000 100%);
  padding: 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(34,197,94,0.15);
  width: 100%;
  box-sizing: border-box;
}

#us-contact .ct-info-block {
  padding: 36px 40px;
  border-right: 1px solid rgba(34,197,94,0.1);
  position: relative;
  overflow: hidden;
  transition: background .3s;
  box-sizing: border-box;
  min-width: 0;
}

#us-contact .ct-info-block:last-child {
  border-right: none;
}

#us-contact .ct-info-block:hover {
  background: rgba(34,197,94,0.04);
}

#us-contact .ct-info-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #22c55e, transparent);
  opacity: 0;
  transition: opacity .3s;
}

#us-contact .ct-info-block:hover::before {
  opacity: 1;
}

#us-contact .ct-block-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #22c55e;
  margin-bottom: 20px;
}

#us-contact .ct-block-num {
  font-size: 10px;
  color: rgba(34,197,94,0.5);
  font-weight: 700;
}

#us-contact .ct-block-line {
  width: 28px;
  height: 1px;
  background: rgba(34,197,94,0.35);
}

#us-contact .ct-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

#us-contact .ct-icon-wrap svg {
  width: 18px;
  height: 18px;
}

/* BLOCK VALUES â€” EMAIL & ADDRESS */
#us-contact .ct-block-val {
    font-size: 13px;
    font-weight: 300;
    color: #c8e8d4;
    line-height: 1;
    display: -webkit-inline-box;
    flex-direction: column;
    gap: 10px;
    line-height: 1.9;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

/* ALL LINKS */
#us-contact .ct-block-val a {
  color: #c8e8d4;
  text-decoration: none;
  transition: color .2s, background .2s, border-color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(34,197,94,0.04);
  border: 1px solid rgba(34,197,94,0.08);
  width: fit-content !important;
}

#us-contact .ct-block-val a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity .2s;
}

#us-contact .ct-block-val a:hover {
  color: #4ade80;
  background: rgba(34,197,94,0.08);
  border-color: rgba(34,197,94,0.2);
}

#us-contact .ct-block-val a:hover::before {
  opacity: 1;
}

/* FORM SECTION */
#us-contact .ct-form-wrap {
  background: linear-gradient(160deg, #ffffff 0%, #f4fbf7 50%, #edf8f2 100%);
  padding: 80px 72px;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}

#us-contact .ct-blob1 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.07) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  pointer-events: none;
}

#us-contact .ct-blob2 {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.05) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  pointer-events: none;
}

#us-contact .ct-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,197,94,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

#us-contact .ct-form-header {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 2;
}

#us-contact .ct-form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #16a34a;
  margin-bottom: 14px;
}

#us-contact .ct-eyebrow-line {
  width: 24px;
  height: 1.5px;
  background: #22c55e;
  border-radius: 2px;
}

#us-contact .ct-form-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: #0d1f14;
  margin-bottom: 12px;
}

#us-contact .ct-form-header h2 span {
  color: #16a34a;
}

#us-contact .ct-form-header p {
  font-size: 15px;
  font-weight: 300;
  color: #5a7a65;
  line-height: 1.7;
}

#us-contact .ct-form {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
}

#us-contact .ct-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
}

#us-contact .ct-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

#us-contact .ct-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #16a34a;
}

#us-contact .ct-field input,
#us-contact .ct-field textarea {
  background: #fff;
  border: 1px solid rgba(22,163,74,0.18);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #0d1f14;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

#us-contact .ct-field input::placeholder,
#us-contact .ct-field textarea::placeholder {
  color: #a3bfaa;
}

#us-contact .ct-field input:focus,
#us-contact .ct-field textarea:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
}

#us-contact .ct-field textarea {
  resize: vertical;
  min-height: 130px;
}

#us-contact .ct-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  gap: 16px;
  flex-wrap: wrap;
}

#us-contact .ct-note {
  font-size: 12px;
  font-weight: 300;
  color: #7aaa89;
  display: flex;
  align-items: center;
  gap: 6px;
}

#us-contact .ct-note-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

#us-contact .ct-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(22,163,74,0.3);
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
  justify-content: center;
}

#us-contact .ct-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(22,163,74,0.4);
}

#us-contact .ct-submit-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* ANIMATIONS */
@keyframes ctFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

#us-contact .ct-info-block { animation: ctFadeUp .5s ease both; }
#us-contact .ct-info-block:nth-child(1) { animation-delay: .1s; }
#us-contact .ct-info-block:nth-child(2) { animation-delay: .18s; }
#us-contact .ct-info-block:nth-child(3) { animation-delay: .26s; }
#us-contact .ct-form-header { animation: ctFadeUp .5s ease .3s both; }
#us-contact .ct-form { animation: ctFadeUp .5s ease .4s both; }


#us-contact svg * {
    fill: none;
    stroke: rgb(255 255 255);
}