/* ===========================
   ICOVRI 10 — Register Section
   =========================== */

#register { background: #dff9fc; }

.register-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

/* ---- Info column ---- */
.register-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #083b45;
  margin-bottom: 20px;
}

.register-info p {
  font-size: 14px;
  color: #2a6070;
  line-height: 1.8;
  margin-bottom: 16px;
}

.register-contact { margin-top: 32px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #083b45;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(26, 184, 212, .12);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-icon.facebook {
  background: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  font-family: 'Georgia', serif;
}

.contact-icon.whatsapp {
  background: #25d366;
  border-color: #25d366;
  font-size: 17px;
}

.contact-item a {
  color: #0a8fa8;
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover { color: var(--teal-bright); }

.contact-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #3a6e7e;
  margin-bottom: 3px;
  font-weight: 700;
}

.contact-sub {
  font-size: 12px;
  color: #2a6070;
  margin-top: 2px;
}

/* ---- Form ---- */
.register-form {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px;
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #c9a227;
  margin-bottom: 28px;
}

.form-row { margin-bottom: 20px; }

.form-row label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3a6e7e;
  margin-bottom: 8px;
  font-weight: 700;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: #f5fbfd;
  border: 1px solid var(--border);
  color: #083b45;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #7aacb8;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--teal-bright);
  background: #ffffff;
}

.form-row select option {
  background: #ffffff;
  color: #083b45;
}

.form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.submit-btn {
  width: 100%;
  background: #c9a227;
  color: #083b45;
  border: none;
  padding: 16px;
  font-family: inherit;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 8px;
}

.submit-btn:hover { background: #e8c96a; }

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ---- Success state ---- */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 32px;
}

.form-success.show { display: block; }

.form-success-icon { font-size: 48px; margin-bottom: 16px; }

.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #c9a227;
  margin-bottom: 12px;
}

.form-success p {
  color: #2a6070;
  font-size: 14px;
  line-height: 1.7;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .register-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .register-form { padding: 24px; }
  .form-2col { grid-template-columns: 1fr; }
}

/* ---- File upload notice ---- */
.form-upload-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(201, 162, 39, .08);
  border: 1px solid rgba(201, 162, 39, .3);
  border-left: 3px solid #c9a227;
  padding: 16px 18px;
  margin-bottom: 20px;
}

body.ar .form-upload-notice {
  border-left: 1px solid rgba(201, 162, 39, .3);
  border-right: 3px solid #c9a227;
}

.form-upload-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }

.form-upload-title {
  font-size: 13px;
  font-weight: 700;
  color: #083b45;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.form-upload-desc {
  font-size: 12px;
  color: #2a6070;
  line-height: 1.6;
}

/* ---- Google Form iframe ---- */
.gform-wrap {
  width: 100%;
  overflow: hidden;
}

.gform-wrap iframe {
  display: block;
  width: 100%;
  height: 1800px;
  border: none;
}

.gform-fallback {
  padding: 12px 0 0;
  font-size: 13px;
  color: #3a6e7e;
  text-align: center;
}

.gform-fallback a {
  color: #0a8fa8;
  font-weight: 600;
  text-decoration: none;
}

.gform-fallback a:hover { color: var(--teal-bright); }

/* ---- Google Form CTA ---- */
.gform-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 32px;
  gap: 0;
}

.gform-cta-icon {
  font-size: 52px;
  margin-bottom: 20px;
}

.gform-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #083b45;
  margin-bottom: 16px;
  line-height: 1.3;
}

.gform-cta p {
  font-size: 14px;
  color: #2a6070;
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 28px;
}

/* ---- Fields preview tags ---- */
.gform-fields-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
  max-width: 480px;
}

.gform-field-tag {
  background: #f0fbfd;
  border: 1px solid var(--border);
  color: #2a6070;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  letter-spacing: 0.5px;
}

/* ---- Big CTA button ---- */
.gform-cta-btn {
  display: inline-block;
  background: #c9a227;
  color: #083b45;
  padding: 18px 56px;
  font-family: inherit;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  margin-bottom: 16px;
}

.gform-cta-btn:hover {
  background: #e8c96a;
  transform: translateY(-2px);
}

.gform-cta-note {
  font-size: 11px !important;
  color: #7aacb8 !important;
  letter-spacing: 1px;
  margin-bottom: 0 !important;
}
