:root{
    --red:#e60000;
    --black: #000000;
    --text:#333;
    --muted:#6b7280;
    --border:#e5e7eb;
    --shadow:0 8px 30px rgba(0,0,0,.08);
    --radius:14px;
  }
  
  /* Contact page header */
  .page-header {
    padding: 32px 20px 18px;
    text-align: center; /* centers inline text */
    display: flex;       /* ensures flex centering works even if something overrides text-align */
    justify-content: center;
  }
  
  .page-header h1 {
    margin: 0;
    font-weight: 800;
    letter-spacing: .04em;
    color: var(--red);
    font-size: clamp(28px, 3.6vw, 42px);
  }
  
  
  
  /* Map under header */
  .map-wrap{
        width:100%;
        max-width:1100px;
        margin:10px auto 36px;
        border-radius:var(--radius);
        overflow:hidden;
        box-shadow:var(--shadow);
        border:1px solid var(--border);
        aspect-ratio:16/7;
        position: relative;
  }
  .map-address .map-address {
    position: absolute;
    left: 10px; bottom: 10px;
    padding: 8px 12px;
    background: #ff0000;
    color: #ffffff;
    border: 2px solid #e60000;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
    max-width: min(92%, 520px);
  }
  .map-wrap iframe{ width:100%; height:100%; border:0; display:block; }
  
  /* Main layout */
  .container{ width:100%; max-width:1100px; margin:0 auto 80px; padding:0 20px; }
  .contact-grid{
    display:grid;
    grid-template-columns: 1.15fr .85fr;
    gap:40px;
  }
  @media (max-width: 900px){
    .contact-grid{ grid-template-columns: 1fr; }
  }

  @media (max-width: 480px){
    .map-wrap .map-address{
      left: 8px; right: 8px; bottom: 8px;
      font-size: 13px;
      padding: 8px 10px;
    }
  }
  
  /* Card shells */
  .card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    padding:26px;
  }

  .card-info {
    font-size: 12px;
  }
  
  /* Form */
  .lead{ font-size: clamp(18px, 2.4vw, 22px); line-height:1.4; margin:0 0 18px; }
  .field{ display:flex; flex-direction:column; gap:8px; margin:16px 0; }
  .field label{ font-weight:600; font-size:14px; color:#444; }
  .req{ color:var(--red); }
  .input, .textarea{
    width:100%; font:inherit;
    border:1px solid var(--border);
    border-radius:10px;
    padding:14px 12px;
    outline:none; background:#fff;
    transition: border-color .15s, box-shadow .15s;
  }
  .textarea{ min-height:140px; resize:vertical; }
  .input:focus, .textarea:focus{
    border-color:var(--red);
    box-shadow:0 0 0 3px rgba(230,0,0,.12);
  }
  .btn{
    appearance:none; border:none; border-radius:10px;
    padding:14px 22px; font-weight:800; letter-spacing:.04em;
    text-transform:uppercase; cursor:pointer;
    background:var(--red); color:#fff;
    transition: transform .05s ease, filter .15s ease, box-shadow .15s ease;
    box-shadow:0 10px 18px rgba(230,0,0,.18);
  }
  .btn:hover{ filter:brightness(1.05); }
  .btn:active{ transform: translateY(1px) scale(.997); }
  .smallprint{ margin-top:10px; font-size:12px; color:var(--muted); }
  .smallprint a{ color:inherit; text-decoration:underline; }
  
  /* Info */

    /* Put both right-side cards in the right column */
    .contact-grid .info { grid-column: 2; }
    .contact-grid .hours-card { grid-column: 2; }
    
  .info h3{ margin:0 0 8px; font-size:22px; }
  .info h4{ margin:16px 0 6px; font-size:16px; }
  .info p{ margin:6px 0; color:#4b5563; }
  .info .tel{ color:var(--red); font-weight:600; text-decoration:none; }
  .block + .block{ margin-top:10px; }
  .hours{ margin-top:8px; border-top:1px dashed var(--border); padding-top:10px; }
  .row{
    display:flex; justify-content:space-between; gap:16px;
    padding:9px 0; border-bottom:1px solid #f3f4f6; font-size:15px;
  }
  .row strong{ color:#111827; }
  .row .time{ color:#374151; }
  
  /* Toast */
  .toast{
    position:fixed; left:50%; bottom:24px; transform:translateX(-50%) translateY(20px);
    background:#111827; color:#fff; padding:12px 16px; border-radius:10px;
    box-shadow:var(--shadow); opacity:0; pointer-events:none;
    transition:opacity .2s, transform .2s; font-size:14px;
  }
  .toast.show{ opacity:1; transform:translateX(-50%) translateY(0); }
  
  .text1 {
    font-size: 14px;
  }

  .text2 {
    font-size: 14px;
    margin-bottom: 20px;
  }
    /* Space between right column boxes */
    .right-col {
        display: flex;
        flex-direction: column;
        gap: 30px; /* adjust spacing */
    }

  .connect-section {
    text-align: center;
    margin: 60px auto 40px;
  }
  
  .connect-section h1 {
    font-weight: 800;
    letter-spacing: .04em;
    color: var(--red);
    font-size: clamp(28px, 3.6vw, 42px);
    margin-bottom: 20px;
  }

  .hours-card h3 {
    font-size: 22px; /* match Deck Diagnostics */
    font-weight: 800;
    color: var(--black);
    margin-top: 0;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  
  .social-icons img {
    width: 60px;
    height: 60px;
    box-shadow: 0 10px 18px rgba(230, 0, 0, 0.18); /* same base as .btn */
    transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
  }
  
  .social-icons img:hover {
    filter: brightness(1.05);
    transform: scale(1.05);
  }

  .row.today {
    background: rgba(230, 0, 0, 0.1); /* faint red background */
    box-shadow: 0 0 0 2px var(--red), 0 0 12px rgba(230, 0, 0, 0.6);
    border-radius: 6px;
  }
  
  @media (max-width: 600px) {
    .social-icons img {
      width: 48px;
      height: 48px;
    }
  }


  /* =========================
   CONTACT — LAYOUT & MOBILE
   ========================= */

/* Page header */
.page-header h1{
  text-align:center;
  font-weight:800;
  letter-spacing:.6px;
  margin:18px 0 12px;
  font-size:clamp(26px,5.5vw,40px);
  color:#e60000;
}

/* Map wrapper (responsive) */
.map-wrap{
  margin: 10px auto 22px;
  max-width: 1100px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
  background:#eee;
  aspect-ratio: 16 / 9; /* responsive height */
  position: relative;
}
.map-wrap iframe{
  position:absolute; inset:0;
  width:100%; height:100%;
  border:0;
}
.map-wrap .map-address{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.55));
  color:#fff;
  font-size: clamp(12px, 1.8vw, 14px);
  padding: 10px 12px;
}

/* Two-column layout → stacks on mobile */
.contact-grid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  padding-left: clamp(16px,4vw,32px);
  padding-right: clamp(16px,4vw,32px);
  margin-bottom: 28px;
}
.right-col{
  display: grid;
  gap: 18px;
}

/* Cards */
.card{
  background:#fff;
  border:1px solid #e9e9e9;
  border-radius: 12px;
  padding: clamp(16px,3vw,24px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

/* Info + Hours */
.card.info h3,
.hours-card h3{
  margin:0 0 8px; 
  font-size: clamp(18px, 2.6vw, 22px); 
  color:#e60000; 
  font-weight:800;
}
.card.info .text1, .card.info .text2{
  margin: 6px 0;
  line-height: 1.65;
  color:#222;
  font-size: clamp(15px, 2.1vw, 17px);
}

/* Hours rows */
.hours-card .row{
  display:flex; align-items:baseline; justify-content:space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: clamp(14px, 2vw, 16px);
}
.hours-card .row:last-child{ border-bottom: 0; }
.hours-card .time{ color:#444; }

/* Form typography & tap-size (prevents iOS zoom) */
.lead{ font-size: clamp(18px, 2.3vw, 20px); margin:0 0 16px; color:#111; }
.field{ display:flex; flex-direction:column; gap:8px; margin:12px 0; }
.field label{ font-weight:600; font-size: 16px; color:#444; }
.input, .textarea{
  width:100%;
  font-size:16px; /* >=16px avoids iOS zoom on focus */
  border:1px solid #ddd; border-radius:10px;
  padding:12px 12px; outline:none; background:#fff;
  transition: border-color .15s, box-shadow .15s;
}
.textarea{ min-height: 140px; resize: vertical; }
.input:focus, .textarea:focus{
  border-color:#e60000; box-shadow: 0 0 0 3px rgba(230,0,0,.12);
}

/* Buttons */
.btn{
  display:inline-block;
  background:#e60000; color:#fff; text-decoration:none;
  border:none; border-radius:10px;
  padding: 14px 20px;
  font-weight:800; letter-spacing:.4px; text-transform:uppercase;
  box-shadow: 0 10px 18px rgba(230,0,0,.18);
  transition: filter .15s, transform .05s;
  cursor:pointer;
}
.btn:hover{ filter: brightness(1.05); }
.btn:active{ transform: translateY(1px); }

/* Toast */
.toast{
  position: fixed;
  left: 50%; bottom: 18px;
  transform: translateX(-50%);
  background:#111; color:#fff;
  padding: 12px 16px; border-radius: 10px;
  font-size: 14px; box-shadow: 0 8px 24px rgba(0,0,0,.2);
  opacity: 0; pointer-events:none; transition: opacity .2s, transform .2s;
}
.toast.show{ opacity: 1; transform: translateX(-50%) translateY(-2px); }

/* Connect section */
.connect-section{
  text-align:center;
  padding: clamp(18px, 4vw, 32px) 0;
}
.connect-section h1{
  font-size: clamp(22px, 4.2vw, 32px);
  color:#e60000; font-weight:800; margin:0 0 10px;
}
.connect-section .social-icons{
  display:flex; gap:18px; justify-content:center; align-items:center;
}
.connect-section .social-icons img{ max-width:32px; height:auto; }

/* Responsive breakpoints */
@media (max-width: 980px){
  .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 560px){
  .map-wrap{ border-radius: 0; }
  .card{ padding: 16px; border-radius: 10px; }
  .hours-card .row{ padding: 10px 0; }
}
