.gcw-root, .gcw-root * { box-sizing: border-box; font-family: Alef, Arial, sans-serif; }
html.gcw-open, body.gcw-open { overflow-x: hidden !important; }
.gcw-floating-tab {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99980;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 92px;
  padding: 14px 16px;
  border: 0;
  border-radius: 0 12px 12px 0;
  background: #028fc4;
  color: #fff;
  font-size: 15px;
  font-family: Alef, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.gcw-floating-tab:hover { background: #007cac; }
.gcw-tab-icon { font-size: 17px; line-height: 1; }
.gcw-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99988;
  background: rgba(8, 30, 42, .32);
}
.gcw-modal {
  position: fixed;
  z-index: 99990;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(620px, calc(100vw - 28px));
  max-width: calc(100vw - 28px);
  max-height: min(780px, calc(100vh - 28px));
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
  border: 1px solid rgba(2,143,196,.16);
  direction: rtl;
}
.gcw-close {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #028fc4;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(0,0,0,.16);
  padding: 0;
}
.gcw-close:hover { background: #007cac; }
.gcw-header {
  padding: 28px 30px 22px 72px;
  background: linear-gradient(135deg, #d8f3fb 0%, #c7edf7 100%);
  border-bottom: 4px solid #14aede;
  color: #163647;
}
.gcw-header h2 {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 800;
}
.gcw-header p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}
.gcw-form {
  padding: 24px 30px 28px;
  overflow-x: hidden;
}
.gcw-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.gcw-grid label { min-width: 0; }
.gcw-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #173142;
  font-size: 14px;
  font-weight: 700;
}
.gcw-form label span { color: #028fc4; }
.gcw-form input, .gcw-form select, .gcw-form textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid #cddce4;
  border-radius: 10px;
  padding: 11px 12px;
  background: #fff;
  color: #142f3f;
  font-size: 15px;
  outline: none;
}
.gcw-form input:not([type="checkbox"]):not([type="file"]), .gcw-form select {
  height: 43px;
}
.gcw-form input:focus, .gcw-form select:focus, .gcw-form textarea:focus {
  border-color: #028fc4;
  box-shadow: 0 0 0 3px rgba(2,143,196,.12);
}
.gcw-full { margin-top: 14px; }
.gcw-file-label input[type="file"] {
  height: auto;
  min-height: 43px;
  padding: 9px 12px;
}
.gcw-file-label small {
  color: #637d8b;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.5;
}
.gcw-file-error {
  min-height: 18px;
  color: #b42318 !important;
  font-size: 12.5px;
  font-weight: 600;
}
.gcw-consent {
  margin-top: 16px;
  flex-direction: row !important;
  align-items: center;
  gap: 8px !important;
  font-weight: 500 !important;
}
.gcw-consent input { width: auto; }
.gcw-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.gcw-submit {
  border: 0;
  border-radius: 999px;
  padding: 13px 28px;
  background: #028fc4;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 5px 14px rgba(2,143,196,.22);
}
.gcw-submit:hover { background: #007cac; }
.gcw-submit:disabled { opacity: .65; cursor: wait; }
.gcw-status { color: #173142; font-size: 14px; line-height: 1.4; }
.gcw-status.gcw-error { color: #b42318; font-weight: 700; }
.gcw-status.gcw-success { color: #087443; font-weight: 700; }
.gcw-hp { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
@media (max-width: 640px) {
  .gcw-floating-tab {
    top: auto;
    bottom: 18px;
    left: 14px;
    transform: none;
    border-radius: 999px;
    min-width: 0;
    padding: 12px 16px;
  }
  .gcw-modal {
    width: calc(100vw - 18px);
    max-width: calc(100vw - 18px);
    max-height: calc(100vh - 18px);
    border-radius: 16px;
  }
  .gcw-close { left: 14px; top: 14px; width: 36px; height: 36px; font-size: 22px; }
  .gcw-header { padding: 24px 24px 18px 70px; }
  .gcw-header h2 { font-size: 22px; }
  .gcw-form { padding: 20px; }
  .gcw-grid { grid-template-columns: 1fr; }
  .gcw-actions { flex-direction: column; align-items: stretch; }
  .gcw-submit { width: 100%; }
}


/* v1.0.2 hard overrides for Gousman theme / Elementor button styles */
#gousman-contact-widget.gcw-root,
#gousman-contact-widget.gcw-root * {
  box-sizing: border-box !important;
}
html.gcw-open,
body.gcw-open {
  overflow-x: hidden !important;
}
#gousman-contact-widget .gcw-modal {
  overflow-x: hidden !important;
}
#gousman-contact-widget .gcw-close,
#gousman-contact-widget button.gcw-close,
#gousman-contact-widget #gcwClose {
  position: absolute !important;
  left: 18px !important;
  right: auto !important;
  top: 18px !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: none !important;
  outline: none !important;
  border-radius: 50% !important;
  background: #028fc4 !important;
  color: #fff !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-align: center !important;
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer !important;
  box-shadow: 0 3px 12px rgba(0,0,0,.16) !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}
#gousman-contact-widget .gcw-close:hover,
#gousman-contact-widget button.gcw-close:hover,
#gousman-contact-widget #gcwClose:hover {
  background: #007cac !important;
  color: #fff !important;
}
#gousman-contact-widget .gcw-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  column-gap: 14px !important;
  row-gap: 14px !important;
  align-items: start !important;
}
#gousman-contact-widget .gcw-grid .gcw-field {
  display: grid !important;
  grid-template-rows: 23px 43px !important;
  gap: 6px !important;
  align-items: start !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
#gousman-contact-widget .gcw-label-text {
  display: block !important;
  height: 23px !important;
  line-height: 23px !important;
  white-space: nowrap !important;
}
#gousman-contact-widget .gcw-grid input:not([type="checkbox"]):not([type="file"]) {
  height: 43px !important;
  margin: 0 !important;
}
#gousman-contact-widget .gcw-submit,
#gousman-contact-widget button.gcw-submit,
#gousman-contact-widget #gcwSubmit {
  border: none !important;
  outline: none !important;
  border-radius: 999px !important;
  padding: 13px 30px !important;
  background: #028fc4 !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  cursor: pointer !important;
  box-shadow: 0 5px 14px rgba(2,143,196,.22) !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}
#gousman-contact-widget .gcw-submit:hover,
#gousman-contact-widget button.gcw-submit:hover,
#gousman-contact-widget #gcwSubmit:hover {
  background: #007cac !important;
  color: #fff !important;
}
@media (max-width: 640px) {
  #gousman-contact-widget .gcw-grid {
    grid-template-columns: 1fr !important;
  }
  #gousman-contact-widget .gcw-close,
  #gousman-contact-widget button.gcw-close,
  #gousman-contact-widget #gcwClose {
    left: 14px !important;
    top: 14px !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    max-width: 38px !important;
    max-height: 38px !important;
  }
}


/* v1.0.3 force floating contact tab to Gousman blue */
#gousman-contact-widget .gcw-floating-tab,
#gousman-contact-widget button.gcw-floating-tab,
#gousman-contact-widget #gcwFloatingTab {
  position: fixed !important;
  left: 0 !important;
  top: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  z-index: 99980 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-width: 104px !important;
  height: auto !important;
  padding: 13px 16px !important;
  border: 2px solid #028fc4 !important;
  border-left: 0 !important;
  border-radius: 0 12px 12px 0 !important;
  background: #ffffff !important;
  color: #028fc4 !important;
  font-family: Alef, Arial, sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.12) !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}
#gousman-contact-widget .gcw-floating-tab:hover,
#gousman-contact-widget button.gcw-floating-tab:hover,
#gousman-contact-widget #gcwFloatingTab:hover {
  background: #028fc4 !important;
  color: #ffffff !important;
  border-color: #028fc4 !important;
}
#gousman-contact-widget .gcw-floating-tab .gcw-tab-text,
#gousman-contact-widget .gcw-floating-tab .gcw-tab-icon,
#gousman-contact-widget #gcwFloatingTab .gcw-tab-text,
#gousman-contact-widget #gcwFloatingTab .gcw-tab-icon {
  color: inherit !important;
  font-family: Alef, Arial, sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
  line-height: 1 !important;
}
@media (max-width: 640px) {
  #gousman-contact-widget .gcw-floating-tab,
  #gousman-contact-widget button.gcw-floating-tab,
  #gousman-contact-widget #gcwFloatingTab {
    top: auto !important;
    bottom: 18px !important;
    left: 14px !important;
    transform: none !important;
    border: 2px solid #028fc4 !important;
    border-radius: 999px !important;
    min-width: 0 !important;
    padding: 12px 16px !important;
  }
}


/* v1.0.4: mobile/contact modal must sit above the Smart Navigation Bot */
#gousman-contact-widget .gcw-backdrop,
#gousman-contact-widget #gcwBackdrop {
  z-index: 2147483000 !important;
}
#gousman-contact-widget .gcw-modal,
#gousman-contact-widget #gcwModal {
  z-index: 2147483001 !important;
}
body.gcw-open .gsb-window,
html.gcw-open .gsb-window {
  display: none !important;
}
body.gcw-open .gsb-fab,
html.gcw-open .gsb-fab {
  display: none !important;
}

/* v1.0.5: match floating contact tab typography to site menu */
#gousman-contact-widget .gcw-floating-tab,
#gousman-contact-widget button.gcw-floating-tab,
#gousman-contact-widget #gcwFloatingTab,
#gousman-contact-widget .gcw-floating-tab *,
#gousman-contact-widget #gcwFloatingTab * {
  font-family: Alef, Arial, sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}
