:root {
    --primary-orange: #FF6B00;
    /* Energetic Orange CTA */
    --primary-orange-hover: #E66000;
    --primary-blue: #00A3FF;
    /* Vibrant cyan */
    --secondary-blue: #70D6FF;
    --text-color: #4B4F58;
    --heading-color: #00627A;
    /* Ocean Teal for all main headings */
    --bg-white: #FFFFFF;
    --bg-light: #EBF8FF;
    /* Very soft cyan-tinted light bg */

    --font-heading: 'Fredoka', 'Montserrat', sans-serif;
    --accent-gold: #FFB800;
    --font-body: 'Open Sans', sans-serif;

    --container-width: 1200px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    /* Prevent horizontal scrolling from overflowing background blobs */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--heading-color) !important;
    margin-bottom: 1rem;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Base Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 18px;
    /* Slightly larger base size */
    letter-spacing: 0.8px;
    /* Fix the smushed Fredoka letters */
}

.btn-primary {
    background: linear-gradient(180deg, #FF8A33 0%, var(--primary-orange) 100%);
    color: white;
    box-shadow:
        0 4px 14px rgba(255, 107, 0, 0.4),
        /* Glow shadow */
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        /* Top highlight border */
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    /* Bottom shading edge */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    /* Make text pop against gradient */
    border: 1px solid #E66000;
    /* Crisp outer edge */
}

.btn-primary:hover {
    background: linear-gradient(180deg, #FF994D 0%, #FF7B1A 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(255, 107, 0, 0.5),
        /* Enhanced glow */
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.btn-large {
    padding: 16px 36px;
    font-size: 20px;
}

/* Header Styles */
.site-header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    /* space between dog and text */
}

.mascot-img {
    max-height: 55px;
    /* dog height */
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text {
    font-family: var(--font-heading);
    color: #00627A;
    /* Ocean Teal for deep, cohesive contrast */
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.5px;
    /* Increased from -0.5px to space letters out */
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.05), 1px 2px 3px rgba(0, 98, 122, 0.2);
}

.logo-subtext {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
    margin-left: 2px;
}

.footer-logo .logo-text {
    color: white;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    /* Added gap to separate menu from CTA */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    /* Increased gap between links */
}

.nav-links a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 18px;
    /* Increased menu font size */
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-blue);
}

.nav-cta {
    padding: 12px 24px;
    /* Slimmer padding for header CTA */
    font-size: 16px;
    /* Smaller font relative to main buttons */
    letter-spacing: 0.5px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
}

/* Mobile Responsive Header */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 20px 0;
        gap: 15px;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 0 20px 20px;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        display: none;
        /* Hidden by default entirely */
        align-items: stretch;
    }

    .main-nav.active {
        display: flex;
        /* Shown when active */
    }

    .nav-cta {
        text-align: center;
    }
}

/* --- Added styles below --- */
/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-10 {
    margin-top: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.bg-light {
    background-color: var(--bg-light);
}

.desktop-only {
    display: block;
}

/* Sections General */
section {
    padding: 80px 0;
}

.cta-banner {
    background-image: linear-gradient(90deg, rgba(0, 98, 122, 0.6) 0%, rgba(0, 98, 122, 0.1) 100%), url('/cta-banner-bg-v5.png');
    background-size: cover;
    background-position: right center;
}

.cta-banner h1,
.cta-banner h2,
.cta-banner h3 {
    color: white !important;
}

.section-header {
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-blue);
}

.section-header .subtitle {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.steps-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
    /* Restore clean container edges */
}



.steps-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
}



.steps-section .container {
    position: relative;
    z-index: 2;
    /* Content above puddles */
}

/* Hero Section */
.hero-section {
    padding: 60px 0 40px;
    background-color: var(--bg-white);
    overflow: hidden;
    /* Prevent background shape bleeding */
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1.8;
    /* Increased to give text more room */
    max-width: 800px;
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: 46px;
    /* Scaled down slightly to fit on one line */
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
    text-wrap: balance;
}

.hero-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.cta-note {
    font-size: 14px;
    color: #777;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-bg {
    position: absolute;
    width: 220%;
    height: 220%;
    background-image: url("/hero-blob.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-42%, -50%);
}

.hero-sign-container {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 100%;
    max-width: 600px;
    container-type: inline-size;
}

.hero-mascot-img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-sign-text {
    position: absolute;
    top: 76%;
    /* Moved down slightly to perfectly center in open wood area */
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    /* Allow text to stretch closer to the edges */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

.sign-title {
    font-family: var(--font-heading);
    color: #3E2723;
    /* Dark woodburned brown */
    font-size: 12.5cqw;
    /* Reduced slightly for better fit */
    font-weight: 800;
    letter-spacing: 2px;
    /* Increased from 0.5px for more breathing room */
    line-height: 1.1;
    mix-blend-mode: multiply;
    /* Crisper singed woodburn text effect: very tight shadow with less spread */
    text-shadow:
        -0.05cqw -0.05cqw 0px rgba(0, 0, 0, 0.8),
        0.05cqw 0.05cqw 0.1cqw rgba(50, 20, 0, 0.6);
}

.sign-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: #000;
    /* Solid black for maximum contrast on the wood grain */
    font-size: 4.8cqw;
    /* Reduced subtitle size slightly to avoid cracks */
    font-weight: 900;
    /* Much bolder */
    text-transform: uppercase;
    letter-spacing: 1px;
    /* Slightly tighter spacing to make it narrower */
    margin-top: 2.2cqw;
    /* Pushed down onto the flat part of the wooden plank */
    margin-left: 0;
    /* Removing the horizontal shift since it's smaller now */
}

/* Benefits Section */
.benefits-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background-color: var(--bg-white);
    z-index: 1;
}

.benefits-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 500px;
    background-color: #EBF8FF;
    top: 50px;
    right: -100px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 0;
}

.benefits-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 300px;
    background-color: #D6F1FF;
    bottom: 50px;
    left: -100px;
    border-radius: 50% 50% 30% 70% / 50% 40% 60% 50%;
    z-index: 0;
    transform: rotate(-20deg);
}

/* Ensure container text stays above blobs */
.benefits-section .container {
    position: relative;
    z-index: 2;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 32px;
    /* Extra soft corners */
    box-shadow: 0 16px 40px rgba(0, 163, 255, 0.08);
    /* Cyan-tinted ultra soft shadow */
    text-align: left;
    transition: var(--transition);
    border: 1px solid rgba(0, 163, 255, 0.1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 163, 255, 0.15);
}

.benefit-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start;
}

.benefit-icon svg {
    width: 25px;
    height: 25px;
    color: var(--primary-blue);
    opacity: 0.6;
}

.benefit-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.benefit-card h4 small {
    display: block;
    font-size: 14px;
    color: var(--text-color);
    font-weight: 400;
    margin-top: 5px;
}

/* How It Works Section */
.steps-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
    position: relative;
    padding-top: 40px;
    /* Space for absolute icons */
}

.step-card {
    flex: 1;
    text-align: left;
    position: relative;
    background: white;
    padding: 60px 30px 30px;
    border: 2px solid #D6F1FF;
    /* More vibrant border */
    border-radius: 32px;
    box-shadow: 0 12px 30px rgba(0, 163, 255, 0.06);
}

.step-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Create a circular badge */
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 6px 20px rgba(0, 163, 255, 0.15);
    overflow: hidden;
    /* Crop images to circle */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    /* Remove old padding */
    z-index: 10;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill the circle entirely */
    border-radius: 50%;
}

.step-card h4 {
    font-size: 20px;
    color: var(--heading-color);
    margin-bottom: 15px;
}

/* Pricing Section */
.pricing-section {
    position: relative;
    overflow: hidden;
    /* Restore clean container edges */
}

.pricing-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 500px;
    background-color: #EBF8FF;
    /* Solid very light cyan */
    top: 150px;
    /* Shifted down to safely avoid the top straight edge boundary */
    right: -100px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: -1;
}

.pricing-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 300px;
    background-color: #D6F1FF;
    /* Solid more saturated cyan */
    bottom: 50px;
    /* Raised above the opaque CTA footer to prevent straight-line cutoff */
    left: -100px;
    border-radius: 50% 50% 30% 70% / 50% 40% 60% 50%;
    z-index: -1;
    transform: rotate(-20deg);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    border: 2px solid #EBF8FF;
    border-radius: 32px;
    padding: 40px 30px;
    flex: 1;
    max-width: 350px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.pricing-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 115, 187, 0.1);
}

.pricing-card.popular {
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(0, 163, 255, 0.15);
    transform: scale(1.05);
    /* Make it pop */
}

.pricing-card h4 {
    font-size: 24px;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: #222;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.price {
    font-size: 18px;
    color: var(--text-color);
    margin-top: 15px;
}

.price span {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-green);
}

/* FAQ Section */
.faq-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.faq-content {
    flex: 1;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 16px;
    overflow: hidden;
    background: white;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--heading-color);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header::after {
    content: '+';
    font-size: 24px;
    color: var(--heading-color);
}

.accordion-header.active::after {
    content: '−';
}

.accordion-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-body.active {
    padding: 0 20px 20px;
}

.faq-image {
    flex: 1;
}

/* Footer Section */
.site-footer {
    background-color: #222;
    color: #ccc;
    padding: 60px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.site-footer h4 {
    color: white;
    margin-bottom: 20px;
}

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

.site-footer ul li {
    margin-bottom: 10px;
}

.site-footer a {
    color: #ccc;
}

.site-footer a:hover {
    color: var(--primary-blue);
}

/* Mobile Adjustments for Main Content */
@media (max-width: 991px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        /* Reorder back to correct flow (Text top, Image bottom) */
        text-align: center;
        padding-top: 30px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-cta {
        align-items: center;
    }

    .hero-image-bg {
        width: 100%;
        padding-bottom: 100%;
        height: 0;
    }

    .hero-section {
        padding-bottom: 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        flex-direction: column;
        gap: 60px;
        padding-top: 50px;
    }

    .desktop-only {
        display: none !important;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .why-choose-container {
        flex-direction: column;
        gap: 30px;
        text-align: center !important;
    }

    .benefit-list {
        grid-template-columns: 1fr !important;
        justify-items: center;
    }

    .pricing-card.popular {
        transform: none;
        /* fix mobile stacking pop issue */
    }

    .pricing-card {
        max-width: 100%;
        width: 100%;
    }

    .faq-container {
        flex-direction: column;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Services Page Styles
   ============================================*/
/* Services Page */
.services-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services-hero-image {
    max-width: 300px;
    margin-left: auto;
    margin-right: 0;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1050px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 32px;
    box-shadow: 0 16px 40px rgba(0, 163, 255, 0.08);
    text-align: center;
    border: 1px solid rgba(0, 163, 255, 0.1);
    transition: var(--transition);
}

.service-card ul {
    list-style: disc;
    padding-left: 0;
    margin: 25px auto;
    width: fit-content;
    text-align: left;
}

.service-card h3 {
    font-size: 24px;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 163, 255, 0.15);
}

.service-card-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.paw-list {
    list-style: none;
    padding: 0;
}

.paw-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
}

.paw-icon {
    color: var(--primary-blue);
    display: flex;
    align-items: center;
}

.svc-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 768px) {

    .services-hero-grid,
    .service-cards-grid,
    .svc-two-col {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   About & Contact Page Styles
   ============================================ */

/* About Page - Story Section */
.about-story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-grid img {
    border-radius: 20px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Contact Page */
.contact-section-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-card {
    background: white;
    border: 1px solid rgba(0, 115, 187, 0.12);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.contact-form label {
    display: block;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 8px;
    color: var(--heading-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8edf2;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-color);
    transition: var(--transition);
    margin-bottom: 22px;
    background: var(--bg-light);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 115, 187, 0.08);
}

.contact-form textarea {
    height: 160px;
    resize: vertical;
}

.contact-form .btn-submit {
    display: inline-block;
    padding: 14px 34px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    background: #111;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    font-family: var(--font-heading);
    transition: var(--transition);
    letter-spacing: 0.3px;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.1), 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), 0 12px 25px rgba(0, 0, 0, 0.25);
    background: #333;
}

.contact-info-block {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #eee;
}

.contact-info-block:last-child {
    border-bottom: none;
}

.contact-info-block h4 {
    color: var(--heading-color);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.contact-info-block a {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
}

.contact-info-block p {
    color: var(--text-color);
    line-height: 1.7;
}

.service-area-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    row-gap: 0;
    margin-bottom: 0;
}

.service-area-list li {
    margin-bottom: 14px;
}

@media (max-width: 991px) {
    .about-story-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 32px;
    }
}

/* Services Background Blobs */
.services-hero-section::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background-image: url("/hero-blob.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 0;
    top: -10%;
    left: -20%;
    opacity: 0.08;
    transform: rotate(-15deg);
}

.services-pricing-section::before {
    content: '';
    position: absolute;
    width: 140%;
    height: 100%;
    background-image: url("/hero-blob.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 0;
    top: 0;
    right: -25%;
    opacity: 0.10;
    transform: rotate(140deg);
}

.services-included-section::before {
    content: '';
    position: absolute;
    width: 130%;
    height: 120%;
    background-image: url("/hero-blob.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 0;
    bottom: -10%;
    left: -30%;
    opacity: 0.08;
    transform: rotate(-45deg);
}

.services-safety-section::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 90%;
    background-image: url("/hero-blob.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 0;
    top: 5%;
    right: -30%;
    opacity: 0.10;
    transform: rotate(170deg);
}

.services-hero-section .container,
.services-pricing-section .container,
.services-included-section .container,
.services-safety-section .container {
    position: relative;
    z-index: 10;
}

/* About & Contact Background Blobs */
.about-hero-section::before {
    content: '';
    position: absolute;
    width: 130%;
    height: 130%;
    background-image: url("/hero-blob.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 0;
    top: -15%;
    left: -25%;
    opacity: 0.10;
    transform: rotate(25deg);
}

.about-local-section::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 120%;
    background-image: url("/hero-blob.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 0;
    bottom: -20%;
    right: -30%;
    opacity: 0.08;
    transform: rotate(160deg);
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    background-image: url("/hero-blob.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 0;
    top: -20%;
    left: 10%;
    opacity: 0.09;
    transform: rotate(-30deg);
}

.contact-main-section::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 110%;
    background-image: url("/hero-blob.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 0;
    top: 5%;
    right: -25%;
    opacity: 0.08;
    transform: rotate(100deg);
}

.about-hero-section .container,
.about-local-section .container,
.contact-hero-section .container,
.contact-main-section .container {
    position: relative;
    z-index: 10;
}