.callback-section {
	/* background: var(--background-light); */
	padding: 60px 20px;
	display: flex;
	justify-content: center;
}

.callback-card {
	background: white;
	padding: 40px;
	border-radius: 16px;
	max-width: 850px;
	width: 100%;
	box-shadow: 0 8px 24px var(--shadow-light);
	color: var(--primary-blue);
	border: 0.5px solid var(--primary-blue);
}




.callback-card h2 {
	font-size: 28px;
	font-weight: 700;
	color: var(--primary-blue);
	margin-bottom: 15px;
}

.callback-card .note {
	font-size: 14px;
	margin-bottom: 25px;
	color: #333;
}

.callback-card .note a {
	color: var(--dark-pink);
	text-decoration: underline;
}

.callback-card h3 {
	font-size: 22px;
	font-weight: 600;
	margin-top: 20px;
	color: var(--primary-blue);
}

.callback-card .subtext {
	font-size: 15px;
	margin-bottom: 30px;
}

.callback-form .form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.callback-form input,
.callback-form select {
	padding: 12px 14px;
	border: 1px solid var(--shadow-light);
	border-radius: 8px;
	font-size: 14px;
	background-color: #fff;
	color: var(--primary-blue);
	transition: all 0.3s ease;
}
.callback-form input:focus,
.callback-form select:focus {
	outline: none;
	border-color: var(--primary-blue);
	box-shadow: 0 0 0 2px rgba(13, 45, 69, 0.2);
}

.recaptcha {
	margin: 30px 0 20px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--primary-blue);
}
/* Keep recaptcha elements in one row on all screens */

.recaptcha input[type="checkbox"] {
  width: auto;
  flex-shrink: 0;
}

.recaptcha label {
  white-space: nowrap;
  flex-grow: 1;
}
.callback-form button {
	width: 25%;

	background: var(--primary-blue);
	color: white;
	padding: 14px;
	border: none;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}
.callback-form button:hover {
	background: var(--dark-pink);
}

.privacy-note {
	font-size: 12px;

	margin-top: 30px;
	line-height: 1.6;
}

.privacy-note a {
	color: var(--dark-pink);
	text-decoration: underline;
}

/* Responsive */
/* @media (max-width: 768px) {
	.callback-form .form-grid {
		grid-template-columns: 1fr;
	}
	.callback-card {
		padding: 25px;
	}
} */

.alert-success {
	--bs-alert-color: var(--dark-pink);
	--bs-alert-bg: var(--primary-blue);
	--bs-alert-border-color: var(--primary-blue);
	--bs-alert-link-color: var(--dark-pink);
}
.div-btn-submit-request-a-callback {
  display: flex;
  justify-content: center;
}



.custom-submit-btn:hover {
  background-color: var(--dark-pink) !important;
  color: white !important;
}

.custom-spinner {
  color: var(--dark-pink) !important;
}

/* ----- Responsive fixes for callback section ----- */

/* Tablet: stack two columns into one */
@media (max-width: 992px) {
  .callback-section {
    padding: 40px 15px;
  }

  .callback-card {
    padding: 25px 20px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .callback-form .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .callback-form input,
  .callback-form select {
    width: 100%;
    box-sizing: border-box;
  }

  .callback-form button {
    width: 100%;
    max-width: 260px;
  }
}

/* Mobile: tighten spacing further and prevent overflow */
@media (max-width: 575px) {
  .callback-section {
    padding: 30px 10px;
  }

  .callback-card {
    padding: 20px 15px;
    border-radius: 12px;
  }

  .callback-card h2 {
    font-size: 22px;
  }

  .callback-card h3 {
    font-size: 18px;
  }

  .callback-form .form-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .callback-form input,
  .callback-form select {
    width: 100%;
    font-size: 14px;
  }

  .div-btn-submit-request-a-callback {
    justify-content: center;
  }

  .callback-form button {
    width: 100%;
    max-width: 250px;
  }
}
