* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    overflow: hidden;
    font-family: "main", sans-serif;
  }
  
  /* =========================================================
     CANVAS
  ========================================================= */
  #canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
  }
  
  /* =========================================================
     FONT
  ========================================================= */
  @font-face {
    font-family: "main";
    src: url(GeneralSans-Variable.woff2) format("woff2");
  }
  
  /* =========================================================
     TEXT CONTAINER
  ========================================================= */
  .text {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 90%;
    height:525px;
    pointer-events: auto; /* allow hover and clicks */
  }
  
  .top-text {
    position: absolute;
    top: 4.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: row;
    align-items: top;       /* center vertically */
    width: 90%;
    pointer-events: auto; /* allow hover and clicks */
  }
  
  
  .intro-text {
    width: 55%;
  }
  
  .intro-form {
    display: flex;
    justify-content: flex-end; /* pushes content to the right */
    width: 100%;  
  }
  
  .company-type {
    display: flex;
    justify-content: flex-end; /* pushes content to the right */
    width: 100%;               /* make sure it fills its grid column */
  }
  
  .company-type p {
    margin: 0;                 /* remove default margin */
  }
  
  /* =========================================================
     TEXT STYLES
  ========================================================= */
  .text h2 {
    color: #fff;
    font-size: 36px;
    line-height: 34px;
    margin-bottom: 20px;
    font-weight: 300;
    font-family: "main";
  }
  
  .text p {
    color: #fff;
    font-size: 14px;
    font-family: "main";
  }
  
  .top-text p {
    color: #fff;
    font-size: 14px;
    font-family: "main";
  }
  
  .text a {
    color: #fff;
    background: none;
    font-size: 14px;
    font-family: "main";
    text-align: right;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  
  .info-block {
    display: flex;
    justify-content: flex-end;
  }




  
  .contact-form {
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 20px;
  }

  .page {
    display: flex;
    flex-direction: row;
    align-items: center;       /* center vertically */
    justify-content: space-between; /* push h2 left, p right */
    width: 100%;
    border-bottom: 0.5px solid #fff ;
    margin-bottom: 10px;
    }

    .page h2 {
        margin: 0;  /* remove default margin */
        font-size: 14px !important;
        font-weight: 500 !important;
        text-transform: uppercase;
       
    }

    .page p {
        margin: 0;  /* remove default margin */
        font-size: 14px;
    }

  
  .form-step {
    display: none;
    flex-direction: column;
  }
  
  .form-step.active {
    display: flex;
    width: 100%;
  }
  
  
  .form-step.active h2{
    font-size: 18px;
    

  }
  
  input, textarea {
    padding: 10px;
    font-size: 1px;
    margin-top: 5px;
    
  }


  .input-block {
    width: 50%;
  }




  .inputarea{
    all: unset;
    font-size: 12px;
    padding: 8px;
    width: 96%;
    background: #212121;
    color: #fff;
  }

  .addinputarea{
    all: unset;
    font-size: 12px;
    width: 100%;
    height: 100px;
    background: #212121;
    color: #fff;
  }



  .inputblock{
    padding-top: 5px;
    padding-bottom: 5px;
  }
  

  .inputblock p{
    font-size: 14px;
    margin-bottom: 10px;
  }

  .button-row {
    display: flex;
    flex-direction: row;   /* Horizontal row */
    width: 100%;           /* Full row width */
    justify-content: flex-end; /* Align buttons to the right */
    align-items: center;   /* Vertical alignment */
    margin-top: 20px;
    gap: 0px;             /* Space between buttons */
  }
  
  .back-btn, .next-btn {
    all: unset;
    padding: 12px 20px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .back-btn:hover, .next-btn:hover {
    color: #e9e9e9;
  }


  .next-btn:hover {
    color: #000000;
  }
  
  .next-btn {
    all: unset;
    padding: 10px 25px;
    border-radius: 20px;
    background-color: #fff;
    font-size: 16px;
    width: fit-content;
    cursor: pointer;
    text-align: center;
  }
  
  

  .optionarea {
    display: flex;
    width: 100%;
    gap: 10px;   /* spacing between the two labels */
  }
  
  .optionarea label {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    cursor: pointer;
    background: #212121;
    color: #fff;
    transition: 0.2s;
    text-align: center;
    position: relative;
  }

  .inputblock span {
    color: #c3180f;

  }



  
  /* Hide the radio */
  .optionarea input[type="radio"] {
    display: none;
  }
  
  .optionarea label:has(input[type="radio"]:checked) {
    background: #ffffff;
    color: #000;
}

.optionarea label span {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: inherit;   /* inherit from label */
}


.settingarea {
    display: grid;
    grid-template-columns: 1fr 1fr; /* two columns */
    gap: 10px;
    width: 100%;
  }
  
  .settingarea label {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    cursor: pointer;
    background: #212121;
    color: #fff;
    transition: 0.2s;
    text-align: center;
    position: relative;
    width: 100%;
  }
  
  /* your entire CSS EXACTLY as before — only change below */

  .settingarea input[type="checkbox"] {
    display: none ;
  }
  
  .settingarea label:has(input[type="checkbox"]:checked) {
    background: #ffffff;
    color: #000;
  }
  
  
  .settingarea label span {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: inherit;
  }





  .budgetarea {
    display: grid;
    grid-template-columns: 1fr 1fr; /* two columns */
    gap: 10px;
    width: 100%;
  }
  
  .budgetarea label {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    cursor: pointer;
    background: #212121;
    color: #fff;
    transition: 0.2s;
    text-align: center;
    position: relative;
    width: 100%;
  }
  
  /* your entire CSS EXACTLY as before — only change below */

  .budgetarea input[type="radio"] {
    display: none ;
  }
  
  .budgetarea label:has(input[type="radio"]:checked) {
    background: #ffffff;
    color: #000;
  }
  
  
  .budgetarea label span {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: inherit;
  }









.addarea {
    display: grid;
    grid-template-columns: 1fr 1fr; /* two columns */
    gap: 10px;
    width: 100%;
  }
  
  .addarea label {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    cursor: pointer;
    background: #212121;
    color: #fff;
    transition: 0.2s;
    text-align: center;
    position: relative;
    width: 100%;
  }
  
  /* your entire CSS EXACTLY as before — only change below */

  .addarea input[type="radio"] {
    display: none ;
  }
  
  .addarea label:has(input[type="radio"]:checked) {
    background: #ffffff;
    color: #000;
  }
  
  
  .addarea label span {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: inherit;
  }


  .submit-btn {
    all: unset;
    padding: 10px 25px;
    border-radius: 20px;
    background-color: #fff;
    font-size: 16px;
    width: fit-content;
    cursor: pointer;
    text-align: center;

  }
