:root {
    /* Brand Colors - Warm/Retro Palette */
    --bg-cream: #FAF3E1;
    --bg-cream-dark: #F5E7C6; /* Inputs/Cards/Accent BG */
    --primary-orange: #FF6D1F;
    --primary-orange-hover: #E55A12;
    --text-dark: #222222;
    --white: #FFFFFF;
    
    /* Functional */
    --radius-sm: 0.5rem;   /* 8px */
    --radius-md: 1rem;     /* 16px - slightly softer */
    --radius-lg: 2rem;     /* 32px */
    --radius-pill: 50rem;
    
    --shadow-soft: 0 8px 24px rgba(34, 34, 34, 0.04);
    --shadow-card: 0 4px 12px rgba(34, 34, 34, 0.05);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif; /* Friendly, rounded */
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-cream); /* Warm background */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Utilities --- */
.text-orange { color: var(--primary-orange); }
.bg-cream { background-color: var(--bg-cream); }
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-family: var(--font-heading);
    border-radius: var(--radius-pill);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 109, 31, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 109, 31, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--text-dark);
    color: var(--white);
}

/* Highlighted Outline Button (New) */
.btn-outline {
    background-color: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-outline:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 109, 31, 0.2);
    transform: translateY(-2px);
}

/* --- Navigation --- */
.navbar {
    background: rgba(250, 243, 225, 0.95); /* Cream with transparency */
    backdrop-filter: blur(12px);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    color: var(--primary-orange);
    font-size: 1.5rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links a:not(.btn):hover {
    color: var(--primary-orange);
}

/* Status in Nav */
.nav-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0.75rem;
    line-height: 1.3;
    color: var(--text-dark);
    border-right: 1px solid rgba(0,0,0,0.1);
    padding-right: 1.5rem;
    margin-right: -1rem; /* Adjust spacing */
}

.nav-status strong {
    color: var(--primary-orange);
    font-weight: 700;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 26px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 4px;
    transition: 0.3s;
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-cream);
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateX(100%); /* Slide from right */
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav a:not(.btn) {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-dark);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(3px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* --- Hero Section --- */
.hero {
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
}

/* Blobs Background */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 50vw;
    height: 50vw;
    background: var(--bg-cream-dark);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.hero-text .highlight {
    color: var(--primary-orange);
    position: relative;
}

/* Underline decoration */
.hero-text .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--bg-cream-dark);
    z-index: -1;
    border-radius: 4px;
}

.hero-text p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Floating Image */
.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero-img-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    /* Clean, flat look but with shadow */
    box-shadow: 20px 20px 0 var(--bg-cream-dark); 
    border: 4px solid var(--text-dark);
}

.hero-img-box img {
    width: 100%;
    display: block;
    mix-blend-mode: normal;
}

/* --- Cards / Services --- */
.section { padding: 6rem 0; }

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 { font-size: 2.75rem; }
.section-header p { font-size: 1.125rem; color: #666; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    border: 2px solid transparent;
    transition: 0.3s;
    box-shadow: var(--shadow-card);
}

.service-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
}

.icon-box {
    width: 4.5rem;
    height: 4.5rem;
    background: var(--bg-cream-dark);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

/* --- Pricing --- */
.bg-warm { background-color: var(--bg-cream-dark); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
}

.pricing-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.pricing-card.featured {
    background: var(--text-dark);
    color: var(--bg-cream);
}

.pricing-card.featured h3 { color: var(--bg-cream); }
.pricing-card.featured .price-tag { color: var(--primary-orange); }
.pricing-card.featured li { color: #ccc; }
.pricing-card.featured li i { color: var(--primary-orange); }

.price-tag {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin: 1rem 0 2rem;
}

.price-tag span {
    font-size: 1rem;
    color: #888;
    font-weight: 500;
}

/* --- Contact & Footer --- */
.contact-section {
    background: var(--bg-cream);
    padding: 6rem 0;
}

.footer {
    background: var(--text-dark);
    color: var(--bg-cream);
    padding: 4rem 0;
}

.footer p { opacity: 0.7; }

/* Blog/News Links */
.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    font-size: 0.95rem;
}

.read-more-link:hover {
    gap: 0.75rem; /* Slide effect */
    text-decoration: underline;
}

.read-more-link:hover {
    gap: 0.75rem; /* Slide effect */
    text-decoration: underline;
}

/* --- Gallery Grid --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    height: 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-soft);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Logo Marquee --- */
.marquee-container {
    overflow: hidden;
    padding: 2rem 0;
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 4rem;
}

.marquee-content {
    display: flex;
    gap: 4rem;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.brand-item {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ccc;
    font-family: var(--font-heading);
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Colors for simulated logos */
.brand-item.clorox { color: #0057B8; }
.brand-item.tide { color: #F58220; }
.brand-item.downy { color: #0093D0; }
.brand-item.gain { color: #43B02A; }
.brand-item.oxi { color: #0054A6; }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    position: relative;
}

.testimonial-card::before {
    content: '\201C'; /* Quote mark */
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 5rem;
    color: var(--bg-cream-dark);
    font-family: serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #444;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: var(--bg-cream-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-orange);
}

.platform-icon {
    margin-left: auto;
    color: #ccc;
    font-size: 1.25rem;
}

.platform-icon.google { color: #DB4437; }
.platform-icon.facebook { color: #4267B2; }
.platform-icon.yelp { color: #AF0606; }

/* --- Features / Amenities Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-box {
    background: var(--bg-cream-dark);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.feature-box h4 {
    margin: 1rem 0 0.5rem;
    font-size: 1.25rem;
}

/* --- Form Styling --- */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: 0.3s;
    background: var(--bg-cream-dark);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 109, 31, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* Mobile CSS */
@media (max-width: 900px) {
    .nav-links, .nav-status { display: none; }
    .mobile-menu-btn { display: flex; }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-text h1 { font-size: 3rem; }
    .hero-text p { margin: 0 auto 2rem; }
    .hero-btns { justify-content: center; }
    
    .hero-img-box {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Responsive adjustment for tighter nav */
@media (min-width: 901px) and (max-width: 1150px) {
    .nav-links { gap: 1rem; }
    .nav-links a { font-size: 0.9rem; }
    .btn { padding: 0.75rem 1.25rem; }
    .nav-content { padding: 1rem 0; }
    .nav-right { gap: 1rem; }
}
