/* Background: #add8e6 base + soft blue gradients */
:root{
  --blue-light: #add8e6;
  --blue-1: #CDE0FF;
  --blue-2: #93B9FF;
  --blue-3: #6FA0FF;
  --ink: #163A5F;
  --muted: #5e6b7a;
  --card: #ffffff;
  --ring: rgba(111,160,255,0.4);
}

*{ box-sizing: border-box; }

html, body{
  height: 100%;
}

body{
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  color: #1a1f29;
  background:
    radial-gradient(circle at 20% -10%, var(--blue-1), transparent 60%),
    radial-gradient(circle at 110% 10%, var(--blue-2), transparent 55%),
    linear-gradient(180deg, var(--blue-light), #eaf3ff 60%, #f7faff);
  background-attachment: fixed;
}

.hero{
  text-align: center;
  padding: 48px 20px 12px;
  color: var(--ink);
}
.hero h1{
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.hero p{
  margin: 0 auto;
  max-width: 720px;
  color: var(--muted);
}

.container{
  width: min(1100px, 92%);
  margin: 0 auto 48px;
}

.card{
  background: var(--card);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  padding: clamp(18px, 3vw, 28px);
}

.grid-2{
  display: grid;
  gap: 22px;
}
@media (min-width: 900px){
  .grid-2{
    grid-template-columns: 1.2fr 1fr;
  }
}

.pane h2{
  margin: 0 0 14px;
  color: var(--ink);
}

label{
  display:block;
  margin: 12px 0 6px;
  font-weight: 600;
  color: #24334d;
}
input, textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d7e3ff;
  outline: none;
  transition: box-shadow .15s ease, border-color .15s ease;
  background: #fbfdff;
}
input:focus, textarea:focus{
  border-color: var(--blue-3);
  box-shadow: 0 0 0 4px var(--ring);
}

.btn-primary{
  margin-top: 14px;
  padding: 12px 18px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-2), var(--blue-3));
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(111,160,255,.25);
  transition: transform .08s ease, filter .2s ease;
}
.btn-primary:hover{ filter: brightness(1.05); }
.btn-primary:active{ transform: translateY(1px); }

.disclaimer{
  margin-top: 10px;
  color: #6b7788;
  font-size: .92rem;
}

.address{
  background: #f7fbff;
  border: 1px solid #dbe8ff;
  border-radius: 12px;
  padding: 12px 14px;
  margin: 4px 0 14px;
  color: #2b3a52;
}

.map-wrap{
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
  margin: 10px 0 16px;
}
.map{
  width: 100%;
  height: 320px;
  border: 0;
}

.service-times{
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  color: #41536d;
}
.service-times li{ margin: 4px 0; }

/* Honeypot hides from humans, visible to bots */
.hp{
  position: absolute !important;
  height: 0 !important;
  width: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.flash-wrap{ margin-bottom: 8px; }
.flash{
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 8px;
  font-weight: 600;
}
.flash.success{ background:#e5f7eb; color:#1c6b33; border:1px solid #bfe9ca; }
.flash.error{ background:#fdeaea; color:#8d2b2b; border:1px solid #f7c5c5; }

.site-footer{
  text-align:center;
  padding: 24px 16px 48px;
  color:#3c4e69;
}
.site-footer a{ color:#2f539d; text-decoration:none; }
.site-footer a:hover{ text-decoration:underline; }
