:root {
  --primary: #0486c4;
  --secondary: #015170;
  --bg: #f4f8fb;
}

/* Global */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--secondary);
  background: white;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  line-height:1.1;
}

.brand{
  background: rgba(255,255,255,0.9);
  padding:6px 10px;
  border-radius:6px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}


.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-main {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: white;
}

.brand-sub {
  font-size: 0.8rem;
  opacity: 0.9;
   color: var(--secondary);
  /*color: white;*/
}


.site-header.scrolled .brand-main,
.site-header.scrolled .brand-sub {
  color: var(--secondary);
}

.logo{
  height:70px;
  width:auto;
  display:block;
}

#services{
  scroll-margin-top:100px;
}

.brand-text {
  font-weight: 700;
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  position:relative;
}


.site-nav a {
  text-decoration: none;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.95rem;
   position: relative;
}


.site-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-3px;
  width:0;
  height:2px;
  background:#0aa3ff;
  transition:width .3s ease;
}

.site-nav a:hover::after{
  width:100%;
}

.site-nav a.active::after{
  width:100%;
}
.site-header{
  background:rgba(1,81,112,0.15);
  backdrop-filter: blur(4px);
}

.site-nav a:hover{
  color:#0aa3ff;
}

.btn-call{
  /*background:#0486c4;
  color:white;*/
  background: var(--primary);
  color: white !important;
  padding: 8px 14px;
  border-radius: 6px;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;  
}

/* Hero */
.hero{
  position:relative;
  min-height:65vh;

  background:url("assets/hero.jpg") right center / cover no-repeat;

  display:flex;
  align-items:center;
  background-position:80% center;
}

.hero-left{
  position:relative;
  z-index:2;
}

.hero-layout{
  position:relative;
  z-index:2;
}

.hero-content{
  position: relative;
  padding:120px 0 60px;
}

.hero-rating{
  display:flex;
  align-items:center;
  gap:8px;
  margin:12px 0;
  font-weight:600;
}

.hero h1 span{
  color:#0aa3ff;
}

.hero h1{
  text-shadow:0 4px 18px rgba(0,0,0,0.4);
}

.hero p{
  text-shadow:0 2px 10px rgba(0,0,0,0.35);
}

.hero p{
  color:#dcecf6;
}
.stars{
  color:#FFD700;
  font-size:1rem;
}
.rating-text{
  color:#e6f4ff;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: 2rem;
}

.hero p {
  margin: 0 0 18px;
  max-width: 500px;
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 8px;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-ghost {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: white;
}

/* Sections */
.section {
  padding: 50px 0;
  scroll-margin-top:100px;
}

.section h2 {
  text-align: center;
  margin: 0 0 15px;
}

.section-intro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 30px;
}

/* Services */
.trust-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}
/* floating grid*/
.trust-card{
  background:white;
  padding:28px;
  border-radius:10px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}
/*services styling */
.services-list{
  list-style:none;
  padding:0;
  margin:20px 0;
}

.services-list li{
  margin-bottom:10px;
  font-weight:600;
  padding-left:20px;
  position:relative;
}

.services-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#0486c4;
}

/*work gallery */
.work-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}

.work-grid img{
  width:100%;
  border-radius:6px;
  object-fit:cover;
}

.review{
  margin-bottom:16px;
}

.review-slider{
position:relative;
min-height:120px;
}

.review-slide{
display:none;
}

.review-slide.active{
display:block;
}

.review-controls{
margin-top:10px;
display:flex;
gap:10px;
}

.review-controls button{
background:#eee;
border:none;
padding:6px 10px;
cursor:pointer;
border-radius:4px;
font-size:18px;
}

.review-controls button:hover{
background:#ddd;
}

.review-source{
display:block;
font-size:0.85rem;
color:#777;
margin-top:6px;
}

.reviews-link{
display:block;
margin-top:10px;
font-weight:600;
text-decoration:none;
}




.stars{
  color:#FFD700;
  font-size:0.9rem;
  margin-bottom:6px;
}

/* Areas list */
.areas-list {
  list-style: none;
  padding: 0;
  text-align: center;
}

.areas-list li {
  margin: 4px 0;
}

/* Contact */
.contact {
  background: var(--secondary);
  color: white;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-submit {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
}


/* Footer */

.site-footer {
  background: #013850;
  color: white;
  text-align: center;
  padding: 16px;
  font-size: 0.9rem;
}



.about-info{
  border-left:1px solid rgba(255,255,255,0.15);
  padding-left:40px;
}

.about-info p{
  max-width:480px;
  line-height:1.6;
}

.about-contact h2{
  margin-top:0;
  margin-bottom:20px;
  background:#013850;
  padding:50px 0 20px;
}
.contact-item{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}

.phone a{
  font-size:1.6rem;
  font-weight:700;
}
.phone_b{
  font-size:1.0rem;
  font-weight:700;
}
/* Responsive */
@media (max-width:768px){

  .hero{
  min-height:80vh;
  background-position:85% center;
}

.hero-left{
  text-align:center;
}

  .site-nav{
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding-top: 90px;
    transition: right 0.3s ease;
    box-shadow: -3px 0 12px rgba(0,0,0,0.2);
    gap: 0;
  }

  .site-nav.open{
    right: 0;
  }

 

  .site-nav a{
    color: var(--secondary);
    padding: 16px 25px;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
  }

  .hamburger{
    display:block;
    z-index:1100;
     transition: color 0.25s ease;
  }

  .site-nav.open ~ .hamburger {
  color: var(--secondary);
}
   .brand-main {
    font-size: 1.1rem;
  }

  .brand-sub {
    font-size: 0.7rem;
  }

.trust-grid{
  grid-template-columns:1fr;
}
.trust-card{
  margin-bottom:20px;
}

}

/* Sticky mobile Call Now button */
.mobile-call-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  font-size: 1.05rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform .2s;
}

.mobile-call-btn:hover {
  transform: scale(1.08);
}

/* Only show on phones/tablets */
@media (max-width: 768px) {
  .mobile-call-btn { display: inline-block; }
   .brand-main {
    font-size: 1.1rem;
  }

  .brand-sub {
    font-size: 0.7rem;
  }
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  padding: 10px 0;
  transition: background 0.3s, box-shadow 0.3s;
  z-index: 1000;
}


/* Menu color when header is over hero */
.site-header .site-nav a {
  color: white;
}

.site-nav.open a{
    color: var(--secondary);
  }

/* After scroll */
.site-header.scrolled {
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.site-header.scrolled .site-nav a {
  color: var(--secondary);
}

.hamburger {
 color: white;
}

.site-header.scrolled .hamburger {
  color: var(--secondary);
}

.site-nav.open ~ .hamburger {
  color: var(--secondary);
  position: fixed;
  right: 20px;
  top: 18px;
}


/* Emergency banner */
.emergency-banner{
  background:#0486c4;
  color:white;
  text-align:center;
  padding:14px;
  font-weight:600;
}

/* Trust badges */

/* Reviews */
.reviews{
  background:#f4f8fb;
}

.review-grid{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  justify-content:center;
}

.review{
  background:white;
  padding:20px;
  border-radius:8px;
  width:30%;
  min-width:250px;
  box-shadow:0 3px 10px rgba(0,0,0,0.08);
}

/* Map section */
.map iframe{
  border-radius:8px;
}

/* Map section */

.about-contact{
  background:#013850;
  color:white;
  padding:60px 0;  
  border-top:1px solid rgba(255,255,255,0.15);
  padding:50px 0 20px;
   background:linear-gradient(
    to bottom,
    #013850,
    #012f43
  );
}

.about-contact a{
  color:#0aa3ff;
  text-decoration:none;
}

.about-contact a:hover{
  text-decoration:underline;
}

.about-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  align-items:start;
}

.about-info p,
.contact-info p{
  margin-bottom:1px;
}
.about-info{
  border-left:1px solid rgba(255,255,255,0.2);
  padding-left:40px;
}

.contact-info h2,
.about-info h2{
  color:var(--secondary);
}

.about-contact h2,
.about-contact h3{
  color:white;
}
.phone a{
  font-size:1.5rem;
  font-weight:700;
  color:#2ea3ff;
}
.about-info p{
  max-width:500px;
}

.phone a{
  font-size:1.4rem;
  font-weight:700;
  text-decoration:none;
  color:#0486c4;
}

.footer{
align-items:start;
}
.brand-name{
font-family:'Bebas Neue',sans-serif;
font-size:40px;
letter-spacing:2px;
color:#2ea3ff;
}
.subtitle{
font-size:14px;
margin-bottom:20px;
color:#aaa;
}
.contact a{
color:#fff;
text-decoration:none;
display:block;
margin-bottom:8px;
}
.services h4{
font-weight:600;
margin-bottom:10px;
}
.services ul{
padding-left:18px;
margin:0;
}
.services li{
margin-bottom:6px;
}
.phone{
font-family:'Bebas Neue',sans-serif;
font-size:36px;
color:#2ea3ff;
margin-top:10px;
}
.areas{
margin-top:20px;
font-size:14px;
color:#ccc;
}
.license{
margin-top:25px;
font-size:12px;
color:#777;
}

/* Modern footer */

.site-footer{
  background:#013850;
  color:white;  
  padding:20px 0 10px;
}

.footer-grid{
  display:flex;
  flex-wrap:wrap;
  gap:40px;
  justify-content:space-between;
}

.footer-brand h3{
  font-size:1.5rem;
  margin-bottom:5px;
}

.footer-phone a{
  font-size:1.4rem;
  font-weight:bold;
  color:white;
  text-decoration:none;
}

.footer-services ul{
  list-style:none;
  padding:0;
}

.footer-services li{
  margin-bottom:6px;
}

.footer-area p{
  margin:6px 0;
}

.footer-licence{
  font-size:0.85rem;
  opacity:0.8;
}

.footer-bottom{
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.1);
  margin-top:30px;
  padding-top:15px;
  font-size:0.85rem;
}

.icon{
  display:inline-flex;
  align-items:center;
}


.icon svg{
  width:20px;
  height:20px;
  fill:#2ea3ff;
  margin-right:8px;
  vertical-align:middle;
}
.contact-item{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
}
.contact-item a:hover{
  color:#2ea3ff;
}


/* mobile */
@media(max-width:768px){

.brand-tagline{
  display:none;
}

.logo{
  height:40px;
}
 .hero{
    min-height:80vh;  
  background-position:50% center;
  }

  
    

.hero-left{
  max-width:100%;
  text-align:center;
  backdrop-filter: blur(2px);
}

.hero-buttons{
  justify-content:center;
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:center;
}

  .hero-content{
  padding:100px 0 50px;
}

.site-header{
    padding:6px 0;
  }

  .header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.gallery-grid img{
  width:100%;
}

.services-layout{
  flex-direction:column;
}

.services-gallery{
  grid-template-columns:1fr;
}

.review{
  width:100%;
}

.footer-grid{
  flex-direction:column;
  text-align:center;
}

.about-grid{
  grid-template-columns:1fr;
}

.about-info{
  border-left:none;
  padding-left:0;
}

.hero .overlay{
  background:
  radial-gradient(
    circle at 30% center,
    rgba(1,81,112,0.85),
    rgba(1,81,112,0.55),
    rgba(1,81,112,0.2),
    rgba(1,81,112,0)
  );
}


}

@media (max-width:480px){

.hero{
  min-height:70vh;  
  background-position:50% center;
}

.hero-left{
  text-align:center;
  margin:0 auto;
}
.hero .overlay{
  background:
  radial-gradient(
    circle at 30% center,
    rgba(1,81,112,0.85),
    rgba(1,81,112,0.55),
    rgba(1,81,112,0.2),
    rgba(1,81,112,0)
  );
}

.hero h1{
  font-size:1.7rem;
}

.hero-content{
  padding:80px 0 40px;
}

}



