.form-item {
    margin:0px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
/* ── Left: Form ── */
#webform-submission-contact-add-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  line-height: 100%;
}
#webform-submission-contact-add-form .full { grid-column: 1 / -1; }

.contact-grid input[type="text"],
.contact-grid input[type="email"],
.contact-grid input[type="tel"],
.contact-grid textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--gray-800);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  line-height: 100%;
  min-height: unset;
}

.contact-grid input:focus, .contact-grid textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 181, 255, 0.12);
}

.contact-grid input::placeholder, .contact-grid .contact-grid textarea::placeholder { color: var(--gray-600); }
textarea {resize: vertical;min-height: 120px !important;}
 
    
 
/* ── Right: Info Panel ── */
.info-panel {
  background: var(--primary-dark);
  border-radius: 16px;
  padding: 32px 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.info-block h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.info-block p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  margin: 0px 0px 10px;
}
.info-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 15px;
}
.soc-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.soc-icon:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}
.soc-icon svg { width: 18px; height: 18px;}
.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}
.hour-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    line-height: 130%;
}
.hour-row:last-child{
  border: none;
}
.hour-row .day {
    color: rgba(255, 255, 255, .5);
}
.hour-row .time {
    color: #fff;
    font-weight: 600;
}
/* ── Responsive ── */
@media (max-width: 991px) {
  .contact-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 28px; }
}

@media (max-width: 520px) {
  #webform-submission-contact-add-form { grid-template-columns: 1fr; }
  #webform-submission-contact-add-form .full { grid-column: 1; }
  .section-title { font-size: 24px; }
}