/* GLAM Test Drive – Frontend Light Theme */

.gtd-wrap {
	    background: #ffffff !important;
  padding: 48px 24px;
  font-family: 'Barlow', sans-serif;
  color: #0f172a;
}

.gtd-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.gtd-section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.06em;
  color: #0f172a;
  margin-bottom: 28px;
  line-height: 1;
}

/* LEFT PANEL */
.gtd-left {
  background: #fff;
  border: 1px solid rgba(0,153,187,0.15);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border-top: 3px solid #0099bb;
}

/* Steps */
.gtd-steps { margin-bottom: 28px; }

.gtd-step {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.gtd-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #0099bb;
  color: #0099bb;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.gtd-step-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #0f172a;
  margin-bottom: 5px;
}

.gtd-step-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
}

/* Locations box */
.gtd-locations-box {
  background: #f4f7fb;
  border: 1px solid rgba(0,153,187,0.2);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 8px;
}

.gtd-locations-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #0099bb;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gtd-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0099bb;
  display: inline-block;
}

.gtd-locations-text {
  font-size: 14px;
  color: #334155;
  font-weight: 500;
}

/* RIGHT PANEL */
.gtd-right {
  background: #fff;
  border: 1px solid rgba(0,153,187,0.15);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border-top: 3px solid #0099bb;
}

/* Form fields */
.gtd-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gtd-field {
  margin-bottom: 18px;
}

.gtd-field label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.gtd-field label span { color: #0099bb; }

.gtd-field input,
.gtd-field select {
  width: 100%;
  padding: 12px 14px;
  background: #f4f7fb;
  border: 1px solid rgba(0,153,187,0.18);
  border-radius: 8px;
  font-size: 14px;
  color: #0f172a;
  font-family: 'Barlow', sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.gtd-field input:focus,
.gtd-field select:focus {
  border-color: #0099bb;
  box-shadow: 0 0 0 3px rgba(0,153,187,0.12);
}

.gtd-field input::placeholder { color: #94a3b8; }

/* Submit button */
.gtd-submit-btn {
  width: 100%;
  padding: 16px;
  background: #0099bb;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}

.gtd-submit-btn:hover {
  background: #007a99;
  box-shadow: 0 6px 20px rgba(0,153,187,0.3);
}

.gtd-submit-btn:active { transform: scale(0.99); }
.gtd-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }

/* Messages */
.gtd-error-msg {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13.5px;
  color: #dc2626;
  margin-bottom: 14px;
}

.gtd-success-msg {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(0,153,187,0.08), rgba(0,153,187,0.03));
  border: 1.5px solid rgba(0,153,187,0.25);
  border-radius: 12px;
  margin-bottom: 20px;
}

.gtd-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0099bb;
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.gtd-success-msg h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
  color: #0099bb;
  margin-bottom: 8px;
}

.gtd-success-msg p {
  font-size: 14px;
  color: #64748b;
}

/* Responsive */
@media (max-width: 860px) {
  .gtd-two-col { grid-template-columns: 1fr; }
  .gtd-left { border-top: 3px solid #0099bb; }
}

@media (max-width: 480px) {
  .gtd-row-two { grid-template-columns: 1fr; }
  .gtd-left, .gtd-right { padding: 24px 20px; }
}
