:root{
      --black:#0b0b0b;
      --white:#ffffff;

      --gray-50:#f7f7f7;
      --gray-100:#f1f1f1;
      --gray-200:#e2e2e2;
      --gray-400:#b5b5b5;
      --gray-700:#3a3a3a;

      --orange:#e06b1a;
      --orange-dark:#c85f17;
      --orange-soft:#fff1e6;

      --max:1100px;
      --radius:18px;
      --shadow-soft: 0 12px 30px rgba(0,0,0,.10);
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      color:var(--black);
      background:var(--white);
      line-height:1.55;
    }
    img{max-width:100%; display:block}
    a{color:inherit}
    .container{width:min(var(--max), calc(100% - 2rem)); margin-inline:auto}
    .muted{color:var(--gray-700)}
    section{padding:2.6rem 0}

    /* Top bar */
    .topbar{
      background:var(--black);
      color:var(--gray-200);
      font-size:.9rem;
    }
    .topbar .inner{
      display:flex;
      gap:1rem;
      align-items:center;
      justify-content:space-between;
      padding:.65rem 0;
    }
    .topbar a{color:var(--gray-200); text-decoration:none}
    .topbar a:hover{color:var(--white)}
    .topbar .meta{display:flex; gap:1rem; flex-wrap:wrap}
    .topbar .meta span{opacity:.9}

    /* Header / Nav */
    header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(11,11,11,.92);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:1rem;
      padding:.9rem 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:.75rem;
      text-decoration:none;
      color:var(--white);
      white-space:nowrap;
      font-weight:700;
      letter-spacing:.2px;
    }
    .brand-mark{
      width:38px;
      height:38px;
      border-radius:10px;
      background:linear-gradient(145deg, #111, #000);
      border:1px solid rgba(255,255,255,.12);
      display:grid;
      place-items:center;
      box-shadow:0 6px 20px rgba(0,0,0,.35);
      font-size:.95rem;
    }

    .nav-cta{
      display:flex;
      align-items:center;
      gap:.75rem;
    }

    /* --- NAV: smooth hover + dropdowns --- */
.primary-nav .nav-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  gap:1.1rem;
}

.primary-nav a{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  color:var(--gray-200);
  text-decoration:none;
  font-weight:650;
  font-size:.95rem;
  padding:.45rem .2rem;
  transition: color .18s ease, transform .18s ease;
  will-change: transform;
}

/* Animated underline */
.primary-nav a::after{
  content:"";
  position:absolute;
  left:.2rem;
  right:.2rem;
  bottom:.15rem;
  height:2px;
  border-radius:999px;
  background: var(--orange, #e06b1a);
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .22s ease;
  opacity:.95;
}

/* Hover / focus animation */
.primary-nav a:hover,
.primary-nav a:focus-visible{
  color:var(--white);
  transform: translateY(-1px);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after{
  transform: scaleX(1);
}

/* Dropdown container */
.has-dropdown{
  position:relative;
}

/* Chevron subtle animation */
.has-dropdown .chev{
  font-size:.8rem;
  opacity:.85;
  transform: translateY(1px);
  transition: transform .18s ease, opacity .18s ease;
}

.has-dropdown:hover .chev,
.has-dropdown:focus-within .chev{
  transform: translateY(1px) rotate(180deg);
  opacity:1;
}

/* Dropdown panel */
.dropdown{
  position:absolute;
  top: 100%;
  left: 0;
  margin-top: .35rem;
  min-width: 220px;
  padding:.5rem;
  margin:0;
  list-style:none;

  background: rgba(11,11,11,.98);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);

  opacity:0;
  transform: translateY(6px);
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 100;
}

/* Open on hover (desktop) + keyboard focus */
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}

/* Dropdown links */
.dropdown a{
  width:100%;
  padding:.65rem .6rem;
  border-radius: 12px;
  color: rgba(255,255,255,.9);
  font-weight:650;
  font-size:.92rem;
}

.dropdown a::after{ display:none; } /* remove underline inside dropdown */
.dropdown a:hover,
.dropdown a:focus-visible{
  background: rgba(255,255,255,.07);
  transform: none;
  color: var(--white);
}

/* Keep your existing mobile breakpoint behaviour */
@media (max-width: 980px){
  .primary-nav .nav-list{display:none;} /* you already hide desktop nav here */
}
.topbar-right{
  display:flex;
  align-items:center;
  gap:1rem;
}

.topbar-social{
  display:flex;
  gap:.45rem;
  margin-left:.5rem;
}

.topbar-social a{
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  transition: background .15s ease, transform .15s ease;
}

.topbar-social a:hover{
  background:rgba(224,107,26,.25);
  transform: translateY(-1px);
}

.topbar-social svg{
  width:14px;
  height:14px;
  fill: rgba(255,255,255,.9);
}
@media (max-width: 560px){
  .topbar-social{
    display:none;
  }
}


    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:.5rem;
      padding:.7rem 1rem;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.16);
      background:transparent;
      color:var(--white);
      text-decoration:none;
      font-weight:700;
      font-size:.95rem;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.26)}
    .btn.primary{
      background:var(--orange);
      color:var(--white);
      border-color:transparent;
    }

    .btn.primary:hover{
      background:var(--orange-dark);
    }

 .btn-orange{
  background: var(--orange);
  color: var(--white);
  border-color: transparent;
}

.btn-orange:hover{
  background: var(--orange-dark);
  color: var(--white);
}


    .burger{
      display:none;
      width:44px; height:44px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.06);
      color:var(--white);
      cursor:pointer;
    }
    .burger:active{transform: translateY(1px)}

    /* Mobile nav */
    @media (max-width: 980px){
      nav ul{display:none}
      .burger{display:inline-grid; place-items:center}
    }
    .mobile-menu{
      display:none;
      border-top:1px solid rgba(255,255,255,.08);
      background:rgba(11,11,11,.92);
    }
    .mobile-menu.open{display:block}
    .mobile-menu a{
      display:block;
      padding:1rem 0;
      color:var(--gray-200);
      text-decoration:none;
      border-bottom:1px solid rgba(255,255,255,.08);
      font-weight:650;
    }
    .mobile-menu a:hover{color:var(--white)}
    .mobile-menu .container{padding-bottom:.25rem}

    /* ===== Hero (simple + professional) ===== */
    .hero{
      background:
        linear-gradient(180deg, rgba(11,11,11,.60), rgba(11,11,11,.88)),
        url("images/contactusimg.png");
      background-size:cover;
      background-position:center;
      color:var(--white);
      border-bottom:1px solid rgba(0,0,0,.08);
    }
    .hero-inner{
      padding:2.4rem 0 2.1rem;
      display:flex;
      justify-content:space-between;
      gap:1.2rem;
      align-items:flex-end;
      flex-wrap:wrap;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:.5rem;
      padding:.35rem .75rem;
      border-radius:999px;
      background: rgba(224,107,26,.16);
      border:1px solid rgba(224,107,26,.28);
      color:#ffd7b8;
      font-weight:900;
      font-size:.9rem;
      width:max-content;
    }
    .hero h1{
      margin:.65rem 0 .45rem;
      font-size: clamp(1.9rem, 2.7vw, 2.5rem);
      letter-spacing:-.45px;
      line-height:1.12;
    }
    .hero p{
      margin:0;
      max-width:65ch;
      color:rgba(255,255,255,.86);
      font-weight:650;
    }
    .hero-actions{
      display:flex;
      gap:.65rem;
      flex-wrap:wrap;
      align-items:center;
    }
    .btn.ghost{
      background: rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.18);
      color: var(--white);
    }
    .btn.ghost:hover{ background: rgba(255,255,255,.12); }

    /* ===== Main layout ===== */
    main{ padding:2.2rem 0 3.6rem; }
    .grid{
      display:grid;
      grid-template-columns: 1fr 1.15fr;
      gap:1.25rem;
      align-items:stretch;
    }

    .card{
      background:var(--white);
      border:1px solid var(--gray-200);
      border-radius:var(--radius);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
    }
    .card-pad{ padding:1.35rem; }

    .section-title{
      margin:0 0 .6rem;
      font-size:1.25rem;
      letter-spacing:-.25px;
    }
    .muted{ color:var(--gray-700); }

    /* Contact card */
    .contact-stack{
      display:grid;
      gap:1rem;
    }
    .contact-row{
      display:flex;
      gap:.9rem;
      align-items:flex-start;
      padding:1rem;
      border-radius:16px;
      background: linear-gradient(180deg, #fff, var(--gray-50));
      border:1px solid var(--gray-200);
    }
    .icon{
      width:44px;
      height:44px;
      border-radius:14px;
      background: var(--orange-soft);
      border:1px solid rgba(224,107,26,.25);
      display:grid;
      place-items:center;
      font-size:1.15rem;
      flex:0 0 auto;
    }
    .contact-row strong{ display:block; font-weight:950; }
    .contact-row span{ display:block; margin-top:.15rem; color:var(--gray-700); font-weight:650; }

    .call-panel{
      margin-top:.2rem;
      padding:1.25rem;
      border-radius:18px;
      background:
        linear-gradient(180deg, rgba(224,107,26,.10), rgba(224,107,26,.05)),
        linear-gradient(180deg, #fff, var(--gray-50));
      border:1px solid rgba(224,107,26,.24);
      box-shadow: 0 18px 40px rgba(0,0,0,.10);
      position:relative;
      overflow:hidden;
    }
    .call-panel::before{
      content:"";
      position:absolute;
      inset:0;
      border-top:4px solid var(--orange);
      pointer-events:none;
      opacity:.9;
    }
    .call-panel h3{ margin:0 0 .25rem; }
    .phone{
      display:inline-flex;
      align-items:center;
      gap:.55rem;
      margin:.65rem 0 .3rem;
      text-decoration:none;
      font-weight:950;
      font-size:1.55rem;
      letter-spacing:.2px;
      color:var(--orange);
    }
    .phone:hover{ text-decoration:underline; }
    .small{
      margin:0;
      color:var(--gray-700);
      font-weight:650;
      max-width:55ch;
    }

    /* Map card */
    .map-head{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:1rem;
      padding:1.1rem 1.2rem;
      border-bottom:1px solid var(--gray-200);
      background: linear-gradient(180deg, #fff, var(--gray-50));
    }
    .map-head h2{ margin:0; font-size:1.1rem; letter-spacing:-.2px; }
    .map-meta{
      color:var(--gray-700);
      font-weight:750;
      font-size:.92rem;
    }
    .map-wrap{
      height:360px;
      background:var(--gray-50);
    }
    .map-wrap iframe{
      width:100%;
      height:100%;
      border:0;
    }

    /* Optional hours strip */
    .hours{
      margin-top:1.25rem;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:1rem;
    }
    .hours .row{
      display:flex;
      justify-content:space-between;
      gap:1rem;
      padding:.75rem 1rem;
      border-radius:14px;
      border:1px solid var(--gray-200);
      background: var(--white);
      box-shadow: var(--shadow-soft);
    }
    .hours .row b{ font-weight:950; }
    .hours .row span{ color:var(--gray-700); font-weight:650; }

/* Footer */
    /* --- FOOTER COMPLETE --- */
.site-footer{
  background:#050505;
  color:rgba(255,255,255,.88);
  border-top:1px solid rgba(255,255,255,.10);
}

.site-footer .container{
  padding:2.75rem 0 1.25rem;
}

.site-footer::before{
  content:"";
  display:block;
  height:3px;
  background:linear-gradient(
    90deg,
    rgba(224,107,26,0),
    rgba(224,107,26,.9),
    rgba(224,107,26,0)
  );
}

/* Layout */
.footer-top{
  display:grid;
  grid-template-columns:1.15fr 1.85fr;
  gap:2rem;
  align-items:start;
}

.footer-brand{
  display:flex;
  gap:1rem;
  align-items:flex-start;
}

.footer-mark{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:950;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}

.footer-brand p{
  margin:.45rem 0 0;
  max-width:50ch;
}

/* Social */
.footer-social{
  margin-top:.75rem;
  display:flex;
  gap:.6rem;
}

.footer-social a{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  transition: background .15s ease, transform .15s ease;
}

.footer-social a:hover{
  background:rgba(224,107,26,.25);
  transform: translateY(-1px);
}

.footer-social svg{
  width:18px;
  height:18px;
  fill: rgba(255,255,255,.9);
}


/* Columns */
.footer-cols{
  display:grid;
  grid-template-columns: 1fr 1.25fr; /* hours | map */
  gap: 1.75rem;
}


.footer-col h4{
  margin:0 0 .75rem;
  font-size:.95rem;
  color:var(--white);
}

.footer-col ul{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:.45rem;
}

.footer-col a{
  color:rgba(255,255,255,.78);
  text-decoration:none;
  font-weight:650;
}
.footer-col a:hover{
  color:var(--orange);
}

/* Opening hours */
.footer-hours{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:.55rem;
}

.footer-hours li{
  display:grid;
  grid-template-columns: 1fr auto; /* left label + right time */
  align-items:baseline;
  gap:1rem;
  padding:.35rem 0;
  border-bottom: 1px dashed rgba(255,255,255,.12);
}

.footer-hours li:last-child{
  border-bottom:none;
}

.footer-hours li span:first-child{
  color: rgba(255,255,255,.86);
  font-weight: 750;
}

.footer-hours li span:last-child{
  color: rgba(255,255,255,.76);
  font-weight: 650;
  white-space:nowrap; /* prevents wrapping into weird shapes */
}

/* Map */
.footer-map{
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 10px 25px rgba(0,0,0,.35);
}
.footer-map iframe{
  width:100%;
  height:160px;
  border:0;
}

.address{
  margin-top:.5rem;
  font-size:.85rem;
}

/* Bottom */
.footer-bottom{
  margin-top:2rem;
  padding-top:1.25rem;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
  font-size:.9rem;
  color:rgba(255,255,255,.65);
}

/* Back to top */
.back-to-top{
  color:var(--orange);
  font-weight:800;
  text-decoration:none;
}
.back-to-top:hover{
  text-decoration:underline;
}

/* Footer readability overrides */
.site-footer .muted{
  color: rgba(255,255,255,.70) !important;
}

.site-footer p,
.site-footer li,
.site-footer span{
  color: rgba(255,255,255,.78);
}

.site-footer .footer-bottom{
  color: rgba(255,255,255,.68);
}

.site-footer .address{
  color: rgba(255,255,255,.72);
}

    

    @media (max-width: 920px){
      .grid{ grid-template-columns:1fr; }
      .map-wrap{ height:320px; }
      .hours{ grid-template-columns:1fr; }
    }

/* =========================
   RESPONSIVE — Contact Us
   Paste at VERY END of contactus.css
   ========================= */

/* Tablet and down (matches your nav breakpoint pattern) */
@media (max-width: 980px){
  /* Topbar stacks to avoid squeeze */
  .topbar .inner{
    flex-direction: column;
    align-items: flex-start;
    gap: .55rem;
  }

  /* Brand can wrap instead of overflowing */
  .brand{
    white-space: normal;
    max-width: 75%;
    line-height: 1.15;
  }

  /* Hide the "Give us a call" CTA on small widths to avoid crowding
     (users can still call via the big phone button inside the page) */
  .nav-cta .btn.primary{
    display:none;
  }

  /* Footer collapses for tablets */
  .footer-top{ grid-template-columns: 1fr; }
  .footer-cols{ grid-template-columns: 1fr; }
  .footer-map iframe{ height: 220px; }
}

/* Phone */
@media (max-width: 620px){
  /* Slightly tighter overall container */
  .container{ width: min(var(--max), calc(100% - 1.25rem)); }

  /* Hero spacing + text scale */
  .hero-inner{ padding: 2rem 0 1.75rem; }
  .hero h1{ font-size: clamp(1.45rem, 6.2vw, 2rem); }
  .hero p{ font-size: .98rem; }

  /* Contact rows: less padding */
  .contact-row{ padding: .85rem; }

  /* Phone number: keep it from dominating */
  .phone{ font-size: 1.25rem; }

  /* Map height on small devices */
  .map-wrap{ height: 260px; }

  /* Hours rows: stack label/time vertically */
  .hours .row{
    flex-direction: column;
    align-items: flex-start;
    gap: .25rem;
  }

  /* Footer bottom stacks */
  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
    gap: .6rem;
  }

  /* Footer hours: avoid cramped 2-column rows */
  .footer-hours li{
    grid-template-columns: 1fr;
    gap: .25rem;
  }
  .footer-hours li span:last-child{
    white-space: normal;
  }
}
