/* Fleetwood Exterior Maintenances - Main Styles */

:root {
    --primary: #1B365D;
    --secondary: #4A7C59;
    --accent: #7CB342;
    --light: #F5F5F0;
    --dark: #333333;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --radius: 8px;
    
    /* Minimal Color System */
    --color-dark: #0A0A0A;
    --color-text: #1A1A1A;
    --color-bg: #FAFAF9;
    --color-gray-light: #E8E8E8;
    --color-gray-mid: #A8A8A8;
    --color-accent: #DC2626;
    --color-accent-hover: #B91C1C;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.logo {
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--secondary);
}

/* Buttons */
.btn-primary {
    background: var(--secondary);
    color: var(--white);
    padding: 10px 25px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark);
    padding: 10px 25px;
    border-radius: var(--radius);
    border: 2px solid var(--dark);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-success {
    background: var(--accent);
    color: var(--white);
    padding: 10px 25px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-success:hover {
    background: #689F38;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(27, 54, 93, 0.7), rgba(74, 124, 89, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.quote-form-hero {
    display: flex;
    gap: 15px;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto 30px;
}

.quote-form-hero input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.95rem;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary);
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    background: var(--light);
    padding: 40px 30px;
    border-radius: var(--radius);
    width: 250px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.step h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.step-arrow {
    font-size: 2rem;
    color: var(--secondary);
}

/* Quote Section */
.quote-section {
    padding: 80px 0;
    background: var(--light);
}

.quote-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary);
}

.quote-step {
    display: none;
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.quote-step.active {
    display: block;
}

.step-header {
    text-align: center;
    margin-bottom: 30px;
}

.step-badge {
    background: var(--secondary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.step-header h3 {
    margin-top: 15px;
    font-size: 1.5rem;
    color: var(--primary);
}

/* Address Input */
.address-input {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.address-input input {
    flex: 1;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: var(--radius);
    font-size: 1rem;
}

.help-text {
    text-align: center;
    color: #666;
}

.help-text a {
    color: var(--secondary);
    text-decoration: none;
}

/* Map Container */
#map-container {
    width: 100%;
    height: 400px;
    background: #e0e0e0;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.map-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: #666;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.legend-color {
    width: 15px;
    height: 15px;
    border-radius: 3px;
    display: inline-block;
}

.legend-color.green {
    background: #4CAF50;
}

.legend-color.red {
    background: #f44336;
}

.legend-color.blue {
    background: #2196F3;
}

.map-instruction {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.map-tools {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.measurement-info {
    text-align: center;
    background: #e8f5e9;
    padding: 15px;
    border-radius: var(--radius);
    margin-top: 10px;
    border: 2px solid #4CAF50;
}

.measurement-info strong {
    color: var(--secondary);
    font-size: 1.5rem;
}

.measurement-info .small {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

/* Included Services */
.included-services {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.included-services label {
    display: block;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-item .check {
    color: var(--accent);
    font-weight: bold;
}

.included-services .note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.frequency-options.three-options {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 600px) {
    .frequency-options.three-options {
        grid-template-columns: 1fr;
    }
}

/* AI Analysis Section */
.ai-results {
    background: #f0f7f0;
    padding: 25px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    border-left: 4px solid var(--secondary);
}

.ai-results h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.analysis-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.analysis-item .label {
    font-weight: 600;
    color: #666;
}

.analysis-item .value {
    font-weight: 700;
    color: var(--primary);
}

.ai-confidence {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 15px;
}

/* Analyzing Spinner */
.analyzing {
    text-align: center;
    padding: 40px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #ddd;
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.analyzing p {
    font-size: 1.1rem;
    color: var(--primary);
}

.analyzing .small {
    font-size: 0.9rem;
    color: #666;
}

/* Verify Buttons */
.verify-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Service Selection */
.service-selection {
    max-width: 600px;
    margin: 0 auto;
}

.ai-summary {
    background: #f0f7f0;
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    text-align: center;
}

.ai-summary h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 1.1rem;
}

/* Frequency Options */
.frequency-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.frequency-card {
    background: var(--light);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
}

.frequency-card:hover {
    border-color: var(--secondary);
}

.frequency-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.frequency-card input[type="radio"]:checked + .freq-name,
.frequency-card:has(input:checked) {
    border-color: var(--secondary);
    background: #e8f5e9;
}

.frequency-card:has(input:checked) {
    border-color: var(--secondary);
    background: #e8f5e9;
}

.freq-name {
    display: block;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.freq-price {
    display: block;
    font-size: 0.85rem;
    color: #666;
}

.freq-discount {
    display: block;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
}

.frequency-card.featured {
    border: 2px solid var(--secondary);
}

/* Add-ons */
.addon-options {
    display: grid;
    gap: 15px;
}

.addon-card {
    background: var(--light);
    padding: 15px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.addon-card:hover {
    border-color: var(--secondary);
}

.addon-card input[type="checkbox"] {
    display: none;
}

.addon-card:has(input:checked) {
    border-color: var(--secondary);
    background: #e8f5e9;
}

.addon-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.addon-icon {
    font-size: 2rem;
}

.addon-name {
    flex: 1;
    font-weight: 600;
}

.addon-price {
    font-weight: 700;
    color: var(--secondary);
}

.addon-note {
    font-size: 0.85rem;
    color: #666;
    width: 100%;
    margin-top: 5px;
}

/* Quote Result */
.quote-result {
    display: none;
    max-width: 600px;
    margin: 30px auto 0;
}

.quote-result.show {
    display: block;
}

.result-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.result-card h3 {
    text-align: center;
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.property-summary {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.property-summary p {
    color: #666;
    margin: 5px 0;
}

.price-breakdown {
    margin-bottom: 30px;
}

.line-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.line-item.subtotal {
    font-weight: 600;
    border-top: 2px solid #ddd;
    margin-top: 10px;
}

.line-item.discount {
    color: var(--accent);
}

.line-item.total {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    border-top: 3px solid var(--secondary);
    border-bottom: none;
    padding-top: 20px;
    margin-top: 10px;
}

.monthly-total {
    text-align: center;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius);
    margin-bottom: 30px;
}

.monthly-total strong {
    font-size: 1.5rem;
    color: var(--primary);
}

.season-total {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.quote-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Services */
.services {
    padding: 80px 0;
    background: var(--white);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-grid.three-services {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

.service-grid.four-services {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
    .service-grid.four-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-grid.three-services,
    .service-grid.four-services {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--light);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.price-from {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
}

/* Pricing Info */
.pricing-info {
    padding: 80px 0;
    background: var(--light);
    text-align: center;
}

.pricing-info h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.section-subtitle {
    color: #666;
    margin-bottom: 50px;
}

.pricing-table {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.pricing-table:has(> .pricing-tier:nth-child(4)) {
    gap: 15px;
}

.pricing-table:has(> .pricing-tier:nth-child(4)) .pricing-tier {
    padding: 35px 30px;
    min-width: 180px;
}

.pricing-tier {
    background: var(--white);
    padding: 40px 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 200px;
}

.pricing-tier.featured {
    border: 3px solid var(--secondary);
    transform: scale(1.05);
}

.pricing-tier h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.pricing-tier .size {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.pricing-tier .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.pricing-tier .per {
    color: #666;
}

.complexity-note {
    color: #666;
}

.complexity-note p {
    margin: 10px 0;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-contact p {
    margin: 5px 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .quote-form-hero {
        flex-direction: column;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .nav-menu {
        display: none;
    }
    
    .pricing-tier.featured {
        transform: none;
    }
    
    .quote-actions {
        flex-direction: column;
    }
    
    .frequency-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius) var(--radius) 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.modal-close:hover {
    background: rgba(255,255,255,0.2);
}

.modal-body {
    padding: 25px;
}

.quote-summary {
    background: #f0f7f0;
    padding: 15px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    border-left: 4px solid var(--secondary);
}

.quote-summary p {
    margin: 5px 0;
}

#lead-form .form-group {
    margin-bottom: 20px;
}

#lead-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 0.95rem;
}

#lead-form input,
#lead-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

#lead-form input:focus,
#lead-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

#lead-form textarea {
    resize: vertical;
    min-height: 80px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.form-actions button {
    flex: 1;
}

/* Service Type Options */
.service-type-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (max-width: 600px) {
    .service-type-options {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
}

/* Simple Quote Form Styles */
.quote-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quote-form-container {
        padding: 25px;
    }
}

#simple-quote-form .form-group {
    margin-bottom: 20px;
}

#simple-quote-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

#simple-quote-form input,
#simple-quote-form select,
#simple-quote-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: var(--white);
}

#simple-quote-form input:focus,
#simple-quote-form select:focus,
#simple-quote-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

#simple-quote-form select {
    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='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

/* Embedded Booking Calendar Styles */
.calendar-container {
    background: white;
    border-radius: var(--radius);
    padding: 20px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.calendar-header h4 {
    margin: 0;
    font-size: 1.2rem;
}

.calendar-header button {
    background: var(--color-gray-light);
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 14px;
}

.calendar-header button:hover {
    background: var(--color-gray-mid);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-gray-mid);
    padding: 8px 0;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    border: 2px solid transparent;
    min-height: 45px;
}

.calendar-day:hover:not(.past):not(.booked) {
    border-color: var(--color-accent);
}

.calendar-day.available {
    background: #dcfce7;
    color: #166534;
}

.calendar-day.booked {
    background: #fee2e2;
    color: #991b1b;
    cursor: not-allowed;
    text-decoration: line-through;
}

.calendar-day.past {
    background: var(--color-gray-light);
    color: var(--color-gray-mid);
    cursor: not-allowed;
}

.calendar-day.today {
    border-color: var(--color-accent);
    font-weight: 700;
}

.calendar-day.selected {
    background: var(--color-accent);
    color: white;
}

.calendar-day .slots-indicator {
    font-size: 10px;
    margin-top: 2px;
}

.time-slots-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.time-slot {
    padding: 12px;
    text-align: center;
    border: 2px solid var(--color-gray-light);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}

.time-slot:hover:not(.booked) {
    border-color: var(--color-accent);
    background: #fef2f2;
}

.time-slot.booked {
    background: var(--color-gray-light);
    color: var(--color-gray-mid);
    cursor: not-allowed;
    text-decoration: line-through;
}

.time-slot.selected {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}

/* Trust Strip - Recent Work Images */
.trust-strip {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
border-top: 1px solid #e5e7eb;
border-bottom: 1px solid #e5e7eb;
}

.trust-label {
text-align: center;
font-size: 13px;
color: #6b7280;
text-transform: uppercase;
letter-spacing: 1.5px;
margin-bottom: 20px;
font-weight: 500;
}

.trust-images {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}

.trust-image-card {
flex: 1;
min-width: 280px;
max-width: 48%;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-image-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.trust-image-card img {
width: 100%;
height: 220px;
object-fit: cover;
display: block;
}

@media (max-width: 768px) {
.trust-images {
  flex-direction: column;
  align-items: center;
}

.trust-image-card {
  max-width: 100%;
  width: 100%;
}

.trust-image-card img {
  height: 200px;
}
}

/* Service Examples with Images */
.service-example-row {
display: flex;
align-items: center;
gap: 40px;
margin: 40px 0;
padding: 30px;
background: white;
border-radius: 16px;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.service-example-row.reverse {
flex-direction: row-reverse;
}

.service-example-image {
flex: 0 0 45%;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-example-image img {
width: 100%;
height: 260px;
object-fit: cover;
display: block;
transition: transform 0.3s ease;
}

.service-example-image:hover img {
transform: scale(1.05);
}

.service-example-content {
flex: 1;
}

.service-example-content h3 {
font-size: 1.5rem;
margin-bottom: 16px;
color: var(--color-text);
}

.service-example-content ul {
list-style: none;
padding: 0;
margin: 0;
}

.service-example-content li {
padding: 8px 0;
padding-left: 28px;
position: relative;
font-size: 1.05rem;
color: #4b5563;
}

.service-example-content li::before {
content: "\2713";
position: absolute;
left: 0;
color: #16a34a;
font-weight: bold;
font-size: 1.1rem;
}

@media (max-width: 768px) {
.service-example-row,
.service-example-row.reverse {
  flex-direction: column;
  gap: 24px;
  padding: 20px;
}

.service-example-image {
  flex: 1;
  width: 100%;
}

.service-example-image img {
  height: 200px;
}

.service-example-content {
  text-align: center;
}

.service-example-content li {
  text-align: left;
}
}

#simple-quote-form textarea {
    resize: vertical;
    min-height: 100px;
}

#simple-quote-form .form-actions {
    margin-top: 30px;
}

#simple-quote-form .form-actions button {
    width: 100%;
    padding: 18px;
    font-size: 1.2rem;
}
