@charset "UTF-8";
@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5), 0 0 0 3px rgba(255, 255, 255, 0.5);
  }
  50% {
    box-shadow: 0 30px 70px -10px rgba(255, 255, 255, 0.8), 0 0 0 5px rgba(255, 255, 255, 0.8);
  }
}
@keyframes checkPop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3) rotate(180deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
}
@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}
@keyframes pulseIcon {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 50px rgba(0, 219, 222, 0.5);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 80px rgba(0, 52, 222, 0.8);
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #d4d6e0 0%, #a5b0ee 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(161, 161, 161, 0.18);
  border-radius: 50px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .container {
    padding: 1rem;
    border-radius: 30px;
  }
}

.title, h1, h2, h3, p, label, .subtitle, .text-muted {
  text-align: center !important;
}

.title {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.title::before, .title::after {
  content: "⚡";
  margin: 0 10px;
  opacity: 0.7;
  animation: pulse 2s infinite;
}
@media (max-width: 768px) {
  .title {
    font-size: 1rem;
  }
}

h1, h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(43deg, #3B5998 0%, #3B5998 46%, #6f8ac4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}
h1::after, h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #0073de 0%, #355497 100%);
  border-radius: 2px;
}
@media (max-width: 768px) {
  h1, h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  h1, h2 {
    font-size: 1.5rem;
  }
}

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

.option-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(161, 161, 161, 0.18) !important;
  border-radius: 30px !important;
  padding: 1.8rem 1rem !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  width: 100%;
  min-width: 140px;
  max-width: 180px;
  min-height: 200px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: auto;
  animation: float 6s ease-in-out infinite;
}
.option-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.7s ease;
}
.option-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 0 20px rgba(65, 88, 208, 0.3), 0 0 40px rgba(200, 80, 192, 0.2);
  background: rgba(255, 255, 255, 0.3);
}
.option-card:hover::before {
  left: 100%;
}
.option-card img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 0.8rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}
.option-card p {
  font-size: 0.95rem;
  font-weight: 700;
  color: white !important;
  margin: 0.3rem 0 0 0;
  line-height: 1.3;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  word-break: break-word;
  text-align: center;
  max-width: 100%;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 3.8em;
}
.option-card p:contains("Mehrfamilienhaus"), .option-card p:contains("Reihenmittelhaus"), .option-card p:contains("Reihenendhaus") {
  font-size: 0.85rem;
  -webkit-line-clamp: 2;
}
@media (max-width: 992px) {
  .option-card {
    min-width: 120px;
    max-width: 150px;
    min-height: 180px;
    padding: 1.2rem 0.5rem !important;
  }
  .option-card img {
    width: 50px;
    height: 50px;
  }
  .option-card p {
    font-size: 0.85rem;
  }
}
@media (max-width: 768px) {
  .option-card {
    min-width: 110px;
    max-width: 140px;
    min-height: 170px;
    padding: 1rem 0.4rem !important;
  }
  .option-card img {
    width: 45px;
    height: 45px;
  }
  .option-card p {
    font-size: 0.8rem;
  }
}
@media (max-width: 480px) {
  .option-card {
    min-width: 100px;
    max-width: 130px;
    min-height: 160px;
    padding: 0.8rem 0.3rem !important;
  }
  .option-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 0.3rem;
  }
  .option-card p {
    font-size: 0.75rem;
  }
}

.radio-input:checked + .option-card {
  background: linear-gradient(43deg, #3B5998 0%, #3B5998 46%, #6f8ac4 100%);
  border: none !important;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5), 0 0 0 3px rgba(255, 255, 255, 0.5) !important;
  transform: scale(1.08);
  animation: glowPulse 2s infinite;
}
.radio-input:checked + .option-card img {
  filter: brightness(0) invert(1);
  transform: scale(1.1);
}
.radio-input:checked + .option-card p {
  color: white !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .extras-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    padding: 1.5rem;
  }
}
@media (max-width: 992px) {
  .extras-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1.2rem;
  }
}
@media (max-width: 768px) {
  .extras-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    padding: 1rem;
  }
}
@media (max-width: 480px) {
  .extras-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    padding: 0.5rem;
  }
}

.option-card-extras {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(161, 161, 161, 0.18) !important;
  border-radius: 30px !important;
  padding: 2rem 1rem !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  width: 100%;
  min-width: 150px;
  max-width: 180px;
  height: auto;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  margin: 0 auto;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.option-card-extras:hover {
  transform: translateY(-10px) rotateY(5deg) scale(1.05);
  box-shadow: 0 0 20px rgba(65, 88, 208, 0.3), 0 0 40px rgba(200, 80, 192, 0.2), 0 0 30px rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.25);
}
.option-card-extras img {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}
.option-card-extras p {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin: 0.5rem 0 0 0;
  line-height: 1.4;
  text-align: center;
  word-break: break-word;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.option-card-extras p:contains("PKW-Stellplatz") {
  font-size: 0.9rem;
}
@media (max-width: 1200px) {
  .option-card-extras {
    min-width: 140px;
    max-width: 160px;
    min-height: 190px;
    padding: 1.8rem 0.8rem !important;
  }
  .option-card-extras img {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 992px) {
  .option-card-extras {
    min-width: 130px;
    max-width: 150px;
    min-height: 180px;
    padding: 1.5rem 0.8rem !important;
  }
  .option-card-extras img {
    width: 55px;
    height: 55px;
  }
  .option-card-extras p {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .option-card-extras {
    min-width: 120px;
    max-width: 140px;
    min-height: 170px;
    padding: 1.2rem 0.6rem !important;
  }
  .option-card-extras img {
    width: 50px;
    height: 50px;
    margin-bottom: 0.8rem;
  }
  .option-card-extras p {
    font-size: 0.9rem;
    margin: 0.3rem 0 0;
  }
}
@media (max-width: 480px) {
  .option-card-extras {
    min-width: 100px;
    max-width: 130px;
    min-height: 150px;
    padding: 1rem 0.4rem !important;
  }
  .option-card-extras img {
    width: 45px;
    height: 45px;
    margin-bottom: 0.5rem;
  }
  .option-card-extras p {
    font-size: 0.8rem;
    line-height: 1.2;
  }
}

.extras-checkbox {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
}
.extras-checkbox + label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  cursor: pointer;
  padding: 1rem 0.5rem;
}
.extras-checkbox + label::before {
  content: "";
  position: absolute;
  top: -5px;
  right: -5px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.extras-checkbox:checked {
  animation: checkPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.extras-checkbox:checked + label::before {
  content: "✓";
  background: linear-gradient(90deg, #0073de 0%, #355497 100%);
  border-color: white;
  transform: scale(1.2) rotate(360deg);
  box-shadow: 0 0 30px rgba(0, 52, 222, 0.8);
  color: white;
  font-size: 20px;
  text-align: center;
  line-height: 34px;
  font-weight: bold;
}
.extras-checkbox:checked + label img {
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
  transform: scale(1.1);
}
.extras-checkbox:checked + label p {
  color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
  .extras-checkbox {
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
  }
  .extras-checkbox + label::before {
    width: 28px;
    height: 28px;
    top: -3px;
    right: -3px;
    font-size: 16px;
    line-height: 28px;
  }
}
@media (max-width: 480px) {
  .extras-checkbox {
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
  }
  .extras-checkbox + label::before {
    width: 24px;
    height: 24px;
    top: -2px;
    right: -2px;
    font-size: 14px;
    line-height: 24px;
  }
}

input[type=range] {
  width: 100%;
  height: 12px;
  background: linear-gradient(135deg, #374797 0%, #223f66 100%);
  border-radius: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  margin: 2rem 0;
  position: relative;
  z-index: 10;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  background: white;
  border: 3px solid transparent;
  border-image: linear-gradient(90deg, #0073de 0%, #355497 100%);
  border-image-slice: 1;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 20px #003bde, 0 0 40px #1e4674;
  -webkit-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-top: -8px;
}
input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.3) rotate(180deg);
  box-shadow: 0 0 30px #003bde, 0 0 60px #1e4674;
}
input[type=range]::-moz-range-thumb {
  width: 30px;
  height: 30px;
  background: white;
  border: 3px solid transparent;
  border-image: linear-gradient(90deg, #0073de 0%, #355497 100%);
  border-image-slice: 1;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 20px #003bde, 0 0 40px #1e4674;
  -moz-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
input[type=range]::-moz-range-thumb:hover {
  transform: scale(1.3) rotate(180deg);
  box-shadow: 0 0 30px #003bde, 0 0 60px #1e4674;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 12px;
  background: linear-gradient(90deg, #003bde, #1e4674);
  border-radius: 10px;
}

.form-group {
  margin-bottom: 2rem;
  text-align: center;
}

.form-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

input[type=number],
input[type=text],
input[type=email],
.form-control {
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(161, 161, 161, 0.18) !important;
  border-radius: 50px !important;
  padding: 1.2rem 2rem !important;
  font-size: 1.1rem !important;
  color: white !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center !important;
  width: 100% !important;
}
input[type=number]::-moz-placeholder, input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
  text-align: center;
}
input[type=number]::placeholder,
input[type=text]::placeholder,
input[type=email]::placeholder,
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
  text-align: center;
}
input[type=number]:focus,
input[type=text]:focus,
input[type=email]:focus,
.form-control:focus {
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3) !important;
  background: rgba(255, 255, 255, 0.25) !important;
  outline: none;
}

.location-form {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 40px;
  padding: 2rem;
  margin: 1rem 0;
}
.location-form .row {
  margin-bottom: 1rem;
}
.location-form .form-label {
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(43deg, #3B5998 0%, #3B5998 46%, #6f8ac4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.8rem;
}
.location-form input {
  background: rgba(255, 255, 255, 0.2) !important;
  border: 2px solid rgba(255, 255, 255, 0.1) !important;
  font-size: 1.2rem !important;
  padding: 1.2rem !important;
}
.location-form input:focus {
  border-color: #4158D0 !important;
  background: rgba(255, 255, 255, 0.25) !important;
}
@media (max-width: 768px) {
  .location-form {
    padding: 1rem;
  }
  .location-form .form-label {
    font-size: 1rem;
  }
  .location-form input {
    font-size: 1rem !important;
    padding: 1rem !important;
  }
}

.button-wrapper {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 3rem 0;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .button-wrapper {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }
}

.btn {
  padding: 1rem 3rem !important;
  border: none !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}
.btn:hover::before {
  left: 100%;
}
@media (max-width: 768px) {
  .btn {
    padding: 0.8rem 1.8rem !important;
    font-size: 0.9rem !important;
    width: 100%;
    max-width: 300px;
  }
}

.btn-custom {
  background: linear-gradient(90deg, #0073de 0%, #355497 100%) !important;
  color: white !important;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
}
.btn-custom:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 52, 222, 0.8);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-5px);
}

.icon-placeholder {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(161, 161, 161, 0.18);
  border-radius: 30px;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}
.icon-placeholder .icons {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}
@media (max-width: 768px) {
  .icon-placeholder {
    width: 90px;
    height: 90px;
    padding: 1rem;
    margin: 0 auto 1rem;
  }
  .icon-placeholder .icons {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 480px) {
  .icon-placeholder {
    width: 70px;
    height: 70px;
    padding: 0.8rem;
  }
  .icon-placeholder .icons {
    width: 35px;
    height: 35px;
  }
}

.text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.95rem;
  margin-top: 1rem;
  text-align: center;
}

a {
  color: white !important;
  text-decoration: none;
  font-weight: 700;
  position: relative;
}
a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #0073de 0%, #355497 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
a:hover::after {
  transform: scaleX(1);
}

.custom-alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.custom-alert {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.1);
  animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.custom-alert::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  animation: shine 3s infinite;
}
@media (max-width: 768px) {
  .custom-alert {
    padding: 2rem;
  }
}
@media (max-width: 480px) {
  .custom-alert {
    padding: 1.5rem;
  }
}

.custom-alert-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: linear-gradient(90deg, #0073de 0%, #355497 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
  box-shadow: 0 0 50px rgba(0, 219, 222, 0.5);
  animation: pulseIcon 2s infinite;
}

.custom-alert-title {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(43deg, #3B5998 0%, #3B5998 46%, #6f8ac4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .custom-alert-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .custom-alert-title {
    font-size: 1.3rem;
  }
}

.custom-alert-message {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .custom-alert-message {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .custom-alert-message {
    font-size: 0.9rem;
  }
}

.custom-alert-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.custom-alert-button {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
}
.custom-alert-button:hover {
  transform: translateY(-3px) scale(1.05);
}
.custom-alert-button.confirm {
  background: linear-gradient(90deg, #0073de 0%, #355497 100%);
  color: white;
  box-shadow: 0 10px 30px -5px rgba(0, 219, 222, 0.5);
}
.custom-alert-button.cancel {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(10px);
}
@media (max-width: 768px) {
  .custom-alert-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .custom-alert-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
}

.custom-alert.success .custom-alert-icon {
  background: linear-gradient(135deg, #00b09b, #96c93d);
}
.custom-alert.error .custom-alert-icon {
  background: linear-gradient(135deg, #f43b47, #453a94);
}
.custom-alert.warning .custom-alert-icon {
  background: linear-gradient(135deg, #f7971e, #ffd200);
}

.custom-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 1rem 2rem;
  color: white;
  font-weight: 600;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 9999;
  animation: slideInRight 0.3s ease;
}
.custom-toast.success {
  border-left: 5px solid #00b09b;
}
.custom-toast.error {
  border-left: 5px solid #f43b47;
}
.custom-toast.warning {
  border-left: 5px solid #f7971e;
}
.custom-toast.info {
  border-left: 5px solid #4158D0;
}
@media (max-width: 480px) {
  .custom-toast {
    left: 10px;
    right: 10px;
    font-size: 0.8rem;
    padding: 0.8rem 1rem;
  }
}

.custom-toast-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.custom-toast.success .custom-toast-icon {
  background: #00b09b;
  color: white;
}
.custom-toast.error .custom-toast-icon {
  background: #f43b47;
  color: white;
}
.custom-toast.warning .custom-toast-icon {
  background: #f7971e;
  color: white;
}
.custom-toast.info .custom-toast-icon {
  background: #4158D0;
  color: white;
}

.progress-indicator {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 2rem 0;
}

.progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
.progress-dot.active {
  background: linear-gradient(90deg, #0073de 0%, #355497 100%);
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(0, 219, 222, 0.8);
}

.row.justify-content-center {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin: 0 auto;
  max-width: 100%;
}
.row.justify-content-center > [class*=col-] {
  display: flex;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  padding: 0;
}
@media (max-width: 480px) {
  .row.justify-content-center {
    gap: 0.8rem;
  }
}

@media (hover: hover) {
  .option-card:hover,
  .option-card-extras:hover,
  .btn:hover {
    transform: translateY(-5px);
  }
}
section {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-center,
[class*=text-center] {
  text-align: center !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 768px) {
  .button-wrapper .btn + .btn {
    margin-top: 0.5rem;
  }
}/*# sourceMappingURL=style.css.map */