@charset "utf-8";
/* CSS Document */

a, a:hover, a:focus, a:active {
      text-decoration: none;
      color: inherit;
}
* {
    box-sizing: border-box;
}
/*
Orange - e06330
Charcoal - 3a4549
font-family: "Montserrat", sans-serif;
*/
.g-recaptcha {
margin-bottom: 10px;
}
/* HEADER.................................................MOB */
.header{
position:sticky;
z-index:999;
background-color:#fff;
height:120px;
padding-top:20px;
padding-bottom:20px;
transition:height 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease, top 0.35s ease;
box-shadow:0 0 0 rgba(0,0,0,0);
}

.header.scrolled{
height:70px;
padding-top:10px;
padding-bottom:10px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);top: 0;
}

.header-content{
margin:0 auto;
padding-left:20px;
padding-right:20px;
max-width:1200px;
height:100%;
display:flex;
align-items:center;
justify-content:space-between;
transition:all 0.35s ease;
}

.header-burger{
position:relative;
z-index:1001;
order:1;
flex:0 0 auto;
}

.header-logo{
width:189px;
height:100px;
background:url('../images/logo.webp') no-repeat center;
background-size:contain;
transition:width 0.35s ease, height 0.35s ease;
flex:0 0 auto;
order:2;
margin-left:auto;
}

.header.scrolled .header-logo{
width:84px;
height:50px;
}

/* Burger Menu */
.burger-nav{
position:relative;
}

.menu-toggle{
display:flex;
flex-direction:column;
justify-content:center;
gap:7px;
width:44px;
height:44px;
padding:0;
border:0;
background:transparent;
cursor:pointer;
-webkit-appearance:none;
appearance:none;
transition:transform 0.35s ease;
}

.header.scrolled .menu-toggle{
transform:scale(0.96);
}

.menu-toggle span{
display:block;
width:30px;
height:2px;
background:#e06330;
border-radius:3px;
transform-origin:center;
transition:transform 0.35s ease, opacity 0.3s ease, background 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1){
transform:translateY(9px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2){
opacity:0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3){
transform:translateY(-9px) rotate(-45deg);
}

.menu{
position:absolute;
top:calc(100% + 12px);
left:0;
width:min(calc(100vw - 40px), 1000px);
margin:0;
padding:20px;
list-style:none;
background:#fff;
box-shadow:0 10px 25px rgba(0,0,0,0.12);
font-family: "Montserrat", sans-serif;
z-index:1002;
}

.menu li{
margin:0;
padding:0;
border-bottom:thin solid #E3E3E3;
}

.menu a{
display:block;
padding:10px 0;
text-decoration:none;
color:#333;
font-size:18px;
transition:color 0.3s ease;
}

.menu a:hover,
.menu a:focus{
color:#e06330;
}

.menu-indent a{
padding-left:24px;
font-size:17px;
}

.menu-toggle:focus-visible,
.menu a:focus-visible{
outline:2px solid #e06330;
outline-offset:3px;
}
/* Burger Menu */

.header-menu{
display:none;
font-family: "Montserrat", sans-serif;
text-align:right;
font-size:17px;
font-weight:bold;
transition:font-size 0.35s ease, margin-top 0.35s ease;
}

.header.scrolled .header-menu{
font-size:16px;
}

.header-menu a{
padding-left:16px;
color:#333;
transition:0.5s;
}

.header-menu a:hover{
padding-left:16px;
color:#e06330;
transition:0.5s;
}

.dropdown{
position:relative;
display:inline-block;
color:#333;
transition:0.5s;
text-align:left;
}

.dropdown-content{
display:none;
position:absolute;
background-color:#fff;
width:100%;
min-width:350px;
padding-top:20px;
padding-bottom:10px;
line-height:45px;
box-shadow:0px 8px 16px 0px rgba(0,0,0,0.2);
z-index:1;
height:auto;
overflow-y:auto;
}

.dropdown-content a{
display:block;
}

.dropdown-content a:hover{
background-color:rgba(240,240,240,1.00);
}

.dropdown:hover .dropdown-content{
display:block;
}

@media only screen and (min-width:800px){
.header-burger{
display:none;
}

.header-menu{
display:block;
order:2;
}

.header-logo{
order:1;
margin-left:0;
}

.header-menu{
order:2;
}
}

.header-quote {
background:#e06330;
color:#fff!important;
padding:10px 18px;
margin-left:16px;
border-radius:4px;
display:inline-block;
transition:0.3s;
}

.header-quote:hover {
background:#3a4549;
color:#fff!important;
}
/* HERO.................................................MOB */	

.hero{
width:100%;
min-height:500px;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:0 20px;
position:relative;
z-index:1;
}

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5); /* adjust darkness here */
z-index:0;
}

.hero-content{
margin:0 auto;
overflow:hidden;
padding: 30px 0;
font-family: "Montserrat", sans-serif;
position:relative;
z-index:2;
}
.hero-caption {	
	display: inline-block;
	padding:10px;
	color:#fff;
	text-align:center;
	font-size:18px;
	line-height: 26px;
	letter-spacing:1px;
	margin-bottom: 30px;
	max-width: 800px;
}
.hero-header {
	display:flex;
	align-content:center;
	justify-content:center;
}
.hero h1 {
	text-align:center;
	font-size:28px;
	font-weight:500;
	text-transform:uppercase;
	letter-spacing:1px;	
	color:#fff;
	margin:50px 0 10px;
	max-width:700px;
}
@media only screen and (min-width: 400px) {
.hero h1 {
	font-size:32px;
}
}
@media only screen and (min-width: 1000px) {
    .hero h1 {
        margin-top: 20px;
		font-size:40px;
    }
}
.hero-buttons {
display:flex;
flex-direction:column;
	align-items:center;
}

.hero-call {	
display:inline-block;
padding:10px;
background-color:#e06330;
color:#fff;
text-transform:uppercase;
text-align:center;
font-size:17px;
letter-spacing:1px;
font-weight:bold;
transition:0.5s;
cursor:pointer;
border: #fff solid thin;
}

.hero-call:hover {	
background-color:#3a4549;
transition:0.5s;
	color: #fff;
}

.hero-email {	
display:inline-block;
padding:10px;
background-color:#3a4549;
color:#fff;
text-transform:uppercase;
text-align:center;
font-size:17px;
letter-spacing:1px;
font-weight:bold;
transition:0.5s;
cursor:pointer;
margin-top:15px;
border: #fff solid thin;
}

.hero-email:hover {	
background-color:#e06330;
transition:0.5s;
	color: #fff;
}

.hero-trust {
margin-top:25px;
padding:2px 14px;
border-radius:012px;
display:inline-block;
}
.hero-trust img {
max-width: 120px;
display:inline-block;
}
.hero-trust p {
color:#fff;
font-size:16px;
line-height: 25px;
font-weight:500;
opacity:1;
letter-spacing:0.5px;  font-family: "Montserrat", sans-serif;
}
/* CONTENT.................................................MOB */	
.content{
font-family: "Montserrat", sans-serif;
color:#333333;
line-height:1.5;
max-width:800px;
margin:0 auto;
padding:60px 20px;
}

.content h2{
font-size:34px;
letter-spacing:2px;
text-transform:uppercase;
margin:0 0 20px 0;
color:#1e2f4f;
font-weight:600;
}

.content h3{
font-size:22px;
	letter-spacing:2px;
text-transform:uppercase;
margin:30px 0 12px 0;
color:#e06330;
font-weight:600;
}

.content p{
margin:0 0 18px 0;
font-size:17px;
color:#4a5568;
}

.content ul{
margin:0 0 20px 0;
padding-left:20px;
}

.content li{
margin:0 0 10px 0;
font-size:16px;
color:#4a5568;
}

.content a{
color:#e06330;
text-decoration:none;
transition:all 0.25s ease;
}

.content a:hover{
color:#154A82;
}

/* spacing tweaks */

@media (max-width:550px){
.content{
padding:40px 16px;
}

.content h2{
font-size:26px;
letter-spacing:1px;
}

.content h3{
font-size:20px;
}

.content p{
font-size:16px;
}

.content li{
font-size:15px;
}
}

.body-buttons {
display:flex;
flex-direction:column;
align-items:flex-start;
gap:15px;
margin-top:40px;
}

.body-call {
display:inline-block;
padding:10px 18px;
background-color:#e06330;
color:#fff!important;
text-transform:uppercase;
text-align:center;
font-size:16px;
letter-spacing:1px;
font-weight:bold;
transition:0.3s;
cursor:pointer;
font-family:"Montserrat",sans-serif;
text-decoration:none;
}

.body-call:hover {
background-color:#3a4549;
color:#fff;
text-decoration:none;
transform:translateY(-4px);
}

.body-email {
display:inline-block;
padding:10px 18px;
background-color:#3a4549;
color:#fff!important;
text-transform:uppercase;
text-align:center;
font-size:16px;
letter-spacing:1px;
font-weight:bold;
transition:0.3s;
cursor:pointer;
font-family:"Montserrat",sans-serif;
text-decoration:none;
}

.body-email:hover {
background-color:#e06330;
color:#fff;
text-decoration:none;
transform:translateY(-4px);
}

@media (min-width:600px){
.body-buttons {
flex-direction:row;
}
}

.body-form {
  flex: 1;
	max-width: 600px;
}

.body-form form {
  display: flex;
  flex-direction: column;margin-top: 20px;
}

.body-form label {
  margin-bottom: 5px;
  font-weight: 500;
font-family: "Montserrat", sans-serif;
}

.body-form input,
.body-form textarea {
  padding: 12px;
  border: none;
  border-bottom: 2px solid #3a4549;
  background-color: transparent;
  
  margin-bottom: 20px;
font-family: "Montserrat", sans-serif;
}

.body-form input::placeholder,
.body-form textarea::placeholder {
 color: #3a4549;
}

.body-form button {
  padding: 12px 20px;
  background-color: #e06330;
  color: #fff;
  border: none;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
font-family: "Montserrat", sans-serif;
  transition: background-color 0.3s ease;
}
.body-form button:hover {
  background-color: #3a4549;color: #fff;
}
/* reasons.................................................MOB */	
.reasons{
background:#f7f3ec;
padding:60px 20px;
font-family: "Montserrat", sans-serif;
}

.reasons h2{
text-align:center;
font-size:44px;
line-height:1.15;
margin:0 0 45px 0;
color:#3a4549;
letter-spacing:2px;
text-transform: uppercase;
font-weight: 400;
}

.reasons-grid{
max-width:1300px;
margin:0 auto;
display:grid;
grid-template-columns:repeat(4,minmax(0,1fr));
gap:28px;
}

.reason-card{
position: relative;
background:#ffffff;
border-radius:18px;
min-height:130px;
padding:24px 18px 20px 18px;
font-size:17px;
text-align:center;
color:#3a4549;
font-size:18px;
font-weight:600;
line-height:1.25;
box-shadow:0 16px 34px rgba(30,47,79,0.10);
display:flex;
flex-direction:column;
align-items:center;
justify-content:flex-start;
gap:16px; /* controls spacing between icon + text */
}

.reason-card::before{
content:"";
width:100px;
height:100px;
background-size:contain;
background-repeat:no-repeat;
background-position:center;
display:block;
}

.reason-card::after{
content:"";
position:absolute;
inset:0;
border-radius:18px;
background:radial-gradient(circle at 50% 40%, rgba(216,167,91,0.12) 0%, rgba(216,167,91,0.06) 35%, rgba(255,255,255,0) 60%);
pointer-events:none;
}

.reason-card:nth-child(1)::before{
background-image:url("../images/reasons/1.webp");
}

.reason-card:nth-child(2)::before{
background-image:url("../images/reasons/2.webp");
}

.reason-card:nth-child(3)::before{
background-image:url("../images/reasons/3.webp");
}

.reason-card:nth-child(4)::before{
background-image:url("../images/reasons/4.webp");
}




/* Tablet: 2 x 2 */
@media (max-width:900px){
.reasons-grid{
grid-template-columns:repeat(2,minmax(0,1fr));
gap:22px;
}
}

/* Mobile: 4 x 1 */
@media (max-width:550px){
.reasons-grid{
grid-template-columns:1fr;
gap:18px;
}
}

/* Optional spacing tweaks */
@media (max-width:550px){
.reasons{
padding:50px 16px;
}
.reasons h2{
font-size:28px;
margin:0 0 28px 0;
}
}


/* SERVICES.................................................MOB */	

.services {
  padding: 40px 20px;
  text-align: center;
  background-color: #fcfcfc;
	font-family: "Montserrat", sans-serif;
}

.services h2 {
text-align:center;
font-size:44px;
line-height:1.15;
margin:0 0 45px 0;
color:#3a4549;
letter-spacing:2px;
text-transform: uppercase;
font-weight: 400;
}

.services p {
  font-size: 17px;
  line-height: 30px;
  color: #010203;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Tablet: 2 columns */
@media (min-width: 576px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: 3 columns */
@media (min-width: 1350px) {
  .service-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
  color: inherit;
	font-family: "Montserrat", sans-serif;
}

.service-card:hover {
  transform: scale(1.02);
}

.service-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.service-overlay {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 20px 30px;
  box-sizing: border-box;
}

.service-overlay h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #e06330;
}

.service-overlay p {
  margin: 0;
  font-size: 14px;
  line-height: 25px;
  color: #010203;
}

/* testimonial.................................................MOB */	
.testimonial-section h2 {
text-align:center;
font-size:44px;
line-height:1.15;
margin:0 0 45px 0;
color:#fff;
letter-spacing:2px;
text-transform: uppercase;
font-weight: 400;
}
.testimonial-section p {

font-size: 17px;
line-height: 30px;
  color: #fff;
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
}

.testimonial-section {
  position: relative;
  background-color: #e06330;
  padding: 60px 20px 30px;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
}

.testimonial-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-carousel {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
  margin-top: 30px;
}

.testimonial-slide {
  flex: 0 0 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .testimonial-slide {
    flex: 0 0 48%;
  }
.testimonial-nav {
margin-top: -70px;
}
}

@media (min-width: 1024px) {
  .testimonial-slide {
    flex: 0 0 31%;
  }

}

.testimonial-card {
  position: relative;
  background: linear-gradient(to bottom, #f7f7f7 0%, #ffffff 50%);
  padding: 60px 20px 45px;
  text-align: center;
font-family: "Montserrat", sans-serif;
  box-shadow: 0 6px 6px rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  margin: 0 auto;
  max-width: 100%;
}

.testimonial-image {
  position: relative;
  left: 50%;
  top:-40px;
  transform: translateX(-50%);
  width: 85px;
  height: 85px;
  background: white;
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 1;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-card h4 {
font-family: "Montserrat", sans-serif;
	text-transform: uppercase;
  font-size: 20px;
  color: #0a2840;
  margin-bottom: 5px;
  margin-top: 0px;
  text-transform: uppercase;
}

.testimonial-date {
  display: block;
  font-size: 14px;
  color: #ba1a29;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #a61e1e;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background 0.3s;
  z-index: 2;
  font-size: 40px;
}

.testimonial-nav:hover {
  background: #fff;
  color: #ba1a29;
}

.testimonial-nav.prev {
  left: 10px;
}

.testimonial-nav.next {
  right: 10px;
}

/* body-testimonials.................................................MOB */	
.body-testimonials {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  padding: 20px 0;
	font-family: "Montserrat", sans-serif;
}

.body-testimonials .body-testimonials-item {
  background: #f7f7f7;
  border: 1px solid #e2e2e2;
  padding: 20px;
  border-radius: 6px;
}

.body-testimonials .body-testimonials-item span {
color: #e06330;
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
}

.body-testimonials .body-testimonials-stars {
  width: 120px;
  margin-bottom: 15px;
}

.body-testimonials .body-testimonials-item p {
  margin: 0;
  line-height: 1.5;
  font-family: "Open Sans", sans-serif;
}

/* 2 columns */
@media (min-width: 700px) {
  .body-testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3 columns */
@media (min-width: 1100px) {
  .body-testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* .........3 STEP PROCESS.................MOB */	

.process {
    width: 100%;
    height: auto;
    background-color: #f0f0f0;
	padding-top:30px;
	padding-bottom:40px;
}

.process-content {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding-left: 15px;
    padding-right: 15px;
    font-family: 'Montserrat', sans-serif;
}
.process h2 {
text-align:center;
  font-size:40px;
  color:#1e2f4f;
  letter-spacing:2px;
  text-transform:uppercase;
  font-weight:400;
}

.process-container {
    display: flex;
    flex-wrap: wrap; /* Ensure items wrap on small screens */
    justify-content: space-around;
    align-items: stretch;
    padding: 15px;
    gap: 20px;
    background-color: #ffffff; /* Background color for the container */
    border-radius: 8px; /* Rounded corners for the container */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow to the container */
}

.process-step {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    flex: 1 1 100%; /* Make each step full-width on small screens */
    max-width: none; /* Remove max-width constraint */
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.step-icon img {
    width: 140px; /* Increase image size */
    height: 140px; /* Increase image size */
    margin-bottom: 15px;
}

.process-step h4 {
    font-size: 22px;
	line-height:28px;
    margin: 15px 0;
    color: #666;
	letter-spacing:1px;
}

.step-number {
    font-size: 40px; /* Increase the font size of the number */
    font-weight: bold; /* Make the number bold */
    color: #262261; /* Change the color of the number */
    margin-right: 5px; /* Add some space between the number and the text */
}

.process-step p {
    font-size: 1em;
    color: #666;
    line-height: 1.5em;
	lex-grow: 1; 
}
@media only screen and (min-width: 700px) {
.process-step {
    flex: 1 1 30%; /* Make each step full-width on small screens */
    max-width: 380px; /* Remove max-width constraint */
}
}


/* .........AREAS.................MOB */	
.areas{
padding:70px 20px;
background:#fff;
font-family: "Montserrat", sans-serif;
}

.areas-content{
max-width:1300px;
margin:0 auto;
display:grid;
grid-template-columns:minmax(0,1.1fr) minmax(320px,0.9fr);
gap:40px;
align-items:center;
}

.areas-text h2{
text-align:center;
  font-size:40px;
  margin:0 0 20px 0;
  color:#1e2f4f;
  letter-spacing:2px;
  text-transform:uppercase;
  font-weight:400;
}

.areas-intro{
margin:0 0 26px 0;
font-size:18px;
line-height:1.7;
color:#4f5b6f;
max-width:760px;
}

.areas-list{
display:flex;
flex-wrap:wrap;
gap:12px;
margin:0 0 24px 0;
}

.area-item{
padding:12px 18px;
background:#ffffff;
border-radius:999px;
font-size:16px;
line-height:1.2;
font-weight:600;
color:#1e2f4f;
box-shadow:0 10px 24px rgba(30,47,79,0.2);
}

.areas-note{
margin:0;
font-size:16px;
line-height:1.7;
color:#5f6b7c;
max-width:760px;
}

.areas-map{
display:flex;
justify-content:center;
}

.map-card{
width:100%;
max-width:500px;
background:#ffffff;
border-radius:24px;
padding:20px;
box-shadow:0 18px 36px rgba(30,47,79,0.10);
overflow:hidden;
}

.map-image{
display:block;
width:100%;
height:auto;
border-radius:18px;
}

@media (max-width:980px){
.areas-content{
grid-template-columns:1fr;
gap:30px;
}

.areas-text h2{
font-size:36px;
}

.areas-intro{
font-size:17px;
}
}

@media (max-width:550px){
.areas{
padding:50px 16px;
}

.areas-text h2{
font-size:28px;
margin:0 0 14px 0;
letter-spacing:1px;
}

.areas-intro{
font-size:16px;
margin:0 0 20px 0;
}

.areas-list{
gap:10px;
margin:0 0 18px 0;
}

.area-item{
padding:10px 14px;
font-size:14px;
}

.areas-note{
font-size:15px;
}

.map-card{
padding:14px;
border-radius:18px;
}

.map-image{
border-radius:14px;
}
}


/* CONTACT.................................................MOB */	

.contact {
  background:#3a4549;
  color: #fff;
  padding: 60px 20px;
  font-family: "Montserrat", sans-serif;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
text-align:left;
  font-size:30px;
  margin:0 0 20px 0;
  letter-spacing:2px;
  text-transform:uppercase;
  font-weight:400;
}
.contact-info p {
font-size: 17px;
line-height: 30px;
}
.contact-info a {
  color: #e06330;
  text-decoration: none;
  transition: 0.5s;
}
.contact-info a:hover {
  color: #fff;
  text-decoration: none;
  transition: 0.5s;
}
.contact-form {
  flex: 1;
}
.contact-form h2 {
text-align:left;
  font-size:30px;
  margin:0 0 20px 0;
  letter-spacing:2px;
  text-transform:uppercase;
  font-weight:400;
}
.contact-form form {
  display: flex;
  flex-direction: column;margin-top: 20px;
}

.contact-form label {
  margin-bottom: 5px;
  font-weight: 500;
font-family: "Montserrat", sans-serif;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: none;
  border-bottom: 2px solid #fff;
  background-color: transparent;
  color: #fff;
  
  margin-bottom: 20px;
font-family: "Montserrat", sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
 color: #f3f3f3;
}

.contact-form button {
  padding: 12px 20px;
  background-color: #e06330;
  color: #fff;
  border: none;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
font-family: "Montserrat", sans-serif;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #fff;color: #e06330;
}

@media (min-width: 768px) {
  .contact-container {
    flex-direction: row;
    align-items: flex-start;
  }
}


/* footer.................................................MOB */	

.footer {
	width:100%;
	height:auto;
	background-color:#e06330;
	padding-top:5px;
	padding-bottom:5px;
}
.footer-content {
	max-width:1200px;
	margin:0 auto;
	overflow:hidden;
		padding-left:20px;
		padding-right:20px;
	font-family: "Montserrat", sans-serif;
}
.footer-left {
	color:#fff;
	text-align:center;
	font-size:16px;
	box-sizing:border-box;
}
.footer-right {
	color:#fff;
	text-align:center;
	font-size:16px;
	box-sizing:border-box;
}
@media only screen and (min-width: 700px) {
	.footer-left {
		width:50%;
		float:left;
	text-align:left;
}
.footer-right {
	width:50%;
		float:right;
	text-align:right;
}
}

/* BODY AREAS.................................................MOB */
.areas-wrapper {
    font-family: "Montserrat", sans-serif;
    background: #f7f9fc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e3e7ee;
    max-width: 700px;
	margin-bottom: 20px;
  }

  .areas-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
  }

  .areas-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 2rem;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .areas-grid li {
    margin: 0;
    padding: 0.25rem 0;
    border-bottom: 1px solid #e5e5e5;
    transition: color 0.2s ease;
  }

  .areas-grid li:hover {
    color: #d46a00; /* subtle roofing‑brand style highlight */
  }

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

/* FAQ.................................................MOB */	
.faq-section {
      max-width: 900px;
      margin: 0 auto 60px;
    }

    .faq-section h3 {
      font-family: "Montserrat", sans-serif;
	  text-transform: uppercase;
	  letter-spacing: 2px;
      font-size: 28px;
      color: #e06330;
      margin-bottom: 20px;
      border-bottom: 2px solid #163d77;
      padding-bottom: 5px;
    }

    .faq-item {
      border: 1px solid #ccc;
      border-radius: 5px;
      margin-bottom: 10px;
      background-color: #fff;
      overflow: hidden;
    }

    .faq-question {
      background-color: #e06330;
      color: #fff;
      padding: 15px 20px;
      font-family: "Montserrat", sans-serif;
	  text-transform: uppercase;
	  letter-spacing: 2px;
      font-size: 16px;
	  line-height: 26px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }

    .faq-question:hover {
      background-color: #3a4549;
    }

    .faq-toggle {
      font-size: 22px;
      color: #fff;
      font-weight: bold;
      transition: transform 0.3s ease;
    }

    .faq-answer {
      display: none;
      padding: 15px 20px;
      background-color: #fff;
      color: #333;
      line-height: 1.6;
	  font-family: "Open Sans", sans-serif;
    }

    .faq-item.active .faq-answer {
      display: block;
    }

    .faq-item.active .faq-toggle {
      content: "–";
      transform: rotate(180deg);
    }


/* GALLERY................................... */
.gallery{
font-family: "Nunito", sans-serif;
padding:40px 0px;
background:#ffffff;
color:#343434;
}

.gallery .gallery-inner{
max-width:1200px;
margin:0 auto;
}

.gallery .gallery-stage{
position:relative;
width:100%;
background:#333;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
aspect-ratio:16/9;
}

.gallery .gallery-stage::before{
content:none;
display:none;
}

.gallery .gallery-main-btn{
position:absolute;
top:50%;
transform:translateY(-50%);
z-index:3;
width:46px;
height:46px;
border-radius:999px;
border:0;
background:rgba(255,255,255,0.90);
color:#111;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
transition:0.2s ease;
}

.gallery .gallery-main-btn:hover{
background:rgba(255,255,255,1);
}

.gallery .gallery-main-btn:active{
transform:translateY(-50%) scale(0.98);
}

.gallery .gallery-main-btn.gallery-prev{
left:14px;
}

.gallery .gallery-main-btn.gallery-next{
right:14px;
}

.gallery .gallery-main-img{
position:absolute;
inset:0;
width:100%;
height:100%;
object-fit:contain;
cursor:pointer;
user-select:none;
-webkit-user-drag:none;
display:block;
}

.gallery .gallery-main-fade{
opacity:0;
transition:opacity 220ms ease;
}

.gallery .gallery-main-fade.gallery-show{
opacity:1;
}

.gallery .gallery-counter{
position:absolute;
left:14px;
bottom:14px;
z-index:3;
background:rgba(0,0,0,0.55);
color:#fff;
padding:6px 0;
border-radius:999px;
font-size:13px;
letter-spacing:0.5px;
}

.gallery .gallery-thumbs{
margin-top:16px;
display:flex;
gap:10px;
overflow:auto;
padding-bottom:6px;
scrollbar-width:thin;
}

/* Thumb button + image styles (GALLERY) */
.gallery .gallery-thumb-btn{
border:0;
padding:0;
background:transparent;
cursor:pointer;
flex:0 0 auto;
border-radius:8px;
outline:none;
}

.gallery .gallery-thumb{
width:92px;
height:62px;
object-fit:cover;
border-radius:8px;
display:block;
border:3px solid transparent;
transition:0.15s ease;
}

.gallery .gallery-thumb-btn:hover .gallery-thumb{
transform:translateY(-1px);
}

.gallery .gallery-thumb-btn.gallery-active .gallery-thumb{
border-color:#7da83e;
}

.gallery .gallery-hint{
text-align:center;
font-size:13px;
color:#666;
margin-top:10px;
}

/* LIGHTBOX................................... */
.gallery-lightbox{
position:fixed;
inset:0;
background:rgba(0,0,0,0.86);
z-index:10001;
display:none;
align-items:center;
justify-content:center;
padding:20px;
margin-top: 120px;
}

.gallery-lightbox.gallery-open{
display:flex;
}

.gallery-lightbox-inner{
width:100%;
max-width:1400px;
display:flex;
flex-direction:column;
gap:14px;
}

.gallery-lightbox-top{
display:flex;
align-items:center;
justify-content:space-between;
gap:12px;
}

.gallery-lightbox-title{
color:#fff;
font-size:14px;
letter-spacing:0.5px;
margin:0;
}

.gallery-lightbox-close{
border:0;
background:rgba(255,255,255,0.92);
color:#111;
border-radius:999px;
width:42px;
height:42px;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
transition:0.2s ease;
flex:0 0 auto;
}

.gallery-lightbox-close:hover{
background:rgba(255,255,255,1);
}

/* This is the popup “viewer” */
.gallery-lightbox-stage{
position:relative;
width:100%;
background:#333;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.25);
aspect-ratio:16/9;
max-height:70vh;
}

.gallery-lightbox-stage::before{
content:none;
display:none;
}

/* centred vertically + horizontally by absolute inset + object-fit */
.gallery-lightbox-img{
position:absolute;
inset:0;
width:100%;
height:100%;
object-fit:contain;
user-select:none;
-webkit-user-drag:none;
display:block;
}

.gallery-lightbox-btn{
position:absolute;
top:50%;
transform:translateY(-50%);
z-index:3;
width:52px;
height:52px;
border-radius:999px;
border:0;
background:rgba(255,255,255,0.92);
color:#111;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
transition:0.2s ease;
}

.gallery-lightbox-btn:hover{
background:rgba(255,255,255,1);
}

.gallery-lightbox-btn.gallery-prev{
left:14px;
}

.gallery-lightbox-btn.gallery-next{
right:14px;
}

.gallery-lightbox-counter{
position:absolute;
left:14px;
bottom:14px;
z-index:3;
background:rgba(0,0,0,0.55);
color:#fff;
padding:6px 10px;
border-radius:999px;
font-size:13px;
letter-spacing:0.5px;
}

/* Thumbnails (LIGHTBOX) */
.gallery-lightbox-thumbs{
display:flex;
gap:10px;
overflow:auto;
padding-bottom:6px;
scrollbar-width:thin;
}

/* Thumb button + image styles (LIGHTBOX) */
.gallery-lightbox .gallery-thumb-btn{
border:0;
padding:0;
background:transparent;
cursor:pointer;
flex:0 0 auto;
border-radius:8px;
outline:none;
}

.gallery-lightbox .gallery-thumb{
width:92px;
height:62px;
object-fit:cover;
border-radius:8px;
display:block;
border:3px solid transparent;
transition:0.15s ease;
}

.gallery-lightbox .gallery-thumb-btn:hover .gallery-thumb{
transform:translateY(-1px);
}

.gallery-lightbox .gallery-thumb-btn.gallery-active .gallery-thumb{
border-color:#7da83e;
}

@media (max-width:900px){
.gallery .gallery-stage{
aspect-ratio:3/2;
}
.gallery-lightbox-stage{
aspect-ratio:3/2;
max-height:72vh;
}
.gallery .gallery-thumb{
width:84px;
height:58px;
}
.gallery-lightbox .gallery-thumb{
width:84px;
height:58px;
}
}

@media (max-width:650px){
.gallery{
padding:50px 0;
}
.gallery .gallery-main-btn{
width:42px;
height:42px;
}
.gallery-lightbox-btn{
width:46px;
height:46px;
}
.gallery .gallery-thumb{
width:78px;
height:54px;
}
.gallery-lightbox .gallery-thumb{
width:78px;
height:54px;
}
}



/* QUOTE POP UP................................................. */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100000;
}

.popup-form {
background: #fff;
padding: 20px 10px;
border-radius: 8px;
max-width: 650px;
width: 90%;
position: relative;
box-shadow: 0 0 25px rgba(0,0,0,0.3);
text-align: center;
font-family: "Montserrat", sans-serif;
max-height: 98vh;
overflow-y: auto;
}

.popup-logo {
  max-width: 120px;
	margin-bottom: -10px;
}

.popup-header h2 {
  color: #3a4549;
  font-size: 32px;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
	font-family: "Montserrat", sans-serif;
}

.popup-header p {
  font-size: 14px;
  color: #555;
  background: #f2f2f2;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 20px;
	font-family: "Montserrat", sans-serif;
}

.popup-form input,
.popup-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  font-size: 15px;
  border-radius: 5px;
	font-family: "Montserrat", sans-serif;
}

.popup-form button[type="submit"] {
  background: #e06330;
  color: #fff;
  padding: 12px;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
  transition: background 0.3s;
}

.popup-form button[type="submit"]:hover {
  background: #3a4549;
	color: #fff;
}

.popup-close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 32px;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}


.quote-btn {
position:fixed;
bottom:20px;
right:20px;
width:85px;
height:85px;
border-radius:50%;
background:#e06330;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
font-family:"Montserrat",sans-serif;
font-size:14px;
font-weight:bold;
text-transform:uppercase;
text-decoration:none;
box-shadow:0 4px 15px rgba(0,0,0,0.3);
z-index:9999;
transition:0.3s;
}

.quote-btn:hover {
background:#3a4549;
	color: #fff;
transform:scale(1.05);
}

@media (min-width:801px) {
.quote-btn {
display:none;
}
}

/* MOBILE QUOTE BUTTON.................................................MOB */	
.mobile-quote-btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #e06330;
  color: #fff;
font-family:"Montserrat",sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding: 12px 0;
  z-index: 9999;
  text-decoration: none;
  font-size: 20px;
}

/* Show only on small screens */
@media (max-width: 767px) {
  .mobile-quote-btn {
    display: block;
  }
}
