/* ===============================
		GLOBAL RESET
=============================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
color:#333;
line-height:1.6;
}

/* ===============================
         HEADER - ALL
=============================== */

header{
  background:white;
  border-bottom:1px solid #eee;
}

.nav-grid{
  max-width:1200px;
  margin:auto;
  padding:8px 40px 12px 40px;
  display:grid;
  grid-template-columns: 260px 1fr;
  align-items:start;
  column-gap:20px;
}

.logo-wrap{
  display:flex;
  align-items:flex-start;
}

.logo{
  height:95px;
  display:block;
}

.right-wrap{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
}

.phone{
  background:#ec252f;
  color:white;
  padding:12px 26px;
  text-decoration:none;
  font-weight:bold;
  border-radius:999px 0 0 999px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  line-height:1;
  margin-top:4px;
  margin-bottom:18px;
}

.phone img{
  width:14px;
  height:14px;
  filter:brightness(0) invert(1);
}

.hidden-number{
  display:none;
}

.menu{
  display:flex;
  list-style:none;
  gap:34px;
  font-size:14px;
  font-weight:400;
  font-family:"Century Gothic", Arial, sans-serif;
  align-items:center;
  justify-content:flex-end;
}

.menu a{
  text-decoration:none;
  color:#000;
  font-weight:400;
}

.menu a:hover{
  color:#ec252f;
}

.menu a.active{
  color:#ec252f;
  font-weight:600;
}

/* ===============================
		INDEX PAGE - HERO 
=============================== */

.hero{
height:520px;
background-size:cover;
background-position:center;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
color:white;
}

.hero h1{
font-size:70px !important;
margin-bottom:10px;
font-weight:720;
}

.hero p{
font-size:30px;
margin-bottom:20px;
font-weight:600;
}

.hero .btn{
background:#ec252f;
padding:12px 28px;
color:white;
text-decoration:none;
font-weight:400;
border-radius:6px;
display:inline-block;
}

/* ===============================
		RED BANNER - ALL
=============================== */

.banner{
background:#ec252f;
color:white;
text-align:center;
padding:18px;
font-size:20px;
font-weight:700;
letter-spacing:1px;
font-family:"Montserrat", Arial, sans-serif;
}

.banner,
.banner h2{
  font-family:"Montserrat", Arial, sans-serif;
}

/* ===============================
		INDEX PAGE - ABOUT 
=============================== */

.about{
max-width:900px;
margin:60px auto;
text-align:center;
padding:0 20px;
color:#555;
}

/* ===============================
		INDEX PAGE - SERVICES
=============================== */

.services{
text-align:center;
padding:60px 20px;
}

.services h2{
font-size:32px;
margin-bottom:50px;
letter-spacing:1px;
position:relative;
display:inline-block;
}

.services h2::after{
content:"";
display:block;
width:100px;
height:4px;
background:#ec252f;
margin:3px auto 0;
}

.service-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
max-width:1100px;
margin:auto;
}

.service-logo{
position:absolute;
top:-25px;
left:50%;
transform:translateX(-50%);
width:auto;
height:auto;
overflow:visible;
z-index:2;
}

.service-logo img{
height:70px !important;
width:auto !important;
max-width:none !important;
display:block;
}

.card{
position:relative;
text-align:center;
padding-top:5px;
transition:transform 0.3s ease, box-shadow 0.3s ease;
text-decoration:none;
color:inherit;
display:block;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 12px 25px rgba(0,0,0,0.15);
}

.card img{
width:100%;
height:220px;
object-fit:cover;
transition:transform 0.4s ease;
margin-top:0;
display:block;
}

.card:hover img{
transform:scale(1.05);
}

.card h3{
margin-top:15px;
font-size:18px;
}

.card p{
font-size:14px;
color:#555;
}

.btn-black{
margin-top:35px;
display:inline-block;
background:#000000;
color:white;
padding:12px 25px;
text-decoration:none;
font-weight:bold;
border-radius:8px;
}

.btn-black:hover{
background:#222;
}

/* ===============================
		CONTACT STRIP - ALL
=============================== */

.contact-strip{
background:#ec252f;
color:white;
display:flex;
justify-content:center;
align-items:center;
gap:80px;
padding:35px 20px;
}

.contact-strip div{
font-size:16px;
}

.contact-box{
display:flex;
align-items:center;
gap:15px;
position:relative;
}

.contact-box a{
color:white;
text-decoration:none;
}

.contact-box a:hover{
text-decoration:underline;
}

.contact-box img{
width:40px;
height:auto;
filter: brightness(0) invert(1);
}

.contact-box:not(:last-child)::after{
content:"";
position:absolute;
right:-40px;
top:50%;
transform:translateY(-50%);
width:1px;
height:60px;
background:rgba(255,255,255,0.6);
}

.contact-box h3{
font-size:20px;
margin-bottom:4px;
}

.contact-box p{
font-size:14px;
}

/* ===============================
			BRANDS - ALL
=============================== */

.brands{
display:flex;
justify-content:center;
align-items:center;
padding:40px 20px;
background:white;
}

.brands img{
width:100%;
max-width:1100px;
height:auto;
}

/* ===============================
            FOOTER - ALL
=============================== */

.site-footer{
background:#838383;
color:white;
}

.footer-top{
max-width:1200px;
margin:auto;
padding:50px 40px 40px;
display:grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
gap:40px;
align-items:start;
}

.footer-links{
display:flex;
flex-direction:column;
gap:14px;
}

.footer-links a{
color:white;
text-decoration:none;
font-size:16px;
}

.footer-links a:hover{
text-decoration:underline;
}

.footer-social h3{
font-size:18px;
margin-bottom:18px;
font-weight:700;
}

.social-icons{
display:flex;
gap:14px;
align-items:center;
}

.social-icons img{
width:28px;
height:28px;
}

.footer-logo{
text-align:center;
}

.footer-logo img{
max-width:220px;
height:auto;
}

.footer-copy p{
font-size:16px;
line-height:1.8;
}

.footer-bottom{
text-align:center;
padding:22px 20px 28px;
border-top:1px solid rgba(255,255,255,0.18);
}

.footer-bottom p{
margin:0;
font-size:15px;
}

.footer-credit{
margin-top:8px !important;
font-size:14px !important;
opacity:0.9;
}

.footer-links a::before{
content:"› ";
margin-right:4px;
}
/* ===============================
        ABOUT PAGE - HERO
=============================== */

.hero-about{
height:420px;
background-image:url("images/home/hero_roof_Copy.jpg");
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
color:white;
position:relative;
}

.hero-about::before{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,0.35);
}

.hero-about h1{
font-size:60px;
font-weight:700;
position:relative;
z-index:1;
}

/* ===============================
        SERVICES PAGE - HERO
=============================== */

.hero-services{
height:420px;
background-image:url("images/home/hero_services_Copy.jpg");
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
color:white;
position:relative;
}

.hero-services::before{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,0.35);
}

.hero-services h1{
font-size:60px;
font-weight:700;
position:relative;
z-index:1;
}

/* ===============================
        SERVICES PAGE - LIST
=============================== */

.services-list{
max-width:1100px;
margin:60px auto;
padding:0 20px;
display:flex;
flex-direction:column;
gap:40px;
}

.service-row{
display:flex;
align-items:center;
gap:25px;
background:#fff;
padding:25px;
border-radius:12px;
box-shadow:0 4px 15px rgba(0,0,0,0.08);
transition:all 0.3s ease;
}

.service-row:hover{
transform:translateY(-4px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.service-link{
text-decoration:none !important;
color:inherit !important;
display:block !important;
}

.service-photo{
width:260px;
height:180px;
object-fit:cover;
border-radius:8px;
flex-shrink:0;
}

.service-divider{
width:4px;
height:120px;
background:#ec252f;
flex-shrink:0;
}

.service-row-logo{
width:120px;
height:auto;
flex-shrink:0;
display:block;
}

.service-text{
flex:1;
}

.service-text p{
font-size:17px;
line-height:1.7;
color:#555;
margin:0;
}

.services-list .btn-black{
align-self:center;
margin-top:30px;
}

/* ===============================
		CAREERS PAGE
=============================== */

.hero-careers{
background:url("images/home/hero_career_Copy.png") center 40%/cover no-repeat;
height:420px;
display:flex;
align-items:center;
justify-content:center;
color:white;
text-align:center;
position:relative;
}

.hero-careers::before{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,0.35);
}

.hero-careers h1{
font-size:60px;
font-weight:700;
position:relative;
z-index:1;
}

.careers{
max-width:1100px;
margin:60px auto;
padding:0 20px;
}

.careers-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:start;
}

.careers-info h4{
margin-top:30px;
font-size:18px;
color:#444;
border-bottom:3px dashed #ec252f;
padding-bottom:8px;
}

.careers-info ul{
list-style:none;
padding:0;
margin:10px 0;
}

.careers-info li{
margin:8px 0;
font-size:15px;
color:#666;
}

.points-note{
font-size:16px;
margin-bottom:25px;
color:#666;
}

.careers-apply{
background:#fff;
padding:35px;
border-radius:10px;
box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.careers-apply h3{
font-size:26px;
margin-bottom:15px;
}

.careers-apply p{
color:#666;
line-height:1.7;
margin-bottom:15px;
}

.apply-email{
font-weight:bold;
font-size:20px;
margin:20px 0;
}

.apply-email a{
color:#ec252f;
font-weight:bold;
text-decoration:none !important;
}

.apply-email a:hover{
text-decoration:underline;
}

/* ===============================
        SERVICE AREA SECTION
=============================== */

.contact-service-area{
max-width:900px;
margin:60px auto;
text-align:center;
padding:0 20px;
color:#555;
}

.contact-service-area h2{
font-size:30px;
margin-bottom:20px;
position:relative;
display:inline-block;
}

.contact-service-area h2::after{
content:"";
display:block;
width:100px;
height:4px;
background:#ec252f;
margin:6px auto 0;
}

.contact-service-area p{
margin-bottom:15px;
line-height:1.7;
}

.contact-highlight a{
color:#ec252f;
font-weight:bold;
text-decoration:none !important;
}

.contact-highlight a:hover{
text-decoration:underline;
}

/* ===============================
        CONTACT PAGE MAIN
=============================== */

.contact-page{
max-width:1100px;
margin:60px auto;
padding:0 20px;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:start;
}

.contact-info p{
margin-bottom:18px;
line-height:1.7;
color:#555;
}

.contact-info a{
color:#ec252f;
font-weight:bold;
text-decoration:none !important;
}

.contact-info a:hover{
text-decoration:underline;
}

/* ======= CONTACT HERO ======= */
.hero-contact{
height:420px;
background:url("images/home/hero_contact_Copy.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
color:white;
text-align:center;
position:relative;
}

.hero-contact::before{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,0.35);
}

.hero-contact h1{
font-size:60px;
font-weight:700;
position:relative;
z-index:1;
}

/* ======= CONTACT FORM ======= */
.contact-form{
background:#fff;
padding:35px;
border-radius:10px;
box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
font-family:Arial, Helvetica, sans-serif;
}

.contact-form textarea{
height:120px;
resize:vertical;
}

.contact-form button{
cursor:pointer;
}

/* ===============================
        RESPONSIVE
=============================== */

@media (max-width: 1024px){
  .nav{
    flex-wrap:wrap;
    gap:20px;
    justify-content:center;
  }
  .menu{
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
  }
  .service-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .contact-strip{
    gap:50px;
  }
  .brands{
    gap:35px;
  }
  .brands img{
    height:50px;
  }
}

@media (max-width: 900px){
  .contact-grid{
    grid-template-columns:1fr;
    gap:40px;
  }
  .contact-form{
    padding:25px;
  }
  .careers-grid{
    grid-template-columns:1fr;
    gap:40px;
  }
}

@media (max-width: 768px){

  /* HEADER */
  header{
    padding:15px 20px;
    position:sticky;
    top:0;
    z-index:1000;
    background:white;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
  }

  .nav{
    flex-direction:column;
    gap:20px;
  }

  .nav-grid{
    grid-template-columns:1fr auto;
    padding:10px 14px;
    align-items:center;
    column-gap:12px;
    row-gap:8px;
  }

  .logo-wrap{
    display:flex;
    justify-content:flex-start;
    align-items:center;
  }

  .logo{
    height:44px;
  }

  .right-wrap{
    display:contents;
  }

  .phone{
    justify-self:end;
    padding:8px 12px;
    font-size:12px;
    margin:0;
    line-height:1;
  }

  .menu{
    grid-column:1 / -1;
    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:10px 14px;
    margin:4px 0 0 0;
    padding:0;
    font-size:12px;
  }

  .menu li{
    list-style:none;
  }

  /* HERO */
  .hero{
    height:420px;
    padding:20px;
  }

  .hero h1{
    font-size:34px;
    line-height:1.2;
  }

  .hero p{
    font-size:18px;
  }

  .hero .btn{
    padding:12px 22px;
    font-size:14px;
  }

  /* BANNER / GENERAL */
  .banner{
    font-size:16px;
    padding:14px 12px;
  }

  .about{
    margin:40px auto;
    padding:0 18px;
    font-size:15px;
  }

  .services{
    padding:45px 18px;
  }

  .services h2{
    font-size:28px;
    margin-bottom:30px;
  }

  .btn-black{
    margin-top:30px;
    padding:12px 22px;
    font-size:14px;
  }

  /* SERVICE GRID */
  .service-grid{
    grid-template-columns:1fr;
    gap:25px;
  }

  .card img{
    height:240px;
  }

  .card h3{
    font-size:20px;
  }

  .card p{
    font-size:15px;
  }

  /* SERVICES PAGE */
  .services-list{
    padding:0 15px;
    gap:25px;
  }

  .service-row{
    flex-direction:column;
    align-items:center;
    text-align:center;
    padding:20px;
  }

  .service-photo{
    width:100%;
    max-width:280px;
    height:auto;
  }

  .service-divider{
    width:60px;
    height:4px;
  }

  .service-row-logo{
    width:110px;
  }

  .service-text{
    width:100%;
  }

  .service-text p{
    font-size:15px;
    line-height:1.6;
  }

  /* CONTACT STRIP */
  .contact-strip{
    flex-direction:column;
    gap:20px;
    padding:30px 20px;
  }

  .contact-strip div{
    font-size:15px;
  }

  /* BRANDS */
  .brands{
    gap:25px;
    padding:30px 20px;
  }

  .brands img{
    height:42px;
  }

  /* FOOTER */
  footer{
    padding:25px 18px;
    font-size:13px;
  }

  .footer-top{
    grid-template-columns:1fr;
    text-align:center;
    padding:40px 20px 30px;
  }

  .footer-links{
    align-items:center;
  }

  .social-icons{
    justify-content:center;
  }

  .footer-copy{
    max-width:500px;
    margin:auto;
  }

  .footer-logo img{
    max-width:180px;
  }

  .footer-bottom{
    padding:18px 16px 24px;
  }

  .footer-bottom p{
    font-size:13px;
  }

}