/* contact.css */

/* Hoofdlayout:
   - links info cards (contact + openingstijden)
   - rechts formulier kaart
   - zelfde vibe als je collectie modal/cards */
   .contactPage{
    padding: 34px 0 84px;
    background:
      radial-gradient(1200px 600px at 50% 10%, rgba(20,20,20,0.95), rgba(12,12,12,1)),
      linear-gradient(180deg, rgba(20,20,20,0.9), rgba(12,12,12,1));
  }
  
  .contactHeader{
    margin-top: 10px;
    display: grid;
    gap: 10px;
    max-width: 900px;
  }
  
  .contactTitle{
    margin: 0;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.94);
    filter:
      drop-shadow(3px 3px 1px rgba(0,0,0,0.45))
      drop-shadow(3px 6px 6px rgba(0,0,0,0.28));
  }
  
  .contactSub{
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.03em;
    color: rgba(255,255,255,0.82);
    font-weight: 600;
  }
  
  .contactGrid{
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 34px;
    align-items: start;
  }
  
  .contactInfoCol{
    display: grid;
    gap: 14px;
  }
  
  .infoCard{
    border-radius: 22px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 22px 70px rgba(0,0,0,0.55);
    padding: 16px;
    display: grid;
    gap: 14px;
  }
  
  .infoCardTop{
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  
  .infoIconCircle{
    width: 54px;
    height: 54px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(0,0,0,0.22);
    display: grid;
    place-items: center;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.08),
      0 14px 28px rgba(0,0,0,0.55);
    flex: 0 0 auto;
  }
  
  .infoIcon{
    width: 20px;
    height: 20px;
    color: rgba(255,255,255,0.92);
    filter:
      drop-shadow(3px 3px 1px rgba(0,0,0,0.45))
      drop-shadow(3px 6px 6px rgba(0,0,0,0.28));
  }
  
  .infoText{
    display: grid;
    gap: 4px;
  }
  
  .infoTitle{
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.94);
  }
  
  .infoDesc{
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.03em;
    color: rgba(255,255,255,0.80);
    font-weight: 600;
  }
  
  .infoActions{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .pillBtn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: color-mix(in srgb, var(--green) 85%, #000);
    color: rgba(255,255,255,0.92);
    font-weight: 900;
    letter-spacing: 0.06em;
    box-shadow:
      0 14px 30px rgba(0,0,0,0.55),
      inset 0 1px 0 rgba(255,255,255,0.10);
    transition: transform 160ms ease, filter 160ms ease, border-color 160ms ease;
  }
  
  .pillBtn:hover{
    transform: translateY(-1px);
    filter: brightness(1.06);
    border-color: rgba(46,117,64,0.45);
  }
  
  .pillBtn.ghost{
    background: rgba(0,0,0,0.22);
    border-color: rgba(255,255,255,0.14);
  }
  
  .pillIcon{
    width: 16px;
    height: 16px;
    color: rgba(255,255,255,0.92);
  }
  
  .addrBlock{
    display: grid;
    gap: 12px;
  }
  
  .addrLine{
    margin: 0;
    color: rgba(255,255,255,0.86);
    letter-spacing: 0.03em;
    line-height: 1.7;
    font-weight: 700;
  }
  
  .hoursCard{
    padding-bottom: 18px;
  }
  
  .hoursGrid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .hoursBox{
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(0,0,0,0.18);
    padding: 12px;
  }
  
  .hoursTitle{
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.92);
  }
  
  .hoursList{
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
  }
  
  .hoursList li{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(0,0,0,0.20);
    color: rgba(255,255,255,0.86);
    font-weight: 800;
    letter-spacing: 0.04em;
    font-size: 13px;
  }
  
  /* Form kaart rechts */
  .formCard{
    border-radius: 26px;
    overflow: hidden;
    background:
      radial-gradient(900px 520px at 30% 10%, rgba(24,24,24,0.96), rgba(12,12,12,0.98)),
      linear-gradient(180deg, rgba(18,18,18,0.96), rgba(10,10,10,0.98));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 40px 120px rgba(0,0,0,0.70);
    padding: 18px;
    display: grid;
    gap: 16px;
  }
  
  .formTop{
    display: grid;
    gap: 14px;
  }
  
  .formTopLeft{
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  
  .formIconCircle{
    width: 54px;
    height: 54px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(0,0,0,0.22);
    display: grid;
    place-items: center;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.08),
      0 14px 28px rgba(0,0,0,0.55);
    flex: 0 0 auto;
  }
  
  .formIcon{
    width: 20px;
    height: 20px;
    color: rgba(255,255,255,0.92);
    filter:
      drop-shadow(3px 3px 1px rgba(0,0,0,0.45))
      drop-shadow(3px 6px 6px rgba(0,0,0,0.28));
  }
  
  .formTitle{
    margin: 0;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.94);
  }
  
  .formSub{
    margin: 6px 0 0;
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: 0.03em;
    color: rgba(255,255,255,0.82);
    font-weight: 600;
    max-width: 560px;
  }
  
  .formHint{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(0,0,0,0.18);
    color: rgba(255,255,255,0.84);
    font-weight: 800;
    letter-spacing: 0.04em;
    font-size: 13px;
    width: fit-content;
  }
  
  .hintIcon{
    width: 16px;
    height: 16px;
    color: color-mix(in srgb, var(--green) 80%, #fff);
  }
  
  /* Form inputs */
  .contactForm{
    display: grid;
    gap: 14px;
  }
  
  .fieldRow{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .field{
    display: grid;
    gap: 8px;
  }
  
  .labelText{
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.10em;
    color: rgba(255,255,255,0.78);
  }
  
  .inputWrap{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(0,0,0,0.20);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  }
  
  .inputIcon{
    width: 16px;
    height: 16px;
    color: color-mix(in srgb, var(--green) 80%, #fff);
    opacity: 0.95;
    flex: 0 0 auto;
  }
  
  .input{
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: rgba(255,255,255,0.92);
    font-weight: 700;
    letter-spacing: 0.03em;
    font-size: 14px;
  }
  
  .input::placeholder{
    color: rgba(255,255,255,0.45);
    font-weight: 700;
  }
  
  .select{
    appearance: none;
    -webkit-appearance: none;
  }
  
  .textareaWrap{
    align-items: flex-start;
  }
  
  .textarea{
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
  }
  
  .formBottom{
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
  }
  
  .sendBtn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: color-mix(in srgb, var(--green) 85%, #000);
    color: rgba(255,255,255,0.92);
    font-weight: 900;
    letter-spacing: 0.06em;
    cursor: pointer;
    box-shadow:
      0 14px 30px rgba(0,0,0,0.55),
      inset 0 1px 0 rgba(255,255,255,0.10);
    transition: transform 160ms ease, filter 160ms ease, border-color 160ms ease;
  }
  
  .sendBtn:hover{
    transform: translateY(-1px);
    filter: brightness(1.06);
    border-color: rgba(46,117,64,0.45);
  }
  
  .btnIcon{
    width: 16px;
    height: 16px;
  }
  
  .formNote{
    margin: 0;
    color: rgba(255,255,255,0.70);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
  }
  
  /* Responsive */
  @media (max-width: 980px){
    .contactGrid{
      grid-template-columns: 1fr;
    }
  
    .fieldRow{
      grid-template-columns: 1fr;
    }
  
    .hoursGrid{
      grid-template-columns: 1fr;
    }
  
    .contactTitle{
      font-size: 48px;
    }
  }
  
  @media (max-width: 520px){
    .contactTitle{
      font-size: 40px;
    }
  }
  