:root {
  --primary: #721953;
  --secondary: #53275c;
  --accent: #341e4a;
  --dark: #1d2350;
  --light-bg: #f4f5fa;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  background-color: var(--light-bg);
  line-height: 1.6;
}

/* Hide reCAPTCHA badge but keep functionality */
.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
  display: none !important;
}

section {
  position: relative;
}

.section-padding {
  padding: 5rem 0;
}

.section-heading {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.section-description {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(29, 35, 80, 0.76);
  font-size: 1.1rem;
}

.hero-carriere {
  position: relative;
  padding: 6rem 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), transparent 42%), linear-gradient(135deg, #221d5a 0%, #341e4a 48%, #721953 100%);
  color: #ffffff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 15, 36, 0.35) 0%, transparent 60%);
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  background: rgba(255, 255, 255, 0.24);
}

.hero-shape-1 {
  width: 320px;
  height: 320px;
  top: -150px;
  right: 20%;
}

.hero-shape-2 {
  width: 240px;
  height: 240px;
  bottom: -120px;
  left: 12%;
}

.hero-carriere .container {
  position: relative;
  z-index: 2;
}

.hero-carriere h1 {
  color: #ffffff;
  font-weight: 700;
}

.hero-carriere .lead {
  color: rgba(255, 255, 255, 0.9);
}

.offers-section {
  background-color: #ffffff;
}

.no-offers-card {
  background-color: var(--light-bg);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 14px 34px rgba(29, 35, 80, 0.08);
}

.no-offers-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
  color: #ffffff;
  font-size: 2.5rem;
}

.no-offers-text {
  color: var(--dark);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.no-offers-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}

.no-offers-list li {
  color: rgba(29, 35, 80, 0.76);
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
  font-size: 1.05rem;
}

.no-offers-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
}

.application-section {
  background-color: var(--light-bg);
}

.application-form-card {
  background-color: #ffffff;
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  box-shadow: 0 14px 34px rgba(29, 35, 80, 0.08);
}

.application-form .form-label {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.required-indicator {
  color: rgb(200, 47, 79);
  font-weight: 700;
}

.application-form .form-control {
  border: 2px solid rgba(29, 35, 80, 0.1);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.application-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(114, 25, 83, 0.15);
  outline: none;
}

.application-form .form-text {
  font-size: 0.85rem;
  color: rgba(29, 35, 80, 0.6);
  margin-top: 0.25rem;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  border-radius: 0.9rem;
  padding: 0.85rem 2.4rem;
  font-weight: 600;
  box-shadow: 0 14px 32px rgba(114, 25, 83, 0.22);
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(114, 25, 83, 0.28);
}

@media (max-width: 991.98px) {
  .section-padding {
    padding: 4rem 0;
  }

  .application-form-card {
    padding: 2.5rem 2rem;
  }

  .no-offers-card {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 3.5rem 0;
  }

  .hero-carriere {
    padding: 4.5rem 0;
  }

  .hero-carriere h1 {
    font-size: 2rem;
  }

  .section-heading {
    font-size: 1.75rem;
  }
}

/* Mobile width constraints - ensure 100% width on mobile */
@media (max-width: 575.98px) {
  html {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  main, section {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .container,
  .container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  [class*="col-"] {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .application-form-card {
    padding: 2rem 1.75rem;
  }

  .no-offers-card {
    padding: 2rem 1.75rem;
  }
}

