*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, sans-serif;
  background:#f4f4f4;
  color:#111827;
  line-height:1.6;
}

img{
  width:100%;
  display:block;
}

.container{
  width:90%;
  max-width:1300px;
  margin:auto;
}

/* HEADER */

.header{
  background:white;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 2px 10px rgba(0,0,0,0.06);
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:6px 0;
}

.logo img{
  height:90px;
  width:auto;
  object-fit:contain;
}

.nav-links{
  display:flex;
  gap:45px;
  list-style:none;
}

.nav-links a{
  text-decoration:none;
  color:#111827;
  font-weight:700;
  font-size:1rem;
  transition:0.3s;
}

.nav-links a:hover{
  color:#c9a227;
}

/* HERO */

.hero{
  position:relative;
  min-height:850px;
  background:
  linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.58)),
  url("images/hero.jpg") center center/cover no-repeat;
  display:flex;
  align-items:center;
}

.hero-content{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:60px;
}

.hero-left{
  max-width:700px;
  color:white;
}

.hero-tag{
  font-size:1rem;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:20px;
  color:#f3f4f6;
}

.hero h1{
  font-size:5rem;
  line-height:1.05;
  font-weight:800;
  margin-bottom:30px;
}

.hero-text{
  font-size:1.25rem;
  color:#f3f4f6;
  max-width:650px;
  margin-bottom:35px;
}

.hero-features{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-bottom:40px;
}

.hero-features p{
  font-size:1.2rem;
  font-weight:600;
}

/* BUTTONS */

.btn{
  display:inline-block;
  background:#0b1b33;
  color:white;
  padding:18px 36px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  transition:0.3s;
}

.btn:hover{
  background:#c9a227;
  color:#0b1b33;
}

/* ESTIMATE BOX */

.estimate-box{
  background:white;
  padding:45px;
  border-radius:20px;
  width:430px;
  box-shadow:0 15px 40px rgba(0,0,0,0.25);
}

.estimate-box h2{
  text-align:center;
  margin-bottom:30px;
  font-size:2.1rem;
  color:#111827;
}

.estimate-box form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.estimate-box input,
.estimate-box select,
.estimate-box textarea{
  padding:18px;
  border:1px solid #d1d5db;
  border-radius:10px;
  font-size:1rem;
  background:#fafafa;
}

.estimate-box input:focus,
.estimate-box textarea:focus,
.estimate-box select:focus{
  outline:none;
  border-color:#c9a227;
}

.estimate-box button{
  background:#0b1b33;
  color:white;
  border:none;
  padding:18px;
  border-radius:10px;
  font-size:1rem;
  font-weight:700;
  cursor:pointer;
  transition:0.3s;
}

.estimate-box button:hover{
  background:#c9a227;
  color:#0b1b33;
}

/* SERVICES */

.services{
  padding:100px 20px;
  background:white;
}

.section-heading{
  text-align:center;
  margin-bottom:60px;
}

.section-tag{
  color:#c9a227;
  text-transform:uppercase;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:10px;
}

.section-heading h2{
  font-size:2.8rem;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.card{
  background:white;
  padding:40px 30px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-8px);
}

.icon{
  font-size:3rem;
  margin-bottom:20px;
}

.card h3{
  margin-bottom:12px;
  font-size:1.4rem;
}

.card p{
  color:#6b7280;
}

/* PROJECTS */

.projects{
  padding:100px 20px;
  background:#f9fafb;
}

.project-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.project-card{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  height:320px;
}

.project-card img{
  height:100%;
  object-fit:cover;
  transition:0.5s;
}

.project-card:hover img{
  transform:scale(1.08);
}

.project-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(transparent, rgba(0,0,0,0.75));
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:25px;
  color:white;
}

/* ABOUT */

.about{
  padding:100px 20px;
  background:white;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.about-image img{
  border-radius:18px;
  height:500px;
  object-fit:cover;
}

.about-text h2{
  font-size:2.8rem;
  margin-bottom:20px;
}

.about-text p{
  color:#4b5563;
  margin-bottom:18px;
}

/* CONTACT */

.contact{
  padding:100px 20px;
  background:#f3f4f6;
}

.contact-form{
  max-width:700px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.contact-form input,
.contact-form textarea{
  padding:18px;
  border-radius:10px;
  border:1px solid #d1d5db;
}

.contact-form button{
  background:#0b1b33;
  color:white;
  border:none;
  padding:18px;
  border-radius:10px;
  font-weight:700;
  cursor:pointer;
  transition:0.3s;
}

.contact-form button:hover{
  background:#c9a227;
  color:#0b1b33;
}

/* FOOTER */

.footer{
  background:#071d3a;
  color:#ffffff;
  padding:70px 0 25px;
}

/* MOBILE */

@media(max-width:950px){

  .hero-content{
    flex-direction:column;
    text-align:center;
  }

  .service-grid,
  .project-grid,
  .about-grid{
    grid-template-columns:1fr;
  }

  .hero{
    padding:120px 0;
    min-height:auto;
  }

  .hero h1{
    font-size:3rem;
  }

  .estimate-box{
    width:100%;
  }

  .nav-links{
    gap:20px;
  }

}
.hero-left h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  max-width: 850px;
}

.hero-text {
  max-width: 720px;
  font-size: 1.15rem;
  line-height: 1.7;
}

.estimate-box {
  max-width: 520px;
}

.hero-content {
  align-items: center;
  gap: 60px;
}
.quick-estimate {
  padding: 70px 0;
  background: #f4f6f8;
}

.quick-estimate-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 45px 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
}

.quick-estimate-card h2 {
  font-size: 2rem;
  color: #0f172a;
  margin-bottom: 12px;
}

.quick-estimate-card p {
  color: #475569;
  font-size: 1.05rem;
  max-width: 780px;
}

.quick-estimate-card .btn {
  white-space: nowrap;
}

@media (max-width: 850px) {
  .quick-estimate-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 35px 28px;
  }
}
.why-us {
  padding: 100px 0;
  background: #ffffff;
}

.why-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 38px 34px;
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.why-card span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #0b1f3a;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 22px;
}

.why-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #0f172a;
}

.why-card p {
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
.about-preview {
    padding: 120px 0;
    background: #ffffff;
    text-align: center;
}

.about-preview .section-heading {
    max-width: 850px;
    margin: auto;
}

.about-preview h2 {
    margin-bottom: 25px;
}

.about-preview p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 35px;
}

.about-preview .btn {
    display: inline-block;
}
.featured-project {
    padding: 120px 0;
    background: #ffffff;
}

.featured-project-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

.featured-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,.18);
}

.featured-content h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    color: #0f172a;
}

.featured-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 22px;
}

.featured-content .btn {
    margin-top: 15px;
}

@media (max-width: 900px) {

    .featured-project-grid {
        grid-template-columns: 1fr;
    }

    .featured-image img {
        height: 400px;
    }

}
.services-cta {
  padding: 100px 0;
  text-align: center;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}

.services-cta h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.services-cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #64748b;
}
.services-hub {
  padding: 100px 0;
  background: #f8fafc;
}

.services-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-image-card {
  position: relative;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}

.service-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.service-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 15, 30, 0.85),
    rgba(5, 15, 30, 0.15)
  );
}

.service-image-card div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  color: #ffffff;
}

.service-image-card h3 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.service-image-card p {
  color: #dbeafe;
  font-weight: 700;
}

.service-image-card:hover img {
  transform: scale(1.08);
}

@media (max-width: 1000px) {
  .services-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .services-hub-grid {
    grid-template-columns: 1fr;
  }
}

.service-hero {
  min-height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.tile-hero {
  background-image: url("images/image-main.JPG");
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 15, 30, 0.62);
}

.service-hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 850px;
}

.service-hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 700px;
}

.service-hero-content p {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 32px;
  color: #e2e8f0;
}

.service-intro,
.service-details,
.service-gallery {
  padding: 100px 0;
}

.service-single-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.service-single-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.service-single-content h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.service-single-content p {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.benefit-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 32px;
}

.benefit-card h3 {
  margin-bottom: 12px;
}

.benefit-card p {
  color: #64748b;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 45px;
}

.gallery-grid img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

@media (max-width: 1000px) {
  .service-single-grid,
  .service-benefits-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-single-image img {
    height: 400px;
  }
}

.gallery-slider-section {
    padding: 100px 0;
}

.slider-container {
    position: relative;
    max-width: 900px;
    margin: auto;
}

#slider-image,
#drainage-slider-image {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    background: #f8fafc;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 28px;
    color: white;
    background: rgba(15,23,42,.85);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.slider-counter {
    text-align: center;
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 700;
}
.drainage-hero {
  background-image: url("images/drainage.jpg");
}

.waterproofing-hero {
  background-image:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("images/waterproofing-main.jpeg");
  background-size: cover;
  background-position: center;
}

#waterproofing-slider-image {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #f8fafc;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.roofing-hero{
  background-image:
  linear-gradient(
  rgba(0,0,0,.55),
  rgba(0,0,0,.55)),
  url("images/roofing-main.jpeg");

  background-size: cover;
  background-position: center;
}

#roofing-slider-image{
  width:100%;
  max-height:520px;
  object-fit:contain;
  background:#f8fafc;
  border-radius:24px;
  box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.insulation-hero {
  background-image:
    linear-gradient(rgba(0,0,0,.28), rgba(0,0,0,.28)),
    url("images/insulation-main.jpeg");

  background-size: cover;
  background-position: center 35%;
}

#insulation-slider-image {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    background: #f8fafc;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.service-single-image img {
    width: 100%;
    max-width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.stonewall-hero {
  background-image:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("images/Stonewall-main1.jpeg");
  background-size: cover;
  background-position: center;
}

#stonewall-slider-image {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #f8fafc;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}
.patio-hero {
  background-image:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("images/patio-main.jpeg");

  background-size: cover;
  background-position: center;
}

#patio-slider-image {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #f8fafc;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.driveway-hero {
  background-image:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("images/driveway-main.jpeg");
  background-size: cover;
  background-position: center;
}

#driveway-slider-image {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #f8fafc;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.chimney-hero {
  background-image:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("images/chimney-main.jpeg");
  background-size: cover;
  background-position: center;
}

#chimney-slider-image {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #f8fafc;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.walkways-hero {
  background-image:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("images/walkways-main.jpeg");
  background-size: cover;
  background-position: center;
}

#walkways-slider-image {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #f8fafc;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.excavation-hero {
  background-image:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("images/excavation-main.jpeg");
  background-size: cover;
  background-position: center;
}

#excavation-slider-image {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #f8fafc;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.firepit-hero {
  background-image:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("images/firepit-main.jpeg");
  background-size: cover;
  background-position: center;
}

#firepit-slider-image {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #f8fafc;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.stone-bbq-hero {
  background-image:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("images/stone-bbq-main.jpeg");
  background-size: cover;
  background-position: center;
}

#stone-bbq-slider-image {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #f8fafc;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}


.projects-page {
  padding: 100px 0;
  background: #f8fafc;
}

.projects-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.project-showcase-card {
  background: #ffffff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
  transition: 0.3s ease;
}

.project-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.project-showcase-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.project-showcase-card div {
  padding: 32px;
}

.project-showcase-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #0f172a;
}

.project-showcase-card p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 18px;
}

.project-showcase-card a {
  color: #0b1f3a;
  font-weight: 800;
  text-decoration: none;
}

.project-showcase-card a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .projects-page-grid {
    grid-template-columns: 1fr;
  }

  .project-showcase-card img {
    height: 280px;
  }
}


.about-hero {
  min-height: 82vh;
  position: relative;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(rgba(0,0,0,.58), rgba(0,0,0,.58)),
    url("images/driveway-project.jpg");
  background-size: cover;
  background-position: center;
}

.about-hero-content {
  max-width: 850px;
  color: #ffffff;
}

.about-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 24px;
}

.about-hero-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e2e8f0;
  margin-bottom: 32px;
}

.about-story {
  padding: 120px 0;
  background: #ffffff;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-story-content h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: #0f172a;
}

.about-story-content p {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-story-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 25px 65px rgba(15,23,42,.18);
}

.about-services-highlight {
  padding: 110px 0;
  background: #f8fafc;
}

.about-service-list {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.about-service-list span {
  background: #ffffff;
  color: #0f172a;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
  border: 1px solid #e2e8f0;
}

.about-values-premium {
  padding: 115px 0;
  background: #ffffff;
}

.about-values-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-value-card {
  background: #0b1f3a;
  color: #ffffff;
  padding: 36px 30px;
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(15,23,42,.16);
}

.about-value-card span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #caa21a;
  color: #0f172a;
  font-weight: 900;
  margin-bottom: 22px;
}

.about-value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.about-value-card p {
  color: #dbeafe;
  line-height: 1.7;
}

.about-cta {
  padding: 120px 0;
  text-align: center;
  background:
    linear-gradient(rgba(11,31,58,.88), rgba(11,31,58,.88)),
    url("images/driveway-main.jpeg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.about-cta h2 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  margin-bottom: 20px;
}

.about-cta p {
  max-width: 850px;
  margin: 0 auto 35px;
  color: #dbeafe;
  font-size: 1.15rem;
  line-height: 1.8;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .about-story-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-story-image img {
    height: 380px;
  }
}

.contact-hero {
  padding: 120px 0 90px;
  background:
    linear-gradient(rgba(11,31,58,.86), rgba(11,31,58,.86)),
    url("images/driveway-project.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-align: center;
}

.contact-hero-content {
  max-width: 900px;
  margin: auto;
}

.contact-hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 22px;
}

.contact-hero p {
  color: #dbeafe;
  font-size: 1.18rem;
  line-height: 1.8;
}

.contact-page {
  padding: 110px 0;
  background: #f8fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: #0f172a;
}

.contact-info p {
  color: #64748b;
  line-height: 1.8;
  font-size: 1.08rem;
  margin-bottom: 24px;
}

.contact-info-box {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  margin-bottom: 18px;
  box-shadow: 0 14px 35px rgba(15,23,42,.08);
}

.contact-info-box h3 {
  margin-bottom: 8px;
  color: #0f172a;
}

.contact-info-box a {
  color: #0b1f3a;
  font-weight: 800;
  text-decoration: none;
}

.estimate-form {
  background: #ffffff;
  padding: 45px;
  border-radius: 28px;
  box-shadow: 0 25px 65px rgba(15,23,42,.14);
}

.estimate-form h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #0f172a;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  padding: 16px 18px;
  margin-bottom: 18px;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  font-size: 1rem;
  font-family: inherit;
}

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
  outline: none;
  border-color: #0b1f3a;
  box-shadow: 0 0 0 3px rgba(11,31,58,.12);
}

.estimate-form button {
  width: 100%;
  border: none;
  cursor: pointer;
}

.form-note {
  margin-top: 15px;
  color: #64748b;
  font-size: .9rem;
  text-align: center;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .estimate-form {
    padding: 30px;
  }
}

.service-area {
  padding: 90px 0;
  background: #f8fafc;
  text-align: center;
}

.service-area-text {
  max-width: 900px;
  margin: auto;
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.8;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:50px;
  align-items:start;
}

.footer-logo{
  width:140px;
  margin-bottom:20px;
}

.footer-grid h4{
  margin-bottom:18px;
  color:#ffffff;
  font-size:1.2rem;
}

.footer-grid p,
.footer-grid li{
  color:#cbd5e1;
  line-height:1.8;
}

.footer-grid ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-grid li{
  margin-bottom:8px;
}

.footer-grid a{
  color:#cbd5e1;
  text-decoration:none;
  transition:.3s;
}

.footer-grid a:hover{
  color:#caa21a;
}

.footer-bottom{
  text-align:center;
  margin-top:50px;
  padding-top:25px;
  border-top:1px solid rgba(255,255,255,.1);
  color:#94a3b8;
}

@media(max-width:900px){

  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

}