* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IBM Plex Serif', serif;
    background: linear-gradient(0deg, #013220 0%, black 100%);
  }

  img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

section {
  padding: 4rem 2rem;
}

.container {
  width: 90%;
  margin: 0 auto;
}

h1, h2, h3 {
  color: #e5e5e5;
  text-align: center;
}

p {
  color: #cfcfcf;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  place-items: center; /* shorthand for both justify and align */

}
.grid-4 img{
  width: 40%;
    display: block;
margin-left: auto;
  margin-right: auto;
}


.flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.flex-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* === Header === */
.site-header {
  background-color: #005e3b; /* dark green header */
  color: #C0C0C0; /* chrome text */
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

header .container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: #C0C0C0; /* chrome */
  text-decoration: none;
  transition: 0.3s;
}

.logo a:hover {
  color: white; /* black hover */
}


.main-nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  font-size: 1.6rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: #C0C0C0; /* chrome */
  text-decoration: none;
  transition: 0.3s;
}

.main-nav a:hover {
  color: white; /* black hover */
}

.cta-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.phone-link {
  color: #C0C0C0;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.4rem;
}
  .hero-section .btn-primary{
    font-size: 25px;
  }
 header .btn-primary {
  background: linear-gradient(240deg, black, darkgreen, black); /* black button */
  color: #C0C0C0; /* chrome text */
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  font-weight: bold;
  display: inline-block;
  transition: .4s;
  font-size: 25px;
  text-decoration: none;
  border: 2px solid #C0C0C0; /* chrome trim */
}

header .btn-primary:hover {
  color: #C0C0C0;
  border-color: #000; /* subtle black trim on hover */
}
 header .copy-button {
 background: linear-gradient(240deg, black, darkgreen, black); /* black button */
  color: #C0C0C0; /* chrome text */
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  font-weight: bold;
  display: inline-block;
  transition: .4s;
  font-size: 25px;
  text-decoration: none;
  border: 2px solid #C0C0C0; /* chrome trim */
}
header .copy-button:hover{
  cursor: pointer;
  color: #C0C0C0;
  border-color: #000; /* subtle black trim on hover */
}

/* === Hamburger Menu === */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  gap: 5px;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: 0.3s;
}

.menu-toggle.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  padding-left: 0;
  margin: 0;
  align-items: center;
}


@media (max-width: 2000px) {
  .header-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
 .flex-between {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: black;
    padding: 1rem 0;
        border-top: 2px solid white;
  border-bottom: 2px solid white;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .main-nav ul li{
    border-bottom: 1px solid white;
  }

  .menu-toggle {
    display: flex;
  }
   .cta-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-wrapper .phone-link,
  .cta-wrapper .btn-primary {
    width: 100%;
    text-align: center;
  }
}

/* === Responsive Layout === */
@media (min-width: 1024px) {
  .site-header .container {
    width: 95%;
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .services{
    padding: 0rem;
  }
  .services .container{
    width: 95%;
  }
}

/* Tablet: under 1024px */
@media (max-width: 1023px) {

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: under 768px */
@media (max-width: 847px) {
  .container {
    width: 95%;
  }
  .grid-4 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .logo a{
    font-size: 25px;
  }
  header .btn-primary, header .copy-button{
    font-size: 20px;
  }
  header .container{
    width: 99%;
  }
  header .flex-between{
    gap: .5rem;
  }
  .cta-header{
    gap: .5rem;
  }
}

.hero-section {
  position: relative;
  background: url("Photos/hero");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  padding: 6rem 2rem;
  border-bottom: 4px solid #0f3d2e; /* dark green accent */
  color: #C0C0C0; /* chrome text */
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7); /* black overlay */
  z-index: 1;
}

.hero-section * {
  position: relative;
  z-index: 2; /* keeps text above the overlay */
}


.hero-section h1 {
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #28a73d;
}
.hero-section p{
    font-size: 25px;
    color: white;
    margin: 1rem 0;
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.75rem 2rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: 0.3s ease;
}

.btn-primary {
  background: linear-gradient(145deg, #0f3d2e, #06261b);
  border: 2px solid #c0c0c0; /* chrome border */
  color: #fff;
  font-size: 25px;
}

.btn-primary:hover {
  background: #0f3d2e;
  border-color: #fff;
  box-shadow: 0 0 12px rgba(255,255,255,0.6);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #c0c0c0;
  color: #c0c0c0;
}

.btn-secondary:hover {
  border-color: #0f3d2e;
  color: #0f3d2e;
  background: #fff;
}
.why-choose h2{
    font-size: 45px;
    margin: 1rem 0;
    letter-spacing: 1px;
}
.why-choose{
    padding: 2rem 0rem;
}
.why-choose .container{
  width: 95%;
}
.feature img {
  width: 150px;
  margin-bottom: 1.2rem;
}
.feature h3{
    font-size: 27px;
    margin: 1rem 0;
    letter-spacing: 1px;
    font-weight: 700;
}
.feature p{
    font-size: 22px;
    text-align: center;
}
.feature, .service-card {
  background: #111;
  border: 1px solid #333;
  padding: 2rem;
  border-radius: 12px;
  transition: 0.3s ease;
}

.feature:hover, .service-card:hover {
  border-color: #0f3d2e;
  transform: translateY(-5px);
}
.services .grid-4{
  margin-bottom: 2rem;
}
.service-card h3{
    font-size: 25px;
    margin: 1rem 0;
    letter-spacing: 1px;
}
.service-card p{
    font-size: 22px;
    text-align: center;
}
.services h2{
    font-size: 45px;
    margin: 1rem 0;
    letter-spacing: 1px;
}
.services2 {
  padding: 3rem 0;
  background-color: #111; /* deep black */
  color: #fff;
}

.services2 h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: white; /* dark green highlight */
}

.services2 .grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background-color: #1c1c1c;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.7), inset 0 0 5px rgba(255,255,255,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.9), inset 0 0 8px rgba(255,255,255,0.08);
}

.service-card img {
  width: 150px;
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1f812f;
}

.service-card p {
  font-size: 22px;
  line-height: 1.6;
  color: #ddd;
}

/* === ESTIMATOR TOOL === */
.estimate-tool {
  background-color: #0f3d2e;
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.estimate-tool .estimate-card {
  width: 85%;
  margin: 0 auto;
  background-color: #111;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.7), inset 0 0 8px rgba(255,255,255,0.05);
}
.estimate-card h2{
  font-size: 40px;
  color: white;
  letter-spacing: 2px;
  font-weight: 700;
}
.estimate-card p{
  font-size: 22px;
  margin: 1rem 0;
}
.estimate-card .btn-primary{
  margin: 1rem 0;
}
/* === CONTACT CTA === */
.contact-cta2 {
  background-color: #111;
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.contact-cta2 h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.contact-cta2 p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.contact-cta2 .btn-group {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 25px;
}

/* === MEDIA QUERIES === */
@media (max-width: 768px) {
  .services2 h2 {
    font-size: 2rem;
  }
  .service-card h3 {
    font-size: 30px;
  }
  .service-card p{
    font-size: 22px;
  }
  .estimate-tool .estimate-card{
    width: 95%;
  }
  .estimate-tool{
    padding: 2rem 1rem;
  }
}
/* --- ABOUT PAGE PROFESSIONAL STYLES --- */


/* HERO */
.about2 .about-hero {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
              url("Photos/pexels-cottonbro-4488660.jpg") center/cover no-repeat;
  color: #fff;
}

.about2 .about-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.about2 .about-intro {
  width: 75%;
  margin: 0 auto;
  font-size: 25px;
  color: #f0f0f0;
}

/* STORY */
.about2 .about-story {
  padding: 3rem 1rem;
  background: #fff;
}

.about2 .story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  width: 90%;
  margin: 0 auto;
  align-items: center;
}

.about2 .story-text h2 {
  font-size: 40px;
  margin-bottom: 1.2rem;
  font-weight: 700;
  color: black;
}

.about2 .story-text p {
  font-size: 30px;
  color: black;
  text-align: center;
}

.about2 .story-photo img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  border: 4px solid #eee;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

/* VALUES */
.about2 .about-values {
  padding: 5rem 2rem;
  background: black;
  text-align: center;
}

.about2 .about-values h2 {
  font-size: 40px;
  margin-bottom: 2.5rem;
  font-weight: 800;
  color: white;
}

.about2 .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.about2 .value-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about2 .value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.about2 .value-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f812f;
}
.about2 .about-values ul{
list-style: none;
font-size: 27px;
} 
.about2 .about-values ul li{
  margin: 1rem 0;
  color: white;
}
.about2 .value-card p {
  font-size: 30px;
  color: white;
  text-align: center;
}

/* CTA */
.about2 .about-cta {
  padding: 5rem 1rem;
  text-align: center;
  background: linear-gradient(to right, #1f812f,black);
  color: #fff;
}

.about2 .about-cta h2 {
  font-size: 40px;
  margin-bottom: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about2 .about-cta p {
  width: 75%;
  margin: 0 auto 2rem;
  font-size: 30px;
  color: #f0f0f0;
}

.about2 .cta-btn {
  display: inline-block;
  background: #fff;
  color: #1f812f;
  font-size: 25px;
  padding: 1rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.about2 .cta-btn:hover {
  background: #111;
  color: #fff;
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .about2 .about-story p{
    font-size: 25px;
  }
}
@media (max-width: 900px) {
  .about2 .story-grid {
    grid-template-columns: 1fr;
    text-align: center;
    width: 100%;
  }
  .about2 .about-story{
    padding: 2rem 1rem;
  }
  .about2 .story-photo img {
    max-width: 300px;
  }
  .about2 .about-hero{
    padding: 4rem 1rem;
  }
  .about2 .about-values{
    padding: 3rem 1rem;
  }
  .about2 .about-cta{
    padding: 3rem 1rem;
  }
  .about2 .about-cta p{
    font-size: 25px;
    width: 95%;
    margin: 0 auto 1rem;
  }
  .about2 .about-title {
    font-size: 2.2rem;
  }
  .about2 .about-intro{
    width: 100%;
    font-size: 23px;
  }
}
.container-blog-wrapper {
  position: relative;
  width: 100%;
  background-image: url(Photos/pexels-pa-ca-daniel-2278606-3954984.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 20px 0;
  text-align: center;
}

  .toggle-btn {
    margin-top: 0.5rem;
    background-color: #1f812f;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 20px;
  }

  .toggle-btn:hover {
    background-color: black;
  }

  .blog-content {
    margin-top: 1rem;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
.container-blog {
  width: 90%;
  margin: 0px auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  position: relative;
  margin-top: 10px;
}

.container-blog-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.blog-post {
  margin-bottom: 40px;
}
.blog-post h2 {
  margin: 0 0 10px;
  color: black;
  font-size: 60px;
  padding: 5px;
}
.blog-post .date {
  color: black;
  font-size: 25px;
  margin-bottom: 15px;
  padding: 5px;
  font-weight: 600;
}
.blog-post p {
  line-height: 1.6;
  color: black;
  font-size: 25px;
  padding: 5px;
}
.blog-post .name{
  line-height: 1.6;
  color: #1f812f;
  font-size: 25px;
  padding: 5px;
}
.blog-post a button{
  line-height: 1.6;
  color: white;
  background: #1f812f;
  font-size: 25px;
  padding: 5px;
  text-align: center;
  width: 100%;
  transition: .5s;
}
.blog-post a button:hover{
  background: transparent;
  color: black;
  cursor: pointer;
}
#errorMessage{
  color: red;
  display: none;
  font-size: 15px;
}
@media (max-width: 500px) {
  .blog-post h2{
    font-size: 45px;
    padding: 3px;
  }
}
/* === CONTACT SECTION === */
.contact-section {
  background: linear-gradient(to bottom, #000 0%, #111 100%);
  padding: 3rem 2rem;
  color: #fff;
  text-align: center;
  border-top: 4px solid #0f3d2e; /* dark green accent */
  border-bottom: 4px solid #0f3d2e;
}

.contact-section h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: white; /* Cadillac gold accent */
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-intro {
  width: 90%;
  margin: 0 auto 3rem auto;
  font-size: 1.5rem;
  color: #ccc;
}

.contact-form {
  width: 90%;
  margin: 0 auto;
  background: rgba(20, 20, 20, 0.9);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid #444;
  box-shadow: 0 0 20px rgba(0,0,0,0.7), inset 0 0 8px rgba(255,255,255,0.05);

  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.8s ease-out;
}

.contact-form.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}


.form-group {
  text-align: left;
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #1f812f;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #555;
  border-radius: 8px;
  background: #111;
  color: #eee;
  font-size: 1rem;
  transition: border 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0f3d2e; /* green glow */
  box-shadow: 0 0 8px #0f3d2e;
  outline: none;
}

/* SUBMIT BUTTON */
.btn-submit {
  background: #1f812f; /* gold */
  color: #000;
  font-weight: bold;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-submit:hover {
  background: #0f3d2e;
  color: #fff;
  box-shadow: 0 0 12px #0f3d2e;
}
/* Reviews Page */
.reviews-page {
  padding: 40px 20px;
  background: black;
  text-align: center;
}

.reviews-page .page-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.reviews-page .intro-text {
  width: 80%;
  margin: 0 auto 50px;
  color: white;
  font-size: 1.4rem;
  line-height: 1.6;
}

/* Grid layout */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

/* Review cards */
.review-card {
  background: #fff;
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  text-align: left;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.review-card::before {
  content: "“";
  font-size: 3rem;
  color: #1f812f; /* Accent color */
  position: absolute;
  top: 5px;
  left: 15px;
  opacity: 0.7;
}
.review-card::after {
  content: "“";
  font-size: 3rem;
  color: #1f812f; /* Accent color */
  position: absolute;
  bottom: 5px;
  right: 15px;
  opacity: 0.7;
    transform: scaleX(-1);

}

.review-text {
  font-size: 1.2rem;
  color: black;
  line-height: 1.6;
  margin: 2rem 0rem;
  font-style: italic;
}

.review-author {
  font-weight: bold;
  color: #1f812f;
  font-size: 1.1rem;
}

/* Call-to-action */
.call-to-action {
  margin-top: 40px;
  background: #1f812f;
  color: #fff;
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.call-to-action h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.call-to-action p {
  width: 75%;
  margin: 0 auto 25px;
  font-size: 1.3rem;
  color: white;
}

.call-to-action .btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: #1f812f;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.call-to-action .btn-primary:hover {
  background: #f1f1f1;
  color: #555;
}

/* About Section */
.about {
    background: linear-gradient(120deg, #013220 0%, black 100%);
  display: flex;
  flex-direction: column;
}

.about .flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  text-align: center;
}
.about h2{
    font-size: 50px;
    margin: 1rem 0;
    letter-spacing: 2px;
}
.about p{
    font-size: 30px;
    text-align: center;
}
.about-image img {
  max-width: 100%;
  border-radius: 12px;
  border: 2px solid #c0c0c0;
}
.about .btn-secondary{
    margin: 1rem 0;
    text-align: center;
    font-size: 25px;
}
@media (max-width: 1400px) {
  .about p{
  font-size: 25px;
  }
}
@media (max-width: 1150px) {
  .about .flex-row{
    flex-direction: column;
  }
  .about{
    padding: 2rem 2rem;
  }
    .blog-post h2{
    font-size: 45px;
  }
}
/* ===== HERO POLICY SECTION ===== */
.hero-policy {
background: linear-gradient(to right, #0f9b0f, #000000);
    color: #fff;
  text-align: center;
  padding: 5rem 2rem;
}

.hero-policy .hero-content {
  width: 80%;
  margin: 0 auto;
}

.hero-policy h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-policy p {
  font-size: 25px;
  line-height: 1.7;
  color: #f0f0f0;
}

/* ===== POLICIES SECTION ===== */
.policies {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.policies .container {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.policy-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.8);
}

.policy-card h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f812f;
}

.policy-card p {
  font-size: 20px;
  color: #555;
  line-height: 1.6;
  text-align: center;
}

/* ===== CONTACT CTA ===== */
.contact-cta2 {
background: #007015;
background: radial-gradient(circle, rgba(0, 112, 21, 1) 0%, rgba(0, 0, 0, 1) 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}

.contact-cta2 h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.contact-cta2 p {
  font-size: 22px;
  margin-bottom: 2rem;
  color: white;
}

.contact-cta2 .btn-primary {
  background: #fff;
  color: #1f812f;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.contact-cta2 .btn-primary:hover {
  background: #f0f0f0;
  color: #0f4d1c;
}
@media (max-width: 1024px) {
  .policies .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-policy{
    padding: 3rem 2rem;
  }
  .hero-policy .hero-content{
    width: 90%;
  }
  .hero-policy h1 {
    font-size: 40px;
  }

  .hero-policy p {
    font-size: 25px;
  }
}

@media (max-width: 768px) {
  .policies .container {
    grid-template-columns: 1fr;
  }

  .hero-policy {
    padding: 3rem 1.5rem;
  }

  .hero-policy h1 {
    font-size: 40px;
  }

  .hero-policy p {
    font-size: 23px;
  }

  .policy-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-policy h1 {
    font-size: 40px;
  }
  .hero-policy .hero-content{
    width: 100%;
  }
  .policies{
    padding: 2rem 2rem;
  }
  .hero-policy{
    padding: 2rem 1rem;
  }
  .hero-policy p {
    font-size: 22px;
  }
  .policy-card h2{
    font-size: 30px;
  }
  .policy-card p {
    font-size: 20px;
  }
}
/* === Estimate Page Styles === */
.estimate-hero {
background: #007015;
background: radial-gradient(circle, rgba(0, 112, 21, 1) 0%, rgba(0, 0, 0, 1) 49%);  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  border-bottom: 4px solid #0f3d2e; /* dark green accent */
}

.estimate-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.estimate-intro {
  width: 85%;
  margin: 0 auto;
  font-size: 25px;
  color: #f0f0f0;
  line-height: 1.6;
}

/* FORM SECTION */
.estimate-section {
  padding: 5rem 2rem;
  background: #111;
}

.estimate-form {
  width: 100%;
  margin: 0 auto;
  background: rgba(25, 25, 25, 0.95);
  padding: 1.5rem;
  border-radius: 14px;
  border: 1px solid #333;
  box-shadow: 0 0 30px rgba(0,0,0,0.7), inset 0 0 10px rgba(255,255,255,0.05);
  color: #eee;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.estimate-form h2 {
  font-size: 1.6rem;
  margin: 2rem 0 1rem;
  font-weight: 700;
  color: #1f812f; /* gold accent */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #444;
  padding-bottom: 0.5rem;
}

.estimate-form .form-group {
  margin-bottom: 1.5rem;
}

.estimate-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #fff;
  font-size: 22px;
}

.estimate-form .form-group input,
.estimate-form .form-group select,
.estimate-form .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #444;
  border-radius: 10px;
  background: #1a1a1a;
  color: #eee;
  font-size: 1rem;
  transition: border 0.3s ease, background 0.3s ease, transform 0.2s;
}

.estimate-form .form-group input:focus,
.estimate-form .form-group select:focus,
.estimate-form .form-group textarea:focus {
  border-color: #1f812f;
  background: #111;
  outline: none;
  transform: scale(1.02);
}

.estimate-form .form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}

.estimate-form .form-submit {
  text-align: center;
  margin-top: 2.5rem;
}

.estimate-form .btn-primary {
  color: white;
  padding: 0.9rem 2.2rem;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.estimate-form .btn-primary:hover {
  background-color: #fff;
  color: #111;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

/* Testimonials */
.testimonials {
  background: #111;
  padding: 3rem 2rem;
}

.testimonial {
  margin: 1rem 0;
  padding: 1.5rem;
  border-left: 4px solid #0f3d2e;
  background: #000;
}
.testimonials h2{
    font-size: 40px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 2rem;
}
.testimonial p{
    font-size: 25px;
    text-align: center;
}
.testimonial h4{
    color: white;
    font-size: 20px;
    text-align: center;
    margin: 1rem 0;
}
.testimonials .btn-secondary{
    font-size: 25px;
}
/* FAQ */
.faq details {
  margin: 1rem 0;
  background: #111;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #333;
  cursor: pointer;
  color: white;
}
.faq h2{
  font-size: 50px;
  letter-spacing: 2px;
  font-weight: 700;
}
.faq p{
  color: #e5e5e5;
  font-size: 22px;
  margin: 1rem 0;
}
.faq summary{
  font-size: 28px;
  letter-spacing: 1px;
    border-bottom: 1px solid white;

}
/* === Gallery Section === */
.gallery {
  background: #111; /* deep black background */
  color: #eee;
  padding: 2rem 2rem;
  text-align: center;
  border-top: 3px solid #0f3d2e; /* dark green accent */
  border-bottom: 3px solid #0f3d2e;
}

.gallery-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: bold;
  color: #c0c0c0; /* chrome silver */
  text-transform: uppercase;
  letter-spacing: 2px;
}

.gallery-intro {
  font-size: 1.4rem;
  width: 85%;
  margin: 0 auto 3rem;
  color: #ccc;
  line-height: 1.6;
}

/* Grid layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid #0f3d2e; /* dark green trim */
  box-shadow: 0 4px 15px rgba(0,0,0,0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Hover effect */
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.9);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .gallery-title {
    font-size: 2rem;
  }
  .gallery{
    padding: 2rem 0rem;
  }
  .gallery-intro {
    font-size: 1.3rem;
  }
  .reviews-page{
    padding: 40px 0px;
  }
}

/* Contact CTA */
.contact-cta {
  background: linear-gradient(180deg , #000, #0f3d2e);
  text-align: center;
}
.contact-cta h2{
  font-size: 40px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-cta p{
  font-size: 22px;
  margin-bottom: 10px;
}
.contact-cta .btn-secondary{
  font-size: 22px;
}
.site-footer {
  background: black;
  color: #d1d5db;
  padding: 3rem 2rem;
  font-size: 18px;
  text-align: center;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #1f812f;
  padding-bottom: 2rem;
}

.footer-brand h3 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 20px;
  margin-bottom: 1rem;
  color: #9ca3af;
}

.media-icons {
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.media-icons i {
  font-size: 30px;
  transition: transform 0.3s ease, color 0.3s ease;
  text-align: center;
}

.media-icons a:hover i {
  transform: scale(1.2);
  color: #1f812f;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: 30px;
  border-left: 4px solid #1f812f;
  padding-left: 8px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #1f812f;
}

.footer-contact p {
  margin: 0.3rem 0;
}

.hours {
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
  font-size: 16px;
}

.hours li {
  margin-bottom: 0.3rem;
  font-size: 20px;
}

.hours strong {
  color: #1f812f;
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  font-size: 20px;
  margin-top: 2rem;
  color: #9ca3af;
}

.footer-bottom .verse {
  color: #1f812f;
  margin-bottom: 0.5rem;
  font-size: 20px;
}

.footer-bottom a {
  color: #d1d5db;
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: #1f812f;
}

  /* Phones and small devices */
@media (max-width: 600px) {
  .site-footer {
    font-size: 25px;
    padding: 2rem 1rem;
    text-align: center;
  }

  .site-footer .media-icons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .media-icons li {
    margin: 10px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-columns h4 {
    font-size: 2rem;
  }

  .verse {
    font-size: 1.5rem;
    line-height: 1.5rem;
      margin: 1rem 0rem;
  }
  .about, .faq{
    padding: 2rem;
  }
  .contact-cta{
    padding: 3rem 2rem;
  }
  .contact-cta .btn-primary{
    margin-bottom: 2rem;
  }
  .hero-section h1{
    font-size: 35px;
  }
  .hero-section{
    padding: 2rem .5rem;
  }
  .site-header{
    padding: 1rem 0;
  }
  .contact-intro{
    font-size: 1.2rem;
  }
 .contact-form{
    width: 100%;
    padding: 1.5rem;
  }
  .contact-section{
    padding: 2rem 1rem;
  }
  .services{
    padding: 1rem 1rem;
  }
  .about h2, .faq h2{
    font-size: 40px;
  }
  .about p{
    font-size: 22px;
  }
  .estimate-section {
  padding: 3rem 2rem;
}
.estimate-hero{
  padding: 2rem 1rem;
}
}

/* Tablets */
@media (min-width: 601px) and (max-width: 1299px) {
  .site-footer {
    font-size: 25px;
  }
 .contact-form{
    width: 100%;
    padding: 1.5rem;
  }
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large laptops and up */
@media (min-width: 1300px) {
  .site-footer {
    font-size: 26px;
  }
  .footer-columns {
    grid-template-columns: repeat(4, 1fr);
  }
}
