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

body{
font-family:Arial,sans-serif;
background:#fff;
color:#111;
line-height:1.6;
overflow-x:hidden;
}

.container{
width:92%;
max-width:1180px;
margin:auto;
}

.header{
position:sticky;
top:0;
background:rgba(250,250,250,0.96);
backdrop-filter:blur(10px);
z-index:999;
border-bottom:1px solid rgba(0,0,0,0.06);
}

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

.logo{
height:44px;
}

.nav-buttons{
display:flex;
gap:10px;
}

.text-btn,
.primary-btn{
text-decoration:none;
font-weight:bold;
border-radius:999px;
display:inline-block;
transition:0.25s;
}

.text-btn{
background:#0077ff;
color:#fff;
padding:10px 16px;
box-shadow:0 8px 20px rgba(13,110,253,0.2);
}

.primary-btn{
background:#0077ff;
color:#fff;
padding:18px 26px;
}

.primary-btn:hover,
.text-btn:hover{
transform:translateY(-2px);
}

.mobile-only{
display:none;
}

.hero{
position:relative;
min-height:100vh;
background:url('assets/images/hero.jpg') center top/cover no-repeat;
display:flex;
align-items:center;
padding:120px 0 80px;
}

.overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,0.58);
}

.hero-content{
position:relative;
z-index:2;
color:#fff;
max-width:760px;
}

.tag{
display:inline-block;
background:rgba(255,255,255,0.14);
padding:8px 14px;
border-radius:999px;
margin-bottom:24px;
font-size:0.95rem;
}

.hero h1{
font-size:4.4rem;
line-height:1;
margin-bottom:22px;
max-width:700px;
}

.hero-copy{
font-size:1.15rem;
margin-bottom:38px;
max-width:680px;
}

.hero-checker{
background:rgba(255,255,255,0.14);
backdrop-filter:blur(12px);
padding:34px;
border-radius:26px;
border:1px solid rgba(255,255,255,0.12);
max-width:760px;
}

.hero-checker h2{
font-size:2rem;
margin-bottom:10px;
}

.postcode-form{
display:flex;
gap:12px;
margin-top:26px;
}

.postcode-form input{
flex:1;
padding:20px;
border-radius:14px;
border:none;
font-size:1rem;
}

.postcode-form button{
padding:20px 24px;
border:none;
background:#0077ff;
color:#fff;
font-weight:bold;
border-radius:14px;
cursor:pointer;
font-size:1rem;
}

.mini-trust{
margin-top:18px;
display:flex;
flex-wrap:wrap;
gap:12px;
font-size:0.95rem;
opacity:0.92;
}

.mini-trust span{
white-space:nowrap;
}

.mini-trust strong{
color:#4da3ff;
margin-right:6px;
font-size:0.9rem;
}

#postcodeResult{
margin-top:22px;
}

.result{
padding:26px;
border-radius:18px;
background:#fff;
color:#111;
animation:fadeIn 0.35s ease;
}

.result h3{
margin-bottom:12px;
}

.success{
background:#eef8f0;
}

.neutral{
background:#eef5ff;
}

@keyframes fadeIn{

from{
opacity:0;
transform:translateY(10px);
}

to{
opacity:1;
transform:translateY(0);
}

}

.about,
.services,
.reviews,
.areas,
.faq{
padding:100px 0;
}

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

.about h2,
.services h2,
.reviews h2,
.areas h2,
.faq h2{
font-size:2.6rem;
margin-bottom:20px;
}

.about-points{
display:grid;
grid-template-columns:1fr 1fr;
gap:14px;
margin-top:24px;
font-weight:bold;
}

.about-image{
width:100%;
border-radius:22px;
display:block;
}

.services{
background:#f7f9fc;
}

.gallery{
display:grid;
grid-template-columns:1fr 1fr;
gap:22px;
}

.gallery img{
width:100%;
border-radius:22px;
display:block;
height:100%;
object-fit:cover;
}

.reviews{
background:#111827;
color:#fff;
text-align:center;
}

.reviews-sub{
opacity:0.82;
margin-bottom:42px;
}

.review-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:24px;
margin:38px 0;
}

.review-card{
background:#1f2937;
padding:30px;
border-radius:20px;
text-align:left;
}

.review-card h3{
margin-bottom:10px;
}

.stars{
margin-bottom:14px;
}

.areas{
background:#f7f9fc;
text-align:center;
}

.areas p{
max-width:900px;
margin:auto;
font-size:1.08rem;
line-height:1.9;
}

.faq-item{
margin-bottom:34px;
max-width:850px;
}

.faq-item h3{
margin-bottom:8px;
}

footer{
background:#0f172a;
color:#fff;
padding:34px 0;
}

.footer{
display:flex;
justify-content:space-between;
gap:20px;
flex-wrap:wrap;
}

@media(max-width:768px){

.mobile-only{
display:inline-block;
}

.desktop-only{
display:none;
}

.hero{
padding-top:110px;
min-height:auto;
}

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

.hero-copy{
font-size:1.05rem;
}

.hero-checker{
padding:24px;
}

.hero-checker h2{
font-size:1.6rem;
}

.postcode-form{
flex-direction:column;
}

.primary-btn{
width:100%;
text-align:center;
}

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

.about-points{
grid-template-columns:1fr;
}

.about,
.services,
.reviews,
.areas,
.faq{
padding:75px 0;
}

.logo{
height:40px;
}

}