/* ===============================
   SERVICES PAGE ONLY
   (NO HEADER STYLES HERE)
================================ */

/* ===============================
   BACKGROUND IMAGE + OVERLAY
================================ */

body.services-bg{
  margin: 0;
  min-height: 100vh;
  background: url("../images/pazhome.png") center / cover no-repeat fixed;

  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;

  position: relative;
}

/* overlay */
body.services-bg::before{
  content:"";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 0;
  pointer-events: none;
}

/* keep content above overlay */
body.services-bg > *{
  position: relative;
  z-index: 1;
}

/* ===============================
   PAGE LAYOUT
================================ */

.quote-section{
  width: 100%;
  display: flex;
  justify-content: center;

  padding: 110px 16px 60px; /* space below global header */
}

/* ===============================
   QUOTE CARD
================================ */

.quote-card{
  width: min(920px, 100%);
  background: rgba(15, 15, 15, 0.88);
  backdrop-filter: blur(6px);
  border-radius: 22px;
  padding: 28px 28px 22px;

  border: none;
  box-shadow: 0 18px 50px rgba(198, 28, 28, 0.25);
  
}

/* kill inherited borders */
.quote-card,
.quote-card *{
  border-color: transparent !important;
  outline: none !important;
}

/* ===============================
   TITLES
================================ */

.quote-title{
  margin: 0 0 18px;
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #ece8e8;
}

.section-title{
  margin: 18px 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

/* ===============================
   FORM
================================ */

.quote-form{
  display: grid;
  gap: 14px;
}

.field{
  display: grid;
  gap: 6px;
}

.field label{
  font-weight: 700;
  color: #ffffff;
  font-size: 14px;
}

.quote-card input,
.quote-card textarea{
  width: 100%;
  padding: 14px;
  border-radius: 14px;

  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);

  color: #ffffff;
  font-size: 16px;
}

.quote-card input::placeholder,
.quote-card textarea::placeholder{
  color: rgba(255,255,255,0.6);
}

.quote-card input:focus,
.quote-card textarea:focus{
  border-color: rgba(185,37,37,0.9);
  box-shadow: 0 0 0 4px rgba(185,37,37,0.25);
}

.quote-card textarea{
  min-height: 90px;
  resize: vertical;
}

/* ===============================
   CHECKBOX GRID
================================ */

.checks{
  background: rgba(0,0,0,0.25);
  border-radius: 16px;
  padding: 14px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}

.check{
  display: flex;
  align-items: center;
  gap: 10px;
}

.check input{
  width: 18px;
  height: 18px;
  accent-color: #b92525;
}

.check span{
  font-weight: 650;
  color: #ffffff;
}

/* ===============================
   SUBMIT BUTTON
================================ */

.submit-btn{
  width: 100%;
  margin-top: 14px;
  padding: 14px 16px;

  border: none;
  border-radius: 16px;

  background: #b92525;
  color: #ffffff;

  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
}

.submit-btn:hover{
  filter: brightness(1.06);
}

.submit-btn:active{
  transform: translateY(1px);
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 640px){
  .quote-card{
    padding: 22px 16px 18px;
  }

  .quote-title{
    font-size: 26px;
  }

  .checks{
    grid-template-columns: 1fr;
  }
}
