/**/
/* Navigation Bar */
/**/
:root{
  --bg-dark: #1a1a1a;
  --bg-opaque: rgba(0,0,0,.65);
  --text: #e9e9e9;
  --muted: #bdbdbd;
  --accent: #56c271;
  --maxw: 1200px;
}
* { box-sizing: border-box; }
html, body { 
  margin:0; 
  padding:0; 
  font-family: Arial, sans-serif; 
  background:#000; 
  color:var(--text); 
}
.site-header{
  position: sticky; 
  top:0; 
  z-index:1000;
  background: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.7));
}
.nav{
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}
.brand{
  display:flex; 
  align-items:center; 
  gap:12px; 
  text-decoration:none; 
  color:var(--text);
}
.brand img{
  height: 28px; 
  width:auto; 
  display:block;
}
.brand .brand-text{
  display:flex; 
  flex-direction:column; 
  line-height:1;
}
.brand .title{ font-weight:800; letter-spacing:.5px; }
.brand .subtitle{ font-size:.72rem; color:var(--muted); letter-spacing:.3em; }
.menu{
  list-style:none; 
  margin:0; 
  padding:0;
  display:flex; 
  align-items:center; 
  gap: 20px;
}
.menu a{
  color:var(--text); 
  text-decoration:none; 
  font-weight:600;
  padding: 10px 6px;
  transition: color .2s ease;
}
.menu a:hover{ color:#fff; }
.menu .active a{ color: var(--accent); }
.burger{
  display:none; 
  width:40px; 
  height:40px; 
  border:1px solid rgba(255,255,255,.15);
  border-radius:6px; 
  background:transparent; 
  color:#fff; 
  cursor:pointer;
  font-size: 1.2rem;
}
@media (max-width: 768px){
  .burger{ display:inline-block; }
  .menu{ 
    display:none; 
    flex-direction:column; 
    background:var(--bg-dark); 
    margin-top:10px; 
    padding:10px; 
    border-radius:6px; 
  }
  .site-header.open .menu{ display:flex; }
}

/**/
/* Body */
/**/

/* Homepage */

.headerlogo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}
.hometitle { 
    text-align: center;
    font-weight:800;
    letter-spacing:.5px; 
}
.callus-wrapper {
  max-width: 1000px;  
  margin: 0 auto;    
  text-align: center; 
}
.callus-button-home {
  display: inline-block;
  padding: 10px 200px;
  background-color: #4caf50;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 500px;
  margin-top: 20px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}
.callus-button-home:hover {
  background-color: #388e3c;
}
.homesub {
    text-align: center;
    font-size:.72rem;
    color:var(--muted);
    letter-spacing:.3em
}
.home-intro {
  background: #0f0f0f;        
  padding: 60px 20px;
  color: #d9d9d9;
  line-height: 1.7;
}
.intro-wrap {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
.home-intro h1 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;         
}
.home-intro p {
  margin-bottom: 18px;
  font-size: 1rem;
}
.home-intro strong {
  color: #56c271;               
}
.home-intro em {
  color: #aaa;
  font-style: italic;
}
.cta-wrap {
  text-align: center;
  margin-top: 30px;
}
.cta-call {
  display: inline-block;
  padding: 14px 24px;
  background: #56c271;           
  color: #0f0f0f;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.1rem;
}
.cta-call:hover {
  background: #3ca25c;
}
.areastitle {
display: block;
text-align: center;
}
.areacontent {
  display: block;
  max-width: 800px;   
  margin: 0 auto;     
  text-align: center; 
  padding: 20px;      
}
.areas-wrap {
  display: flex;
  align-items: center;         
  justify-content: center;     
  gap: 30px;                   
  max-width: 1000px;           
  margin: 30px auto;           
  padding: 20px;
}
.areas-wrap .map img {
  max-width: 250px;            
  height: auto;
  display: block;
}
.areacontent {
  flex: 1;                     
  text-align: left;            
  font-size: 1rem;
  line-height: 1.6;
  color: #d9d9d9;             
}
.areastitle {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #fff;
}
.areas-wrap .map img {
  max-width: 250px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* CARDS */
.services {
  padding: 32px 16px;
}
.services_grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.card { grid-column: span 4; }
@media (max-width: 960px) { .card { grid-column: span 6; } }
@media (max-width: 640px) { .card { grid-column: span 12; } }
.card {
  background: #ffffff;        
  border-radius: 14px;
  overflow: hidden;               
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  display: flex;
  flex-direction: column;
}
.card__media {
  width: 100%;
  height: 190px;                 
  object-fit: cover;            
  display: block;
}
.card__body {
  padding: 18px;
  text-align: center;
}
.card__title {
  font-size: 1.05rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #111;
  margin: 6px 0 10px;
}
.card__text {
  color: #333;
  text-align: center;
  line-height: 1.55;
  margin: 0 0 16px;
}
.card__btn {
  display: flex;
  justify-content: center;
  margin: 10px;
  padding: 10px 18px;
  background: #3a3a3a;         
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .12s ease, opacity .2s ease;
}
.card__btn:hover { transform: translateY(-1px); opacity: .9; }
body { background: #1a1a1a; color: #e0e0e0; }


/* Contact Us Page */
:root{

  --bg-panel: rgba(0,0,0,.65);
  --line: rgba(255,255,255,.08);
  --accent: #56c271;        
  --text: #e9e9e9;           
  --muted: #bdbdbd;            
  --maxw: 1200px;            
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}
.contact-section{
  padding: 60px 20px 80px;
  background:
    radial-gradient(120% 80% at 10% 10%, rgba(40,60,40,.25), transparent 60%),
    #0d0d0d;
}
.contact-wrap{
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.contact-head h2{
  margin: 0 0 6px 0;
  font-size: 1.8rem;
  letter-spacing: .3px;
}
.contact-head p{
  margin: 0 0 22px 0;
  color: var(--muted);
}
.contact-form{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}
.field{ display:flex; flex-direction:column; }
.field--full{ grid-column: 1 / -1; }
.field label{
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 8px;
}
.field input,
.field textarea{
  background: rgba(255,255,255,.06);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea{ resize: vertical; }
.field input::placeholder,
.field textarea::placeholder{ color: #9aa1a6; }
.field input:focus,
.field textarea:focus{
  border-color: rgba(86,194,113,.6);
  box-shadow: 0 0 0 3px rgba(86,194,113,.15);
  background: rgba(255,255,255,.08);
}
.error{
  height: 18px;      
  color: #ff8b8b;
  font-size: .8rem;
  margin-top: 6px;
}
.consent .checkbox{
  display: flex; align-items: flex-start; gap: 10px;
}
.consent input[type="checkbox"]{
  width: 18px; height: 18px; margin-top: 2px;
}
.consent a{ color: var(--text); }
.consent a:hover{ text-decoration: underline; }
.actions{
  grid-column: 1 / -1;
  display:flex; gap: 12px; align-items:center; justify-content:flex-start;
  margin-top: 8px;
}
.btn-accent{
  appearance: none;
  background: var(--accent);
  color: #112015;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .04s ease, filter .2s ease;
}
.btn-accent:hover{ filter: brightness(0.95); }
.btn-accent:active{ transform: translateY(1px); }
.btn-ghost{
  appearance:none;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}
.btn-ghost:hover{ background: rgba(255,255,255,.06); }
.status{
  grid-column: 1 / -1;
  margin-top: 8px;
  color: var(--muted);
}
.hp{
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}
@media (max-width: 800px){
  .contact-form{
    grid-template-columns: 1fr;
  }
}

/* Recent Work */
.recent-work {
  max-width: 1200px;     
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.recent-work h2 {
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: #e9e9e9;       
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  gap: 20px;
}

.work-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px; 
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
  background: #111;  
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;  
  display: block;
  transition: transform 0.3s ease;
}

.work-item img:hover {
  transform: scale(1.05); 
}


/* Dash Cams */
.page-section {
  background: #0f0f0f;    /* dark background */
  padding: 60px 20px;
  color: #d9d9d9;
  line-height: 1.7;
}

.content-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.page-section h1, 
.page-section h2, 
.page-section h3 {
  color: #fff;
  margin-bottom: 15px;
}

.page-section h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 25px;
}

.page-section h2 {
  font-size: 1.4rem;
  color: #56c271;   /* green accent */
}

.page-section ul {
  list-style: disc;
  padding-left: 20px;
  margin: 15px 0 25px;
}

.page-section strong {
  color: #56c271;   /* green accent */
}



/**/
/* Footer */
/**/
.site-footer {
  background-color: #000;
  color: #ddd;
  font-family: 'Arial', sans-serif;
  padding-top: 60px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0 20px;
}
.footer-section {
  flex: 1;
  min-width: 220px;
}
.footer-about .footer-logo img {
  max-width: 150px;
  display: block;
  margin-bottom: 20px;
}
.footer-about p {
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-socials a {
  color: #ddd;
  margin-right: 15px;
  font-size: 1.3em;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-socials a:hover {
  color: #fff;
}
.footer-links h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.1em;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links ul li a:hover {
  color: #fff;
}
.footer-contact h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.1em;
}
.footer-contact .contact-info p {
  margin: 8px 0;
  color: #ccc;
  display: flex;
  align-items: center;
}
.footer-contact .contact-info i {
  margin-right: 8px;
}
.footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  text-align: center;
  color: #777;
  font-size: 0.9em;
}
.footer-bottom a {
  color: #999;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: #fff;
}
.directions-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #4caf50;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.directions-button:hover {
  background-color: #388e3c;
}
.callus-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #4caf50;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.callus-button:hover {
  background-color: #388e3c;
}
.emailus-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #4caf50;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.emailus-button:hover {
  background-color: #388e3c;
}
.footer-contact {
    text-decoration: none;
    color: inherit;
}