/* ==========================================================
HOUSE CLEARANCE DONCASTER
STYLE SHEET
Version 1.0

Built for:

✓ Performance
✓ Core Web Vitals
✓ Mobile First
✓ SEO
✓ Accessibility

==========================================================*/



/* ==========================================================
01 RESET
==========================================================*/

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;

}

body{

    min-height:100vh;

}

img{

    display:block;
    max-width:100%;

}

picture{

    display:block;

}

button,
input,
textarea,
select{

    font:inherit;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}



/* ==========================================================
02 ROOT VARIABLES
==========================================================*/

:root{

    /* Brand */

    --primary:#146C43;
    --primary-dark:#0D5635;
    --primary-light:#E8F5EC;

    /* Accent */

    --accent:#38B000;

    /* Background */

    --white:#FFFFFF;
    --light:#F8FAFC;
    --off-white:#FCFCFC;

    /* Text */

    --dark:#1A1A1A;
    --grey:#666666;
    --light-grey:#94A3B8;

    /* Borders */

    --border:#E5E7EB;

    /* Shadows */

    --shadow-small:0 4px 12px rgba(0,0,0,.06);

    --shadow-medium:0 10px 30px rgba(0,0,0,.08);

    --shadow-large:0 20px 60px rgba(0,0,0,.12);

    /* Radius */

    --radius-small:10px;
    --radius-medium:18px;
    --radius-large:30px;

    /* Transition */

    --transition:.30s ease;

    /* Container */

    --container:1240px;

}



/* ==========================================================
03 TYPOGRAPHY
==========================================================*/

body{

    font-family:'Inter',sans-serif;

    font-size:18px;

    line-height:1.7;

    color:var(--grey);

    background:var(--white);

    overflow-x:hidden;

    text-rendering:optimizeLegibility;

}

h1,
h2,
h3,
h4,
h5,
h6{

    color:var(--dark);

    line-height:1.15;

    font-weight:700;

    margin-bottom:20px;

}

h1{

    font-size:58px;

}

h2{

    font-size:42px;

}

h3{

    font-size:28px;

}

h4{

    font-size:22px;

}

p{

    margin-bottom:20px;

}

strong{

    color:var(--dark);

}

a{

    color:var(--primary);

    transition:var(--transition);

}

a:hover{

    color:var(--primary-dark);

}



/* ==========================================================
04 LAYOUT
==========================================================*/

.container{

    width:min(1240px,92%);
    margin:auto;

}

section{

    padding:100px 0;

    position:relative;

}

.section-title{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.section-title h2{

    margin-bottom:18px;

}

.section-title p{

    color:var(--grey);

}

.section-tag{

    display:inline-block;

    background:var(--primary-light);

    color:var(--primary);

    padding:10px 18px;

    border-radius:999px;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:25px;

    text-transform:uppercase;

}



/* ==========================================================
05 GRID SYSTEM
==========================================================*/

.grid-2{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:60px;

}

.grid-3{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;

}

.grid-4{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}



/* ==========================================================
06 BUTTONS
==========================================================*/

.btn-primary{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    background:var(--primary);

    color:#fff;

    padding:18px 36px;

    border-radius:999px;

    font-weight:700;

    transition:var(--transition);

    box-shadow:var(--shadow-medium);

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

    color:#fff;

}

.btn-secondary{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    border:2px solid var(--primary);

    color:var(--primary);

    padding:18px 36px;

    border-radius:999px;

    font-weight:700;

    transition:var(--transition);

}

.btn-secondary:hover{

    background:var(--primary);

    color:#fff;

}

.full-width{

    width:100%;

}



/* ==========================================================
07 CARDS
==========================================================*/

.service-card,
.feature-card,
.review-card,
.step-card,
.area-card,
.price-box{

    background:#fff;

    border-radius:24px;

    padding:40px;

    box-shadow:var(--shadow-small);

    transition:var(--transition);

}

.service-card:hover,
.feature-card:hover,
.review-card:hover,
.step-card:hover,
.area-card:hover,
.price-box:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-large);

}



/* ==========================================================
08 IMAGES
==========================================================*/

img{

    border-radius:18px;

}



/* ==========================================================
09 SPACING
==========================================================*/

.mb-20{

    margin-bottom:20px;

}

.mb-40{

    margin-bottom:40px;

}

.mb-60{

    margin-bottom:60px;

}

.mt-40{

    margin-top:40px;

}

.mt-60{

    margin-top:60px;

}



/* ==========================================================
10 UTILITIES
==========================================================*/

.text-center{

    text-align:center;

}

.text-left{

    text-align:left;

}

.hidden{

    display:none;

}

.shadow{

    box-shadow:var(--shadow-large);

}

.rounded{

    border-radius:30px;

}

/* ==========================================================
11 HEADER
==========================================================*/

.site-header{

    position:sticky;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(14px);
    border-bottom:1px solid var(--border);

}

.site-header .container{

    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:90px;

}

.logo img{

    width:152px;
    height:auto;

}

.main-nav ul{

    display:flex;
    align-items:center;
    gap:20px;

}

.main-nav a{

    color:var(--dark);
    font-weight:600;
    position:relative;
    transition:var(--transition);
    font-size: 0.75em;

}

.main-nav a:hover{

    color:var(--primary);

}

.main-nav a::after{

    content:"";
    position:absolute;
    bottom:-8px;
    left:0;
    width:0;
    height:3px;
    background:var(--primary);
    transition:.3s;

}

.main-nav a:hover::after{

    width:100%;

}

.main-nav .active{

    color:var(--primary);

}

.main-nav .active::after{

    width:100%;

}

.header-contact{

    display:flex;
    align-items:center;
    gap:24px;

}

.phone{

    display:flex;
    flex-direction:column;
    text-align:right;

}

.phone span{

    font-size:13px;
    color:var(--grey);

}

.phone a{

    font-size:24px;
    font-weight:700;
    color:var(--dark);

}

.mobile-menu-toggle{

    display:none;
    background:none;
    border:none;
    cursor:pointer;
    font-size:34px;

}

.mobile-nav{

    display:none;

}



/* ==========================================================
12 HERO
==========================================================*/

.hero{

    position:relative;
    overflow:hidden;
    padding:130px 0;
    background:
    linear-gradient(
    135deg,
    rgba(20,108,67,.05),
    rgba(56,176,0,.03)

    );

}

.hero::before{

    content:"";
    position:absolute;
    width:700px;
    height:700px;
    border-radius:50%;
    background:
    rgba(20,108,67,.04);
    top:-250px;
    right:-250px;

}

.hero-grid{

    display:grid;
    grid-template-columns:
    1.2fr
    .8fr;
    gap:70px;
    align-items:center;

}

.hero-content{

    position:relative;
    z-index:2;

}

.hero-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 22px;
    background:#E8F5EC;
    border-radius:999px;
    color:var(--primary);
    font-weight:700;
    margin-bottom:35px;

}

.hero h1{

    max-width:700px;
    margin-bottom:25px;

}

.hero-intro{

    font-size:21px;
    max-width:650px;
    margin-bottom:40px;

}

.hero-highlights{

    display:grid;
    grid-template-columns:
    repeat(2,1fr);
    gap:18px;
    margin-bottom:45px;

}

.highlight{

    display:flex;
    align-items:center;
    gap:12px;
    background:#fff;
    padding:16px 22px;
    border-radius:14px;
    box-shadow:var(--shadow-small);
    font-weight:600;

}

.hero-buttons{

    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:40px;

}

.service-area{

    color:var(--grey);
    font-size:16px;

}



/* ==========================================================
13 HERO QUOTE FORM
==========================================================*/

.hero-form{

    position:relative;

}

.quote-card{

    background:#fff;
    border-radius:28px;
    padding:45px;
    box-shadow:var(--shadow-large);

}

.quote-card h2{

    font-size:34px;

}

.quote-card input,
.quote-card select,
.quote-card textarea{

    width:100%;
    margin-bottom:18px;
    padding:18px;
    border-radius:14px;
    border:1px solid var(--border);
    background:#fff;
    transition:.25s;

}

.quote-card input:focus,
.quote-card textarea:focus,
.quote-card select:focus{

    border-color:var(--primary);
    outline:none;
    box-shadow:
    0 0 0 4px rgba(20,108,67,.12);

}

.quote-card textarea{

    resize:vertical;
    min-height:140px;

}

.quote-card button{

    margin-top:10px;

}



/* ==========================================================
14 SIMPLE ANIMATIONS
==========================================================*/

.service-card,
.feature-card,
.step-card,
.review-card,
.area-card,
.price-box,
.quote-card{

    transition:
    transform .35s ease,
    box-shadow .35s ease;

}

.service-card:hover,
.feature-card:hover,
.step-card:hover,
.review-card:hover,
.area-card:hover,
.price-box:hover,
.quote-card:hover{

    transform:translateY(-8px);

    box-shadow:

    0 25px 60px rgba(0,0,0,.12);

}

/* ==========================================================
15 SERVICES
==========================================================*/

.services{

    background:#ffffff;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.service-card{

    padding:45px;

    border-radius:24px;

    background:#fff;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:6px;
    height:100%;

    background:var(--primary);

    transform:scaleY(0);

    transform-origin:top;

    transition:.35s;

}

.service-card:hover::before{

    transform:scaleY(1);

}

.service-card img{

    width:70px;

    margin-bottom:25px;

}

.service-card h3{

    margin-bottom:18px;

}

.service-card p{

    margin-bottom:25px;

}

.service-card a{

    font-weight:700;

    color:var(--primary);

}

.service-card:hover{

    transform:translateY(-10px);

}



/* ==========================================================
16 WHY CHOOSE US
==========================================================*/

.why-us{

    background:var(--light);

}

.features-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.feature-card{

    text-align:center;

    padding:45px;

}

.feature-icon{

    width:90px;
    height:90px;

    margin:auto auto 30px;

    border-radius:50%;

    display:flex;

    justify-content:center;
    align-items:center;

    background:var(--primary-light);

    color:var(--primary);

    font-size:36px;

    font-weight:bold;

}

.feature-card h3{

    margin-bottom:18px;

}



/* ==========================================================
17 HOW IT WORKS
==========================================================*/

.how-it-works{

    background:#fff;

}

.steps-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}

.step-card{

    text-align:center;

    position:relative;

    padding-top:65px;

}

.step-number{

    position:absolute;

    top:-25px;
    left:50%;

    transform:translateX(-50%);

    width:55px;
    height:55px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;
    align-items:center;

    font-weight:700;

    font-size:18px;

}

.step-icon{

    font-size:48px;

    margin-bottom:25px;

}



/* ==========================================================
18 PRICING
==========================================================*/

.pricing{

    background:var(--light);

}

.pricing-table{

    overflow-x:auto;

    margin-bottom:60px;

}

.pricing-table table{

    width:100%;

    border-collapse:collapse;

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow-small);

}

.pricing-table th{

    background:var(--primary);

    color:#fff;

    padding:24px;

    text-align:left;

}

.pricing-table td{

    padding:22px;

    border-bottom:1px solid var(--border);

}

.pricing-table tr:hover{

    background:#f9fafb;

}

.pricing-info{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.price-box ul{

    margin-top:20px;

}

.price-box li{

    padding:10px 0;

}



/* ==========================================================
19 AREAS
==========================================================*/

.areas-covered{

    background:#fff;

}

.areas-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

    margin-bottom:60px;

}

.area-card{

    text-align:center;

    padding:35px;

    transition:.3s;

}

.area-card:hover{

    background:var(--primary);

    color:#fff;

}

.area-card:hover h3{

    color:#fff;

}

.area-card p{

    margin-top:10px;

    color:inherit;

}

.coverage-box{

    background:linear-gradient(135deg,#146C43,#0D5635);

    color:#fff;

    text-align:center;

    padding:70px;

    border-radius:28px;

}

.coverage-box h3{

    color:#fff;

    font-size:38px;

}

.coverage-box p{

    max-width:650px;

    margin:25px auto 35px;

}

.coverage-box .btn-primary{

    background:#fff;

    color:var(--primary);

}

/* ==========================================================
20 REVIEWS
==========================================================*/

.reviews{

    background:var(--light);

}

.reviews-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

}

.review-card{

    position:relative;

}

.review-card::before{

    content:"★★★★★";

    color:#f5b301;

    display:block;

    font-size:22px;

    letter-spacing:4px;

    margin-bottom:20px;

}

.review-card p{

    font-style:italic;

    margin-bottom:30px;

}

.review-author{

    border-top:1px solid var(--border);

    padding-top:20px;

}

.review-author strong{

    display:block;

    margin-bottom:6px;

}

.review-author span{

    color:var(--light-grey);

    font-size:15px;

}



/* ==========================================================
21 FAQ
==========================================================*/

.faq{

    background:#fff;

}

.faq-wrapper{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:#fff;

    margin-bottom:18px;

    border-radius:18px;

    padding:30px;

    border:1px solid var(--border);

    transition:.3s;

}

.faq-item:hover{

    border-color:var(--primary);

    box-shadow:var(--shadow-small);

}

.faq-item h3{

    margin-bottom:16px;

    color:var(--dark);

}

.faq-item p{

    margin-bottom:0;

}



/* ==========================================================
22 FINAL CTA
==========================================================*/

.final-cta{

    position:relative;

    overflow:hidden;

    background:

    linear-gradient(

    135deg,

    #146C43,

    #0D5635

    );

    color:#fff;

}

.final-cta::before{

    content:"";

    position:absolute;

    width:600px;
    height:600px;

    right:-200px;
    top:-200px;

    border-radius:50%;

    background:

    rgba(255,255,255,.05);

}

.cta-content{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

    text-align:center;

}

.final-cta h2{

    color:#fff;

    font-size:48px;

}

.final-cta p{

    color:rgba(255,255,255,.9);

    font-size:20px;

    margin-bottom:45px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:50px;

}

.final-cta .btn-primary{

    background:#fff;

    color:var(--primary);

}

.final-cta .btn-primary:hover{

    background:#f3f3f3;

}

.final-cta .btn-secondary{

    border:2px solid #fff;

    color:#fff;

}

.final-cta .btn-secondary:hover{

    background:#fff;

    color:var(--primary);

}

.cta-features{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

    font-weight:600;

}



/* ==========================================================
23 FOOTER
==========================================================*/

.site-footer{

    background:#111827;

    color:#cbd5e1;

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:

    2fr
    1fr
    1fr
    1fr;

    gap:50px;

    margin-bottom:60px;

}

.site-footer h3{

    color:#fff;

    margin-bottom:25px;

}

.site-footer p{

    color:#cbd5e1;

}

.site-footer ul li{

    margin-bottom:14px;

}

.site-footer a{

    color:#cbd5e1;

    transition:.25s;

}

.site-footer a:hover{

    color:#fff;

    padding-left:6px;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.1);

    padding-top:30px;

    text-align:center;

    font-size:15px;

}



/* ==========================================================
24 MOBILE NAVIGATION
==========================================================*/

/*.mobile-nav{

    display:none;

    background:#fff;

    border-top:1px solid var(--border);

}

.mobile-nav ul{

    display:flex;

    flex-direction:column;

}

.mobile-nav li{

    border-bottom:1px solid var(--border);

}

.mobile-nav a{

    display:block;
    padding:18px 20px;
    color:var(--dark);
    font-weight:600;

}*/

.mobile-nav{
    display:none;
    background:#fff;
    border-top:1px solid var(--border);
}

.mobile-nav.active{
    display:block;
}

.mobile-nav ul{
    display:flex;
    flex-direction:column;
}

.mobile-nav li{
    border-bottom:1px solid var(--border);
}

.mobile-nav a{
    display:block;
    padding:18px 20px;
    color:var(--dark);
    font-weight:600;
}



/* ==========================================================
25 RESPONSIVE
==========================================================*/

@media(max-width:1200px){

.hero-grid{

grid-template-columns:1fr;

}

.quote-card{

max-width:700px;

margin:auto;

}

.steps-grid{

grid-template-columns:repeat(2,1fr);

}

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:992px){

.main-nav{

display:none;

}

.mobile-menu-toggle{

display:block;

}

.header-contact{

display:none;

}

.grid-4,
.grid-3,
.grid-2{

grid-template-columns:1fr;

}

.features-grid,
.services-grid,
.reviews-grid,
.areas-grid{

grid-template-columns:1fr 1fr;

}

.pricing-info{

grid-template-columns:1fr;

}

h1{

font-size:46px;

}

h2{

font-size:36px;

}

}



@media(max-width:768px){

section{

padding:70px 0;

}

.hero{

padding:90px 0;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons a{

width:100%;

}

.hero-highlights{

grid-template-columns:1fr;

}

.features-grid,
.services-grid,
.reviews-grid,
.areas-grid,
.steps-grid{

grid-template-columns:1fr;

}

.coverage-box{

padding:45px 25px;

}

.footer-grid{

grid-template-columns:1fr;

}

.final-cta h2{

font-size:38px;

}

.cta-features{

flex-direction:column;

gap:15px;

}

}



@media(max-width:480px){

.container{

width:94%;

}

h1{

font-size:38px;

}

h2{

font-size:30px;

}

.quote-card{

padding:30px;

}

.btn-primary,
.btn-secondary{

width:100%;

justify-content:center;

}

}

/* ==========================================================
26 BREADCRUMBS
==========================================================*/

.breadcrumbs{

    padding:22px 0;

    background:var(--light);

    border-bottom:1px solid var(--border);

    font-size:14px;

}

.breadcrumbs .container{

    display:flex;

    align-items:center;

    gap:10px;

    color:var(--light-grey);

}

.breadcrumbs a{

    color:var(--grey);

    font-weight:600;

}

.breadcrumbs a:hover{

    color:var(--primary);

}

.breadcrumbs span{

    color:var(--dark);

    font-weight:600;

}



/* ==========================================================
27 BLOG
==========================================================*/

.blog-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

}

.blog-card{

    background:#fff;

    border-radius:24px;

    padding:0;

    box-shadow:var(--shadow-small);

    transition:var(--transition);

    overflow:hidden;

    display:flex;

    flex-direction:column;

}

.blog-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-large);

}

.blog-card-image{

    height:200px;

    background:linear-gradient(135deg,var(--primary),var(--primary-dark));

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:48px;

}

.blog-card-body{

    padding:35px;

}

.blog-tag{

    display:inline-block;

    background:var(--primary-light);

    color:var(--primary);

    padding:6px 14px;

    border-radius:999px;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.5px;

    margin-bottom:16px;

}

.blog-card h3{

    font-size:24px;

    margin-bottom:14px;

}

.blog-card a.read-more{

    font-weight:700;

    color:var(--primary);

}

.blog-meta{

    color:var(--light-grey);

    font-size:14px;

    margin-bottom:14px;
}

.blog-article{

    max-width:800px;

    margin:0 auto;

}

.blog-article h2{

    margin-top:45px;

}



/* ==========================================================
28 CONTACT
==========================================================*/

.contact-grid{

    display:grid;

    grid-template-columns:.9fr 1.1fr;

    gap:60px;

    align-items:start;

}

.contact-details .detail-item{

    display:flex;

    gap:20px;

    align-items:flex-start;

    background:#fff;

    padding:28px;

    border-radius:18px;

    box-shadow:var(--shadow-small);

    margin-bottom:22px;

}

.contact-details .detail-icon{

    width:54px;

    height:54px;

    min-width:54px;

    border-radius:50%;

    background:var(--primary-light);

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    font-weight:700;

}

.contact-details h3{

    font-size:19px;

    margin-bottom:6px;

}

.contact-details p{

    margin-bottom:0;

}

.map-wrapper{

    border-radius:24px;

    overflow:hidden;

    box-shadow:var(--shadow-small);

    margin-top:22px;

}

.map-wrapper iframe{

    display:block;

    width:100%;

    border:0;

    height:320px;

}
