/* Gety Production-matching Styles - WeWeb Form */

:root {
  --gety-purple: #9c1aff;
  --gety-purple-dark: #7400cc;
  --gety-purple-light: #f6f2f9;
  --gety-purple-lighter: #f4e5ff;
  --gety-white: #ffffff;
  --gety-dark: #050505;
  --gety-text: #050505;
  --gety-text-secondary: #050505;
  --gety-border: #f4e5ff;
  --gety-placeholder: #cccccc;
  --gety-gray: #e0e0e0;
  --gety-error: #d2201e;
  --gety-success: #0b7a3a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family:
    "Outfit",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--gety-text);
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Skip Navigation Links - WCAG 2.1 AAA Compliance */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gety-purple);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
  font-weight: 500;
  border-radius: 0 0 4px 0;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--gety-white);
  outline-offset: -3px;
}

.gety-main {
  min-height: 100vh;
  padding: 0;
  background-color: #ffffff;
}

.gety-form-container {
  background: transparent;
  padding: 0 20px;
  min-height: 364px;
  max-width: 1194px;
  width: 100%;
  margin: 0 auto;
}

.gety-search-form,
.gety-relationship-form,
.gety-contact-form {
  max-width: unset;
  width: 100%;
  margin: 0 auto;
  background: var(--gety-purple-light);
  border: 1px solid var(--gety-purple-light);
  border-radius: 24px;
  padding: 12px 64px 64px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.gety-step {
  display: none;
  animation: fadeIn 0.3s ease-in;
  background-color: var(--gety-purple-light);
  padding: 40px 0;
  border-radius: 24px;
  width: 100%;
}

#search-section {
  padding-bottom: 0;
}

.gety-step-active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gety-form-header {
  margin-bottom: 32px;
  text-align: center;
}

.gety-form-header h2 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gety-purple);
  margin-bottom: 4px;
}

.gety-form-subtitle {
  font-size: 1rem;
  color: #000000;
  font-weight: 500;
}

.gety-form-subtitle-info {
  font-size: 0.9375rem;
  color: var(--gety-purple);
  font-weight: 500;
  margin-bottom: 24px;
}

.gety-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
  width: 100%;
}

/* Tablet and intermediate sizes */
@media (max-width: 1024px) {
  .gety-form-fields {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .gety-search-form,
  .gety-relationship-form,
  .gety-contact-form {
    padding: 32px 24px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .gety-form-fields {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gety-form-container {
    padding: 16px;
  }

  .gety-search-form,
  .gety-relationship-form,
  .gety-contact-form {
    padding: 24px 16px;
    border-radius: 16px;
  }
}

.gety-field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.gety-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 768px) {
  .gety-field-row {
    grid-template-columns: 1fr;
  }
}

.gety-field-group label {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--gety-text);
}

.gety-required {
  color: var(--gety-error);
  font-weight: 700;
}

input,
select,
textarea {
  padding: 12px 16px;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  border: 1px solid var(--gety-border);
  border-radius: 24px;
  color: var(--gety-text);
  background-color: var(--gety-white);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  width: 100%;
}

/* Enhanced Focus Indicators - WCAG 2.1 AAA Compliance */
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--gety-purple);
  outline-offset: 2px;
  border-color: var(--gety-purple);
  box-shadow: 0 0 0 4px rgba(156, 26, 255, 0.15);
}

input[type="email"],
input[type="tel"] {
  font-size: 16px;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
  color: var(--gety-placeholder);
  opacity: 1;
}

/* Help Text Styling - AAA Compliance */
.gety-help-text {
  color: var(--gety-text-secondary);
  font-size: 0.875rem;
  font-weight: 400;
  display: block;
  margin-top: 4px;
  font-style: italic;
}

.gety-error-message {
  color: var(--gety-error);
  font-size: 0.875rem;
  font-weight: 500;
  display: none;
  margin-top: 4px;
}

.gety-error-message:not(:empty) {
  display: block;
}

.gety-status-message {
  padding: 16px;
  border-radius: 8px;
  display: none;
  font-weight: 500;
  margin: 16px 0;
}

.gety-status-message:not(:empty) {
  display: block;
}

.gety-status-message.loading {
  background-color: #e3f2fd;
  color: #0c5ba6;
  border-left: 4px solid #0c5ba6;
}

.gety-status-message.success {
  background-color: #e8f5e9;
  color: var(--gety-success);
  border-left: 4px solid var(--gety-success);
}

.gety-status-message.error {
  background-color: #ffebee;
  color: var(--gety-error);
  border-left: 4px solid var(--gety-error);
}

.gety-btn {
  padding: 16px 28px;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  transition:
    background-color 0.2s,
    transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  line-height: 28px;
}

/* Enhanced Button Focus - AAA Compliance */
.gety-btn:focus {
  outline: 3px solid var(--gety-purple-dark);
  outline-offset: 3px;
  box-shadow:
    0 0 0 2px var(--gety-white),
    0 0 0 5px var(--gety-purple);
}

.gety-btn:active {
  transform: scale(0.98);
}

.gety-btn-primary {
  background-color: var(--gety-purple);
  color: #ffffff;
  border: 1px solid var(--gety-purple);
}

.gety-btn-primary:hover {
  background-color: var(--gety-purple-dark);
}

.gety-btn-secondary {
  background-color: var(--gety-gray);
  color: var(--gety-text);
  border: 2px solid var(--gety-border);
}

.gety-btn-secondary:hover {
  background-color: #c9c9c9;
}

.gety-button-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.gety-button-group .gety-btn {
  min-width: 150px;
}

@media (max-width: 768px) {
  .gety-button-group {
    flex-direction: column;
  }

  .gety-button-group .gety-btn {
    width: 100%;
  }
}

.gety-results-list {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.gety-result-item {
  padding: 16px;
  border: 2px solid var(--gety-border);
  border-radius: 8px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  background-color: var(--gety-white);
}

.gety-result-item:hover {
  border-color: var(--gety-purple);
  box-shadow: 0 2px 8px rgba(156, 26, 255, 0.1);
}

/* Enhanced Result Item Focus - AAA Compliance */
.gety-result-item:focus {
  outline: 3px solid var(--gety-purple-dark);
  outline-offset: 2px;
  box-shadow:
    0 0 0 1px var(--gety-white),
    0 4px 12px rgba(156, 26, 255, 0.25);
}

.gety-result-item strong {
  color: var(--gety-purple);
  font-weight: 700;
}

.gety-result-item p {
  margin: 4px 0;
  font-size: 0.875rem;
  color: var(--gety-text-secondary);
}

.gety-no-results {
  text-align: center;
  padding: 40px 20px;
  font-size: 1rem;
  line-height: 1.5;
}

.gety-no-results p {
  margin: 0 0 24px 0;
}

.gety-no-results p:last-child {
  margin-bottom: 0;
}

.gety-no-results-message {
  color: #000000;
}

.gety-warning-alert,
.gety-error-alert,
.gety-success-alert {
  padding: 16px;
  border-radius: 8px;
  margin: 16px 0;
}

.gety-warning-alert {
  background-color: #fff3e0;
  color: #d68000;
  border-left: 4px solid #d68000;
}

.gety-error-alert {
  background-color: #ffebee;
  color: var(--gety-error);
  border-left: 4px solid var(--gety-error);
}

.gety-success-alert {
  background-color: #e8f5e9;
  color: var(--gety-success);
  border-left: 4px solid var(--gety-success);
}

.gety-success-wrapper {
  background-color: transparent;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 300px);
  max-width: 900px;
  margin: 0 auto;
}

.gety-success-message {
  text-align: center;
  color: var(--gety-purple);
  margin-bottom: 40px;
  padding: 0 20px;
  max-width: 800px;
}

.gety-success-message h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--gety-purple);
  line-height: 1.4;
}

.gety-success-message p {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 16px 0;
  color: var(--gety-purple);
}

/* Form Description and Subtitles */
.gety-form-description {
  width: 100%;
  text-align: center;
  margin-bottom: 32px;
}

.gety-form-subtitle {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #000000;
  margin: 8px 0;
  font-weight: 500;
}

/* Récapitulatif Section */
.gety-recap-section {
  margin: 32px 0;
  width: 100%;
}

.gety-recap-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gety-purple);
  margin-bottom: 16px;
  text-align: left;
}

.gety-recap-list {
  list-style-type: disc;
  padding-left: 20px;
  margin: 16px 0 0 0;
  display: block;
}

.gety-recap-list li {
  font-size: 1rem;
  color: var(--gety-text);
  line-height: 1.6;
  padding-left: 8px;
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 20px;
}

/* Required Note */
.gety-required-note {
  font-size: 0.875rem;
  color: var(--gety-text);
  font-weight: 400;
  margin: 12px 0 16px 0;
  text-align: left;
}

.gety-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.gety-fieldset legend {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gety-text);
}

.gety-radio-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 16px 0;
}

.gety-radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Enhanced Radio and Checkbox Focus - AAA Compliance */
input[type="radio"],
input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--gety-purple);
}

input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 3px solid var(--gety-purple-dark);
  outline-offset: 2px;
}

/* Loading Spinner */
@keyframes gety-spin {
  to {
    transform: rotate(360deg);
  }
}

.gety-spinner {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(156, 26, 255, 0.2);
  border-top-color: var(--gety-purple);
  border-radius: 50%;
  animation: gety-spin 0.8s linear infinite;
}

.gety-status-message.loading .gety-spinner {
  margin-right: 8px;
  vertical-align: middle;
}

/* Bug Fix 3: Page loader for transitions */
.gety-page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.gety-page-loader.active {
  display: flex;
}

.gety-loader-spinner {
  width: 60px;
  height: 60px;
  border: 6px solid rgba(156, 26, 255, 0.2);
  border-top-color: var(--gety-purple);
  border-radius: 50%;
  animation: gety-spin 0.8s linear infinite;
}

/* Carousel Styles */
.gety-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 32px 0;
  position: relative;
}

.gety-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 2px solid #6b21a8;
  color: #6b21a8;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
  transition: all 0.2s ease;
  z-index: 1000;
  user-select: none;
}

.gety-carousel-arrow.gety-carousel-next {
  right: calc((100% - 1170px) / 2 + 8px);
}

.gety-carousel-arrow.gety-carousel-prev {
  display: flex;
  left: calc((100% - 1170px) / 2 + 8px);
}

.gety-carousel-arrow:hover:not(:disabled) {
  background-color: #7400cc;
  color: white;
  box-shadow: 0 4px 12px rgba(156, 26, 255, 0.3);
}

/* Enhanced Carousel Arrow Focus - AAA Compliance */
.gety-carousel-arrow:focus {
  outline: 3px solid var(--gety-purple-dark);
  outline-offset: 2px;
  box-shadow:
    0 0 0 1px var(--gety-white),
    0 0 0 5px rgba(156, 26, 255, 0.4);
}

.gety-carousel-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive carousel arrow positioning for tablet */
@media (max-width: 1024px) and (min-width: 769px) {
  .gety-carousel-arrow.gety-carousel-next {
    right: calc((100% - 780px) / 2 + 8px);
  }

  .gety-carousel-arrow.gety-carousel-prev {
    left: calc((100% - 780px) / 2 + 8px);
  }
}

/* Mobile - arrows already have position: static in existing media query */

.gety-carousel-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gety-carousel-inner {
  width: 1170px;
  height: 280px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease;
  gap: 60px;
}

/* Responsive carousel - 2 cards on tablet, 1 on mobile */
@media (max-width: 1024px) and (min-width: 769px) {
  .gety-carousel-inner {
    width: 780px;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .gety-carousel-inner {
    width: 350px;
    gap: 20px;
  }
}

.gety-carousel-item {
  width: 350px;
  flex-shrink: 0;
}

.gety-carousel-card {
  width: 350px;
  height: 280px;
  padding: 24px;
  border: 2px solid var(--gety-border);
  border-radius: 12px;
  background-color: var(--gety-white);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gety-carousel-card:hover {
  border-color: var(--gety-purple);
  box-shadow: 0 4px 12px rgba(156, 26, 255, 0.15);
}

/* Enhanced Carousel Card Focus - AAA Compliance */
.gety-carousel-card:focus {
  outline: 3px solid var(--gety-purple-dark);
  outline-offset: 2px;
  box-shadow:
    0 0 0 1px var(--gety-white),
    0 4px 16px rgba(156, 26, 255, 0.3);
}

.gety-carousel-card-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gety-text);
  margin-bottom: 16px;
}

.gety-carousel-card-info {
  font-size: 0.875rem;
  color: var(--gety-text-secondary);
  line-height: 1.6;
}

.gety-carousel-card-info-row {
  margin: 4px 0;
}

.gety-carousel-card-divider {
  margin: 16px 0;
  color: #cccccc;
  font-weight: 300;
}

/* Pagination Dots */
.gety-carousel-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 24px 0;
}

.gety-carousel-pagination-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e8e8e8;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.gety-carousel-pagination-dot.active {
  background-color: var(--gety-purple);
  width: 28px;
  border-radius: 5px;
}

.gety-carousel-pagination-dot:hover:not(.active) {
  background-color: #b8b8b8;
}

/* Enhanced Pagination Dot Focus - AAA Compliance */
.gety-carousel-pagination-dot:focus {
  outline: 3px solid var(--gety-purple-dark);
  outline-offset: 3px;
  box-shadow:
    0 0 0 1px var(--gety-white),
    0 0 0 5px rgba(156, 26, 255, 0.3);
}

/* Carousel Header */
.gety-carousel-header {
  color: var(--gety-purple);
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Back Link */
.gety-carousel-footer {
  text-align: center;
  margin-top: 4px;
}

.gety-back-link {
  color: var(--gety-purple);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
}

.gety-back-link:hover {
  color: var(--gety-purple);
  text-decoration: underline;
}

/* Enhanced Link Focus - AAA Compliance */
.gety-back-link:focus {
  outline: 3px solid var(--gety-purple-dark);
  outline-offset: 2px;
  background-color: rgba(156, 26, 255, 0.1);
  border-radius: 4px;
  padding: 4px 8px;
  margin: -4px -8px;
}

/* Purple inline links */
.gety-link {
  color: var(--gety-purple);
  text-decoration: underline;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
}

.gety-link:hover {
  color: var(--gety-purple-dark);
}

.gety-link:focus {
  outline: 3px solid var(--gety-purple-dark);
  outline-offset: 2px;
}

/* Bug Fix 6: Relationship question styling */
#relationship-section h2 {
  font-size: 1.25rem;
  text-align: center;
}

/* Bug Fix 11: Contact form h2 purple */
#contact-section h2 {
  color: var(--gety-purple);
  font-size: 1.75rem;
  font-weight: 700;
}

/* Contact form header - left-aligned */
.gety-contact-header {
  text-align: left;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gety-purple);
  margin-bottom: 16px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact form intro paragraph - purple, left-aligned */
.gety-contact-intro {
  font-size: 18px;
  color: var(--gety-purple);
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.6;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Two-column layout for Nom and Pr\u00e9nom fields */
.gety-field-row {
  width: 1100px;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .gety-field-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Back to search link styling */
.gety-back-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--gety-purple);
  text-decoration: underline;
  cursor: pointer;
  font-size: 16px;
}

.gety-back-link:hover {
  color: #7c3aed;
  text-decoration: underline;
}

/* Required note at top of form - left-aligned with black asterisk */
.gety-contact-form .gety-required-note {
  text-align: left;
  font-size: 0.875rem;
  color: var(--gety-text);
  margin: 0 0 24px 0;
  width: 100%;
}

/* Make asterisk black instead of red */
.gety-contact-form .gety-required {
  color: var(--gety-text);
  font-weight: 700;
}

/* Screen reader only utility class for accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Mobile Responsive Layout - Enhanced */
@media (max-width: 768px) {
  /* Base typography and spacing */
  body {
    font-size: 15px;
  }

  /* Step containers - reduce padding */
  .gety-step {
    padding: 24px 16px;
    min-height: auto;
  }

  /* Form container - optimize for mobile */
  .gety-form-container {
    padding: 20px 12px;
  }

  /* Forms - reduce padding on mobile */
  .gety-search-form,
  .gety-relationship-form,
  .gety-contact-form {
    padding: 24px 16px;
    border-radius: 16px;
  }

  /* Headers - reduce font sizes for readability */
  .gety-form-header h2 {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  #contact-section h2 {
    font-size: 1.5rem;
  }

  #relationship-section h2 {
    font-size: 1.125rem;
    line-height: 1.4;
  }

  /* Radio and checkbox - increase touch target */
  .gety-radio-item {
    padding: 8px 0;
    min-height: 44px;
  }

  .gety-radio-item label {
    padding-left: 8px;
    line-height: 1.4;
  }

  input[type="radio"],
  input[type="checkbox"] {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  /* Inputs and selects - ensure touch-friendly height */
  input,
  select,
  textarea {
    padding: 14px 16px;
    font-size: 16px;
    min-height: 48px;
    border-radius: 16px;
  }

  /* Labels - optimize size */
  .gety-field-group label {
    font-size: 1rem;
  }

  .gety-fieldset legend {
    font-size: 0.9375rem;
    line-height: 1.5;
  }

  /* Buttons - full width and touch-friendly */
  .gety-btn {
    width: 100%;
    min-height: 48px;
    padding: 14px 24px;
    font-size: 16px;
    line-height: 1.4;
  }

  .gety-button-group .gety-btn {
    width: 100%;
    min-width: 0;
  }

  /* Carousel - stack vertically on mobile */
  .gety-carousel-wrapper {
    flex-direction: column;
    gap: 16px;
    margin: 16px 0;
  }

  .gety-carousel-track {
    width: 100%;
    order: 1;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .gety-carousel-inner {
    width: auto;
    flex-direction: row;
    height: auto;
    gap: 16px;
  }

  .gety-carousel-item {
    width: 300px;
    flex-shrink: 0;
  }

  .gety-carousel-card {
    width: 300px;
    height: auto;
    min-height: 240px;
    padding: 20px;
  }

  /* Carousel arrows - reposition for mobile */
  .gety-carousel-arrow {
    position: static;
    transform: none;
    width: 48px;
    height: 48px;
    font-size: 24px;
    flex-shrink: 0;
    margin: 0 8px;
    background: var(--gety-purple);
    color: white;
    border-color: var(--gety-purple);
  }

  .gety-carousel-arrow.gety-carousel-prev {
    order: 0;
  }

  .gety-carousel-arrow.gety-carousel-next {
    order: 2;
    right: auto;
  }

  .gety-carousel-arrow:hover:not(:disabled) {
    background: var(--gety-purple-dark);
    border-color: var(--gety-purple-dark);
  }

  /* Pagination dots - larger for touch */
  .gety-carousel-pagination-dot {
    width: 12px;
    height: 12px;
  }

  .gety-carousel-pagination-dot.active {
    width: 32px;
  }

  /* Carousel header - reduce size */
  .gety-carousel-header {
    font-size: 0.9375rem;
    margin-bottom: 16px;
  }

  /* Status messages - optimize padding */
  .gety-status-message {
    padding: 12px;
    margin: 12px 0;
    font-size: 0.9375rem;
  }

  /* Alerts - optimize for mobile */
  .gety-warning-alert,
  .gety-error-alert,
  .gety-success-alert {
    padding: 12px;
    margin: 12px 0;
    font-size: 0.875rem;
  }

  /* Success page - optimize spacing */
  .gety-success-wrapper {
    padding: 40px 20px;
    min-height: auto;
  }

  .gety-success-message h2 {
    font-size: 1.5rem;
  }

  .gety-success-message p {
    font-size: 1rem;
  }

  /* Recap section - optimize */
  .gety-recap-section {
    margin: 24px 0;
  }

  .gety-recap-list li {
    font-size: 0.8125rem;
  }

  /* Back link - increase touch target */
  .gety-back-link {
    display: inline-block;
    padding: 8px 0;
    min-height: 44px;
    line-height: 28px;
  }

  /* Form description - optimize */
  .gety-form-description {
    margin-bottom: 24px;
  }

  .gety-form-subtitle {
    font-size: 0.875rem;
  }

  /* reCAPTCHA - ensure it fits */
  .g-recaptcha {
    transform: scale(0.9);
    transform-origin: 0 0;
    margin: 16px 0;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .gety-step {
    padding: 20px 12px;
  }

  .gety-form-container {
    padding: 16px 8px;
  }

  .gety-search-form,
  .gety-relationship-form,
  .gety-contact-form {
    padding: 20px 12px;
  }

  .gety-form-header h2 {
    font-size: 1.125rem;
  }

  #contact-section h2 {
    font-size: 1.375rem;
  }

  input,
  select,
  textarea {
    padding: 12px 14px;
  }

  .gety-btn {
    font-size: 15px;
    padding: 12px 20px;
  }

  .gety-carousel-card {
    padding: 16px;
    min-height: 220px;
  }

  .gety-success-wrapper {
    padding: 32px 16px;
  }

  .gety-success-message h2 {
    font-size: 1.25rem;
  }

  .gety-success-message p {
    font-size: 0.9375rem;
  }

  /* Ensure text remains readable */
  .gety-field-group label {
    font-size: 0.9375rem;
  }

  .gety-fieldset legend {
    font-size: 0.875rem;
  }
}
/* Updated: $(date) */
/* Arrow positioning update: $(date) */
