/* --- BRAND COLORS & SETTINGS --- */
:root {
  --brand-red: #c10000;
  --brand-red-bright: #ff3131; 
  --brand-black: #0d0d0d;
  --brand-white: #ffffff;
  --brand-gray: #f4f4f4;
  --text-main: #333333;
}

/* --- GLOBAL RESET --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--brand-white);
}

h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: -1px;
  font-weight: 900;
}

/* --- HEADER & NAVIGATION --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.top-bar {
  background: var(--brand-black);
  border-bottom: 3px solid var(--brand-red);
  padding: 0.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.top-bar img {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

.top-bar a {
  color: var(--brand-red-bright);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 700;
  transition: 0.3s;
}

.top-bar a:hover {
  background: var(--brand-red);
  color: white;
}

.main-nav {
  background: var(--brand-black);
  padding: .5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-nav ul {
  display: flex;
  gap: 2rem;
}
.main-nav a {
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s;
}
.main-nav a:hover {
  color: var(--brand-red);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 85vh; 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 1.5rem 60px;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-content {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  max-width: 700px;
  width: 100%;
  color: #fff;
  z-index: 1;
}

.hero-logo {
    width: 350px; 
    height: auto;
}

.hero-content h1 {
  font-size: clamp(1.8rem, 8vw, 3.2rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}

/* --- VALUE STRIP & SERVICES --- */
.benefits-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 5%;
  background: var(--brand-white);
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
    max-width: 250px; 
}

.benefit-item strong {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem; 
    color: var(--brand-red);
    font-size: 1.1rem;
}


.services-overview {
  padding: 6rem 1.5rem;
  background: radial-gradient(circle, #2a2a2a 0%, #0a0a0a 100%);
}

.services-overview h2 {
  color: white;
  text-align: center;
  margin-bottom: 4rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  position: relative;
  padding: 4rem 2rem;
  border-radius: 10px;
  overflow: hidden;
  color: white;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-position: center;
  transition: 0.3s ease;
}
.service-link-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
    color: white; 
    z-index: 3;    
    position: relative;
}
.service-cta {
    margin-top: 1.5rem;
    font-weight: 800;
    color: var(--brand-red-bright);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0;
    transition: 0.3s;
}
.service-item:hover .service-cta {
    opacity: 1;
    transform: translateX(5px);
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.service-item h3,
.service-item p {
  position: relative;
  z-index: 2;
}
.service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--brand-red-bright);
}
.service-item:hover {
  transform: scale(1.03);
}

/* --- REVIEWS & GALLERY --- */
.gallery-section {
  padding: 6rem 1.5rem;
  text-align: center;
  background: var(--brand-gray);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reviews-section {
  padding: 6rem 1.5rem;
  background: radial-gradient(circle, #2a2a2a 0%, #0a0a0a 100%);
  text-align: center;
}
.reviews-section h2 {
  color: white;
  margin-bottom: 3rem;
}
.review-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.review-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: left;
  max-width: 450px;
  border-bottom: 5px solid var(--brand-red);
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1rem;
}
.avatar {
  width: 45px;
  height: 45px;
  background: var(--brand-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.stars {
  color: #fbbc04;
  display: block;
}

/* --- THE REFERRAL & CONTACT --- */
.referral-box {
  background: #111;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("https://transparenttextures.com");
  color: white;
  padding: 4rem 2rem;
  border-radius: 12px;
  text-align: center;
  max-width: 850px;
  width: 92%;
  margin: 4rem auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.referral-box h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.referral-box strong {
  color: var(--brand-red-bright);
  font-size: 1.6rem;
  display: block;
  margin: 1rem 0;
}

.contact-section {
  max-width: 600px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  background: var(--brand-white);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  width: 92%;
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
  resize: none;
}
.contact-section button.cta-primary {
  display: block;
  width: 100%; 
  border: none;
  cursor: pointer;
  margin-top: 1rem;
}

.cta-primary {
  display: inline-block;
  background: var(--brand-red);
  padding: 1.2rem 2.5rem;
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 8px;
  transition: 0.3s;
  cursor: pointer;
  border: none;
}
.cta-primary:hover {
  filter: brightness(1.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(193, 0, 0, 0.3);
}

/* --- THANK YOU PAGE (CLEAN BRIBE) --- */
.thanks-body {
  background: radial-gradient(circle, #2a2a2a 0%, #0a0a0a 100%);
  min-height: 100vh;
  display: block;
  margin: 0;
  
}
.thanks-body .site-header {
    position: fixed; 
    top: 0;
    width: 100%;
    z-index: 9999;
}

.thanks-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 4rem; 
    min-height: 100vh;
}

.thanks-container {
  background: white;
  padding: 3rem 2rem;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  border-top: 8px solid var(--brand-red);
  margin-top: 5rem;
}

.referral-promo {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  padding: 2rem;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  color: white;
  margin-block: 2rem;
}

.referral-promo span {
  color: var(--brand-red-bright);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 0.5rem;
}

.btn-outline {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  border: 2px solid var(--brand-red);
  color: var(--brand-red);
  font-weight: bold;
  border-radius: 4px;
}
.local-relevance {
  padding: 5rem 1.5rem;
  background: var(--brand-gray);
  text-align: center;
  border-top: 1px solid #eee;
}

.local-relevance h2 {
  color: var(--brand-black);
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-inline: auto;
}

.local-relevance p {
  color: #666;
  max-width: 700px;
  margin: 0.5rem auto;
  font-weight: 600;
}


.local-relevance strong {
  color: var(--brand-red);
}
.credentials-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.cert-logo {
    height: 60px; 
    width: auto;
    filter: grayscale(100%); 
    opacity: 0.8;
    transition: 0.3s;
}

.cert-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.credential p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}
.site-footer {
    background: #000;
    padding: 2rem 5%;
    border-top: 1px solid #333;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    color: #888;
    font-size: 0.8rem;
}

.footer-links a {
    color: #888;
    margin-left: 1.5rem;
    text-decoration: underline;
}

.footer-links a:hover {
    color: var(--brand-red);
}

@media (max-width: 600px) {
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
    .footer-links a {
        margin: 0 0.7rem;
    }
}


/* --- MEDIA QUERY --- */
@media (max-width: 600px) {
  .top-bar {
    flex-direction: column;
    text-align: center;
  }
  .main-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 5%;
  }
  .main-nav ul {
    display: flex;
    gap: 1rem;
  }

  .main-nav .logo {
    margin-right: auto;
    font-size: 1.2rem;
    font-weight: 900;
  }
  .hero {
    padding-top: 5px;
  }
  .hero-logo {
        width: 150px; 
    }
  .hero-content h1 {
    font-size: 2rem;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .cta-primary {
    width: 100%;
  }
  .contact-section {
    padding: 2rem 1.2rem;
    margin-top: 2rem;
  }

  .local-relevance {
    padding: 3rem 1rem;
  }
  #services, 
    #gallery, 
    #reviews, 
    #quote {
        scroll-margin-top: 100px; 
    }
    .services-overview, 
    .gallery-section, 
    .reviews-section {
        padding-top: 8rem; 
        padding-bottom: 8rem;
    }
      input, textarea, select {
        font-size: 16px; 
    }
    
  
}
