/* ScrubFix Design System - Pure CSS */

/* CSS Variables (Design Tokens) */
:root {
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(158, 15%, 15%);

    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(158, 15%, 15%);

    --primary: hsl(142, 76%, 36%);
    --primary-foreground: hsl(0, 0%, 98%);
    --primary-light: hsl(142, 76%, 45%);
    --primary-dark: hsl(142, 76%, 28%);

    --secondary: hsl(120, 25%, 85%);
    --secondary-foreground: hsl(158, 15%, 15%);

    --muted: hsl(120, 15%, 95%);
    --muted-foreground: hsl(158, 12%, 45%);

    --accent: hsl(89, 60%, 55%);
    --accent-foreground: hsl(158, 15%, 15%);
    --accent-light: hsl(89, 60%, 65%);

    --success: hsl(142, 76%, 36%);
    --success-foreground: hsl(0, 0%, 98%);

    --destructive: hsl(0, 84%, 60%);
    --destructive-foreground: hsl(0, 0%, 98%);

    --border: hsl(120, 15%, 90%);
    --input: hsl(120, 15%, 92%);
    --ring: hsl(142, 76%, 36%);

    --radius: 0.75rem;

    /* Custom design tokens */
    --gradient-hero: linear-gradient(135deg, hsl(142, 76%, 36%), hsl(89, 60%, 45%));
    --gradient-subtle: linear-gradient(180deg, hsl(120, 25%, 98%), hsl(120, 15%, 95%));
    --shadow-soft: 0 4px 20px -4px hsl(142, 76%, 36%, 0.1);
    --shadow-strong: 0 8px 40px -8px hsl(142, 76%, 36%, 0.2);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Button Styles */
.cta-button {
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    font-size: 1rem;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.hero-cta {
    background: var(--accent);
    color: var(--accent-foreground);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-strong);
    font-size: 1.125rem;
}

.hero-cta:hover {
    background: var(--accent-light);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: hsla(0, 0%, 100%, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.logo-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-hero);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
    transition: var(--transition-smooth);
}

.logo-button:hover .logo-icon {
    transform: scale(1.05);
}

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    color: var(--foreground);
    transition: var(--transition-smooth);
}

.logo-button:hover .logo-text {
    color: var(--primary);
}

.desktop-nav {
    display: none;
    gap: 2rem;
}

.nav-item {
    background: none;
    border: none;
    color: var(--foreground);
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-smooth);
}

.nav-item:hover {
    color: var(--primary);
}

.nav-item:hover::after {
    width: 100%;
}

.desktop-cta {
    display: none;
}

.mobile-menu-button {
    display: block;
    padding: 0.5rem;
    border-radius: var(--radius);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.mobile-menu-button:hover {
    background: var(--muted);
}

.menu-icon,
.close-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--foreground);
}

.mobile-nav {
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-item {
    background: none;
    border: none;
    color: var(--foreground);
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
}

.mobile-nav-item:hover {
    color: var(--primary);
}

.mobile-cta {
    margin-top: 1rem;
    width: 100%;
}

/* Responsive Header */
@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    
    .desktop-cta {
        display: block;
    }
    
    .mobile-menu-button {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    /*min-height: 100vh;*/
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 4rem;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        hsla(142, 76%, 36%, 0.4) 0%, 
        hsla(142, 76%, 36%, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 1rem;
    max-width: 64rem;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-light);
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
    }
}

/* Section Styles */
.services,
.why-choose-us,
.about,
.pricing,
.contact {
    padding: 5rem 0;
}

.services,
.about,
.contact,
.before-and-after {
    background: var(--gradient-subtle);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

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

.service-card {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid hsla(120, 15%, 90%, 0.5);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.service-card:hover {
    box-shadow: var(--shadow-strong);
    border-color: hsla(142, 76%, 36%, 0.3);
}

.service-content {
    padding: 2rem;
    text-align: center;
}

.service-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background: hsla(142, 76%, 36%, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: hsla(142, 76%, 36%, 0.2);
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.service-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Why Choose Us Section */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    background: hsla(142, 76%, 36%, 0.1);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.benefit-item:hover .benefit-icon {
    background: hsla(142, 76%, 36%, 0.2);
    transform: scale(1.1);
}

.benefit-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary);
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.benefit-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 5rem;
}

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

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--muted-foreground);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.highlight {
    font-weight: 600;
    color: var(--primary) !important;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-card {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid hsla(120, 15%, 90%, 0.5);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.value-card:hover {
    /*box-shadow: var(--shadow-soft);*/
}

.value-content {
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-icon {
    width: 3rem;
    height: 3rem;
    background: hsla(142, 76%, 36%, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.value-description {
    color: var(--muted-foreground);
}

/* Pricing Section */
.pricing-card {
    max-width: 64rem;
    margin: 0 auto;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid hsla(142, 76%, 36%, 0.2);
    box-shadow: var(--shadow-soft);
}

.pricing-content {
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .pricing-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.pricing-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--success);
}

.pricing-banner {
    background: var(--gradient-hero);
    color: white;
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: var(--shadow-strong);
    text-align: center;
}

.banner-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.banner-description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.savings-box {
    background: hsla(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 1rem;
}

.savings-label {
    font-weight: 600;
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.savings-value {
    font-size: 1.875rem;
    font-weight: bold;
}

.savings-note {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-form-container {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid hsla(120, 15%, 90%, 0.5);
    box-shadow: var(--shadow-soft);
}

.contact-form {
    padding: 2rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    margin: 1em;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.hidden {
    display: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: var(--foreground);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--input);
    border-radius: var(--radius);
    background: var(--background);
    color: var(--foreground);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 3px hsla(142, 76%, 36%, 0.1);
}

.form-submit {
    width: 100%;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    font-size: 1.125rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.form-submit:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid hsla(120, 15%, 90%, 0.5);
    box-shadow: var(--shadow-soft);
    padding: 2rem;
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: hsla(142, 76%, 36%, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.contact-label {
    font-weight: 600;
    color: var(--foreground);
}

.contact-value {
    color: var(--muted-foreground);
}

.guarantee-card {
    background: var(--gradient-hero);
    color: white;
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: var(--shadow-strong);
}

.guarantee-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.guarantee-description {
    opacity: 0.9;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #093218;/*var(--primary);*/ 
    color: var(--primary-foreground);
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-note {
    opacity: 0.6;
    font-size: 0.875rem;
}

.footer-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    background: none;
    border: none;
    color: inherit;
    opacity: 0.8;
    cursor: pointer;
    text-align: left;
    padding: 0;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    opacity: 1;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid hsla(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    opacity: 0.6;
    font-size: 0.875rem;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
    padding: 1rem;
    z-index: 1001;
    max-width: 24rem;
    animation: slideIn 0.3s ease-out;
}

.toast.hidden {
    display: none;
}

.toast-title {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.toast-message {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 767px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .services,
    .why-choose-us,
    .about,
    .pricing,
    .contact {
        padding: 3rem 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}


/* WOODY */
button.nav-item {
    font-size: 1.1em;
}
.logo-icon {
    background: unset;
}
.hero {
    min-height: 600px;
}
.hero-background {
    background: url(https://scrubfix.co.uk/wp-content/plugins/wh-multitool/lander/i/regain-overgrown-land.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.hero-overlay {
    background: linear-gradient(135deg, hsl(142deg 74.37% 19.51%) 0%, hsl(142deg 77.75% 22.09% / 77%) 100%);
}
.hero-cta {
    background: #FFF;
    box-shadow: 1px 2px 9px rgb(0 0 0 / 38%);
}
.hero-title {
    text-shadow: 1px 2px 4px rgb(0 0 0 / 53%);
}
.hero-subtitle, .hero-description {
    text-shadow: 1px 2px 9px rgb(0 0 0 / 66%);
}
.section-description {
    max-width: 800px;
    color:#01320b;
}
.services {
    padding: 4rem 0 2rem 0;
}
.about-text {
    color: #000;
    background: #FFF;
    padding: 1em;
    border-radius: var(--radius);
    border: 1px solid hsla(120, 15%, 90%, 0.5);
}
.cta-button-alt {
    background: #FFF;
    color: #000;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    font-size: 1rem;
}
.wflex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.video-wrap {
    max-width: 720px;
    margin: auto;
}
.video-wrap video {
    width: 100%    !important;
    height: auto   !important;
}
.values-img {
    text-align: center;
}
.values-img img {
    max-width: 260px;
    border-radius: 4px;
    border: 1px solid hsla(120, 15%, 90%, 0.5);
    box-shadow: var(--shadow-soft);
    margin: 0 auto;
}

.divider-illustration {
    text-align: center;
}
.divider-illustration img {
    max-width: 200px;
    height: auto;
    margin: 0 auto;
}

#before-and-after .section-title {
    padding-top:2em;
}

.before-and-after-item {
    margin-bottom: 0.7em;
}
.before-and-after-item img {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid hsla(120, 15%, 90%, 0.5);
    box-shadow: var(--shadow-soft);
}
@media (max-width: 767px) {

    .before-and-after-item img {
        max-width: 90%;
    }

    .divider-illustration img {
        max-width: 50%;
        margin:auto;
        display: block;
    }
}