/* css/style.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  header {
    background-color: #444;
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  main {
    padding: 20px;
  }
  
  footer {
    background-color: #eee;
    text-align: center;
    padding: 10px;
    font-size: 0.9em;
  }

/* Home Hero Background */
.home-hero {
    background-image: url('../images/Close\ Up.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
  }
  
  .home-hero .overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Washout effect */
    padding: 40px;
    border-radius: 10px;
  }
  /* Fancy Footer Contact Icons */
.footer-contact {
    text-align: center;
    margin-top: 10px;
  }
  
  .footer-contact p {
    margin: 5px 0;
    font-size: 0.9em;
  }
  
  .footer-contact i {
    margin-right: 8px;
    color: #444;
  }
  
  .footer-contact a {
    color: #444;
    text-decoration: none;
  }
  
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .stats {
    display: flex;
    justify-content: space-around;
    background-color: #f2f2f2;
    padding: 30px 0;
    text-align: center;
  }
  
  .stats h2 {
    margin: 0;
    font-size: 2.5em;
    color: #444;
  }
  
  .stats p {
    margin: 5px 0 0;
    font-size: 1em;
  }
  .featured-services {
    padding: 40px;
    text-align: center;
  }
  
  .featured-services .btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #444;
    color: white;
    text-decoration: none;
    border-radius: 5px;
  }
  
  .featured-services .btn:hover {
    background-color: #222;
  }
  .sticky-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #444;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    z-index: 1000;
  }
  
  .sticky-btn:hover {
    background-color: #222;
  }
  .home-gallery-preview {
    padding: 40px 20px;
    background-color: #f5f5f5;
    text-align: center;
  }
  
  .home-gallery-preview h2 {
    margin-bottom: 20px;
  }
  
  .gallery-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding-bottom: 10px;
  }
  
  .gallery-scroll img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }
  
  .home-gallery-preview .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #444;
    color: white;
    text-decoration: none;
    border-radius: 5px;
  }
  
  .home-gallery-preview .btn:hover {
    background-color: #222;
  }
          
  /* =========================
   ABOUT PAGE (Fancy)
========================= */
.about-hero {
  position: relative;
  background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
              url('../images/Personal.jpg');
  background-size: cover;
  background-position: center;
  padding: 70px 20px;
  color: #fff;
  text-align: center;
}

.about-hero h1 {
  font-size: 2.6em;
  margin: 0 0 10px;
}

.about-hero p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.1em;
  opacity: .95;
}

.about-hero .hero-badges {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .9em;
}

.section-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 35px 20px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .about-hero h1 { font-size: 2.1em; }
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  border: 1px solid #eee;
}

.card h2 {
  margin: 0 0 10px;
  color: #222;
}

.card p {
  margin: 0;
  color: #444;
  line-height: 1.7;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

@media (max-width: 900px) {
  .mvv-grid { grid-template-columns: 1fr; }
}

.mvv-item {
  background: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 18px;
}

.mvv-item h3 {
  margin: 0 0 8px;
  color: #222;
}

.mvv-item p {
  margin: 0;
  color: #444;
  line-height: 1.6;
}

.values-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #444;
  line-height: 1.8;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}

@media (max-width: 900px) {
  .process { grid-template-columns: 1fr; }
}

.step {
  background: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 16px;
}

.step .num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #444;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.step h4 {
  margin: 0 0 6px;
  color: #222;
}

.step p {
  margin: 0;
  color: #444;
  line-height: 1.6;
}

.cta-bar {
  background: #444;
  color: #fff;
  border-radius: 12px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-bar p {
  margin: 0;
  opacity: .95;
}

.cta-bar a {
  background: #fff;
  color: #222;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.cta-bar a:hover {
  opacity: .92;
}

/* =========================
   SERVICES PAGE (Fancy)
========================= */
.services-hero {
  position: relative;
  background: linear-gradient(rgba(0,0,0,.58), rgba(0,0,0,.58)),
              url('../images/Driveway.jpeg');
  background-size: cover;
  background-position: center;
  padding: 70px 20px;
  color: #fff;
  text-align: center;
}

.services-hero h1 {
  font-size: 2.6em;
  margin: 0 0 10px;
}

.services-hero p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.1em;
  opacity: .95;
}

.services-hero .hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  background: rgba(255,255,255,.12);
}

.hero-btn:hover { opacity: .92; }

.hero-btn.primary {
  background: #fff;
  color: #222;
  border: none;
}

.services-wrap {
  max-width: 1150px;
  margin: 0 auto;
  padding: 35px 20px;
}

.services-intro {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  border: 1px solid #eee;
}

.services-intro p {
  margin: 0;
  color: #444;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

@media (max-width: 980px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-hero h1 { font-size: 2.1em; }
}

.service-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.service-card .content {
  padding: 16px 16px 18px;
}

.service-card h3 {
  margin: 0 0 8px;
  color: #222;
}

.service-card p {
  margin: 0;
  color: #444;
  line-height: 1.6;
}

.service-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #444;
  line-height: 1.75;
}

.service-card .tagrow {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.tag {
  background: #f2f2f2;
  border: 1px solid #e8e8e8;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .85em;
  color: #333;
  font-weight: 600;
}

.services-note {
  margin-top: 18px;
  background: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 18px;
  color: #444;
  line-height: 1.7;
}

.services-note strong { color: #222; }

.services-gallery-strip {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

@media (max-width: 980px) {
  .services-gallery-strip { grid-template-columns: repeat(2, 1fr); }
}

.services-gallery-strip img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,.10);
  border: 1px solid #eee;
}

.quote-bar {
  margin-top: 22px;
  background: #444;
  color: #fff;
  border-radius: 12px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.quote-bar p {
  margin: 0;
  opacity: .95;
}

.quote-bar a {
  background: #fff;
  color: #222;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.quote-bar a:hover { opacity: .92; }

/* =========================
   TESTIMONIALS (Enhanced)
========================= */
.testimonials-hero {
  background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
              url('../images/Close Up.jpeg');
  background-size: cover;
  background-position: center;
  padding: 65px 20px;
  color: #fff;
  text-align: center;
}

.testimonials-hero h1 {
  font-size: 2.5em;
  margin: 0 0 10px;
}

.testimonials-hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1em;
  opacity: .95;
}

.testimonials-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 35px 20px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  border-left: 5px solid #444;
}

.testimonial-card p {
  margin: 0;
  font-style: italic;
  color: #333;
  line-height: 1.7;
}

.testimonial-card strong {
  display: block;
  margin-top: 10px;
  font-style: normal;
  color: #222;
}

.review-form {
  margin-top: 30px;
  background: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 22px;
}

.review-form h2 {
  margin: 0 0 10px;
}

.review-form p {
  color: #555;
  margin-bottom: 12px;
}

.review-form input,
.review-form textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
}

.review-form button {
  background: #444;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
}

.review-form button:hover {
  background: #222;
}

.review-note {
  font-size: .9em;
  color: #666;
  margin-top: 8px;
}
/* =========================
   CONTACT PAGE (Enhanced)
========================= */
.contact-hero {
  background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
              url('../images/Close Up.jpeg');
  background-size: cover;
  background-position: center;
  padding: 65px 20px;
  color: #fff;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.5em;
  margin: 0 0 10px;
}

.contact-hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1em;
  opacity: .95;
}

.contact-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 35px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 20px;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  border: 1px solid #eee;
}

.contact-card h2 {
  margin: 0 0 10px;
  color: #222;
}

.contact-method {
  margin: 14px 0;
  font-size: 1em;
}

.contact-method i {
  color: #444;
  margin-right: 10px;
}

.contact-method a {
  color: #444;
  text-decoration: none;
  font-weight: 600;
}

.contact-method a:hover {
  text-decoration: underline;
}

.contact-note {
  margin-top: 14px;
  background: #f8f8f8;
  border: 1px solid #eee;
  padding: 14px;
  border-radius: 10px;
  font-size: .95em;
  color: #555;
}

.estimate-form label {
  font-weight: 600;
  display: block;
  margin-top: 10px;
}

.estimate-form input,
.estimate-form textarea,
.estimate-form select {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
}

.estimate-form button {
  margin-top: 14px;
  background: #444;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

.estimate-form button:hover {
  background: #222;
}

.form-disclaimer {
  font-size: .85em;
  color: #666;
  margin-top: 8px;
}

/* Global button style (works everywhere, including hero) */
.btn{
  display:inline-block;
  padding:10px 20px;
  background-color:#444;
  color:#fff;
  text-decoration:none;
  border-radius:6px;
  font-weight:700;
  border: 1px solid #444;
}

.btn:hover{
  background-color:#222;
  border-color:#222;
}

/* Optional “light” button (for hero) */
.btn.light{
  background:#fff;
  color:#222;
  border: 1px solid #fff;
}

.btn.light:hover{
  opacity:.92;
}

/* Global badge pills */
.badge{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.12);
  color:#fff;
  font-size:.9em;
}

footer {
  position: relative;
  z-index: 5;
}

.footer-contact a {
  pointer-events: auto;
}

/* =========================
   MOBILE RESPONSIVE FIXES
   Paste at bottom of css/style.css
========================= */

@media (max-width: 768px) {

  /* General spacing */
  main { padding: 14px; }
  h1 { font-size: 1.8em; }
  h2 { font-size: 1.4em; }

  /* Header + Nav (big fix) */
  header {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    text-align: center;
  }

  header img {
    height: 52px; /* smaller logo */
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  nav a {
    margin-left: 0;                 /* remove desktop spacing */
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    white-space: nowrap;            /* keep each link on one line */
    font-size: 0.95em;
  }

  /* Hero */
  .home-hero {
    height: auto;                   /* allow it to grow */
    padding: 28px 14px;
  }

  .home-hero .overlay {
    padding: 18px;
    border-radius: 12px;
  }

  .home-hero h1 { font-size: 1.9em; }
  .home-hero p  { font-size: 1em; }

  /* Stats section stacks */
  .stats {
    flex-direction: column;
    gap: 14px;
    padding: 22px 0;
  }

  .stats h2 { font-size: 2.1em; }

  /* Featured services padding */
  .featured-services {
    padding: 26px 14px;
  }

  /* Buttons: full width on phone */
  .btn,
  .hero-btn,
  .estimate-form button,
  .contact-form button,
  .review-form button {
    width: 100%;
    text-align: center;
  }

  /* Gallery scroll images smaller for phone */
  .gallery-scroll img {
    width: 240px;
    height: 160px;
  }

  /* Sticky button: smaller so it doesn't block content */
  .sticky-btn {
    padding: 10px 14px;
    border-radius: 22px;
    bottom: 14px;
    right: 14px;
    font-size: 0.95em;
  }

  /* Footer spacing */
  footer {
    padding: 14px;
  }

  .footer-contact p {
    font-size: 0.95em;
  }
}
