 /* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* BODY */
body{
  font-family:'Segoe UI', sans-serif;
  color:#f5f5f5;
  background:#111;
  line-height:1.6;
}

/* CONTAINER */
.container{
  max-width:1100px;
  margin:auto;
  padding:0 15px;
}

/* HEADER */
header{
  background:#fff;
  box-shadow:0 2px 5px rgba(0,0,0,0.1);
}

header .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px;
}

header h2{
  color:#d4a24c;
}

/* NAV */
nav{
  display:flex;
  gap:15px;
}
nav a,
button,
.float-btn{
  min-height:48px;
  min-width:48px;
}
nav a{
  color:#333;
  text-decoration:none;
  padding:8px 14px;
  border-radius:5px;
}


nav a:hover{
  background:#f2c94c;
}

/* PAGE HEADER */
.page-header{
  background:#f2c94c;
  padding:30px;
  text-align:center;
}
body.home .section{
  background:transparent;
}

body.home h1,
body.home h2,
body.home p{
  color:#111;
}

.page-header h1{
  margin:0;
}

/* SECTION */
.section{
  padding:40px 0;
}

/* PAGE COLORS */
body.services{
  background:#fff8e1;
}

body.location{
  background:#e3f2fd;
}
body.location p{
  margin-bottom:15px;
  color:#111;
}

body.construction{
  background:#f1f8e9;
  color:#111;
}
body.home{
  background:#e3f2fd;
  color:#111;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.card{
  background:#fff;
  border-radius:8px;
  box-shadow:0 2px 6px rgba(0,0,0,0.1);
  overflow:hidden;
}

.card img{
  width:100%;
  height:120px;
  object-fit:cover;
}

.card p{
  padding:10px;
}
label{
  margin-top:10px;
  margin-bottom:5px;
  font-size:14px;
  color:#111;
  font-weight:600;
}

/* MOBILE */
@media(max-width:600px){
  .grid{
    grid-template-columns:repeat(2,1fr);
  }
}
.email-btn{
  bottom:130px;
  background:#ff9800;
}
button{
  background:#f2c94c;
  color:#000;
  border:none;
  padding:12px;
  border-radius:6px;
  cursor:pointer;
  font-size:15px;
}
input,
select{
  width:100%;
  padding:10px;
  margin-bottom:10px;
  border:1px solid #ccc;
  border-radius:6px;
}
form{
  max-width:450px;
  margin:auto;
}

input,
select{
  background:#fff;
  color:#111;
}
.section img{
  width:100%;
  max-width:500px;
  display:block;
  margin:15px auto;
  border-radius:8px;
}
body.construction p{
  margin-bottom:15px;
  color:#222;
}
body.services ul{
  margin:15px 0 20px 25px;
  color:#111;
}

body.services li{
  margin-bottom:6px;
}
body.services h2,
body.services h3,
body.services p,
body.services li{
  color:#111 !important;
}
body.services h2{
  color:#1f2937;
  margin-top:30px;
  margin-bottom:15px;
}

body.services h3{
  color:#1f2937;
  margin-top:20px;
  margin-bottom:10px;
}

body.services p{
  color:#333;
  margin-bottom:12px;
  line-height:1.7;
}

body.services ul{
  margin-left:25px;
  margin-bottom:20px;
}

body.services li{
  margin-bottom:6px;
}
#rates-container table{
  width:100%;
  border-collapse:collapse;
  margin-top:15px;
  background:#fff;
}

#rates-container th,
#rates-container td{
  border:1px solid #ddd;
  padding:10px;
  text-align:center;
}

#rates-container th{
  background:#f2c94c;
}
#rates-container{
  margin-top:20px;
}

#rates-container table{
  width:100%;
  border-collapse:collapse;
  background:#ffffff !important;
  color:#111111 !important;
}

#rates-container th{
  background:#f2c94c !important;
  color:#111111 !important;
  border:1px solid #999;
  padding:10px;
}

#rates-container td{
  background:#ffffff !important;
  color:#111111 !important;
  border:1px solid #999;
  padding:10px;
}

#rates-container tr{
  display:table-row !important;
}
.product-order{
background:#fff;
padding:20px;
border-radius:10px;
margin-top:20px;
}

.product-item{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
  color:#111 !important;
  font-weight:600;
}

.product-item button{
padding:5px 12px;
cursor:pointer;
}

.order-btn{
background:#25D366;
color:white;
border:none;
padding:12px 20px;
border-radius:5px;
cursor:pointer;
margin-top:15px;
}
.product-item span{
  color:#111 !important;
}

.product-order span{
  color:#111 !important;
}
