/* ─── GLOBAL BASE ─────────────────────────────────────────────── */
.ourOffer {
    font-family: Acumin-Regular, Arial, sans-serif;
    margin: 0 auto;
    padding: 100px 225px 50px 225px;
    background-color: var(--ourOffer-bg);
    text-align: center;
  }
  
  .main-squares-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
  }
  
  .main-square {
    width: 100%;
    height: 200px;
    background-color: white;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  }
  .main-square:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    background-color: var(--geon-secondary);
    color: white;
  }
  .main-square.active {
    background-color: var(--geon-secondary);
    color: white;
    box-shadow: 0 8px 16px rgba(var(--geon-primary-rgb), 0.2);
  }
  .main-square h3 {
    font-family: Acumin-Bold, Arial, sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .main-square p {
    font-family: Acumin-Light, Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.9;
  }
  
  /* ─── FORM & QUESTION ───────────────────────────────────────── */
.form-section {
    max-width: 800px;        /* Reduced overall width */
    margin: 1.5rem auto;     /* Less vertical margin */
    padding: 1.5rem;         /* Smaller padding for a more compact look */
    background: white;
    border-radius: 12px;     /* Smaller border radius */
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06); /* Lighter, shorter shadow */
  }
  
  
  .question-container {
    /* Merged: added margin-bottom from the earlier rule plus new padding, border-radius, and display:none */
    margin-bottom: 3rem;
    padding: 2.5rem;
    padding-bottom: 0;
    border-radius: 20px;
    background: #ffffff;
    transition: all 0.3s ease;
    display: none;
  }
  .question-container.active {
    display: block;
  }
  
  .question-title {
    /* Using the enhanced version */
    font-family: Acumin-Bold, Arial, sans-serif;
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.5;
    position: relative;
    padding-bottom: 1rem;
  }
  
  .bigQuestion {
    margin-bottom: 1.5rem;
  }
  
  .options-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;  
    gap: 1.5rem;
    margin-top: -40px;
  }

  .info-container {
    flex-wrap: none !important;
    gap: 0 !important;
    justify-content: none !important;
  }

  .info-input-group {
    margin-bottom: 0 !important;
  }
  
  /* Force left‐alignment for some questions */
  #question0 > .options-container,
  #investorQuestion0 > .options-container,
  #communityQuestion0 > .options-container {
    text-align: left !important;
  }

  
  #ourOfferHeading {
    font-size: var(--medium-font) !important;
    font-family: Acumin-Black;
    text-align: left;
    margin-bottom: 50px;
  }
  #ourOfferHeading > h3 {
    font-size: var(--medium-font) !important;
    font-family: Acumin-Regular !important;
  }
  
  /* ─── OPTION CARDS ──────────────────────────────────────────── */
  .option-card {
    /* Using enhanced option-card styles */
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    border: 2px solid #e8e8e8;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 160px;
    text-align: center;
    font-family: Acumin-Regular, Arial, sans-serif;
    font-size: 1.1rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
  }
  .option-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(var(--geon-primary-rgb), 0.05));
    transition: opacity 0.3s ease;
    opacity: 0;
  }
  .option-card:hover:before {
    opacity: 1;
  }
  .option-card:hover {
    border-color: var(--geon-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(var(--geon-primary-rgb), 0.12);
  }
  .option-card.selected {
    background-color: var(--geon-secondary);
    color: white;
    border-color: transparent;
    font-family: Acumin-Bold, Arial, sans-serif;
    box-shadow: 0 8px 20px rgba(var(--geon-secondary-rgb), 0.2);
  }
  
  /* ─── INPUT GROUP & FIELDS ───────────────────────────────────── */
  .input-group {
    /* Using the enhanced input-group version */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    padding: 1rem;
  }
  
  .input-field {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
  }
  .input-field label {
    font-family: Acumin-Bold, Arial, sans-serif;
    color: #333;
    font-size: 1rem;
    letter-spacing: 0.8px;
  }
  .input-field input {
    padding: 1.2rem 1.4rem;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1.1rem;
    font-family: Acumin-Regular, Arial, sans-serif;
    transition: all 0.3s ease;
    background: #f8f8f8;
  }
  .input-field input:focus {
    border-color: var(--geon-primary);
    background: #ffffff;
    outline: none;
    box-shadow: 0 4px 12px rgba(var(--geon-primary-rgb), 0.12);
    transform: translateY(-2px);
  }
  
  /* ─── NAVIGATION BUTTONS ─────────────────────────────────────── */
  .navigation-buttons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 0;
    padding: 1rem;
  }
  .nav-button {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 14px;
    font-family: Acumin-Bold, Arial, sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--geon-primary);
    color: white;
    min-width: 160px;
    letter-spacing: 0.8px;
    box-shadow: 0 6px 12px rgba(var(--geon-primary-rgb), 0.2);
    position: relative;
    overflow: hidden;
  }
  .nav-button:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1));
    transition: transform 0.3s ease;
    transform: translateX(-100%);
  }
  .nav-button:hover:after {
    transform: translateX(100%);
  }
  .nav-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    box-shadow: none;
  }
  .nav-button:not(:disabled):hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(var(--geon-primary-rgb), 0.3);
  }
  
  /* ─── LOCATION FIELDS ────────────────────────────────────────── */
  .location-entry {
    /* Global location-entry styles */
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .location-entry:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  /* When inside #locationFieldsContainer, use alternate styling */
  #locationFieldsContainer .location-entry {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
  }
  
  #locationFieldsContainer {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .remove-location {
    display: flex;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: Acumin-Bold, Arial, sans-serif;
  }
  
  .remove-location:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(204, 0, 0, 0.3);
  }
  

  
  .add-location-btn {
    background-color: var(--geon-primary);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1.2rem 2.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 2rem auto;
    display: block;
    font-family: Acumin-Bold, Arial, sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
  }
  .add-location-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(var(--geon-primary-rgb), 0.2);
  }
  /* Alternate button style when used under #locationFieldsContainer */
  #locationFieldsContainer .add-location-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    border-radius: 4px;
  }
  
#landPt68 {
  margin-top: 50px;
  margin-bottom: 0;
}

  /* ─── SLIDER ───────────────────────────────────────────────────── */
  .slider-container {
    width: 100%;
    max-width: 700px;
    padding: 0rem 1rem;
    margin: 0 auto;
  }
  .slider-wrapper {
    position: relative;
    padding: 2.5rem 0;
  }
  .slider {
    width: 100%;
    height: 10px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, #e8e8e8, #f4f4f4);
    border-radius: 5px;
    outline: none;
  }
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 32px;
    height: 32px;
    background: var(--geon-primary);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(var(--geon-primary-rgb), 0.3);
    border: 2px solid white;
  }
  .slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 5px 12px rgba(var(--geon-primary-rgb), 0.4);
  }
  .slider-value {
    position: absolute;
    top: -45px;
    transform: translateX(-50%);
    background: var(--geon-secondary);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    font-family: Acumin-Bold, Arial, sans-serif;
    font-size: 1.2rem;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }
  
  /* ─── CONDITIONAL & SIMPLE FORM ─────────────────────────────── */
  .conditional-question {
    display: none;
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
  }
  .conditional-question.visible {
    display: block;
  }
  
  .simple-form .question-container {
    display: block;
    margin: 0 auto;
  }
  .simple-form .input-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .simple-form .question-title {
    margin-bottom: 2rem;
  }
  .simple-form .navigation-buttons {
    display: flex;
    justify-content: center;
  }
  .simple-form .nav-button {
    width: 100%;
    max-width: 300px;
  }
  
  /* ─── SELECT (DROPDOWN) ───────────────────────────────────────── */
  .select-wrapper {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
    margin-top: -40px;
  }
  .select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    background-color: white;
    cursor: pointer;
    font-family: Acumin-Regular, Arial, sans-serif;
    color: #333;
    transition: all 0.3s ease;
  }
  .select-wrapper select:hover {
    border-color: var(--geon-primary);
    box-shadow: 0 4px 8px rgba(var(--geon-primary-rgb), 0.1);
  }
  .select-wrapper select:focus {
    outline: none;
    border-color: var(--geon-primary);
    box-shadow: 0 4px 12px rgba(var(--geon-primary-rgb), 0.15);
  }
  .select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--geon-primary);
    pointer-events: none;
  }
  .select-wrapper select option {
    padding: 1rem;
    font-family: Acumin-Regular, Arial, sans-serif;
  }
  
  /* ─── FULL‐WIDTH IMAGE ───────────────────────────────────────── */
  .full-width-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
  }
  .full-width-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  @media screen and (max-width: 767px) {
    .full-width-image-container,
    .full-width-image {
      height: 150px;
    }
  }
  
  /* ─── DATE SLIDERS ───────────────────────────────────────────── */
  .date-slider-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
  }
  .year-slider,
  .month-slider {
    width: 100%;
    margin: 15px 0;
  }
  .year-slider label,
  .month-slider label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  /* ─── COMMUNITY FORM (ADDITIONAL) ─────────────────────────────── */
  .community-form .input-field {
    margin-bottom: 1.5rem;
  }
  .community-form .input-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
  }
  .community-form input[type="text"],
  .community-form input[type="email"],
  .community-form input[type="tel"] {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
  }
  .community-form .option-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .community-form .option-card {
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  .community-form .option-card.selected {
    background-color: var(--geon-secondary);
    color: white;
    border-color: transparent;
  }
  .community-form .input-field.error input,
  .community-form .option-container.error .option-card {
    border-color: #ff4444;
  }
  .community-form .form-section-inner .navigation-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
  }
  .community-form .form-section-inner .nav-button {
    padding: 0.75rem 1.5rem;
    background-color: var(--geon-primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .community-form .form-section-inner .nav-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
  }
  .community-form .form-section-inner .nav-button:hover:not(:disabled) {
    opacity: 0.9;
  }
  
  /* ─── MISC & SPECIFIC ─────────────────────────────────────────── */
  #question10 {
    padding: 20px;
  }
  #landPt45 {
    white-space: nowrap;
  }
  .input-field label[for="strasse"],
  .input-field label[for="position"],
  .input-field label[for^="strasse"] {
    white-space: nowrap;
  }
  @media only screen and (max-width: 768px) {
    .input-field label {
      white-space: normal;
    }
  }
  
  /* ─── MEDIA QUERIES ───────────────────────────────────────────── */
  @media only screen and (max-width: 480px) {
    .ourOffer {
      padding: 150px 5px !important;
    }
  }
  @media only screen and (max-width: 900px) {
    .form-section {
      padding: 2rem;
      margin: 2rem 1rem;
    }
    .question-container {
      padding: 1.5rem;
    }
    .input-group {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .options-container {
      gap: 1rem;
    }
    .option-card {
      width: 100%;
      min-width: auto;
    }
    .navigation-buttons {
      flex-direction: column;
      gap: 1rem;
    }
    .nav-button {
      width: 100%;
    }
    .ourOffer {
      padding: 50px 10px !important;
    }
    .community-form .option-container {
      flex-direction: column;
    }
    .community-form .option-card {
      width: 100%;
      text-align: center;
    }
    .main-squares-container {
      grid-template-columns: 1fr;
      max-width: 400px;
    }
    #ourOfferHeading > h3 {
      font-size: var(--very-small-font) !important;
      margin-bottom: 50px;
    }
  }
  @media only screen and (min-width: 900px) and (max-width: 1190px) {
    .ourOffer {
      padding: 150px 25px !important;
    }
  }
  /* Combine intro-text adjustments for devices 769px to 1600px */
  @media only screen and (min-width: 769px) and (max-width: 1600px) {
    .intro-text > h6 {
      font-size: var(--small-font) !important;
      margin-bottom: 20px;
    }
  }
  /* Extra small devices */
  @media only screen and (max-width: 481px) {
    .intro-text > h6,
    .question-title,
    .square-content > h3 {
      font-size: var(--small-font) !important;
      margin-bottom: 20px;
    }
  }
  @media only screen and (min-width: 481px) and (max-width: 768px) {
    .intro-text > h6,
    .question-title,
    .square-content > h3 {
      font-size: var(--small-font) !important;
      margin-bottom: 20px;
    }
  }
  