  :root{
    --bw-blue:#023e8f;       /* Logo mavi */
    --bw-blue2:#01478b;
    --bw-orange:#f59e0b;     /* Logo turuncu vurgusu */
    --bw-bg:#f6f8fc;
    --bw-card:#ffffff;
    --bw-text:#0f172a;
    --bw-muted:#64748b;
    --bw-border:#e5e7eb;
    --bw-radius:16px;
    --bw-shadow:0 12px 34px rgba(2, 62, 143, .10);
    --bw-shadow2:0 8px 22px rgba(15, 23, 42, .08);
  }

  /* Bölüm arka plan + genel boşluklar */
  .contact-section{
    background: radial-gradient(1200px 400px at 50% 0%, rgba(2,62,143,.10), transparent 70%),
                linear-gradient(180deg, var(--bw-bg), #fff);
    padding: 60px 0;
  }

  .sec-title h2{
    font-size: 44px;
    line-height: 1.15;
    padding-top: 0;
    text-transform: none;
    color: var(--bw-text);
    font-weight: 900;
    letter-spacing: -0.6px;
    margin-bottom: 10px;
  }

  .sec-title p{
    color: var(--bw-muted);
    font-size: 16px;
    max-width: 720px;
    margin: 0 auto;
  }

  /* Form inner: kart görünümü */
  .form-inner{
    margin-top: 28px;
    background: var(--bw-card);
    border: 1px solid var(--bw-border);
    border-radius: var(--bw-radius);
    box-shadow: var(--bw-shadow);
    padding: 22px;
  }

  /* Başlık gibi küçük bir şerit (isteğe bağlı) */
  .bw-strip{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(2,62,143,.08), rgba(245,158,11,.08));
    border: 1px solid rgba(2,62,143,.12);
  }
  .bw-strip strong{
    color: var(--bw-text);
    font-weight: 900;
    letter-spacing: -.2px;
  }
  .bw-strip span{
    color: var(--bw-muted);
    font-size: 13px;
  }

  /* Input / Select / Textarea modern */
  .default-form input,
  .default-form select,
  .default-form textarea{
    width: 100%;
    border: 1px solid var(--bw-border);
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    height: 54px;
    color: var(--bw-text);
    padding: 10px 14px;
    transition: .2s ease;
    background: #fff;
    box-shadow: 0 0 0 rgba(0,0,0,0);
  }

  .default-form textarea{
    height: 120px;
    padding-top: 12px;
    resize: vertical;
    min-height: 110px;
  }

  .default-form input::placeholder,
  .default-form textarea::placeholder{
    color: #94a3b8;
  }

  .default-form input:focus,
  .default-form select:focus,
  .default-form textarea:focus{
    border-color: rgba(2,62,143,.60);
    box-shadow: 0 0 0 4px rgba(2,62,143,.14);
  }

  /* Select görünüm */
  .default-form select{
    background: #fff;
    color: var(--bw-text);
  }

  /* Butonlar */
  .btn-submit{
    background: var(--bw-blue);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    width: 100%;
    height: 54px;
    padding: 0 14px;
    transition: .2s ease;
    box-shadow: var(--bw-shadow2);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
  }
  .btn-submit:hover{
    background: var(--bw-blue2);
    transform: translateY(-1px);
  }

  /* Secondary: gri yerine logo turuncu vurgulu soft stil */
  .btn-secondary{
    background: #fff;
    color: var(--bw-blue);
    border: 1px solid rgba(2,62,143,.18);
    box-shadow: none;
  }
  .btn-secondary:hover{
    background: rgba(2,62,143,.04);
    transform: translateY(-1px);
  }

  /* Turuncu aksiyon buton (isteğe bağlı) */
  .bw-accent{
    background: var(--bw-orange);
    color:#0b1220;
  }
  .bw-accent:hover{
    filter: brightness(.98);
    transform: translateY(-1px);
  }

  /* Küçük yardım kutusu */
  #pnrYardimAlani small{
    color: var(--bw-muted);
  }

  .bw-helpbox{
    margin-top: 12px;
    padding: 12px 12px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px dashed rgba(2,62,143,.25);
  }

  /* Sonuç kutusu */
  #pnrSonuc{
    border: 1px solid rgba(2,62,143,.20) !important;
    background: rgba(2,62,143,.04);
    border-radius: 14px !important;
    box-shadow: 0 6px 20px rgba(2,62,143,.08);
  }
  #pnrSonuc h4{
    color: var(--bw-text);
    font-weight: 900;
  }

  /* Yeni kayıt alanı - ayrı kart gibi */
  #yeniKayitWrapper{
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--bw-border);
  }

  /* Mobil ayarlar */
  @media (max-width: 991px){
    .sec-title h2{ font-size: 34px; }
    .form-inner{ padding: 16px; }
    .btn-submit{ height: 52px; }
    .default-form input,
    .default-form select,
    .default-form textarea{ height: 52px; }
  }