.header {
    font-family: 'Open Sans', sans-serif;
    display:flex;
    align-items: center;
    width: 100%;
    padding:10px;
    position: relative;
}

.red-section{
  position: relative;
  background: red;
  color: #fff;
  padding: 8px 20px;
  min-height: 38px;           /* gives room so nothing overlaps */
}

/* Center title independent of anything else */
.nameRed{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);  /* PERFECT center */
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
}

/* Contact info pinned to the right, with a gap */
.contact-info{
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 18px;                  /* <-- the gap you asked for */
  white-space: nowrap;
  font-size: 14px;
}

.button-container {
    display:flex;
    flex-grow: 1;
    justify-content: center;
}

.button {
    font-size:17px; 
    background-color: white; 
    color: black; 
    border-radius: 25px;
    margin: 0 30px;
    padding: 0 5px;
    border: none;
    cursor: pointer;
}

.quote {
    display: inline-block;
    padding: 10px 18px;
    border: 2px solid #2f2f2f;
    border-radius: 999px;
    color: #2f2f2f;
    text-decoration: none;
    font-weight: 700;
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(2px);
    transition: background .2s ease, color .2s ease;
}
.quote:hover { background:#2f2f2f; color:#fff; }



.quote-title {
    font-size:19px; 
    background-color: rgb(76, 76, 76); 
    color: white; 
    border-radius: 25px;
    margin: 5 10px;
    padding: 0 5px; 
}

.logo{
    display:inline-block;
    border: 1px solid lightgrey;
    margin: 0 60px;
    width: 150px; 
}

/* overlay that dims + blurs the page */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.2);
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 98;
}

/* drawer panel */
.drawer {
  position: fixed;
  top: 0; right: 0;
  width: 300px; height: 100%;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  box-shadow: -4px 0 20px rgba(0,0,0,.15);
  transform: translateX(100%);
  transition: transform .3s;
  z-index: 99;
  padding: 20px;
}
.drawer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
} 
.drawer a {
  display: flex;
  flex-direction: column;
  place-items: center;
  text-decoration: none;
  font-size: 18px;
  font-family: 'Open Sans', sans-serif;
  padding: 10px 18px;
  border: 2px solid #2f2f2f;
  border-radius: 999px;
  color: #2f2f2f;
  text-decoration: none;
  font-weight: 700;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(2px);
  transition: background .2s ease, color .2s ease;
}
.drawer a:hover { background:#2f2f2f; color:#fff; }


/* buttons */
.menu-toggle, .close {
  font-size: 22px;
  border: none;
  background: transparent;
  cursor: pointer;
}

/* when open */
body.drawer-open .drawer { transform: translateX(0); }
body.drawer-open .drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}
body.drawer-open { overflow: hidden; } /* stop scrolling when open */

.menu-toggle{
    display: none;
    font-size: 50px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

/* Section head */
.quote-head h2 {
  font-size: clamp(28px, 5vw, 56px);
  margin: 0 0 6px;
}
.quote-head p { margin: 0 0 18px; color: #ffffff; }

/* Card: photo left, form right */
.quote-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;     /* image slightly wider */
  gap: 22px;
  background: transparent;
  align-items: stretch;
}

/* Photo with big rounded corners (match your style) */
.quote-photo {
  width: 100%;
  height: 590px;                         /* adjust to taste */
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

/* Dark rounded form */
.quote-form {
  background: #2f2f2f;                   /* dark grey like your shot */
  color: #fff;
  border-radius: 24px;
  padding: 20px;
  min-height: 520px;
  display: grid;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.14);
}

/* Two-column rows */
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Labels + inputs */
.quote-form label { display: grid; gap: 6px; }
.quote-form label span { font-size: 14px; opacity: .9; }

.quote-form input {
  background: #3a3a3a;
  color: #fff;
  border: 1px solid #4b4b4b;
  border-radius: 10px;
  padding: 12px 12px;
  font-size: 15px;
  outline: none;
}
.quote-form input:focus { border-color: #9f9f9f; }

/* reCAPTCHA placeholder box */
.captcha-placeholder {
  height: 78px;
  border-radius: 10px;
  background: #3a3a3a;
  border: 1px dashed #6a6a6a;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; opacity: .9;
}

/* Terms */
.terms { font-size: 12px; color: #ddd; margin: 0; }
.terms a { color: #fff; text-decoration: underline; }

/* Submit button (pill) */
.btn {
  display: inline-block;
  padding: 10px 18px;
  border: 2px solid #2f2f2f;
  border-radius: 999px;
  color: #2f2f2f;
  text-decoration: none;
  font-weight: 700;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(2px);
  transition: background .2s ease, color .2s ease;
}
.btn:hover { background:#2f2f2f; color:#fff; }


:root{
  --footer-bg:#3a3a3f;     /* dark grey like your screenshot */
  --footer-fg:#f2f2f2;
  --footer-dim:#cfcfcf;
  --accent:#ffffff;
}

.site-footer{
  background:var(--footer-bg);
  color:var(--footer-fg);
  border-radius:18px 18px 0 0;  /* rounded top corners */
  margin-top:40px;
  box-shadow:0 -6px 24px rgba(0,0,0,.18) inset;
}

.footer-inner{
  max-width:1200px;
  margin:0 auto;
  padding:28px 20px 18px;
  display:grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr; /* brand + three link cols */
  gap:28px;
}

.brand-mark{
  font-weight:800;
  letter-spacing:.06em;
  font-size:22px;
}
.brand-mark span{
  display:block;
  font-weight:600;
  opacity:.9;
  margin-top:2px;
}

.brand-blurb{
  margin:10px 0 14px;
  color:var(--footer-dim);
  line-height:1.5;
}

.contact{ font-style:normal; display:grid; gap:10px; }
.address{ color:var(--footer-fg); opacity:.9; }

.contact-row{
  display:inline-flex; gap:10px; align-items:center;
  color:var(--footer-fg); text-decoration:none;
}
.contact-row svg{ opacity:.9; }
.contact-row:hover{ text-decoration:underline; }

/* Socials */
.socials{ display:flex; gap:10px; margin-top:6px; }
.social{
  display:inline-flex; align-items:center; justify-content:center;
  width:32px; height:32px; border-radius:50%;
  background:#2b2b2f; color:var(--accent); text-decoration:none;
  transition:transform .12s ease, background .2s ease;
}
.social:hover{ transform:translateY(-1px); background:#222; }

/* Link columns */
.footer-col h4{
  margin:2px 0 10px; font-size:16px; font-weight:700; color:var(--accent);
}
.footer-col ul{ list-style:none; margin:0; padding:0; display:grid; gap:8px; }
.footer-col a{
  color:var(--footer-dim); text-decoration:none;
}
.footer-col a:hover{ color:#fff; text-decoration:underline; }

/* Bottom bar */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:14px;
  text-align:center;
  padding:10px 16px 16px;
  color:var(--footer-dim);
  font-size:14px;
}


@media (max-width: 900px) {
    .button-container {
        display:none;
    }
    .menu-toggle {
        display: block;
        position: absolute;
        right: 50px;
        top: 50%;
        transform: translateY(-50%);
    }
    .header {
        justify-content:flex-start;
    }
    .red-section{
        display:none;
    }
    .quote-card {
      grid-template-columns: 1fr;
    }
    .quote-photo,
    .quote-form { 
      min-height: 420px;
      height: auto; }
    .grid2 { 
      grid-template-columns: 1fr; 
    }
}
@media (max-width: 980px){
  .footer-inner{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px){
  .footer-inner{
    grid-template-columns: 1fr;
  }
  .footer-bottom{ font-size:13px; }
}