@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700&family=Roboto:wght@300;400;500;700&display=swap');

body {
    margin: 0;
    font-family: 'Nunito Sans', 'Roboto', Arial, sans-serif;
    background-color: white;
    color: black;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Legacy nav styles - only apply to non-header nav elements */
nav:not(.main-navigation) {
    background-color: black;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    height: 100px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 2em;
    font-weight: bold;
}

/* Legacy nav-links styles - only apply to non-header navigation */
.nav-links:not(.nav-menu-items) {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links:not(.nav-menu-items) li {
    margin-left: 30px;
    display: flex;
    align-items: center;
}

.nav-links:not(.nav-menu-items) a,
.nav-links:not(.nav-menu-items) .nav-btn {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    transition: color 0.3s ease;
}

.nav-links:not(.nav-menu-items) a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    opacity: 0;
    transition: opacity 0.3s ease, bottom 0.3s ease;
}

.nav-links:not(.nav-menu-items) a:hover::after {
    opacity: 1;
    bottom: -3px;
}

main {
    flex: 1;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 10px;
}

.hero {
    position: relative;
    width: 100%;
    background-color: #333;
}

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

.hero-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.3);
}

/* Form Styles */
.form-group {
    margin-bottom: 15px;
}

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

.form-input, .form-textarea {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

.form-textarea {
    resize: vertical;
}

.btn {
    padding: 10px 20px;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #007bff;
    border-radius: 4px;
}

.btn-secondary {
    padding: 8px 16px;
    background-color: #6c757d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.quote-actions {
    margin-bottom: 20px;
    text-align: right;
}

/* Contact Submissions */
.submissions-list {
    list-style: none;
    padding: 0;
}

.submission-item {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

.load-more-container {
    text-align: center;
    margin: 20px 0;
}

.loading {
    display: none;
    margin-top: 10px;
}

/* Chat Styles */
.chat-log {
    height: 400px;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
    background: #f9f9f9;
}

.chat-form {
    display: flex;
}

.chat-input {
    flex: 1;
    padding: 10px;
}

/* Modal Styles */
.modal {
    padding: 30px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-align: center;
    width: 300px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-title {
    margin-top: 0;
    margin-bottom: 15px;
}

.modal-description {
    margin-bottom: 20px;
    color: #666;
}

.modal-input {
    padding: 10px;
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
}

.modal-btn {
    padding: 10px 24px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
}

/* Auth Pages */
.auth-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.auth-container h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 2rem;
}

.auth-form {
    width: 100%;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.auth-form input[type="text"]:focus,
.auth-form input[type="email"]:focus,
.auth-form input[type="password"]:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.auth-btn {
    width: 100%;
    padding: 14px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.auth-btn:hover {
    background: #0056b3;
}

.auth-links {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e1e5e9;
}

.auth-links a {
    color: #007bff;
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #f5c6cb;
    margin-bottom: 20px;
    text-align: center;
}

/* Blog Styles */
.blog-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.blog-header h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
    font-weight: 300;
}

.create-post-link {
    display: inline-block;
    background: #45a349;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.create-post-link:hover {
    background: #0052a3;
    color: white;
}

/* Blog List */
.blog-posts {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.blog-post-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.blog-post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.blog-post-header {
    padding: 24px 24px 0 24px;
}

.blog-post-title {
    font-size: 1.5em;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.blog-post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-title a:hover {
    color: #45a349;
}

.blog-post-meta {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-post-meta .author {
    font-weight: 500;
    color: #333;
}

.blog-post-meta .date {
    color: #888;
}

.blog-post-excerpt {
    padding: 0 24px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-post-footer {
    padding: 0 24px 24px 24px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    color: #45a349;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #0052a3;
}

.read-more-link::after {
    content: '→';
    margin-left: 6px;
    transition: margin-left 0.3s ease;
}

.read-more-link:hover::after {
    margin-left: 10px;
}

.no-posts {
    text-align: center;
    color: #666;
    font-size: 1.2em;
    padding: 40px 20px;
}

/* Blog View */
.blog-post-full {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-full-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #eee;
}

.blog-post-full-title {
    font-size: 2.5em;
    color: #333;
    margin: 0 0 20px 0;
    line-height: 1.2;
    font-weight: 300;
}

.blog-post-full-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    font-size: 1em;
}

.blog-post-full-meta .author {
    font-weight: 500;
    color: #333;
}

.blog-post-full-meta .date {
    color: #888;
}

.post-content {
    line-height: 1.8;
    color: #333;
    font-size: 1.1em;
    margin-bottom: 40px;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    margin-top: 2em;
    margin-bottom: 0.5em;
    color: #333;
    font-weight: 400;
}

.post-content h1 { font-size: 2em; border-bottom: 2px solid #eee; padding-bottom: 10px; }
.post-content h2 { font-size: 1.8em; border-bottom: 1px solid #eee; padding-bottom: 8px; }
.post-content h3 { font-size: 1.5em; }
.post-content h4 { font-size: 1.3em; }
.post-content h5 { font-size: 1.1em; }
.post-content h6 { font-size: 1em; }

.post-content p {
    margin-bottom: 1.5em;
}

.post-content blockquote {
    border-left: 4px solid #45a349;
    padding-left: 20px;
    margin: 2em 0;
    color: #555;
    font-style: italic;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 0 8px 8px 0;
}

.post-content code {
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.post-content pre {
    background: #f8f8f8;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    padding: 20px;
    overflow-x: auto;
    margin: 2em 0;
}

.post-content pre code {
    background: none;
    padding: 0;
}

.post-content ul,
.post-content ol {
    margin: 1.5em 0;
    padding-left: 2em;
}

.post-content li {
    margin-bottom: 0.5em;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2em 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.post-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.edit-post-link {
    background: #28a745;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.edit-post-link:hover {
    background: #218838;
    color: white;
}

.back-link {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.back-link a {
    color: #666;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.back-link a:hover {
    color: #333;
    border-color: #bbb;
    background: #f8f8f8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2em;
    }

    .blog-post-full-title {
        font-size: 2em;
    }

    .blog-posts {
        gap: 20px;
    }

    .blog-post-card {
        margin: 0 -10px;
    }

    .blog-post-header,
    .blog-post-excerpt,
    .blog-post-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .post-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .back-link {
        flex-direction: column;
        gap: 10px;
    }
}

/* Quote Form Styles */
.quote-form-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Wider container for Steps 3 and 4 on desktop */
@media (min-width: 769px) {
    .quote-form-container:has(.step-3),
    .quote-form-container:has(.step-4) {
        max-width: 900px;
    }
}

.quote-form-container h1 {
    text-align: center;
    color: #333;
    margin-bottom: 10px;
    font-size: 2.2em;
    font-weight: 300;
}

.quote-intro {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1em;
    line-height: 1.5;
}

/* Map Confirmation Styles */
.map-confirmation {
    text-align: center;
    margin-bottom: 40px;
}

.map-container {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.property-map {
    width: 100%;
    height: auto;
    display: block;
}

.map-confirmation h3 {
    color: #333;
    margin: 20px 0;
    font-size: 1.4em;
    font-weight: 500;
}

.confirmation-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.confirmation-buttons .btn-primary,
.confirmation-buttons .btn-secondary {
    padding: 12px 24px;
    font-size: 16px;
    min-width: 150px;
}

.quote-step {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.step-indicator {
    background: #f8f9fa;
    padding: 20px 24px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #dee2e6;
    color: #6c757d;
    font-weight: 600;
    font-size: 0.9em;
}

.step-number.active {
    background: #45a349;
    color: white;
}

.step-label {
    font-weight: 500;
    color: #495057;
}

.step-content {
    padding: 32px 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 1em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #45a349;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 48px;
    appearance: none;
    cursor: pointer;
}

.comments-section {
    margin-top: 24px;
    margin-bottom: 24px;
}

.address-summary {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    border-left: 4px solid #45a349;
}

.address-summary p {
    margin: 0;
    color: #495057;
}

/* Service Level Cards */
.service-levels {
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-levels h3 {
    text-align: center;
    color: #333;
    margin-bottom: 24px;
    font-size: 1.4em;
    font-weight: 500;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.service-card {
    background: white;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card-banner {
    padding: 12px 20px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card.level1 .service-card-banner {
    background: #1b5e20;
}

.service-card.level2 .service-card-banner {
    background: #388e3c;
}

.service-card.level3 .service-card-banner {
    background: #4caf50;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.service-card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.service-card.level1 .service-card-title {
    color: #1b5e20;
}

.service-card.level2 .service-card-title {
    color: #388e3c;
}

.service-card.level3 .service-card-title {
    color: #4caf50;
}

.service-card-subtitle {
    font-size: 14px;
    color: #555;
    margin: 0 0 16px 0;
}

.service-card-features {
    text-align: left;
    margin: 0 0 16px 0;
    padding: 0;
    list-style: none;
    min-height: 180px;
}

.service-card-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 13px;
    color: #444;
    line-height: 1.4;
}

.feature-check {
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: #febf10;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    margin-top: 1px;
}

.feature-check svg {
    width: 12px;
    height: 12px;
    fill: white;
    stroke: white;
    stroke-width: 2px;
}

.discount-pill {
    display: inline-block;
    background: #febf10;
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin: 8px 0 16px 0;
}

.service-card-price {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.service-card-price .price-amount {
    font-size: 28px;
    font-weight: 700;
}

.service-card.level1 .price-amount {
    color: #1b5e20;
}

.service-card.level2 .price-amount {
    color: #388e3c;
}

.service-card.level3 .price-amount {
    color: #4caf50;
}

.service-card-price .price-period {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}

.service-card-button {
    padding: 20px;
}

.service-card.level1 .btn-select {
    background: #1b5e20; /* Dark green */
}

.service-card.level2 .btn-select {
    background: #388e3c; /* Medium green */
}

.service-card.level3 .btn-select {
    background: #4caf50; /* Light green */
}

.btn-select {
    padding: 12px 24px;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.btn-select:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.service-card.selected {
    border-color: #2e7d32;
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.3);
}

.service-card.selected .btn-select {
    background: #2e7d32 !important; /* Darker green when selected */
}

/* Additional Services */
.additional-services {
    margin-bottom: 32px;
}

.additional-services h3 {
    color: #45a349;
    margin-bottom: 16px;
    font-size: 1.6em;
    font-weight: 700;
}

.service-options-header {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2e7d32 0%, #388e3c 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
    font-size: 14px;
}

.header-service {
    flex: 1;
    padding-left: 70px;
}

.header-price {
    width: 120px;
    text-align: right;
}

.service-options {
    background: #f8f9fa;
    border-radius: 0 0 8px 8px;
    padding: 0;
    overflow: hidden;
}

.service-option {
    margin: 0;
    border-bottom: 1px solid #e9ecef;
}

.service-option:last-child {
    border-bottom: none;
}

.option-row {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 16px 20px;
    background: white;
    transition: all 0.3s ease;
}

.option-row:hover {
    background: #f8f9ff;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
    margin-right: 16px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.toggle-switch input:checked + .toggle-slider {
    background-color: #febf10;
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.option-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.option-text {
    flex: 1;
    font-weight: 700;
    color: #333;
    font-size: 15px;
}

.option-expand {
    color: #febf10;
    margin-left: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.option-expand.expanded {
    transform: rotate(180deg);
}

.option-expand svg {
    width: 24px;
    height: 24px;
    fill: #febf10;
    stroke: #febf10;
    stroke-width: 1px;
}

.option-price {
    width: 120px;
    text-align: right;
    font-weight: 600;
    color: #45a349;
}

.option-description {
    display: none;
    padding: 0 20px 16px 86px;
    background: white;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px dashed #e9ecef;
}

.option-description.expanded {
    display: block;
}

/* Description features list - matching level cards style */
.option-description .description-features {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.option-description .description-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 13px;
    color: #444;
    line-height: 1.5;
}

.option-description .description-features li .feature-check {
    width: 20px;
    height: 20px;
    background: #45a349;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 1px;
}

.option-description .description-features li .feature-check svg {
    width: 12px;
    height: 12px;
    fill: white;
}

.option-description .description-note {
    font-size: 12px;
    color: #666;
    margin-top: 8px;
    font-style: italic;
}

.option-description p {
    margin: 8px 0;
    font-size: 13px;
    color: #444;
}

/* Selected Services Section */
.selected-services-section {
    margin: 24px 0 32px;
    background: #f0f7f0;
    border-radius: 8px;
    padding: 20px;
    border: 2px solid #45a349;
}

.selected-services-section h3 {
    color: #45a349;
    margin: 0 0 16px;
    font-size: 1.3em;
    font-weight: 700;
}

.selected-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.selected-services-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #d4e8d4;
    font-weight: 500;
}

.selected-services-list li:last-child {
    border-bottom: none;
}

.selected-service-name {
    color: #333;
}

.selected-service-price {
    color: #45a349;
    font-weight: 600;
}

/* Responsive Design for Service Cards */
@media (max-width: 768px) {
    .service-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card-banner {
        font-size: 16px;
        padding: 10px 16px;
    }

    .service-card-title {
        font-size: 16px;
    }

    .service-card-features li {
        font-size: 12px;
    }

    .service-card-features {
        min-height: auto;
    }

    .service-card-price .price-amount {
        font-size: 24px;
    }

    .service-levels {
        max-width: 100%;
    }

    .service-levels h3,
    .additional-services h3 {
        font-size: 1.2em;
    }

    .confirmation-buttons {
        flex-direction: column;
        align-items: center;
    }

    .confirmation-buttons .btn-primary,
    .confirmation-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .service-options-header {
        padding: 10px 16px;
        font-size: 12px;
    }

    .header-service {
        padding-left: 60px;
    }

    .header-price {
        width: 90px;
    }

    .option-row {
        padding: 12px 16px;
        flex-wrap: wrap;
    }

    .option-text {
        font-size: 14px;
    }

    .option-price {
        width: 90px;
        font-size: 13px;
    }
}

.form-help {
    display: block;
    margin-top: 6px;
    color: #6c757d;
    font-size: 0.9em;
    line-height: 1.4;
}

.form-actions {
    margin-top: 32px;
    text-align: center;
}

.btn-primary {
    background: #45a349;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: #3a8c3e;
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    margin-bottom: 24px;
    text-align: center;
}

/* Responsive Design for Quote Form */
@media (max-width: 768px) {
    .quote-form-container {
        margin: 20px auto;
        padding: 0 15px;
    }

    .quote-form-container h1 {
        font-size: 1.8em;
    }

    .step-content {
        padding: 24px 20px;
    }

    .step-indicator {
        padding: 16px 20px;
    }

    .form-group input[type="text"]:focus,
    .form-group input[type="email"]:focus,
    .form-group input[type="tel"]:focus,
    .form-group select:focus {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .btn-primary {
        width: 100%;
        padding: 16px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

.modal-content.modal-alert {
    max-width: 450px;
    text-align: center;
}

.modal-content.modal-alert .modal-header {
    justify-content: center;
    padding-right: 50px;
}

.modal-content.modal-alert .modal-header h3 {
    color: #febf10;
}

.modal-content.modal-alert .modal-body {
    padding: 20px 30px;
}

.modal-content.modal-alert .modal-body p {
    margin: 10px 0;
    color: #555;
}

.modal-content.modal-alert .modal-footer {
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.5em;
}

.modal-close {
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #333;
}

.modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.disclaimer-text {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.disclaimer-text p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #444;
}

.disclaimer-text .policies-link {
    margin-top: 15px;
    font-weight: 600;
}

.disclaimer-text .policies-link a {
    color: #45a349;
    text-decoration: underline;
}

.disclaimer-text .policies-link a:hover {
    color: #2e7d32;
}

.disclaimer-text ul {
    margin: 15px 0;
    padding-left: 20px;
}

.disclaimer-text li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.disclaimer-checkbox {
    margin-top: 25px;
    padding: 20px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: 500;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 2px;
    transform: scale(1.2);
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.modal-footer .btn-secondary {
    background: #6c757d;
}

.modal-footer .btn-secondary:hover {
    background: #5a6268;
}

/* Pricing Note */
.pricing-note {
    margin-top: 30px;
    text-align: center;
    padding: 15px;
    background: #e8f5e8;
    border-radius: 8px;
    border: 1px solid #c8e6c9;
}

.pricing-note p {
    margin: 0;
    color: #2e7d32;
    font-weight: 500;
}

/* Progress Bar */
.progress-container {
    margin: 30px 0 20px 0;
    padding: 20px 10px 15px 10px;
}

.progress-bar {
    position: relative;
    height: 12px;
    background: #e0e0e0;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, #45a349 0%, #3a8c3e 100%);
    border-radius: 6px;
    transition: width 0.5s ease;
    width: 0%;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.progress-labels span {
    font-size: 12px;
    color: #666;
    text-align: center;
    flex: 1;
}

/* Progress Bar Step Positions */
.step-1 .progress-fill { width: 25%; }
.step-2 .progress-fill { width: 50%; }
.step-3 .progress-fill { width: 75%; }
.step-4 .progress-fill { width: 100%; }

/* Responsive Progress Bar */
@media (max-width: 768px) {
    .progress-container {
        margin: 20px 0 15px 0;
    }

    .progress-bar {
        height: 10px;
        margin-bottom: 10px;
    }

    .progress-labels span {
        font-size: 11px;
    }
}

/* ===== Step 1: Address Entry Styles ===== */
.address-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.address-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}
.address-input-wrapper input {
    padding-left: 42px !important;
}
.address-status {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
}
.address-status.success {
    color: #2e7d32;
}
.address-status.error {
    color: #c62828;
}
.checking-status {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-top-color: #1976d2;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== Step 3: Property Map Styles ===== */
.loading-measurement {
    text-align: center;
    padding: 40px;
}
.spinner-large {
    width: 48px;
    height: 48px;
    border: 4px solid #e0e0e0;
    border-top-color: #2e7d32;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}
.measurement-content {
    margin-bottom: 24px;
}
.property-image-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.property-map {
    width: 100%;
    height: 400px;
}
.edit-hint {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin: 10px 0 20px;
}
.measurement-data {
    background: linear-gradient(135deg, #2e7d32 0%, #388e3c 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.measurement-item {
    text-align: center;
}
.measurement-label {
    font-size: 14px;
    opacity: 0.9;
    display: block;
    margin-bottom: 4px;
}
.measurement-value {
    font-size: 24px;
    font-weight: 700;
}
.measurement-value.updated {
    animation: pulse 0.3s ease-out;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.measurement-error {
    text-align: center;
    color: #c62828;
    padding: 20px;
    background: #ffebee;
    border-radius: 8px;
    margin-bottom: 20px;
}
.loading-countdown {
    color: #666;
    font-size: 14px;
    margin-top: 8px;
}
.manual-entry-section {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    margin-bottom: 24px;
    border: 2px dashed #ccc;
}
.manual-entry-icon {
    font-size: 48px;
    margin-bottom: 16px;
}
.manual-entry-section h3 {
    margin: 0 0 12px;
    color: #333;
}
.manual-entry-note {
    color: #666;
    margin-bottom: 24px;
}
.lawn-size-selector {
    max-width: 400px;
    margin: 0 auto 20px;
    text-align: left;
}
.lawn-size-selector label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}
.lawn-size-dropdown {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}
.lawn-size-dropdown:focus {
    outline: none;
    border-color: #2e7d32;
}
.size-help {
    display: block;
    margin-top: 8px;
    color: #888;
    font-size: 13px;
}
.verification-note {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    max-width: 400px;
    margin: 0 auto;
}

/* ===== Step 4: Services Loading & Selection ===== */
.services-loading {
    text-align: center;
    padding: 60px 20px;
}
.service-card.selected {
    border-color: #2e7d32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.3);
}
.service-card .btn-select.selected-btn {
    background: #2e7d32;
    color: white;
}
.custom-quote-price {
    color: #f57c00;
    font-style: italic;
}

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

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-section {
    flex-shrink: 0;
}

.site-logo {
    display: block;
    height: 60px;
    overflow: hidden;
}

.site-logo img {
    height: 100%;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    background-color: white; /* Ensure white background */
}

.nav-menu {
    display: flex;
}

.nav-menu-items {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 10px 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2e7d32;
}

.nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2e7d32;
    transition: width 0.3s ease;
}

.nav-link:not(.dropdown-toggle):hover::after,
.nav-link:not(.dropdown-toggle).active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
    position: relative;
    top: 0;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 600px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    display: flex;
    gap: 30px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-section h4 {
    color: #2e7d32;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

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

.dropdown-section li {
    margin-bottom: 5px;
}

.dropdown-section a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    padding: 3px 0;
    display: block;
    transition: color 0.3s ease;
}

.dropdown-section a:hover {
    color: #2e7d32;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

.btn-phone {
    background-color: #febf10;
    color: white;
    border: 2px solid #febf10;
}

.btn-phone:hover {
    background-color: #e6a800;
    border-color: #e6a800;
    color: white;
}

.btn-primary {
    background-color: #febf10;
    color: white;
}

.btn-primary:hover {
    background-color: #e6a800;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(254, 191, 16, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
        height: 60px;
    }

    .site-logo img {
        max-width: 150px;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        padding: 20px;
        border-radius: 0 0 8px 8px;
    }

    .main-navigation.mobile-menu-open {
        display: block;
    }

    .nav-menu-items {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .header-actions {
        gap: 10px;
    }

    .btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .dropdown-menu {
        min-width: 300px;
        flex-direction: column;
        gap: 15px;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 15px 0;
        background: transparent;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

@media (max-width: 480px) {
    .header-container {
        flex-wrap: wrap;
        height: auto;
        padding: 10px 15px;
    }

    .logo-section {
        order: 1;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .header-actions {
        order: 2;
        justify-content: center;
        width: 100%;
    }

    .mobile-menu-toggle {
        order: 3;
        position: absolute;
        right: 15px;
        top: 10px;
    }
}