        /* CSS VARIABLES & RESET */
        :root {
            --brand-blue: #0b3878;
            --brand-yellow: #ffcc00;
            --brand-white: #ffffff;
            --grey-light: #e0e0e0;
            --text-dark: #333;
            --white: #ffffff;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
        body { color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        /* HEADER & NAV */
        header { background: var(--brand-blue); padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
        .nav-container { display: flex; justify-content: space-between; align-items: center; }
        .logo { color: var(--white); font-weight: 800; font-size: 1.5rem; text-decoration: none; display: flex; align-items: center; gap: 10px; }
        .logo i { color: var(--brand-white); }
        
        .nav-links { display: flex; list-style: none; gap: 20px; }
        .nav-links a { color: #e0e0e0; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: 0.3s; }
        .nav-links a:hover { color: var(--brand-white); }

        .header-btns { display: flex; gap: 15px; align-items: center; }
        .btn-call-small { background: var(--brand-white); color: var(--brand-blue); padding: 8px 15px; border-radius: 4px; text-decoration: none; font-weight: 700; font-size: 0.85rem; }
.btn-outline-small { border: 2px solid var(--white); color: var(--white); padding: 8px 15px; border-radius: 4px; text-decoration: none; font-weight: 700; transition: 0.3s; font-size:0.85rem; }
.btn-outline-small:hover {
    background: var(--white);
    color: var(--brand-blue);
}
.btn-call-small:hover {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

/* HAMBURGER STYLING */
.mobile-menu-toggle {
            display: none; /* Hidden on desktop */
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* HERO SECTION */
        .hero { background: var(--brand-blue); color: var(--white); padding: 100px 0; position: relative; }
        .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
        .hero h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
        .hero h1 span { color: var(--grey-light); }
        .hero p { font-size: 1.1rem; margin-bottom: 30px; opacity: 0.9; }
        
        .hero-btns { display: flex; gap: 15px; }
        .btn-main { border: 2px solid var(--white);background: var(--brand-white); color: var(--brand-blue); padding: 15px 30px; border-radius: 5px; text-decoration: none; font-weight: 800; transition: 0.3s; }
        .btn-outline { border: 2px solid var(--white); color: var(--white); padding: 13px 30px; border-radius: 5px; text-decoration: none; font-weight: 700; transition: 0.3s; }
.btn-outline:hover {
    background: var(--white);
    color: var(--brand-blue);
}
.btn-main:hover {
    background: transparent;
    color: var(--white);
}

/*Old Buttons*/
/* --- UPDATED HERO BUTTONS --- */
.buttons {
    display: flex; 
    list-style: none;
    gap: 20px;
    margin-top: 30px;
}

/* Base style for both buttons to ensure size consistency */
.buttons .btn {
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Call Button (Solid White) */
.buttons .call-btn {
    background: var(--white);
    color: var(--brand-blue);
    border: 2px solid var(--white);
}

.buttons .call-btn:hover {
    background: transparent;
    color: var(--white);
}

/* Quote Button (Outline White) */
.buttons .quote-btn {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.buttons .quote-btn:hover {
    background: var(--white);
    color: var(--brand-blue);
}

/* Mobile Fix: Stack buttons on small screens */
@media (max-width: 600px) {
    .buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    .buttons .btn {
        width: 100%;
    }
}

/* Hero Badges Container */
.hero-badges {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 35px 0;
    flex-wrap: wrap; /* Allows wrapping on very small screens */
}

.hero-badges img {
    height: 45px; /* Standardized height */
    width: auto;
    filter: grayscale(1) brightness(0.5); /* Turns badges white to match your theme */
    opacity: 0.8;
    transition: all 0.3s ease;
    object-fit: contain;

    /* New styles to fix the "blocky" look */
    border-radius: 8px;           /* Rounds the corners */
    padding: 4px;                /* Keeps the logo from touching the rounded edge */
    background: transparent;      /* Change to var(--white) if you want a subtle box look */
}

/* Hover effect for a high-end feel */
.hero-badges img:hover {
    opacity: 1;
    transform: translateY(-3px);
}

/* Responsive Logic */
@media (max-width: 992px) {
    .hero-badges {
        justify-content: center; /* Center badges on tablet/mobile */
        gap: 20px;
    }
    
    .hero-badges img {
        height: 38px; /* Slightly smaller on mobile */
    }
}

@media (max-width: 480px) {
    .hero-badges {
        gap: 15px;
    }
    
    .hero-badges img {
        height: 32px; /* Prevent overcrowding on small phones */
    }
}

        /* SERVICE GRID UPDATED */
.services { 
    padding: 100px 0; 
    background: var(--white); 
}

.section-header { 
    text-align: center; 
    margin-bottom: 60px; 
}

.section-header h2 { 
    font-size: 2.5rem; 
    color: var(--brand-blue); 
}

/* SMART GRID: Automatically changes from 4 cols to 2 to 1 based on screen size */
.service-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 25px; 
}

.service-card { 
    background: var(--grey-light); 
    padding: 40px 30px; 
    border-radius: 12px; 
    text-align: center; 
    transition: 0.4s ease; 
    border: 1px solid #eee; 
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Keeps buttons aligned at the bottom */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: var(--brand-blue);
}

.service-card i { 
    font-size: 3rem; 
    color: var(--brand-blue); 
    margin-bottom: 20px; 
    display: block; 
}

.service-card h3 { 
    margin-bottom: 15px; 
    font-size: 1.3rem; 
    color: var(--brand-dark);
}

.service-card p {
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* DISCOVER MORE BUTTON */
.service-btn {
    text-decoration: none;
    color: var(--brand-blue);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
}

.service-btn i {
    font-size: 0.75rem; /* Makes arrow smaller than main icons */
    margin-bottom: 0; /* Resets the margin from .service-card i */
}

.service-btn:hover {
    color: var(--brand-dark);
    gap: 12px; /* Moves the arrow slightly on hover */
}

/* MOBILE REFINEMENT */
@media (max-width: 768px) {
    .services { padding: 60px 0; }
    .section-header h2 { font-size: 2rem; }
}

        /* AUTHORITY SECTION */
        .authority { padding: 100px 0; background: var(--grey-light); }
        .auth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        .auth-img { background: #ccc; border-radius: 20px; height: 400px; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative;}
        
        .check-list { list-style: none; margin-top: 25px; }
        .check-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; font-weight: 600; }
        .check-list i { color: var(--brand-white); background: var(--brand-blue); padding: 5px; border-radius: 50%; font-size: 0.8rem; }

        /* LOCATIONS BAR */
.location-bar {
    background: var(--grey-light);
    padding: 15px 0;
    border-bottom: 1px solid var(--grey-accent);
}

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

.location-list {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.location-list i {
    color: var(--brand-blue);
    margin-right: 8px;
}

/* The "See More Areas" Button */
.btn-text-link {
    white-space: nowrap; /* Prevents button text from breaking onto two lines */
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border: 1px solid var(--brand-blue);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-text-link i {
    font-size: 0.8rem;
    margin-left: 5px;
}

.btn-text-link:hover {
    background: var(--brand-blue);
    color: var(--white);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .location-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .location-list {
        margin-bottom: 10px;
    }
}

        /* RESPONSIVE - TABLET & MOBILE */
        @media (max-width: 992px) {
            /* Toggle visibility */
            .mobile-menu-toggle { display: block; order: 2; }
            .header-btns { order: 1; }
            .logo { order: 0; }

            /* Navigation becomes a full-width dropdown */
            .nav-links {
                display: none; /* Hidden by default */
                flex-direction: column;
                position: absolute;
                top: 100%; /* Sits below header */
                left: 0;
                width: 100%;
                background: var(--brand-blue);
                padding: 20px;
                text-align: center;
                box-shadow: 0 10px 10px rgba(0,0,0,0.2);
                border-top: 1px solid rgba(255,255,255,0.1);
            }

            /* Show class toggled by JS */
            .nav-links.active { display: flex; }

            .nav-links li { padding: 15px 0; }
            .nav-links a { font-size: 1.1rem; }

            /* Grid adjustments */
            .hero-grid, .auth-grid, .service-grid { grid-template-columns: 1fr; text-align: center; }
            .hero h1 { font-size: 2.5rem; }
            .hero-btns { justify-content: center; flex-direction: column; }
            .header-btns {justify-content:center; flex-direction:column;}
            .authority .auth-img { order: -1; }
        }
/* FOOTER STYLING */
.main-footer {
    background: #061a3a; /* Darker shade of brand blue for depth */
    color: #ffffff;
    padding: 80px 0 0;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr; /* Brand gets more room */
    gap: 40px;
    padding-bottom: 60px;
}

.footer-col h4 {
    color: var(--grey-light);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--grey-light);
}

.footer-col p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--brand-white);
    padding-left: 5px;
}

/* Social & Accreditations */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    background: rgba(255,255,255,0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--brand-yellow);
    color: var(--brand-blue);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.accreditations {
    margin-top: 25px;
    display: flex;
    align-items: center; /* Vertically centers logos of different shapes */
    gap: 15px;
    flex-wrap: wrap; /* Prevents logos from breaking the layout on tiny screens */
}

.accreditations img {
    height: 80px; /* Adjust this number to make them bigger/smaller */
    width: auto;  /* Maintains the original aspect ratio */
    object-fit: contain; /* Prevents squashing/stretching */
    border-radius: 4px;
    filter: grayscale(0) brightness(1);
    opacity: 0.8;
    transition: 0.3s ease;
}

.accreditations img:hover {
    opacity: 1;
    filter: grayscale(1) brightness(2); /* Color pops back on hover */
}

/* Bottom Bar */
.footer-bottom {
    background: #041229;
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p { opacity: 0.6; }

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-links, .accreditations {
        justify-content: center;
    }
}
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-portrait {
    width: 100%;
    max-width: 500px; /* Limits size on large screens */
    height: 450px;    /* Fixed height for consistency */
    object-fit: cover; /* This is the "magic" property that crops the image perfectly */
    object-position: center top; /* Keeps faces in frame if it's a portrait */
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.1); /* Subtle "frame" effect */
}

@media (max-width: 992px) {
    .hero-portrait {
        height: 350px; /* Smaller height for mobile screens */
        max-width: 100%;
    }
}
.auth-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: auto;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid var(--grey-accent);
}

.auth-img img {
    width: auto;
    height: auto;
    object-fit: cover; /* Ensures the van/work photo fills the space */
    display: block;
    image-rendering: -webkit-optimize-contrast; /* Sharpens the image in Chrome/Safari */
    image-rendering: crisp-edges;
    backface-visibility: hidden; /* Prevents "jitter" and blur during animations */
    transform: translateZ(0);
}
.grecaptcha-badge { 
    visibility: hidden; 
}
/* 1. SAFETY RESET - Prevents the 'Shunt' */
.final-cta, 
.final-cta *, 
.final-cta *::before, 
.final-cta *::after {
    box-sizing: border-box; /* Ensures padding doesn't add to width */
}

.final-cta {
    padding: 60px 15px; /* Consistent padding */
    background: #fdfdfd;
    border-top: 1px solid #eee;
    width: 100%;
    overflow-x: hidden; /* Stops anything from sticking out the right side */
    display: block;
}

.cta-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; /* Allows stacking on mobile */
    gap: 40px;
    width: 100%; /* Ensure it doesn't exceed parent */
}

/* 2. TEXT SIDE */
.cta-info {
    flex: 1 1 450px;
    width: 100%;
}
.cta-info .eyebrow {
    color: #0b3878;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.cta-info h2 {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    color: #333;
    margin-bottom: 20px;
}
.cta-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.method-item i {
    font-size: 1.5rem;
    color: #0b3878;
    width: 30px;
}

.method-item span {
    display: block;
    font-size: 0.85rem;
    color: #888;
}

.method-item strong {
    font-size: 1.1rem;
    color: #0b3878;
}

/* 3. FORM SIDE - Where the drift usually happens */
.cta-form-box {
    flex: 1 1 400px;
    background: #fff;
    padding: 30px; /* Reduced for mobile */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    width: 100%; /* Important */
    max-width: 100%; /* Prevents it pushing right */
}

.quick-form {
    width: 100%;
}

.form-group {
    margin-bottom: 15px;
    width: 100%;
}

.quick-form input, 
.quick-form select, 
.quick-form textarea {
    width: 100% !important; /* Force inputs to stay inside the box */
    max-width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px; /* Prevents iOS auto-zoom on focus */
    display: block;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #ffcc00;
    color: #0b3878;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
}

/* 4. MOBILE-SPECIFIC CENTERING */
@media (max-width: 768px) {
    .cta-wrapper {
        flex-direction: column; /* Stack vertically */
        gap: 30px;
    }
    
    .cta-info {
        text-align: center;
        flex: 1 1 auto;
    }

    .contact-methods {
        align-items: center; /* Center the icons/text */
    }

    .cta-form-box {
        padding: 25px 15px; /* Even tighter for small screens */
        margin: 0 auto; /* Lock to center */
    }
}
.grecaptcha-badge { 
    visibility: hidden; 
}
/* 1. SAFETY RESET - Prevents the 'Shunt' */
.final-cta, 
.final-cta *, 
.final-cta *::before, 
.final-cta *::after {
    box-sizing: border-box; /* Ensures padding doesn't add to width */
}

.final-cta {
    padding: 60px 15px; /* Consistent padding */
    background: #fdfdfd;
    border-top: 1px solid #eee;
    width: 100%;
    overflow-x: hidden; /* Stops anything from sticking out the right side */
    display: block;
}

.cta-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; /* Allows stacking on mobile */
    gap: 40px;
    width: 100%; /* Ensure it doesn't exceed parent */
}

/* 2. TEXT SIDE */
.cta-info {
    flex: 1 1 450px;
    width: 100%;
}
.cta-info .eyebrow {
    color: #0b3878;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.cta-info h2 {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    color: #333;
    margin-bottom: 20px;
}
.cta-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.method-item i {
    font-size: 1.5rem;
    color: #0b3878;
    width: 30px;
}

.method-item span {
    display: block;
    font-size: 0.85rem;
    color: #888;
}

.method-item strong {
    font-size: 1.1rem;
    color: #0b3878;
}

/* 3. FORM SIDE - Where the drift usually happens */
.cta-form-box {
    flex: 1 1 400px;
    background: #fff;
    padding: 30px; /* Reduced for mobile */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    width: 100%; /* Important */
    max-width: 100%; /* Prevents it pushing right */
}

.quick-form {
    width: 100%;
}

.form-group {
    margin-bottom: 15px;
    width: 100%;
}

.quick-form input, 
.quick-form select, 
.quick-form textarea {
    width: 100% !important; /* Force inputs to stay inside the box */
    max-width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px; /* Prevents iOS auto-zoom on focus */
    display: block;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #ffcc00;
    color: #0b3878;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
}

/* 4. MOBILE-SPECIFIC CENTERING */
@media (max-width: 768px) {
    .cta-wrapper {
        flex-direction: column; /* Stack vertically */
        gap: 30px;
    }
    
    .cta-info {
        text-align: center;
        flex: 1 1 auto;
    }

    .contact-methods {
        align-items: center; /* Center the icons/text */
    }

    .cta-form-box {
        padding: 25px 15px; /* Even tighter for small screens */
        margin: 0 auto; /* Lock to center */
    }
}


/*Older CSS*/
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1rem;
  background-color: #f8f8f8;
  border-radius: 10px;
}

.trust-badge {
  flex: 1 1 120px;
  max-width: 200px;
  text-align: center;
  padding: 0.5rem;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

.trust-badge img {
  max-width: 100%;
  height: auto;
}
/* ---------- PRICING SECTION ---------- */

.pricing {
  padding: 60px 20px;
  background: #f6f7fb;
  text-align: center;
}

.pricing h2 {
  font-size: 32px;
  margin-bottom: 35px;
  color: #1e1e1e;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.price-card h3 {
  margin-bottom: 10px;
  color: #1e73be; /* Your brand blue */
}

.price-card p {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 20px;
}

.price-card .btn.small {
  display: inline-block;
  padding: 10px 18px;
  background: #1e73be;
  color: #fff;
  border-radius: 6px;
  font-size: 15px;
  text-decoration: none;
  transition: 0.2s;
}

.price-card .btn.small:hover {
  background: #155a8f;
}

.price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

/* Base ribbon style */
.ribbon {
  position: absolute;
  top: 28px;
  right: -65px;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 6px 60px;
  transform: rotate(45deg);
  display:flex;
  align-items:center;
  justify-content:center;
  letter-spacing:0.5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Variations */
.ribbon.booked { background: #0077ff; }   /* Most Booked */
.ribbon.value { background: #28a745; }    /* Best Value */
.ribbon.popular { background: #ff9800; }  /* Popular Choice */

/* ---------- AUDIENCES (HOMEOWNER / LANDLORD / COMMERCIAL) ---------- */

.audiences {
  padding: 60px 20px;
  text-align: center;
}

.audiences h2 {
  font-size: 32px;
  margin-bottom: 35px;
  color: #1e1e1e;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.audience-card {
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.audience-card h3 {
  margin-bottom: 10px;
  color: #1e73be;
  font-size: 22px;
}

.audience-card p {
  margin-bottom: 15px;
  color: #444;
}

.audience-card .btn.small {
  display: inline-block;
  padding: 10px 18px;
  background: #1e73be;
  color: #fff;
  border-radius: 6px;
  font-size: 15px;
  text-decoration: none;
  transition: 0.2s;
}

.audience-card .btn.small:hover {
  background: #155a8f;
}

.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.10);
}


/* ---------- MOBILE / TABLET RESPONSIVE ---------- */

@media(max-width: 600px) {
  .pricing h2, .audiences h2 {
    font-size: 26px;
  }

  .price-card, .audience-card {
    padding: 20px;
  }

  .price-card p {
    font-size: 18px;
  }
}

/* ---------- BENEFITS SECTION ---------- */

.benefits {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.benefits h2 {
  font-size: 32px;
  margin-bottom: 35px;
  color: #1e1e1e;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-card {
  background: #f6f7fb;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border: 1px solid #e4e6ec;
  transition: 0.3s;
}

.benefit-card h3 {
  margin-bottom: 12px;
  color: #1e73be;
  font-size: 20px;
}

.benefit-card p {
  color: #444;
  line-height: 1.45;
  font-size: 15px;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.10);
}

/* ---------- MOBILE RESPONSIVE ---------- */

@media(max-width: 600px) {
  .benefits h2 {
    font-size: 26px;
  }

  .benefit-card {
    padding: 20px;
  }
}
.local-services {
  padding: 50px 0;
}

.service-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-links li a {
  background: #f6f7fb;
  padding: 10px 15px;
  border-radius: 6px;
  border: 1px solid #e4e6ec;
  display: inline-block;
  text-decoration: none;
  color: #1e73be;
  transition: 0.3s;
}

.service-links li a:hover {
  background: #1e73be;
  color: #fff;
}
    .trust-banner {
  background: #f7f7f7;
  padding: 35px 0;
  text-align: center;
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
  transition: background 0.2s ease-in-out;
}

.trust-banner:hover {
  background: #f1f1f1;
}

.trust-banner p {
  font-size: 1.15rem;
  max-width: 900px;
  margin: 0 auto;
  color: #2b2b2b;
  font-weight: 500;
  line-height: 1.6;
}
/* ------Trust Strip ------ */
.trust-strip {
  background: #f8fbff;
  border: 1px solid #e2eaff;
  padding: 14px 20px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 25px 0;
  flex-wrap: wrap;
}

/* Left badges container */
.trust-strip .left {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Single badge */
.trust-strip .badge {
  background: #e8f1ff;
  color: #003366;
  padding: 6px 12px;
  font-size: 0.9rem;
  border-radius: 6px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #cfe0ff;
}

/* Muted text (smaller + softer) */
.trust-strip .badge .muted {
  color: #6f7a89;
  font-weight: 500;
  font-size: 0.85rem;
}

/* Right side text */
.trust-strip .right {
  font-size: 0.9rem;
  color: #556;
  text-align: right;
  flex: 1;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .trust-strip {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .trust-strip .right {
    text-align: left;
    margin-top: 6px;
    width: 100%;
  }
}
.silo-card { transition: all 0.3s ease; }
.silo-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); }
.breadcrumb-nav {
    background-color: #f5f7f9;
    padding: 10px 0;
    border-bottom: 1px solid #e1e8ed;
    overflow: hidden; /* Prevents any weird spillover */
}

.breadcrumb-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    /* This is the key: it forces the list to stay away from the button */
    flex: 1; 
    min-width: 0; 
    padding-right: 10px; 
}

.breadcrumb-list li {
    font-size: 0.8rem; /* Slightly smaller for better mobile fit */
    color: #6c757d;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

/* Force the long text to truncate with ... */
.breadcrumb-list li.active {
    color: #333;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block; /* Required for ellipsis to trigger correctly */
}

.breadcrumb-list li + li::before {
    content: "/";
    padding: 0 5px;
    color: #ccc;
}

/* Tablet & Desktop Layout */
@media (min-width: 768px) {
    .breadcrumb-list li { font-size: 0.9rem; }
    .breadcrumb-list li.active { overflow: visible; display: flex; }
}


/*ESTIMATE FORM CSS*/
form {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

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

form .form-section label {
    display: block;
    margin-bottom: 5px;
}

form .form-section input[type="number"],
form .form-section select {
    width: 100%;
    padding: 20px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #45a049;
}

.result {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
}
/* Add styles for result and reset button */
.result {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    background-color: #e9ffe9;
    padding: 15px;
    border: 1px solid #b4e0b4;
    border-radius: 5px;
}

#start-again-btn {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#start-again-btn:hover {
    background-color: #d32f2f;
}
.h2-estimate {text-align:center;}

/*SEARCH BOX*/
#search-container{margin-top:10px;}#search-bar{padding:0.5em;width:300px;}
/*BURRIDGE BLOG*/
.main-blog-container{display:flex;align-items:flex-start;gap:20px;max-width:1200px;margin:auto;padding:20px;} #blog-container{flex:1;padding:20px;display:grid;grid-template-columns:repeat(auto-fill, minmax(300px,1fr));gap:20px;margin-bottom:20px;}
/*SIDEBAR*/
  .sidebar{flex:1;padding:20px;background-color:#f9f9f9;border:1px solid #ddd;border-radius:8px;margin-bottom:20px;margin-top:20px;}
  .sidebar-section{margin-bottom:20px;}
  .sidebar-section h3{font-size:1.2em;color:#333;margin-bottom:10px;text-align:left;border-bottom:2px solid #007bff;padding-bottom:5px;}
  .sidebar-section ul {list-style-type:none;padding:0;}
  .sidebar-section li{cursor:pointer;padding:8px;color:#007bff;}
  .sidebar-section li:hover{background-color:#e0e0e0;}
/*BLOG CARD*/
  .blog-card{background-color:#fff;padding:20px;border-radius:10px;box-shadow:0 4px 6px rgba(0,0,0,0.1);transition:transform 0.2s ease;}
  .blog-card:hover{transform:scale(1.05);}
  .blog-card h2{font-size:24px;margin-bottom:15px;color:#007BFF;}
  .blog-card h2 a {text-decoration:none;color:inherit;}
  .blog-card p {font-size:15px;color:#555;margin-bottom:20px;}
  .blog-card .category{font-size:14px;font-style:italic;color:#777;margin-top:10px;}
  .blog-card .tags{font-size:12px;font-style:italic;color:#777;margin-top:10px;}
/*READ MORE BUTTON*/
  .read-more {display:inline-block;padding:10px 20px;font-size:16px;background-color:#007BFF;color:#FFF;border-radius:5px;text-decoration:none;transition:background-color 0.3s ease;}
  .read-more:hover{background-color:#0056b3;}
/*LOAD MORE BUTTON*/
  #load-more{display:block;width:200px;margin-bottom:10px;padding:12px;font-size:16px;background-color:#28a745;color:#fff;text-align:center;margin:0 auto;border:none;border-radius:5px;cursor:pointer;transition: background-color 0.3s ease;}
  #load-more:hover{background-color:#218838;}
/*BLOG MEDIA SCREEN SIZES*/
  @media (max-width: 480px) {#blog-container{grid-template-columns:1fr;}}
/* Table of Contents Wrapper */
nav#toc {
  background: #f8f9fa; /* Light gray background for contrast */
  border: 1px solid #ddd; /* Subtle border */
  border-radius: 8px; /* Rounded corners */
  padding: 1rem;
  margin-bottom: 2rem; /* Spacing from other elements */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

/* Table of Contents Heading */
nav#toc h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333; /* Darker color for emphasis */
  margin-bottom: 0.5rem;
  border-bottom: 2px solid #007bff; /* Accent line below heading */
  padding-bottom: 0.25rem;
}

/* TOC List Styles */
nav#toc ul {
  list-style: none; /* Remove default bullets */
  padding: 0;
  margin: 0;
}

/* TOC List Items */
nav#toc ul li {
  margin: 0.5rem 0;
}

/* TOC Links */
nav#toc ul li a {
  text-decoration: none; /* Remove underline */
  font-size: 1rem;
  color: #007bff; /* Stylish blue for links */
  font-weight: 500;
  display: block;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  transition: all 0.3s ease; /* Smooth hover transition */
}

/* Hover Effect on Links */
nav#toc ul li a:hover {
  background-color: #007bff; /* Blue background */
  color: #fff; /* White text for contrast */
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

/* Active Link Styles (Optional) */
nav#toc ul li a:active,
nav#toc ul li a:focus {
  outline: none;
  background-color: #0056b3; /* Darker blue */
  color: #fff;
  font-weight: 600;
}
@media (max-width: 768px) {
  nav#toc {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  nav#toc h3 {
    font-size: 1.25rem;
  }
  nav#toc ul li a {
    font-size: 0.9rem;
    padding: 0.3rem 0.5rem;
  }
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  color: #fff;
  padding: 10px;
  font-size: 16px;
  text-align: center;
  z-index: 999;
}
.sticky-cta a {
  color: #ffc107;
  font-weight: bold;
}

/*Reviews*/
.review-carousel-wrapper{width:100%;overflow:hidden;position:relative;margin:20px auto;background-color:#f9f9f9;border:1px solid #ddd;border-radius:8px;}
.review-carousel{display:flex;transition:transform 0.5s ease-in-out;will-change:transform;}
.review-slide{min-width:100%;box-sizing:border-box;padding:20px;text-align:center;}
.review-stars{font-size:20px;margin-bottom:10px;display:flex;justify-content:center;align-items:center;}
.star{color:gold;font-size:18px;}
.rating-number{font-size:20px;margin-left:10px;color:#333;}
.review-service{font-size:18px;font-weight:bold;margin-bottom:5px;}
.review-author{font-size:16px;margin-bottom:5px;color:#555;}
.review-body{font-size:14px;color:#555;}

/*Accreditation */

.accreditation{
  padding:2rem 0;
  background:#fff;
  text-align:center;
  
}

.accreditation h2{
  margin-bottom:1rem;
}

.accreditation .logos{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:1rem;
}

.accreditation .logos img{
  max-width:100px;
  height:auto;
  object-fit:contain;
}
/*404 page not found css*/
.hero-404{
  text-align:center;
  padding:100px 20px;
}

.hero-404 h2{
  font-size:10rem;
  margin:0;
}

.hero-404 {
  font-size:1.5rem;
  margin:20px 0;
}

.cta-button {
  display:inline-block;
  padding:10px 20px;
  background:#333;
  color:#fff;
  text-decoration:none;
  font-size:1.2rem;
}

.suggestions {
  text-align:center;
  padding:20px;
}

.suggestions h2{
  font-size:2rem;
  margin:0 0 20px;
}

.suggestions ul{
  list-style:none;
  padding:0;
  margin:0;
}

.suggestions ul li{
  margin:10px 0;
}

.suggestions ul li a{
  text-decoration:none;
  color:#333;
}




