/* 
 * Sahar Volunteering Modern Form CSS
 * Clean, organized version with no duplications
 */

/* Floating Toggle Button */
.floating-toggle {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: linear-gradient(135deg, #4cb2cf 0%, #08748d 100%);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(76, 178, 207, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 1rem;
  direction: rtl;
  min-width: 120px;
  justify-content: center;
}

.floating-toggle:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(76, 178, 207, 0.5);
  background: linear-gradient(135deg, #fb952f 0%, #f79838 100%);
}

.floating-toggle .toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.floating-toggle:hover .toggle-icon {
  transform: scale(1.1);
}

.toggle-text {
  font-weight: 600;
  white-space: nowrap;
}

/* Hide floating button on choice screen */
.floating-toggle.hidden {
  display: none;
}

/* Success message styles */
.success-footer,
.success-details,
.success-message,
.success-content,
.success-content p,
.success-content h2,
.success-footer p {
  text-align: center;
}

.success-content {
  text-align: center !important;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.success-content h1.page-title {
  text-align: center !important;
  margin: 0 auto;
  display: block;
}

.success-content .success-message {
  text-align: center !important;
  margin: 0 auto;
  display: block;
}

.success-content .success-details {
  text-align: center !important;
  margin: 20px auto;
  max-width: 600px;
}

.success-footer {
  font-size: 1.2rem;
  text-align: center !important;
}

.success-footer a {
  color: #08748d;
  text-decoration: none;
  font-weight: bold;
}

/* Main container styles */
.whyVolunteerWithUsToday {
  background: linear-gradient(135deg, #f5ebdb 0%, #f8f2e6 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.whyUsSahar {
  padding: 40px 15px !important;
}

.whyVolunteerWithUsToday::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.modernFormContent {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Choice buttons section */
.choiceButtonsWrapper {
  padding: 20px 0;
  text-align: center;
}

.formMainTitle {
  color: #08748d;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 50px;
  text-align: center;
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.formMainTitle::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #4cb2cf, #fb952f);
  border-radius: 2px;
}

.buttonsContainer {
  display: flex;
  gap: 30px;
  max-width: 700px;
  margin: 0 auto 50px auto;
  padding: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Choice button styles - Now only 2 buttons */
.choiceBtn {
  background: linear-gradient(135deg, #4cb2cf 0%, #08748d 100%);
  border: none;
  border-radius: 20px;
  padding: 0;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(76, 178, 207, 0.25);
  transform: translateY(0);
  color: white;
  min-width: 280px;
  flex: 1;
  max-width: 320px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.choiceBtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.choiceBtn:hover::before {
  opacity: 1;
}

.choiceBtn:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(76, 178, 207, 0.4);
  background: linear-gradient(135deg, #fb952f 0%, #f79838 100%);
}

.choiceBtn .btnIcon {
  padding: 40px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.choiceBtn:hover .btnIcon {
  transform: scale(1.15);
}

.choiceBtn .btnContent {
  padding: 0 25px 35px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.choiceBtn h3 {
  color: white;
  text-align: center;
  margin: 0 0 15px 0;
  font-size: 1.6rem;
  font-weight: 700;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.choiceBtn p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btnIcon {
  color: white;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.choiceBtn:hover .btnIcon {
  transform: scale(1.2);
}

/* Video button styles */
.choiceBtn.video-btn {
  padding: 0;
  overflow: hidden;
  height: auto;
  display: flex;
  flex-direction: column;
}

.choiceBtn.video-btn .video-cover-wrapper {
  flex: 1;
  min-height: 200px;
  position: relative;
}

.choiceBtn.video-btn .btnContent {
  padding: 20px 25px 25px;
  background: linear-gradient(135deg, #4cb2cf 0%, #08748d 100%);
}

.choiceBtn.video-btn:hover .btnContent {
  background: linear-gradient(135deg, #fb952f 0%, #f79838 100%);
}

.video-cover-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  margin-bottom: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #4cb2cf 0%, #08748d 100%);
}

.video-cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.play-button-overlay {
  transition: transform 0.3s ease;
}

.choiceBtn:hover .video-cover-image {
  transform: scale(1.05);
}

.choiceBtn:hover .video-overlay {
  background: rgba(0, 0, 0, 0.1);
}

.choiceBtn:hover .play-button-overlay {
  transform: scale(1.1);
}

/* Content section styles */
.contentSection {
  animation: slideIn 0.5s ease-out;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  overflow: hidden;
  margin-top: 40px;
}

/* Force dark text in content sections */
.contentSection .infoContent h3,
.contentSection .infoContent h4,
.contentSection .stepContent h4,
.contentSection .stepContent p,
.contentSection .videoSection h3,
.contentSection .infoCard h3,
.contentSection .infoCard p {
  color: #333 !important;
}

.contentSection .infoContent h3,
.contentSection .processSteps h3,
.contentSection .stepContent h4,
.contentSection .videoSection h3,
.contentSection .infoCard h3 {
  color: #08748d !important;
}

/* Global override for white text problem */
.infoContent *,
.formWrapper *:not(.backBtn):not(.primaryBtn):not(.volunteerMe) {
  color: #333 !important;
}

.infoContent h3,
.infoContent h4,
.processSteps h3,
.videoSection h3,
.stepContent h4,
.infoCard h3 {
  color: #08748d !important;
}

/* Ultimate fix for white text */
.modernFormContent .infoContent,
.modernFormContent .infoContent *,
.modernFormContent .processSteps,
.modernFormContent .processSteps *,
.modernFormContent .videoSection,
.modernFormContent .videoSection *,
.modernFormContent .stepContent,
.modernFormContent .stepContent * {
  color: #333 !important;
}

.modernFormContent .infoContent h3,
.modernFormContent .processSteps h3,
.modernFormContent .videoSection h3,
.modernFormContent .stepContent h4,
.modernFormContent .infoCard h3 {
  color: #08748d !important;
}

/* Animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Section header styles */
.sectionHeader {
  background: linear-gradient(135deg, #08748d 0%, #06546a 100%);
  color: white;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
}

.sectionHeader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 70%
  );
  animation: shimmer 3s infinite;
}

.backBtn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.backBtn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(-8px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: white;
}

.sectionHeader h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  color: white !important;
}

.formDescription {
  font-size: 1.1rem;
  opacity: 0.95;
  margin: 0;
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Info section styles */
.infoContent {
  padding: 40px;
}

.infoCard {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  padding: 35px;
  margin-bottom: 30px;
  border: none;
  border-left: 5px solid #4cb2cf;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.infoCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #4cb2cf 0%, #fb952f 100%);
  transition: width 0.3s ease;
}

.infoCard:hover {
  transform: translateX(-8px) translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.infoCard:hover::before {
  width: 100%;
  opacity: 0.05;
}

.cardIcon {
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.infoCard:hover .cardIcon {
  transform: scale(1.1);
}

.infoCard h3 {
  color: #08748d !important;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.infoCard p {
  color: #333 !important;
  line-height: 1.7;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
}

/* Process steps styles */
.processSteps {
  margin: 40px 0;
}

.processSteps h3 {
  color: #08748d !important;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.stepsList {
  display: grid;
  gap: 20px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(76, 178, 207, 0.1);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stepNumber {
  background: linear-gradient(135deg, #4cb2cf 0%, #08748d 100%);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(76, 178, 207, 0.3);
  transition: transform 0.3s ease;
}

.step:hover .stepNumber {
  transform: scale(1.1);
}

.stepContent h4 {
  color: #08748d !important;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.stepContent p {
  color: #333 !important;
  margin: 0;
  line-height: 1.6;
  font-size: 1.05rem;
  font-weight: 500;
}

/* Video Section Styles */
.videoSection {
  margin: 40px 0;
}

.videoSection h3 {
  color: #08748d !important;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.video-preview {
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  background: linear-gradient(135deg, #4cb2cf 0%, #08748d 100%);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-preview:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.video-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(
      135deg,
      rgba(76, 178, 207, 0.9) 0%,
      rgba(8, 116, 141, 0.9) 100%
    );
  pointer-events: none;
}

.play-button {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.video-preview:hover .play-button {
  transform: scale(1.1);
}

.video-title {
  position: relative;
  z-index: 2;
  color: white;
}

.video-title h4 {
  color: white !important;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.video-title p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Video Modal Styles */
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999999999999999;
  top: calc(50% + 6.5vh);
  left: 50%;
  width: 100%;
  height: 90vh;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
  transform: translate(-50%, -50%);
}

.video-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-content {
  position: relative;
}

.video-close {
  position: absolute;
  top: 0;
  right: 0;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 999999;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.video-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.video-container {
  width: 100%;
  position: relative;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: auto;
  max-height: 80vh;
  display: block;
  border-radius: 16px;
}

.videoWrapper {
  border-radius: 12px;
  overflow: hidden;
}

/* Action buttons and primary button */
.actionButtons {
  text-align: center;
  margin-top: 40px;
}

.primaryBtn {
  background: linear-gradient(135deg, #4cb2cf 0%, #08748d 100%);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(76, 178, 207, 0.3);
}

.primaryBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(76, 178, 207, 0.4);
}

/* Form wrapper styles */
.formWrapper {
  padding: 50px 40px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(248, 249, 250, 0.9) 100%
  );
}

.formWrapper .wpcf7-form {
  display: grid;
  gap: 25px;
}

.formWrapper label {
  color: #08748d;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
  font-size: 1.05rem;
}

.formWrapper input[type="text"],
.formWrapper input[type="email"],
.formWrapper input[type="tel"],
.formWrapper input[type="date"],
.formWrapper textarea {
  width: 100%;
  padding: 18px 20px;
  border: 2px solid #e1e8ed;
  border-radius: 12px;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  margin-bottom: 20px;
  direction: rtl;
  text-align: right;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: #333 !important;
}

.formWrapper input::placeholder,
.formWrapper textarea::placeholder {
  color: #666 !important;
}

.formWrapper input,
.formWrapper select,
.formWrapper textarea {
  color: #333 !important;
}

.formWrapper select option {
  color: #333 !important;
  background: white !important;
}

.formWrapper select {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e1e8ed;
  border-radius: 12px;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  margin-bottom: 20px;
  direction: rtl;
  text-align: right;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  height: auto;
  line-height: 1.4;
}

.formWrapper input:focus,
.formWrapper textarea:focus {
  outline: none;
  border-color: #4cb2cf;
  box-shadow: 0 0 0 4px rgba(76, 178, 207, 0.15);
  transform: translateY(-2px);
}

.formWrapper select:focus {
  outline: none;
  border-color: #4cb2cf;
  box-shadow: 0 0 0 4px rgba(76, 178, 207, 0.15);
}

.formWrapper .form-check {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 25px 0;
  direction: rtl;
  padding: 20px;
  background: linear-gradient(
    135deg,
    rgba(76, 178, 207, 0.05) 0%,
    rgba(251, 149, 47, 0.05) 100%
  );
  border-radius: 12px;
  border: 2px solid rgba(76, 178, 207, 0.1);
}

.formWrapper .form-check-input {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: #4cb2cf;
}

.formWrapper .form-check-label {
  font-size: 1rem;
  color: #08748d;
  font-weight: 500;
  line-height: 1.5;
}

.formWrapper .volunteerMe {
  background: linear-gradient(135deg, #fb952f 0%, #f79838 100%);
  color: white;
  border: none;
  padding: 20px 60px;
  border-radius: 35px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(251, 149, 47, 0.3);
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.formWrapper .volunteerMe::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.formWrapper .volunteerMe:hover::before {
  left: 100%;
}

.formWrapper .volunteerMe:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(251, 149, 47, 0.4);
}

.formWrapper .titleAlignFix {
  margin-bottom: 20px;
}

.formWrapper .row {
  margin: 0;
}

.formWrapper .col-12,
.formWrapper .col-md-6 {
  padding: 0 10px;
}

/* Lists and text alignment */
ul {
  padding-right: 5px;
}

li {
  text-align: right;
}

/* Media Queries */
@media (max-width: 768px) {
  .floating-toggle {
    bottom: 20px;
    left: 20px;
    padding: 12px 20px;
    font-size: 0.9rem;
    min-width: 100px;
  }

  .video-modal-content {
    width: 95%;
    margin: 10px;
    max-height: 95vh;
  }

  .video-close {
    top: -45px;
    font-size: 35px;
    width: 45px;
    height: 45px;
  }

  .video-container video {
    max-height: 70vh;
  }

  .video-preview {
    min-height: 220px;
  }

  .video-title h4 {
    font-size: 1.2rem;
  }

  .video-title p {
    font-size: 1rem;
  }

  .play-button svg {
    width: 60px;
    height: 60px;
  }

  .whyVolunteerWithUsToday {
    padding: 40px 0;
  }

  .whyUsSahar {
    padding: 20px 10px !important;
  }

  .modernFormContent {
    margin: 0 10px;
    padding: 20px 10px;
  }

  .choiceButtonsWrapper {
    padding: 10px 0;
  }

  .buttonsContainer {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
    width: 100%;
  }

  .choiceBtn {
    min-width: auto;
    max-width: none;
    margin: 0;
    width: 100%;
    min-height: 280px;
    border-radius: 16px;
  }

  .choiceBtn .btnIcon {
    padding: 30px 20px 15px;
  }

  .choiceBtn .btnContent {
    padding: 0 20px 25px;
  }

  .choiceBtn h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .choiceBtn p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .choiceBtn.video-btn {
    width: 100%;
    min-height: 300px;
  }

  .choiceBtn.video-btn .video-cover-wrapper {
    min-height: 180px;
  }

  .choiceBtn.video-btn .btnContent {
    padding: 15px 20px 20px;
  }

  .contentSection {
    margin-top: 20px;
    border-radius: 16px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .sectionHeader {
    padding: 30px 20px;
  }

  .sectionHeader h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .infoContent,
  .formWrapper {
    padding: 20px 15px;
  }

  .infoCard {
    padding: 20px 15px;
    margin-bottom: 20px;
  }

  .step {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }

  .stepNumber {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .formWrapper .col-12,
  .formWrapper .col-md-6 {
    padding: 0;
    margin-bottom: 15px;
  }

  .formWrapper input,
  .formWrapper textarea {
    padding: 16px 15px;
    font-size: 16px; /* Prevents zoom on iOS */
    width: 100%;
    box-sizing: border-box;
  }

  .formWrapper select {
    padding: 14px 15px;
    font-size: 16px; /* Prevents zoom on iOS */
    width: 100%;
    box-sizing: border-box;
    height: auto;
    line-height: 1.4;
  }

  .formWrapper .volunteerMe {
    padding: 18px 30px;
    font-size: 1.1rem;
    margin-top: 25px;
    width: 100%;
    max-width: 300px;
  }

  .formWrapper .form-check {
    padding: 15px;
    margin: 20px 0;
  }

  .videoWrapper iframe {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .floating-toggle {
    bottom: 15px;
    right: 15px;
    padding: 10px 15px;
    font-size: 0.8rem;
    min-width: 85px;
  }

  .floating-toggle .toggle-icon svg {
    width: 20px;
    height: 20px;
  }

  .video-modal-content {
    width: 98%;
    margin: 5px;
    max-height: 98vh;
  }

  .video-close {
    top: -40px;
    font-size: 30px;
    width: 40px;
    height: 40px;
  }

  .video-container video {
    max-height: 60vh;
  }

  .video-preview {
    min-height: 180px;
    padding: 20px 15px;
  }

  .video-title h4 {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .play-button svg {
    width: 50px;
    height: 50px;
  }

  .whyVolunteerWithUsToday {
    padding: 30px 0;
  }

  .whyUsSahar {
    padding: 15px 5px !important;
  }

  .modernFormContent {
    margin: 0 5px;
    padding: 15px 5px;
  }

  .choiceBtn {
    min-height: 250px;
    border-radius: 14px;
  }

  .choiceBtn .btnIcon {
    padding: 25px 15px 12px;
  }

  .choiceBtn .btnContent {
    padding: 0 15px 20px;
  }

  .choiceBtn h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .choiceBtn p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .choiceBtn.video-btn {
    min-height: 270px;
  }

  .choiceBtn.video-btn .video-cover-wrapper {
    min-height: 160px;
  }

  .choiceBtn.video-btn .btnContent {
    padding: 12px 15px 18px;
  }

  .sectionHeader {
    padding: 25px 15px;
  }

  .sectionHeader h2 {
    font-size: 1.4rem;
  }

  .infoContent,
  .formWrapper {
    padding: 15px 10px;
  }

  .infoCard {
    padding: 15px 10px;
  }

  .formWrapper input,
  .formWrapper textarea {
    padding: 14px 12px;
  }

  .formWrapper select {
    padding: 12px 12px;
    height: auto;
    line-height: 1.4;
  }
}

/* Video Section - Proper video styling, not button */
.video-section {
  margin: 40px auto;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.video-wrapper {
  width: 100%;
}

.video-preview {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  background: #000;
}

.video-preview:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.video-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-preview:hover .video-thumbnail-img {
  transform: scale(1.05);
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.video-preview:hover .video-play-overlay {
  background: rgba(0, 0, 0, 0.1);
}

.play-button-large {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.video-preview:hover .play-button-large {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 1);
}

.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 40px 20px 20px;
  text-align: center;
}

.video-info h3 {
  color: white !important;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.video-info p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.1rem;
  margin: 0 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive video styling */
@media (max-width: 768px) {
  .video-section {
    margin: 30px auto;
    padding: 0 15px;
  }

  .play-button-large {
    width: 80px;
    height: 80px;
  }

  .play-button-large svg {
    width: 60px;
    height: 60px;
  }

  .video-info h3 {
    font-size: 1.3rem !important;
  }

  .video-info p {
    font-size: 1rem !important;
  }

  .buttonsContainer {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .choiceBtn {
    max-width: 100%;
    min-width: 250px;
  }
}

@media (max-width: 480px) {
  .video-section {
    margin: 20px auto;
    padding: 0 10px;
  }

  .play-button-large {
    width: 70px;
    height: 70px;
  }

  .play-button-large svg {
    width: 50px;
    height: 50px;
  }

  .video-info {
    padding: 30px 15px 15px;
  }

  .video-info h3 {
    font-size: 1.2rem !important;
  }

  .video-info p {
    font-size: 0.95rem !important;
  }

  .choiceBtn {
    min-width: 220px;
    min-height: 250px;
  }

  .choiceBtn .btnIcon {
    padding: 30px 20px 15px;
  }

  .choiceBtn .btnContent {
    padding: 0 20px 25px;
  }
}
