.zendrop-tab-content {
  max-width: 100%;
  width: 297px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.zendrop-tabs-container {
  margin-bottom: 25px;
}

.zendrop-tab-title {
  display: flex;
}

.zendrop-tabs-content-container {
  width: 100%;

  box-sizing: border-box;
  overflow: visible; /* Allow content to be visible outside the container */
}

.zendrop-tabs-content .slick-slide {
  margin: 0 12px; /* Reduced from 24px to create a tighter layout */
  display: flex !important;
  height: 100%;
}

/* Style for non-active slides to create a preview effect */
.zendrop-tabs-content .slick-slide:not(.slick-active) {
  opacity: 0.7; /* Make non-active slides slightly transparent */
  transform: scale(0.95); /* Make non-active slides slightly smaller */
  transition: all 0.3s ease; /* Smooth transition */
}

.zendrop-tabs-content .slick-slide {
  margin: 0 12px;
  display: flex !important;
  height: 100%;
}

.zendrop-tab-title {
  background-color: #e7e4fe;
  margin-right: 8px;
}
.zendrop-tab-icon {
  height: 24px;
}

.zendrop-testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.zendrop-testimonials-header h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.zendrop-testimonials-header p {
  font-size: 18px;
  line-height: 1.6;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
}

.zendrop-testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.zendrop-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.zendrop-testimonial-item {
  background: linear-gradient(#1a1a1a, #1a1a1a),
    linear-gradient(76.82deg, #4b3c2b 0.03%, #806a4f 100.03%);
  background-origin: padding-box, border-box;
  background-repeat: no-repeat;
  background-clip: padding-box, border-box;
  border-radius: 24px;
  padding: 24px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 280px;
}

/* Multi-Step Form Styles */
.zendrop-multistep-form-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background-color: #fff;
  border-radius: 12px;
  position: relative;
}

/* Close Button */
.zendrop-form-close-btn {
  position: absolute;
  top: 20px;
  border: 0px !important;
  right: 20px;
  background: transparent;
  background-color: transparent !important;
  border: none;
  padding: 0px !important;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.zendrop-form-close-btn:hover {
  background-color: #fff !important;
}

.zendrop-form-close-btn svg {
  display: block;
}

/* Progress Bar */
.zendrop-progress-container {
  margin-bottom: 40px;
  text-align: center;
}

.zendrop-progress-text {
  font-size: 16px;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 16px;
}

.zendrop-progress-bar {
  width: 100%;
  display: flex;
  gap: 6px;
  align-items: center;
  max-width: 233px;
  margin: 0 auto;
}

.zendrop-progress-step {
  flex: 1;
  height: 4px;
  background-color: #d1d5db;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  position: relative;
}

.zendrop-progress-step.active {
  background: #5952e1;
}

.zendrop-progress-step.completed {
  background: #5952e1;
}

/* Legacy support for old progress bar fill */
.zendrop-progress-bar-fill {
  display: none;
}

.zendrop-field-label {
  display: none;
}

/* Form Steps */
.zendrop-multistep-form {
  position: relative;
}

.zendrop-form-step {
  padding: 0px 36px;
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.zendrop-form-step.active {
  display: block;
}

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

/* Step Header */
.zendrop-step-header {
  text-align: center;
  margin-bottom: 40px;
}

.zendrop-step-icon {
  font-size: 28px;
  color: #6366f1;
  margin-bottom: 20px;
}

.zendrop-step-title {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 16px 0;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.zendrop-step-description {
  font-size: 18px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
}

/* Step Fields */
.zendrop-step-fields {
  margin-bottom: 30px;
}

.zendrop-field-group {
  margin-bottom: 20px;
}

.zendrop-field-group.conditional-field {
  display: none;
}

.zendrop-field-label .required {
  color: #e74c3c;
  margin-left: 3px;
}

.zendrop-field-input,
.zendrop-field-textarea,
.zendrop-field-select {
  width: 100%;
  padding: 12px 16px;
  border: 0px;
  border-radius: 20px;
  font-size: 14px;
  font-family: inherit;
  background-color: #f7f8fb;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.zendrop-field-input.error,
.zendrop-field-textarea.error,
.zendrop-field-select.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.zendrop-field-textarea {
  min-height: 100px;
  resize: vertical;
}

.zendrop-field-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.zendrop-field-select[multiple] {
  background-image: none;
  padding-right: 16px;
  min-height: 120px;
}

/* Hidden select fields for form submission */
.zendrop-field-select-hidden {
  display: none !important;
}

/* Select options displayed as cards */
.zendrop-select-options-container .zendrop-field-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

/* Direction variations */
.zendrop-direction-column {
  flex-direction: column !important;
}

.zendrop-direction-row {
  flex-direction: row !important;
}

.zendrop-multiselect-container {
  background-color: #fff;
  border: 1px solid #d8d9e3;
  border-radius: 20px;
  padding: 20px;
  margin-top: 16px;
}

.zendrop-multiselect-container .zendrop-field-options {
  gap: 20px;

  align-items: flex-start;
}

/* Checkbox style for multiselect (like screenshot) */
.zendrop-checkbox-style {
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 8px 0 !important;
  font-weight: 400 !important;
  color: #374151 !important;
  position: relative;
}

.zendrop-checkbox-style:hover {
  background-color: transparent !important;
  border: none !important;
}

.zendrop-checkbox-style.selected {
  background-color: transparent !important;
  border: none !important;
  color: #374151 !important;
}

.zendrop-checkbox-style input {
  position: relative !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  margin-right: 12px !important;
  width: 18px !important;
  height: 18px !important;
  accent-color: #6366f1;
  z-index: 10;
  cursor: pointer;
}

.zendrop-radio-style input {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Hide labels for select and multi-select fields */
.zendrop-field-group:has(.zendrop-select-options-container)
  .zendrop-field-label {
  display: none;
}

/* Radio and Checkbox Options */
.zendrop-field-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.zendrop-option-label {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #374151;
  cursor: pointer;
  padding: 16px 20px;
  margin: 0;
  font-weight: 500;
  background-color: #f7f8fb;

  border-radius: 72px;
  transition: all 0.2s ease;
  position: relative;
  width: auto;
  flex-shrink: 0;
  white-space: nowrap;
}

.zendrop-option-label:hover {
  background-color: #f3f4f6;
  border-color: #d1d5db;
}

.zendrop-option-label input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.zendrop-option-label:has(input:checked),
.zendrop-option-label.selected {
  background-color: #dcd3fb;
}

.zendrop-option-label:has(input:checked):hover,
.zendrop-option-label.selected:hover {
  background-color: #dcd3fb;
}

/* Form Navigation */
.zendrop-form-navigation {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 40px;
  gap: 16px;
}

.zendrop-form-button {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  line-height: 1.4;

  min-width: 120px;
}

.zendrop-prev-btn {
  background: transparent;
  color: #6b7280;
  border: 2px solid #e5e7eb;
  box-shadow: none;
  opacity: 0.5;
  cursor: not-allowed;
}

.zendrop-prev-btn:hover {
  background: transparent;
  color: #6b7280;
  border: 2px solid #e5e7eb;
  box-shadow: none;
  opacity: 0.5;
  cursor: not-allowed;
}

/* Disabled button state */
.zendrop-form-button:disabled {
  background-color: #dcd3fb !important;
  color: #ffffff !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  border-color: #e5e7eb !important;
  opacity: 0.6 !important;
}

.zendrop-form-button:disabled:hover {
  background-color: #dcd3fb !important;
  color: #ffffff !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
}

/* Form Messages */
.zendrop-form-message {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  animation: slideDown 0.3s ease-out;
}

.zendrop-form-message.error {
  background-color: #fee;
  color: #e74c3c;
  border: 1px solid #fcc;
}

.zendrop-form-message.success {
  background-color: #efe;
  color: #28a745;
  border: 1px solid #cfc;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .zendrop-multistep-form-container {
    padding: 40px 24px;
    margin: 16px;
    border-radius: 8px;
  }

  .zendrop-form-step {
    padding: 0px 0px;
  }

  .zendrop-select-container.zendrop-direction-row {
    flex-direction: column !important;
  }

  .zendrop-step-title {
    font-size: 24px;
    line-height: 1.2;
  }

  .zendrop-multiselect-container .zendrop-direction-row {
    flex-direction: row !important;
  }
  .zendrop-select-container .zendrop-direction-row {
    flex-direction: column !important;
  }

  .zendrop-step-description {
    font-size: 16px;
  }

  .zendrop-form-navigation {
    justify-content: flex-end;
  }

  .zendrop-form-navigation .zendrop-form-button {
    min-width: 140px;
  }

  .zendrop-field-options {
    gap: 10px;
    justify-content: center;
  }

  .zendrop-option-label {
    padding: 14px 16px;
    font-size: 15px;
  }

  .zendrop-multiselect-container {
    padding: 16px;
  }

  .zendrop-multiselect-container .zendrop-field-options {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .zendrop-multistep-form-container {
    padding: 40px 24px;
    margin: 8px;
  }

  .zendrop-step-title {
    font-size: 20px;
  }

  .zendrop-step-description {
    font-size: 15px;
  }

  .zendrop-progress-text {
    font-size: 14px;
  }

  .zendrop-progress-bar {
    gap: 10px;
    max-width: 233px;
  }

  .zendrop-progress-step {
    height: 4px;
  }

  .zendrop-field-input,
  .zendrop-field-textarea,
  .zendrop-field-select {
    padding: 12px 14px;
  }

  .zendrop-form-button {
    padding: 12px 24px;
    font-size: 15px;
    min-width: 120px;
  }

  .zendrop-field-options {
    gap: 8px;
    justify-content: center;
  }

  .zendrop-option-label {
    padding: 12px 14px;
    font-size: 14px;
  }

  .zendrop-multiselect-container {
    padding: 12px;
  }

  .zendrop-multiselect-container .zendrop-field-options {
    gap: 10px;
  }

  .zendrop-checkbox-style input {
    width: 16px !important;
    height: 16px !important;
    margin-right: 10px !important;
  }
}

.zendrop-testimonial-item:first-child {
  background: linear-gradient(
    256.82deg,
    rgba(118, 93, 49, 0.18) -0.03%,
    rgba(118, 93, 49, 0) 99.97%
  );
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  border: 1px solid transparent;
}

.zendrop-testimonial-item:hover {
  background-color: transparent;
  background: linear-gradient(
    256.82deg,
    rgba(118, 93, 49, 0.18) -0.03%,
    rgba(118, 93, 49, 0) 99.97%
  );
  border: 1px solid transparent;

  transform: translateY(-5px);
}

.zendrop-testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.zendrop-testimonial-quote svg {
  color: #ffffff;

  width: 24px;
  height: 20px;
}

.zendrop-testimonial-text {
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 30px;
}

.zendrop-testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.zendrop-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.zendrop-testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zendrop-testimonial-initials {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.zendrop-testimonial-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.zendrop-testimonial-info p {
  font-size: 14px;
  color: #cccccc;
  margin: 0;
}

.zendrop-testimonial-video-thumbnail {
  width: 212px;
  height: 212px;
  border-radius: 50%;

  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.zendrop-video-thumbnail-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  z-index: 1;
}

.zendrop-testimonial-video-thumbnail:hover {
  transform: scale(1.05);
}

.zendrop-video-unmute-button {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
  transition: all 0.2s ease;
}

.zendrop-video-unmute-button:hover {
  transform: translateX(-50%) scale(1.1);
}

.zendrop-thumbnail-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  z-index: 3;
}

.zendrop-testimonial-video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: pointer;
}

.zendrop-video-container {
  width: 80%;
  max-width: 800px;
  aspect-ratio: 16/9;
  position: relative;
  cursor: auto;
}

.zendrop-video-container iframe,
.zendrop-video-container video {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.zendrop-testimonials-slider {
  display: none;
}

@media (max-width: 768px) {
  .zendrop-testimonials-header {
    margin-bottom: 30px;
  }
  .zendrop-testimonials-header h2 {
    font-size: 36px;
  }

  .zendrop-testimonials-header p {
    font-size: 16px;
  }

  .zendrop-testimonials-grid {
    display: none;
  }

  .zendrop-testimonials-slider {
    display: block !important;
  }

  /* Mobile testimonial items styling */
  .zendrop-testimonials-slider .zendrop-testimonial-item {
    display: flex !important;
    margin: 0 10px 30px 10px;
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding: 35px 20px;
    border-radius: 16px;
    align-items: center;
  }

  /* Mobile: Video thumbnail goes on top */
  .zendrop-testimonials-slider .zendrop-testimonial-video-thumbnail {
    width: 212px;
    height: 212px;
    align-self: center;
    margin: 0 auto 20px auto;
    order: -1;
  }

  /* Mobile: Content section styling */
  .zendrop-testimonials-slider .zendrop-testimonial-content {
    text-align: left;
    order: 1;
  }

  /* Mobile: Quote positioning */

  /* Mobile: Text styling */
  .zendrop-testimonials-slider .zendrop-testimonial-text {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 25px;
  }

  /* Mobile: Author section */
  .zendrop-testimonials-slider .zendrop-testimonial-author {
    margin-top: auto;
  }

  .zendrop-video-unmute-button svg {
    width: 32px;
    height: 32px;
  }

  .zendrop-testimonials-slider .slick-dots {
    margin-top: -5px;
    text-align: center;
    list-style: none;
    display: flex !important;
    justify-content: center;
    padding: 0;
    gap: 6px;
  }

  .zendrop-testimonials-slider .slick-dots li {
    display: inline-block;
    width: 5px;
    height: 5px;
  }

  .zendrop-testimonials-slider .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 6px;
    height: 6px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: rgba(128, 128, 128, 0.6);
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .zendrop-testimonials-slider .slick-dots li button:before {
    display: none;
  }

  .zendrop-testimonials-slider .slick-dots li.slick-active button {
    background: #928069;
    opacity: 1;
  }

  .zendrop-testimonials-slider .slick-dots li button:hover {
    background: rgba(255, 255, 255, 0.8);
  }

  .zendrop-testimonials-slider .slick-arrow {
    display: none !important;
  }

  .zendrop-video-container {
    width: 90%;
    max-width: 400px;
  }
}

/* .zendrop-tab-content {
  min-height: 312px;
} */

.slick-active .zendrop-tab-title {
  background-color: #5952e1;
  color: #fff;
  opacity: 1 !important;
}

.elementor-element
  .slick-track
  .slick-active
  .zendrop-tab-title
  .zendrop-tab-icon
  svg
  path {
  fill: #fff !important;
}

.slick-active .zendrop-tab-title .zendrop-tab-label {
  color: #fff;
}

.zendrop-tabs-content .slick-track {
  display: flex;
  align-items: stretch;
  min-height: 100%;
}

.zendrop-service-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.zendrop-service-item {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.zendrop-service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.zendrop-service-link-wrapper {
  margin-top: auto;
}

/* Ensure slides take full height */
.zendrop-tabs-content,
.zendrop-tabs-content .slick-list,
.zendrop-tabs-content .slick-track {
  height: 100%;
}

/* Remove duplicate declaration */
.zendrop-tab-content {
  max-width: 100%;
  width: 297px;
  display: flex;
  flex-direction: column;
  /* Height will be set dynamically by JavaScript */
}

/* ======================================
   Zendrop Testimonials Slider Widget
   ====================================== */

.zendrop-testimonials-slider-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0;
}

.zendrop-testimonials-slider-container {
  width: 100%;
  overflow: hidden;
}

.zendrop-testimonials-slider-container .swiper-wrapper {
  display: flex !important;
  align-items: stretch;
}

.zendrop-testimonials-slider-container .swiper-slide {
  height: auto !important;
  display: flex !important;
  width: 100%;
  flex-shrink: 0;
}

/* When offset mode is enabled, slides should have max-width */
.zendrop-testimonials-slider-wrapper[data-show-offset="true"] .swiper-slide {
  width: auto;
  max-width: 800px;
}

.zendrop-testimonial-slider-item {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 79px;
  display: flex !important;
  align-items: center;
  gap: 40px;
  min-height: 350px;
  height: 100%;
  width: 100%;
  transition: all 0.3s ease;
}

.zendrop-testimonial-slider-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.zendrop-testimonial-slider-quote {
  color: #E5E5E5;
}

.zendrop-testimonial-slider-text {
  font-size: 24px;
  line-height: 1.5;
  color: #000000;
  font-weight: 400;
  margin: 0;
}

.zendrop-testimonial-slider-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.zendrop-testimonial-slider-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #F7E96C 0%, #E9C74A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.zendrop-testimonial-slider-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zendrop-testimonial-slider-initials {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #F7E96C 0%, #E9C74A 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
}

.zendrop-testimonial-slider-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 4px 0;
}

.zendrop-testimonial-slider-info p {
  font-size: 14px;
  color: #666666;
  margin: 0;
}

.zendrop-testimonial-slider-video-thumbnail {
  width: 212px;
  height: 212px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.zendrop-video-slider-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  z-index: 1;
}

.zendrop-testimonial-slider-video-thumbnail:hover {
  transform: scale(1.05);
}

.zendrop-testimonial-slider-video-thumbnail .zendrop-video-unmute-button {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
  transition: all 0.2s ease;
  opacity: 0.7;
}

.zendrop-testimonial-slider-video-thumbnail .zendrop-video-unmute-button:hover {
  transform: translateX(-50%) scale(1.1);
}

/* Slider Navigation Wrapper */
.zendrop-slider-navigation {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  margin-top: 40px;
  padding-left: 77px;
}

/* Slider Navigation Arrows (Swiper) */
.zendrop-slider-navigation .swiper-button-prev,
.zendrop-slider-navigation .swiper-button-next {
  position: static;
  width: 40px;
  height: 40px;
  margin: 0;
  border: none;
  border-radius: 88px;
  background: #F7F8FB;
  color: #2E2F39;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.zendrop-slider-navigation .swiper-button-prev:after,
.zendrop-slider-navigation .swiper-button-next:after {
  content: none;
}

.zendrop-slider-navigation .swiper-button-prev:hover,
.zendrop-slider-navigation .swiper-button-next:hover {
  background: #E5E7EE;
  color: #2E2F39;
  transform: scale(1.05);
}

.zendrop-slider-navigation .swiper-button-prev svg,
.zendrop-slider-navigation .swiper-button-next svg {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0;
}

.zendrop-slider-navigation .swiper-button-prev svg path,
.zendrop-slider-navigation .swiper-button-next svg path {
  stroke: currentColor;
}

.zendrop-slider-navigation .swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.zendrop-slider-navigation .swiper-button-disabled:hover {
  background: #F7F8FB;
  color: #2E2F39;
  transform: none;
}

/* Slider Pagination Dots (Swiper) */
.zendrop-testimonials-slider-wrapper .swiper-pagination {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: none !important;
  width: auto !important;
}

.zendrop-testimonials-slider-wrapper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 4px !important;
  border: none;
  border-radius: 50%;
  background: #D1D5DB;
  opacity: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.zendrop-testimonials-slider-wrapper .swiper-pagination-bullet-active {
  background: #2E2F39;
}

.zendrop-testimonials-slider-wrapper .swiper-pagination-bullet:hover {
  background: #9CA3AF;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .zendrop-testimonials-slider-wrapper {
    padding: 0 0 80px 0;
  }

  .zendrop-testimonial-slider-item {
    padding: 36px;
    gap: 30px;
  }

  .zendrop-testimonial-slider-text {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .zendrop-testimonials-slider-wrapper {
    padding: 0;
  }

  /* Non-offset mode: slides take full width */
  .zendrop-testimonials-slider-wrapper:not([data-show-offset="true"]) .swiper-slide {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Offset mode: slides have constrained width */
  .zendrop-testimonials-slider-wrapper[data-show-offset="true"] .swiper-slide {
    width: auto !important;
    max-width: 85% !important;
  }

  .zendrop-testimonial-slider-item {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 20px;
    min-height: auto;
  }

  .zendrop-testimonial-slider-content {
    text-align: left;
    order: 2;
  }

  .zendrop-testimonial-slider-video-thumbnail {
    order: 1;
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }

  .zendrop-testimonial-slider-text {
    font-size: 16px;
  }

  .zendrop-testimonial-slider-author {
    justify-content: flex-start;
  }

  /* Hide navigation wrapper on mobile */
  .zendrop-slider-navigation {
    display: none !important;
  }

  /* Show dots on mobile */
  .zendrop-testimonials-slider-wrapper .swiper-pagination {
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: static;
    margin-top: 20px;
    width: 100% !important;
    transform: none;
    left: auto;
    bottom: auto;
  }
}

@media (max-width: 480px) {
  .zendrop-testimonials-slider-wrapper {
    padding: 0;
  }

  .zendrop-testimonial-slider-item {
    padding: 20px 16px;
    gap: 16px;
  }

  .zendrop-testimonial-slider-text {
    font-size: 15px;
  }

  .zendrop-testimonial-slider-video-thumbnail {
    width: 100px;
    height: 100px;
  }
}
