<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Peninsula Lawncare - Service Proposal</title>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
        }
        
        .header {
            background: linear-gradient(135deg, #2c5f2d 0%, #4a8b4f 100%);
            color: white;
            padding: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }
        
        .logo {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        
        .tagline {
            font-size: 14px;
            opacity: 0.95;
            font-weight: 300;
            letter-spacing: 1px;
        }
        
        .proposal-title {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 20px;
            font-weight: 300;
            letter-spacing: 2px;
        }
        
        .content {
            padding: 40px;
        }
        
        .section {
            margin-bottom: 35px;
        }
        
        .section-title {
            color: #2c5f2d;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #4a8b4f;
            display: inline-block;
        }
        
        .services-list {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        
        .service-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 14px;
        }
        
        .service-item:last-child {
            margin-bottom: 0;
        }
        
        .checkmark {
            color: #4a8b4f;
            margin-right: 12px;
            font-size: 18px;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 20px;
        }
        
        .pricing-card {
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            padding: 25px 20px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .pricing-card:hover {
            border-color: #4a8b4f;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .pricing-card.featured {
            border-color: #4a8b4f;
            background: linear-gradient(to bottom, #f0f7f0, white);
        }
        
        .pricing-card.featured::before {
            content: 'BEST VALUE';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #4a8b4f;
            color: white;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 1px;
        }
        
        .pricing-frequency {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }
        
        .pricing-amount {
            font-size: 36px;
            font-weight: 700;
            color: #2c5f2d;
            margin-bottom: 5px;
        }
        
        .pricing-amount span {
            font-size: 20px;
            font-weight: 400;
        }
        
        .pricing-detail {
            font-size: 12px;
            color: #666;
        }
        
        .optional-services {
            background: #fef9f0;
            border: 1px solid #f0d9b5;
            border-radius: 8px;
            padding: 25px;
            margin-top: 30px;
        }
        
        .optional-header {
            color: #d4a574;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }
        
        .optional-item {
            background: white;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 15px;
            display: flex;
            justify-content: space-between;
            align-items: start;
        }
        
        .optional-content {
            flex: 1;
        }
        
        .optional-title {
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }
        
        .optional-desc {
            font-size: 13px;
            color: #666;
            line-height: 1.5;
        }
        
        .optional-price {
            font-size: 24px;
            font-weight: 700;
            color: #d4a574;
            margin-left: 20px;
        }
        
        .equipment-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 30px 0;
            padding: 25px;
            background: #fafafa;
            border-radius: 12px;
        }
        
        .equipment-card {
            text-align: center;
        }
        
        .equipment-image {
            width: 100%;
            height: 200px;
            background: #f5f5f5;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            border: 2px solid #4a8b4f;
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: center;
        }
        
        .equipment-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 6px;
        }
        
        /* Hide placeholder if background image loads */
        .equipment-image[style*="background-image"] .equipment-image-placeholder {
            display: none;

Text or Call us to book  408-827-1271

Online booking will be available in a few weeks

X