:root {
    --primary-red: #bc1823;
    --accent-green: #198b24;
    --white: #ffffff;
    --dark: #333;
    --light-gray: #f5f5f5;
    --medium-gray: #666;
}

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

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    background: #fafafa;
}

main {
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

/* Header Styles */
header {
    background: var(--white);
    padding: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-red);
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2.5rem;
    max-width: 1400px;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.02);
}

.logo img {
    height: 75px;
    width: auto;
    max-width: 340px;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
}

.logo a:hover img {
    transform: scale(1.03);
}

nav {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

nav > a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 4px;
    white-space: nowrap;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

nav > a:hover {
    color: var(--primary-red);
}

nav > a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-red), #d0202e);
    transition: width 0.3s ease;
    border-radius: 2px;
}

nav > a:hover::after {
    width: calc(100% + 8px);
}

nav > a:hover {
    color: var(--primary-red);
    transform: translateY(-1px);
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary-red), #9a141c);
    color: var(--white) !important;
    padding: 13px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(188, 24, 35, 0.35), 0 2px 6px rgba(188, 24, 35, 0.2);
    border: 2px solid var(--primary-red);
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-nav:hover::before {
    left: 100%;
}

.btn-nav:hover {
    background: linear-gradient(135deg, #9a141c, var(--primary-red));
    border-color: #9a141c;
    box-shadow: 0 6px 20px rgba(188, 24, 35, 0.45), 0 3px 10px rgba(188, 24, 35, 0.3);
    transform: translateY(-2px);
}

.btn-nav::after {
    display: none;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 1px;
    padding: 10px 4px;
    position: relative;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-red), #d0202e);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.dropdown:hover .dropdown-toggle::after {
    width: calc(100% + 8px);
}

.dropdown:hover .dropdown-toggle {
    transform: translateY(-1px);
}

.dropdown:hover .dropdown-toggle {
    color: var(--primary-red);
}

.dropdown-toggle .caret {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
    margin-top: 2px;
}

.dropdown:hover .caret {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: -15px;
    background: var(--white);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
    z-index: 1000;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(188, 24, 35, 0.1);
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 14px 26px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.25s ease;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    text-transform: none;
    letter-spacing: 0.3px;
    font-family: 'Montserrat', sans-serif;
}

.dropdown-menu a:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, var(--primary-red), #9a141c);
    color: var(--white);
    padding-left: 32px;
    transform: translateX(2px);
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.dropdown-menu a:hover::before {
    width: 4px;
}

.dropdown-menu a::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    transition: 0.3s;
}

/* Hero Section - Professional First Impression */
.hero {
    background: linear-gradient(135deg, rgba(188, 24, 35, 0.92), rgba(25, 139, 36, 0.88));
    color: var(--white);
    padding: 200px 5% 160px;
    text-align: center;
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../mainimage.webp') no-repeat center center;
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: heroZoom 20s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(139, 19, 38, 0.65), rgba(20, 90, 20, 0.55));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 95, 30, 0.85);
    padding: 12px 24px;
    border-radius: 5px;
    margin-bottom: 30px;
    border: 2px solid rgba(255,255,255,0.2);
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-badge i {
    color: #ffc107;
    font-size: 1.1rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.9), 0 2px 20px rgba(0,0,0,0.5);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tagline {
    font-size: 1.7rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8), 0 1px 10px rgba(0,0,0,0.4);
    opacity: 1;
    letter-spacing: 0.3px;
    animation: fadeInDown 0.9s ease 0.1s both;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8), 0 1px 8px rgba(0,0,0,0.4);
    line-height: 1.8;
    font-weight: 400;
    animation: fadeInDown 1s ease 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 1.1s ease 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-phone {
    background: var(--white);
    color: var(--primary-red);
    padding: 20px 45px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 3px solid var(--white);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3), 0 2px 10px rgba(0,0,0,0.2);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 60px;
}

.btn-phone:hover {
    background: #f8f8f8;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.35), 0 4px 15px rgba(0,0,0,0.25);
    border-color: #f0f0f0;
}

.btn-phone::before {
    content: '\f095';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.1rem;
    margin-right: 5px;
}

.btn-quote::before {
    content: '\f0d1';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1rem;
    margin-right: 5px;
}

.btn-quote {
    background: var(--accent-green);
    color: var(--white);
    padding: 20px 45px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 3px solid var(--accent-green);
    box-shadow: 0 6px 20px rgba(25, 139, 36, 0.5), 0 2px 10px rgba(25, 139, 36, 0.3);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 60px;
}

.btn-quote:hover {
    background: #14701d;
    border-color: #14701d;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(25, 139, 36, 0.6), 0 4px 15px rgba(25, 139, 36, 0.4);
}

.hero-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-badges span {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
}

/* Button Styles */
.btn {
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--accent-green);
    color: var(--white);
    border: 3px solid var(--accent-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 1rem;
    padding: 16px 32px;
    box-shadow: 0 4px 12px rgba(25, 139, 36, 0.4);
    font-family: 'Montserrat', sans-serif;
    border-radius: 5px;
}

.btn-primary:hover {
    background: #14701d;
    border-color: #14701d;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(25, 139, 36, 0.5);
}

.btn-primary i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-red);
    border: 3px solid var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
    padding: 16px 32px;
    box-shadow: 0 4px 12px rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: #f8f8f8;
    border-color: #f8f8f8;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(255,255,255,0.4);
}

.btn-secondary i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.btn-secondary i {
    margin-right: 8px;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 3px solid #25D366;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
    padding: 16px 32px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    border-color: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp i {
    font-size: 1.2rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(188, 24, 35, 0.4);
    z-index: 998;
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.back-to-top:hover {
    background: #9a141c;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(188, 24, 35, 0.6);
}

.back-to-top i {
    font-size: 1.2rem;
}

.whatsapp-float i {
    font-size: 28px;
}

/* Sticky Quote Button */
.sticky-quote-btn {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--primary-red);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 5px 20px rgba(188, 24, 35, 0.4);
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
}

.sticky-quote-btn.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.sticky-quote-btn:hover {
    background: #9a141c;
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 8px 25px rgba(188, 24, 35, 0.6);
}

.sticky-quote-btn i {
    font-size: 1.2rem;
}

/* Trust Badges Section */
.trust-badges {
    background: var(--white);
    padding: 60px 0;
    border-top: 3px solid var(--light-gray);
    border-bottom: 3px solid var(--light-gray);
}

.trust-badges h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-red);
    margin-bottom: 40px;
    font-weight: 800;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.badge-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-5px);
}

.badge-item img {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 3px 10px rgba(0,0,0,0.1));
}

.badge-item p {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 600;
    margin: 0;
}

/* Social Proof Section */
.social-proof {
    background: linear-gradient(135deg, var(--primary-red), #9a141c);
    color: var(--white);
    padding: 60px 0;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--white);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Choose Us - Trust Features Section */
.why-choose-us {
    background: var(--white);
    padding: 80px 0;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.why-choose-us .section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trust-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trust-feature {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
    text-align: center;
}

.trust-feature:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(188, 24, 35, 0.15);
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), #9a141c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.trust-feature:hover .trust-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(188, 24, 35, 0.3);
}

.trust-feature h3 {
    font-size: 1.4rem;
    color: var(--primary-red);
    margin-bottom: 15px;
    font-weight: 700;
}

.trust-feature p {
    color: var(--dark);
    line-height: 1.7;
    font-size: 1rem;
}

/* Postcode Checker Section - First Thing Users See */
.postcode-checker {
    background: linear-gradient(135deg, var(--primary-red), #9a141c);
    color: var(--white);
    padding: 70px 0 60px;
    position: relative;
    border-bottom: 4px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.postcode-checker-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.postcode-checker h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.postcode-checker h2 i {
    font-size: 2.5rem;
    color: var(--white);
}

.postcode-checker .section-intro {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--white);
    font-weight: 500;
    opacity: 1;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
}

.postcode-form-wrapper {
    background: var(--white);
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    margin-bottom: 35px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.postcode-form {
    width: 100%;
}

.postcode-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

#postcodeInput {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    min-height: 56px;
}

#postcodeInput:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(188, 24, 35, 0.2);
}

.btn-check-postcode {
    background: var(--accent-green);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    min-height: 58px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(25, 139, 36, 0.3);
}

.btn-check-postcode:hover {
    background: #14701d;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(25, 139, 36, 0.4);
}

.postcode-result {
    display: none;
    margin-top: 20px;
    padding: 20px;
    border-radius: 8px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.postcode-result.covered {
    background: #e8f5e9;
    border: 2px solid var(--accent-green);
}

.postcode-result.not-covered {
    background: #fff3e0;
    border: 2px solid #ff9800;
}

.postcode-success,
.postcode-info,
.postcode-error {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.postcode-success i {
    color: var(--accent-green);
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.postcode-info i {
    color: #ff9800;
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.postcode-error i {
    color: var(--primary-red);
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.postcode-success strong,
.postcode-info strong,
.postcode-error strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.postcode-success p,
.postcode-info p {
    color: var(--medium-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.postcode-success .btn {
    margin: 10px 0 0 0;
}

.postcode-info a {
    color: var(--primary-red);
    font-weight: 700;
    text-decoration: none;
}

.postcode-info a:hover {
    text-decoration: underline;
}

.covered-areas {
    margin-top: 30px;
}

.covered-areas-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
    opacity: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.covered-areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
}

.area-group {
    background: rgba(255, 255, 255, 0.15);
    padding: 18px 22px;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.area-group:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.area-group strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: var(--white);
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.area-group {
    color: rgba(255, 255, 255, 1);
    font-weight: 400;
    line-height: 1.7;
}

/* Quick CTA Bar */
.quick-cta-bar {
    background: linear-gradient(135deg, var(--accent-green), #157a1e);
    color: var(--white);
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}

.cta-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-text i {
    font-size: 2rem;
    opacity: 0.9;
}

.cta-text strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.cta-text span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn-phone-cta,
.btn-quote-cta {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-phone-cta {
    background: var(--white);
    color: var(--accent-green);
    border: 2px solid var(--white);
}

.btn-phone-cta:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-quote-cta {
    background: var(--primary-red);
    color: var(--white);
    border: 2px solid var(--primary-red);
}

.btn-quote-cta:hover {
    background: #9a141c;
    border-color: #9a141c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(188, 24, 35, 0.4);
}

/* Exit Intent Popup */
.exit-intent-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.exit-intent-popup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.exit-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(3px);
}

.exit-popup-content {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(-20px);
    transition: transform 0.3s ease;
    z-index: 10001;
    border: 3px solid var(--primary-red);
}

.exit-intent-popup.active .exit-popup-content {
    transform: scale(1) translateY(0);
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--medium-gray);
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.exit-popup-close:hover {
    background: var(--light-gray);
    color: var(--primary-red);
}

.exit-popup-logo {
    margin-bottom: 20px;
}

.exit-popup-logo img {
    max-width: 180px;
    height: auto;
    margin: 0 auto;
}

.exit-popup-content h3 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.exit-popup-content p {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.6;
}

.exit-popup-content p strong {
    color: var(--primary-red);
    font-weight: 700;
}

.exit-popup-subtitle {
    font-size: 0.95rem;
    color: var(--medium-gray);
    font-style: italic;
    margin-bottom: 25px;
}

.exit-popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.exit-popup-buttons .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.exit-popup-buttons .btn-primary {
    background: var(--primary-red);
    color: var(--white);
    border: 2px solid var(--primary-red);
}

.exit-popup-buttons .btn-primary:hover {
    background: #9a141c;
    border-color: #9a141c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(188, 24, 35, 0.4);
}

.exit-popup-buttons .btn-secondary {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.exit-popup-buttons .btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

.exit-popup-dismiss {
    background: transparent;
    border: none;
    color: var(--medium-gray);
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s ease;
    padding: 5px;
}

.exit-popup-dismiss:hover {
    color: var(--dark);
}

@media (max-width: 768px) {
    .exit-popup-content {
        padding: 30px 20px;
        max-width: 95%;
    }
    
    .exit-popup-content h3 {
        font-size: 1.6rem;
    }
    
    .exit-popup-content p {
        font-size: 1rem;
    }
    
    .exit-popup-logo img {
        max-width: 140px;
    }
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    display: none;
}

/* Floating Get A Call Back Widget */
.hero .floating-call-back {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    height: 100%;
    pointer-events: none;
    width: 100%;
}

.hero .floating-call-back * {
    pointer-events: auto;
}

.floating-call-back-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    background: linear-gradient(135deg, var(--primary-red), #9a141c);
    color: var(--white);
    border: none;
    padding: 20px 40px;
    border-radius: 8px 8px 0 0;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    z-index: 10001;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero .floating-call-back-toggle:hover {
    padding: 22px 42px;
    box-shadow: -6px 0 25px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, #9a141c, var(--primary-red));
    border-color: rgba(255, 255, 255, 0.5);
}

.hero .floating-call-back-content {
    position: absolute;
    right: 30px;
    top: 20px;
    transform: none;
    width: 320px;
    background: rgba(188, 24, 35, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 18px;
    border-radius: 12px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.2);
    opacity: 1;
    visibility: visible;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

.hero .floating-call-back.closed .floating-call-back-content {
    right: -380px;
    opacity: 0;
    visibility: hidden;
}

.hero .floating-call-back-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-weight: 300;
    padding: 0;
}

.hero .floating-call-back-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.hero .floating-call-back-content h3 {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero .floating-call-back .call-back-subtitle {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 18px;
    font-weight: 400;
    line-height: 1.4;
}

.hero .floating-call-back-form {
    width: 100%;
}

.hero .floating-call-back-form .form-group {
    margin-bottom: 12px;
}

.hero .floating-call-back-form input,
.hero .floating-call-back-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark);
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    min-height: 42px;
    box-sizing: border-box;
}

.hero .floating-call-back-form input::placeholder,
.hero .floating-call-back-form textarea::placeholder {
    color: #999;
    font-weight: 400;
}

.hero .floating-call-back-form input:focus,
.hero .floating-call-back-form textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(25, 139, 36, 0.2);
}

.hero .floating-call-back-form textarea {
    resize: vertical;
    min-height: 80px;
    font-family: 'Montserrat', sans-serif;
}

.hero .floating-call-back .form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
    gap: 8px;
}

.hero .floating-call-back .privacy-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.hero .floating-call-back .privacy-link:hover {
    color: var(--white);
    text-decoration: underline;
}

.hero .floating-call-back .btn-submit {
    background: var(--dark);
    color: var(--white);
    border: none;
    padding: 10px 28px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    min-height: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    flex: 0 0 auto;
}

.hero .floating-call-back .btn-submit:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.hero .floating-call-back .btn-submit:active {
    transform: translateY(0);
}

/* Form Success Overlay */
.form-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.form-success-overlay.active {
    opacity: 1;
    visibility: visible;
}

.form-success-content {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    position: relative;
}

.form-success-overlay.active .form-success-content {
    transform: scale(1) translateY(0);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 3.5rem;
    color: var(--white);
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(25, 139, 36, 0.4);
    animation: successPulse 0.6s ease;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.form-success-content h2 {
    font-size: 2.2rem;
    color: var(--primary-red);
    margin-bottom: 15px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.form-success-content p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 30px;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.btn-success-close {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 15px rgba(188, 24, 35, 0.4);
}

.btn-success-close:hover {
    background: #9a141c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(188, 24, 35, 0.5);
}

.btn-success-close:active {
    transform: translateY(0);
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: #fafafa;
}

.video-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.video-wrapper {
    max-width: 950px;
    margin: 50px auto 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.2);
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    background: #000;
    border: 2px solid var(--primary-red);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    background: #000;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--medium-gray);
    margin-bottom: 50px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 400;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--white);
    border-radius: 6px;
    text-align: left;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}


.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin: 25px 20px 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.service-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    padding: 0 20px;
    flex-grow: 1;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.service-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    margin: 0 20px 20px;
    transition: color 0.3s;
    font-size: 0.95rem;
    display: inline-block;
}

.service-link:hover {
    color: var(--accent-green);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #fafafa;
}

.about h2 {
    font-size: 2.8rem;
    color: var(--primary-red);
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* About Page Styles */
.page-hero {
    background: linear-gradient(135deg, rgba(188, 24, 35, 0.9), rgba(25, 139, 36, 0.85)),
                url('../mainimage.webp') no-repeat center center;
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 5% 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(139, 19, 38, 0.7), rgba(20, 90, 20, 0.6));
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--white);
}

.page-hero p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    font-weight: 600;
    opacity: 0.95;
}

.about-page {
    padding: 80px 0;
    background: var(--white);
}

.about-main {
    max-width: 900px;
    margin: 0 auto;
}

.about-main h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 25px;
    margin-top: 40px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.about-main h2:first-child {
    margin-top: 0;
}

.about-main p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--dark);
    line-height: 1.8;
    font-weight: 400;
}

.service-areas-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    border-left: 4px solid var(--primary-red);
}

.service-areas-box h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-areas-box p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.about-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    color: var(--dark);
    line-height: 1.6;
}

.about-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--medium-gray);
    line-height: 1.8;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.features-list li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: var(--dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    color: var(--accent-green);
    font-size: 1.1rem;
}

.service-areas {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary-red);
}

.service-areas h3 {
    color: var(--primary-red);
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-areas h3 i {
    font-size: 1.2rem;
}

.service-areas p {
    margin-bottom: 12px;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 5px solid var(--accent-green);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.stars {
    color: #ffc107;
    font-size: 1rem;
    display: flex;
    gap: 3px;
}

.stars i {
    font-size: 1.1rem;
}

.review-date {
    color: var(--medium-gray);
    font-size: 0.85rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--primary-red);
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--medium-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-author i {
    color: var(--accent-green);
    font-size: 0.85rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.page-hero {
    background: linear-gradient(135deg, rgba(188, 24, 35, 0.9), rgba(25, 139, 36, 0.85)),
                url('../mainimage.webp') no-repeat center center;
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 5% 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(139, 19, 38, 0.7), rgba(20, 90, 20, 0.6));
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--white);
}

.page-hero p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    font-weight: 600;
    opacity: 0.95;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.contact-item strong {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.contact-item strong i {
    color: var(--primary-red);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info h3 {
    color: var(--primary-red);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item strong {
    display: block;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--accent-green);
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item p {
    color: var(--medium-gray);
    line-height: 1.8;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary-red);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(188, 24, 35, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 60px 0 25px;
    border-top: 4px solid var(--primary-red);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-section h3 {
    color: var(--primary-red);
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-tagline {
    color: #aaa;
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 10px;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 18px;
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 8px;
    display: inline-block;
}

.footer-section a {
    display: block;
    color: #d0d0d0;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding-left: 5px;
}

.footer-section a:hover {
    color: var(--accent-green);
    padding-left: 10px;
    transform: translateX(3px);
}

.footer-section p {
    color: #d0d0d0;
    line-height: 1.9;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.footer-section p a {
    display: inline;
    color: var(--accent-green);
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-section p a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

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

.footer-bottom p {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-green);
}

.footer-separator {
    color: #666;
    font-size: 0.9rem;
}

/* Footer Responsive - Tablet */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    header .container {
        padding: 1rem 1.5rem;
    }

    nav {
        gap: 20px;
    }

    nav > a {
        font-size: 0.88rem;
    }

    .btn-nav {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    header .container {
        padding: 0.9rem 1.2rem;
    }

    .logo img {
        height: 55px;
        max-width: 220px;
    }
    
    /* Ensure touch-friendly targets */
    nav > a,
    .btn-nav,
    .btn-phone,
    .btn-quote {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none;
        gap: 0;
    }

    nav.active {
        display: flex;
    }

    nav > a,
    nav .dropdown {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: var(--light-gray);
        margin-top: 10px;
        margin-left: 20px;
        box-shadow: none;
        border-radius: 5px;
    }

    .dropdown-menu a {
        color: var(--dark);
        border-bottom: 1px solid #ddd;
    }

    .dropdown-menu a:hover {
        background: var(--primary-red);
        color: var(--white);
        padding-left: 20px;
    }

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

    .sticky-quote-btn {
        bottom: 85px;
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .sticky-quote-btn span {
        display: none;
    }

    .sticky-quote-btn.visible span {
        display: inline;
    }

    .back-to-top {
        bottom: 95px;
        right: 25px;
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .proof-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .badges-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .badge-item img {
        max-width: 150px;
    }

    .why-choose-us {
        padding: 60px 0;
    }

    .why-choose-us h2 {
        font-size: 2rem;
    }

    .trust-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .trust-feature {
        padding: 25px 20px;
    }

    .trust-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .trust-feature h3 {
        font-size: 1.2rem;
    }

    .quick-cta-bar {
        padding: 20px 0;
    }

    .cta-bar-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-text {
        flex-direction: column;
        text-align: center;
    }

    .cta-text strong {
        font-size: 1.1rem;
    }

    .cta-buttons {
        width: 100%;
        justify-content: center;
    }

    .btn-phone-cta,
    .btn-quote-cta {
        flex: 1;
        max-width: 200px;
    }
    
    /* Floating Call Back mobile */
    .hero .floating-call-back-content {
        width: 280px;
        padding: 18px 15px;
        max-height: calc(100vh - 30px);
        top: 15px;
        right: 15px;
    }
    
    .hero .floating-call-back.closed .floating-call-back-content {
        right: -350px;
    }
    
    .floating-call-back-content h3 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .floating-call-back .call-back-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .floating-call-back-form input,
    .floating-call-back-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 14px;
        min-height: 46px;
    }
    
    .floating-call-back-form textarea {
        min-height: 90px;
    }
    
    .floating-call-back .form-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .floating-call-back .privacy-link {
        font-size: 0.75rem;
        text-align: center;
    }
    
    .floating-call-back .btn-submit {
        width: 100%;
        padding: 12px 30px;
        font-size: 0.95rem;
    }
    
    /* Form Success Overlay mobile */
    .form-success-content {
        width: 90%;
        max-width: 400px;
        padding: 40px 25px;
    }
    
    .form-success-content h2 {
        font-size: 1.8rem;
    }
    
    .form-success-content p {
        font-size: 1rem;
    }

    /* Postcode checker mobile */
    .postcode-checker {
        padding: 50px 0 45px;
    }
    
    .postcode-checker h2 {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .postcode-checker h2 i {
        font-size: 2rem;
    }
    
    .postcode-checker .section-intro {
        font-size: 1.1rem;
        margin-bottom: 30px;
        color: var(--white);
        opacity: 1;
    }
    
    .postcode-form-wrapper {
        padding: 25px 20px;
    }
    
    .postcode-input-group {
        flex-direction: column;
        gap: 15px;
    }
    
    #postcodeInput {
        font-size: 1rem;
        padding: 14px 18px;
    }
    
    .btn-check-postcode {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .covered-areas-list {
        grid-template-columns: 1fr;
        gap: 15px;
        font-size: 0.9rem;
    }
    
    .postcode-success,
    .postcode-info,
    .postcode-error {
        flex-direction: column;
        text-align: center;
    }
    
    .postcode-success i,
    .postcode-info i,
    .postcode-error i {
        margin: 0 auto;
    }
    
    .video-wrapper {
        padding-bottom: 56.25%;
        max-width: 100%;
    }

    .video-section h2 {
        font-size: 2.2rem;
    }

    .video-wrapper {
        border-width: 2px;
    }

    .hero {
        padding: 120px 4% 100px;
        min-height: 500px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: 0.5px;
        margin-bottom: 15px;
    }

    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.6;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .btn-phone,
    .btn-quote {
        width: 100%;
        max-width: 300px;
        padding: 16px 30px;
        font-size: 1rem;
        min-height: 50px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 14px 15px;
        min-height: 44px;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }

    .features-list {
        grid-template-columns: 1fr;
    }
}

/* Service Detail Pages */
.service-hero {
    padding: 120px 0 0;
}

.service-hero-content {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-hero-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.service-hero-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 60px 40px 40px;
    color: var(--white);
}

.service-hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.service-hero-text p {
    font-size: 1.2rem;
    color: var(--white);
    margin: 0;
}

.service-detail {
    padding: 60px 0;
    background: var(--white);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.service-main h2 {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-main h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-main p {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-main ul {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-main ul li {
    margin-bottom: 10px;
}

.service-main ul li strong {
    color: var(--dark);
}

.service-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.service-cta {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-top: 4px solid var(--primary-red);
}

.service-cta h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-cta p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-cta .btn {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    display: block;
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 3% 70px;
        min-height: 450px;
    }
    
    .hero-content {
        padding: 0 8px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .hero-cta {
        gap: 12px;
        margin-bottom: 20px;
    }

    .btn-phone,
    .btn-quote {
        width: 100%;
        padding: 14px 25px;
        font-size: 0.95rem;
        min-height: 48px;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
        min-height: 44px;
        padding: 14px 20px;
    }
    
    /* Form improvements */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 14px 15px;
        min-height: 44px;
    }
    
    textarea {
        min-height: 120px;
    }
    
    /* Service cards mobile */
    .service-card {
        padding: 20px 15px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    /* Trust features mobile */
    .trust-feature {
        padding: 20px 15px;
    }
    
    .trust-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .trust-feature h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .trust-feature p {
        font-size: 0.9rem;
    }
    
    /* Social proof mobile */
    .proof-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 0;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
        align-items: center;
    }
    
    .footer-logo {
        margin-bottom: 15px;
    }
    
    .footer-logo img {
        max-width: 150px;
    }
    
    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 15px;
    }
    
    .footer-section h4 {
        display: block;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    /* Badges mobile */
    .badges-grid {
        gap: 25px;
    }
    
    .badge-item img {
        max-width: 130px;
    }
    
    /* Video section mobile */
    .video-section {
        padding: 60px 0;
    }
    
    /* Testimonials mobile */
    .testimonial-card {
        padding: 20px 15px;
    }
    
    /* Contact form mobile */
    .contact-wrapper {
        gap: 30px;
    }
    
    .contact-info {
        padding: 20px 15px;
    }
    
    /* Quick CTA bar mobile */
    .quick-cta-bar {
        padding: 15px 0;
    }
    
    .cta-text strong {
        font-size: 1rem;
    }
    
    .cta-text span {
        font-size: 0.85rem;
    }
    
    .btn-phone-cta,
    .btn-quote-cta {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    /* Sticky buttons mobile */
    .sticky-quote-btn {
        bottom: 75px;
        padding: 12px 20px;
        font-size: 0.85rem;
        min-width: 50px;
        min-height: 50px;
    }
    
    .back-to-top {
        bottom: 85px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 24px;
    }
    
    /* Exit popup mobile */
    .exit-popup-content {
        padding: 25px 15px;
        margin: 20px;
    }
    
    .exit-popup-content h3 {
        font-size: 1.4rem;
    }
    
    .exit-popup-content p {
        font-size: 0.95rem;
    }
    
    .exit-popup-buttons {
        gap: 10px;
    }
    
    .exit-popup-buttons .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    /* Section headings mobile */
    h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .section-intro {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    /* Why choose us mobile */
    .why-choose-us h2 {
        font-size: 1.8rem;
    }
    
    .why-choose-us .section-intro {
        font-size: 0.95rem;
    }
    
    /* Trust badges mobile */
    .trust-badges h2 {
        font-size: 1.8rem;
    }
    
    /* Page hero mobile */
    .page-hero,
    .service-hero {
        padding: 80px 0 60px;
    }
    
    .page-hero h1,
    .service-hero-text h1 {
        font-size: 1.8rem;
    }
    
    .page-hero p,
    .service-hero-text p {
        font-size: 1rem;
    }
}

    .service-hero-text {
        padding: 40px 20px 30px;
    }

    .service-hero-text h1 {
        font-size: 1.8rem;
    }

    .service-hero-text p {
        font-size: 1rem;
    }

    .service-detail-content {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }
    
    /* Form inputs mobile - prevent zoom on iOS */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    textarea,
    select {
        font-size: 16px !important; /* Prevents zoom on iOS */
        padding: 14px 15px !important;
        min-height: 44px !important;
        width: 100%;
        -webkit-appearance: none;
        border-radius: 5px;
    }
    
    textarea {
        min-height: 120px !important;
        resize: vertical;
    }
    
    /* Service image mobile */
    .service-image {
        height: 180px;
    }
    
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    /* Ensure images are responsive */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Better table responsiveness */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }
}