/*
Theme Name: Wet Willy's Detailing
Theme URI: https://wetwillysdetailing.com
Author: Wet Willy's Detailing
Description: Simple custom theme for Wet Willy's Detailing - Smyrna, TN
Version: 12.9
*/

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #111111;
    background: #f5f5f5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header ===== */
.site-header {
    background: #ffffff;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid #1DC901;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.main-nav a {
    color: #111111;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #1DC901;
}

/* ===== Hero ===== */
.hero {
    background: #ffffff;
    color: #111111;
    padding: 60px 0 70px;
    text-align: center;
}

.hero-logo {
    margin-bottom: 25px;
}

.hero-logo-img {
    max-width: 480px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.hero-sub {
    font-size: 1.2rem;
    color: #111111;
    max-width: 620px;
    margin: 0 auto 32px;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #1DC901;
    color: #fff;
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s, transform 0.15s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: #18a801;
    transform: translateY(-1px);
}

/* Footer */
.site-footer {
    background: #111111;
    color: #ffffff;
    padding: 40px 0 25px;
    margin-top: 60px;
    text-align: center;
    font-size: 0.95rem;
}

.site-footer a {
    color: #1DC901;
}

/* Utility */
.section {
    padding: 60px 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #111111;
}

.section-subtitle {
    color: #111111;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.service-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 28px 24px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #111111;
}

.service-card p {
    color: #111111;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: #111111;
    color: #fff;
    text-align: center;
    padding: 70px 0;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.cta-section p {
    color: #ffffff;
    margin-bottom: 28px;
}

/* Page Header */
.page-header {
    background: #111111;
    color: #fff;
    padding: 70px 0 55px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.page-header p {
    color: #ffffff;
    font-size: 1.1rem;
}

/* Services List */
.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 18px 20px;
    text-align: center;
}

.service-item.featured {
    border-color: #1DC901;
    box-shadow: 0 0 0 1px #1DC901;
}

/* Note Box */
.note-box {
    background: #f0f0f0;
    border-left: 4px solid #1DC901;
    padding: 18px 22px;
    margin-top: 40px;
    border-radius: 0 8px 8px 0;
    color: #111111;
}

/* About Page */
.about-content {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.about-block {
    margin-bottom: 32px;
}

.about-block h2 {
    font-size: 1.45rem;
    margin-bottom: 12px;
    color: #111111;
}

.about-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #111111;
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info,
.contact-form-box {
    text-align: center;
}

.contact-info h2,
.contact-form-box h2 {
    text-align: center;
    color: #111111;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    text-align: center;
}

.contact-details li {
    margin-bottom: 12px;
    color: #111111;
}

.contact-form-box {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #111111;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1DC901;
}

/* ===== Calendar ===== */
.wwd-calendar {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    max-width: 420px;
    margin: 0 auto;
}

.wwd-cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.wwd-cal-header h3 {
    font-size: 1.25rem;
    color: #111111;
    margin: 0;
}

.wwd-cal-nav {
    font-size: 1.6rem;
    color: #1DC901;
    font-weight: 700;
    padding: 0 10px;
    line-height: 1;
}

.wwd-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.wwd-cal-dayname {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #111111;
    padding-bottom: 6px;
}

.wwd-cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.wwd-cal-day.empty {
    background: transparent;
}

.wwd-cal-day.available {
    background: #e8fce8;
    color: #0d7a00;
}

.wwd-cal-day.pending {
    background: #fee2e2;       /* light red */
    color: #b91c1c;            /* strong red */
}

.wwd-cal-day.booked {
    background: #dbeafe;       /* light blue */
    color: #1e40af;            /* strong blue */
}

.wwd-cal-day.closed {
    background: #f0f0f0;
    color: #555555;
}

.wwd-cal-day.today {
    box-shadow: 0 0 0 2px #1DC901;
}

.wwd-cal-legend {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 18px;
    margin-top: 18px;
    font-size: 0.85rem;
    color: #111111;
}

.wwd-cal-legend .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
}

/* Legend dots */
.wwd-cal-legend .dot.available { background: #1DC901; }
.wwd-cal-legend .dot.pending   { background: #ef4444; }  /* red */
.wwd-cal-legend .dot.booked    { background: #3b82f6; }  /* blue */
.wwd-cal-legend .dot.closed    { background: #9ca3af; }  /* gray */

/* Booking Page */
.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.booking-success {
    background: #e8fce8;
    color: #0d7a00;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-weight: 500;
    text-align: center;
}

.booking-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-weight: 500;
    text-align: center;
}

.booking-form .form-group {
    margin-bottom: 18px;
    text-align: center;
}

.booking-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #111111;
    text-align: center;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    text-align: center;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #1DC901;
}

/* Showcase */
.showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.showcase-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 30px;
}

.showcase-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #111111;
    text-align: center;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.ba-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ba-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.ba-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(17, 17, 17, 0.85);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
}

.ba-label.after {
    background: rgba(29, 201, 1, 0.9);
}

.showcase-description {
    color: #111111;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Extra */
.wwd-cal-day.clickable-day:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(29, 201, 1, 0.3);
    transition: all 0.15s ease;
}

.service-card-content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 8px;
}

.service-card-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    color: #111111;
    font-size: 0.95rem;
}

.service-card-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1DC901;
    font-weight: 700;
}

/* Collapsible Services */
.service-collapse {
    border: none;
}

.service-collapse summary {
    list-style: none;
    cursor: pointer;
    padding: 4px 0;
}

.service-collapse summary::-webkit-details-marker {
    display: none;
}

.service-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.service-summary h2 {
    margin: 0;
    font-size: 1.3rem;
    color: #111111;
}

.service-meta {
    text-align: center;
}

.service-price {
    color: #1DC901;
}

.service-price strong,
.service-time strong {
    color: #111111;
    font-weight: 600;
}

.service-time {
    color: #111111;
}

.service-description {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e5e5;
    color: #111111;
    text-align: center;
}

.service-description ul {
    list-style: none;
    padding-left: 0;
    display: inline-block;
    text-align: left;
}

.service-description li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
}

.service-description li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1DC901;
    font-weight: 700;
}

.service-collapse summary::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 600;
    color: #1DC901;
    margin-left: 15px;
}

.service-collapse[open] summary::after {
    content: "−";
}

/* Homepage Service Cards */
.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.service-card-meta {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #111111;
}

.service-card-meta .service-price {
    color: #1DC901;
    margin-bottom: 4px;
}

.service-card-meta strong {
    color: #111111;
}

/* Categories */
.service-category-block {
    margin-bottom: 50px;
}

.category-title {
    font-size: 1.8rem;
    color: #111111;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1DC901;
    text-align: center;
}

/* Multiple Services Checkboxes */
.services-checkbox-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 12px;
}

.service-checkbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 16px 12px;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.service-checkbox:hover {
    border-color: #1DC901;
    background: #f0fdf0;
}

.service-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0 0 4px 0;
    accent-color: #1DC901;
}

.service-check-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #111111;
    line-height: 1.3;
}

.service-check-time {
    font-size: 0.85rem;
    color: #111111;
}

.service-check-price {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1DC901;
}

/* Live Totals */
.booking-totals {
    background: #f0fdf0;
    border: 1px solid #1DC901;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 30px auto;
    max-width: 380px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 1.05rem;
    color: #111111;
}

.total-row:last-child {
    margin-bottom: 0;
}

#total-price {
    color: #1DC901;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Selectable Service Cards */
.selectable-service {
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid #e5e5e5;
    padding: 20px;
}

.selectable-service:hover {
    border-color: #1DC901;
}

.selectable-service.selected {
    border-color: #1DC901;
    background: #f0fdf0;
}

.service-select-check {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    background: #e5e5e5;
    color: #111111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.selectable-service.selected .service-select-check {
    background: #1DC901;
    color: #fff;
}

.toggle-details {
    display: inline-block;
    margin-top: 12px;
    background: none;
    border: none;
    color: #1DC901;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-size: 0.9rem;
}

.toggle-details:hover {
    text-decoration: underline;
}

/* Sticky Book Selected Bar */
#book-selected-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: #111111;
    color: #fff;
    padding: 16px 0;
    z-index: 999;
    box-shadow: 0 -4px 25px rgba(0,0,0,0.2);
    transition: bottom 0.3s ease;
}

#book-selected-bar.visible {
    bottom: 0;
}

#book-selected-bar .btn {
    background: #1DC901;
    color: #fff;
}

.instructions-box {
    max-width: 800px;
    margin: 0 auto 45px auto;
    text-align: center;
}

.instructions-box h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #111111;
}

.instructions-box p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #111111;
}

/* Vehicle Size Picker */
.vehicle-size-box {
    background: #fff;
    border: 2px solid #1DC901;
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 40px;
    text-align: center;
}

.vehicle-size-box h2 {
    margin: 0 0 8px 0;
    color: #111111;
}

.size-intro {
    color: #111111;
    margin-bottom: 20px;
}

.size-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.size-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.size-option:hover {
    border-color: #1DC901;
}

.size-option input {
    display: none;
}

.size-option:has(input:checked) {
    border-color: #1DC901;
    background: #f0fdf0;
}

.size-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.size-label strong {
    font-size: 1.05rem;
    color: #111111;
}

.size-label small {
    font-size: 0.82rem;
    color: #111111;
}

/* Price Block */
.price-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
}

.cash-price {
    font-size: 1.05rem;
    color: #111111;
}

.savings-line {
    color: #1DC901;
    font-weight: 600;
    font-size: 0.95rem;
}

.card-price {
    color: #111111;
    font-size: 0.95rem;
}

.card-price small {
    display: block;
    font-size: 0.8rem;
    color: #111111;
    margin-top: 2px;
}

/* Showcase Titles */
.showcase-titles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.showcase-title-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.2s ease;
    display: block;
}

.showcase-title-card:hover {
    border-color: #1DC901;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.showcase-title-card h2 {
    margin: 0 0 12px 0;
    font-size: 1.3rem;
    color: #111111;
}

.view-project {
    color: #1DC901;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Single Showcase */
.showcase-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.showcase-details {
    max-width: 800px;
    margin: 0 auto;
}

.showcase-details h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #111111;
}

.showcase-writeup,
.showcase-services,
.showcase-products {
    margin-bottom: 30px;
    color: #111111;
}

.showcase-list {
    background: #f8f9fa;
    border-left: 4px solid #1DC901;
    padding: 18px 22px;
    border-radius: 0 8px 8px 0;
    line-height: 1.7;
    color: #111111;
}

/* Products Page */
.product-category-block {
    margin-bottom: 50px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 22px;
    transition: all 0.2s ease;
}

.product-card:hover {
    border-color: #1DC901;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.product-thumb {
    margin-bottom: 15px;
    text-align: center;
}

.product-thumb img {
    max-height: 120px;
    width: auto;
    margin: 0 auto;
    border-radius: 8px;
}

.product-card h3 {
    margin: 0 0 6px 0;
    font-size: 1.15rem;
    text-align: center;
    color: #111111;
}

.product-brand {
    text-align: center;
    color: #111111;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.toggle-product-details {
    display: block;
    width: 100%;
    background: transparent;
    border: 1px solid #1DC901;
    color: #1DC901;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.toggle-product-details:hover {
    background: #1DC901;
    color: #fff;
}

.product-card-details {
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.product-description {
    font-size: 0.95rem;
    color: #111111;
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-buy-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.95rem;
}

/* Photo blocks */
.photo {
    margin: 40px auto;
    max-width: 640px;
}

.photo img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.photo .caption {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #111111;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1000px) {
    .services-checkbox-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {
    .booking-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
    }
    .size-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav ul {
        gap: 16px;
    }
    .hero-logo-img {
        max-width: 320px;
    }
}

@media (max-width: 700px) {
    .before-after {
        grid-template-columns: 1fr;
    }
    .services-checkbox-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-list {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-checkbox-list {
        grid-template-columns: 1fr;
    }
}

/* Homepage Service Cards (clickable) */
.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.service-card-meta {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #555;
}

.service-card-meta .service-price {
    color: #1DC901;
    margin-bottom: 4px;
}

.service-card-meta strong {
    color: #111;
}

/* Service Categories on Services Page */
.service-category-block {
    margin-bottom: 50px;
}

.category-title {
    font-size: 1.8rem;
    color: #111111;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1DC901;
}

/* Live Totals */
.booking-totals {
    background: #f0fdf0;
    border: 1px solid #1DC901;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 25px 0;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.total-row:last-child {
    margin-bottom: 0;
}

#total-price {
    color: #1DC901;
    font-weight: 700;
    font-size: 1.2rem;
}

.category-title {
    text-align: center;
}

/* Services under each category - 3 column grid */
.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 0;
}

/* Make the collapsible summary stack better in smaller cards */
.service-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.service-meta {
    text-align: left;
}

/* Responsive - 2 columns on tablets, 1 on mobile */
@media (max-width: 900px) {
    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-list {
        grid-template-columns: 1fr;
    }
}

/* Center content inside service cards */
.service-item {
    text-align: center;
}

.service-summary {
    align-items: center;
    text-align: center;
}

.service-meta {
    text-align: center;
    align-items: center;
}

.service-description {
    text-align: center;
}

.service-description ul {
    display: inline-block;
    text-align: left;
}

/* Force centering of service cards */
.services-full-width .services-checkbox-list {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 16px !important;
    margin-top: 12px !important;
    width: 100% !important;
}

.services-full-width .service-checkbox {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 6px !important;
    padding: 16px 14px !important;
    background: #f9f9f9 !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    font-size: 0.9rem !important;
    box-sizing: border-box !important;
    width: 230px !important;
    max-width: 230px !important;
    flex: 0 0 230px !important;
    margin: 0 !important;
}

.services-full-width .service-checkbox input[type="checkbox"] {
    margin: 0 0 4px 0 !important;
    width: 18px !important;
    height: 18px !important;
}

.services-full-width .service-checkbox:hover {
    border-color: #1DC901 !important;
}

.services-full-width .service-checkbox:has(input:checked) {
    border-color: #1DC901 !important;
    background: #f0fdf4 !important;
    box-shadow: 0 0 0 1px #1DC901 !important;
}

@media (max-width: 600px) {
    .services-full-width .service-checkbox {
        width: 100% !important;
        max-width: 320px !important;
        flex: 0 0 100% !important;
    }
}

.service-check-price {
    color: #1DC901;
    font-weight: 600;
}

.service-check-time {
    color: #7d7f7c;
    font-size: 0.85rem;
}

/* Center Notes + Submit button */
.booking-form .form-group:last-of-type,
.booking-form .btn {
    text-align: center;
}

.booking-form textarea {
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

.booking-form .btn {
    max-width: 320px;
    margin: 20px auto 0;
    display: block;
}

/* Responsive */
@media (max-width: 1000px) {
    .services-checkbox-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .services-checkbox-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-checkbox-list {
        grid-template-columns: 1fr;
    }
}

/* Full width centered services section */
.services-full-width {
    margin-top: 50px;
    width: 100%;
}

.services-checkbox-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
}

.booking-totals {
    max-width: 380px;
    margin: 30px auto;
}

/* Booking page only - stacked service cards */
.booking-form .service-checkbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 16px 12px;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.booking-form .service-checkbox:hover {
    border-color: #1DC901;
    background: #f0fdf0;
}

.booking-form .service-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0 0 4px 0;
    accent-color: #1DC901;
}

.booking-form .service-check-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #111;
    line-height: 1.3;
}

.booking-form .service-check-time {
    font-size: 0.85rem;
    color: #7d7f7c;
}

.booking-form .service-check-price {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1DC901;
}

/* Selectable Service Cards */
.selectable-service {
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid #e5e5e5;
    padding: 20px;
}

.selectable-service:hover {
    border-color: #1DC901;
}

.selectable-service.selected {
    border-color: #1DC901;
    background: #f0fdf0;
}

.service-select-check {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    background: #e5e5e5;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.selectable-service.selected .service-select-check {
    background: #1DC901;
    color: #fff;
}

.toggle-details {
    display: inline-block;
    margin-top: 12px;
    background: none;
    border: none;
    color: #1DC901;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-size: 0.9rem;
}

.toggle-details:hover {
    text-decoration: underline;
}

.service-description {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e5e5e5;
    text-align: left;
}

/* Sticky Book Selected Bar */
#book-selected-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: #111;
    color: #fff;
    padding: 16px 0;
    z-index: 999;
    box-shadow: 0 -4px 25px rgba(0,0,0,0.2);
    transition: bottom 0.3s ease;
}

#book-selected-bar.visible {
    bottom: 0;
}

#book-selected-bar .btn {
    background: #1DC901;
    color: #fff;
}

.instructions-box {
    max-width: 800px;
    margin: 0 auto 45px auto;
    text-align: center;
}

.instructions-box h2 {
    text-align: center;
    margin-bottom: 20px;
}

.instructions-box p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #333;
}

/* Vehicle Size Picker */
.vehicle-size-box {
    background: #fff;
    border: 2px solid #1DC901;
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 40px;
    text-align: center;
}

.vehicle-size-box h2 {
    margin: 0 0 8px 0;
}

.size-intro {
    color: #7d7f7c;
    margin-bottom: 20px;
}

.size-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.size-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.size-option:hover {
    border-color: #1DC901;
}

.size-option input {
    display: none;
}

.size-option input:checked + .size-label {
    color: #1DC901;
}

.size-option input:checked ~ .size-label,
.size-option:has(input:checked) {
    border-color: #1DC901;
    background: #f0fdf0;
}

.size-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.size-label strong {
    font-size: 1.05rem;
}

.size-label small {
    font-size: 0.82rem;
    color: #7d7f7c;
}

@media (max-width: 800px) {
    .size-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-description {
    text-align: center;
}

.service-description p {
    text-align: center;
}

/* Odometer / Rolling Effect */
.odometer-wrapper {
    overflow: hidden;
    position: relative;
}

.odometer-card {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.odometer-card.odometer-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.price-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
}

.cash-price {
    font-size: 1.05rem;
    color: #111;
}

.savings-line {
    color: #1DC901;
    font-weight: 600;
    font-size: 0.95rem;
}

.card-price {
    color: #555;
    font-size: 0.95rem;
}

.card-price small {
    display: block;
    font-size: 0.8rem;
    color: #7d7f7c;
    margin-top: 2px;
}

.showcase-titles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.showcase-title-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.2s ease;
    display: block;
}

.showcase-title-card:hover {
    border-color: #1DC901;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.showcase-title-card h2 {
    margin: 0 0 12px 0;
    font-size: 1.3rem;
    color: #111;
}

.view-project {
    color: #1DC901;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Single Showcase */
.showcase-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.showcase-details {
    max-width: 800px;
    margin: 0 auto;
}

.showcase-details h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #111;
}

.showcase-writeup,
.showcase-services,
.showcase-products {
    margin-bottom: 30px;
}

.showcase-list {
    background: #f8f9fa;
    border-left: 4px solid #1DC901;
    padding: 18px 22px;
    border-radius: 0 8px 8px 0;
    line-height: 1.7;
}

/* Products Page */
.product-category-block {
    margin-bottom: 50px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 22px;
    transition: all 0.2s ease;
}

.product-card:hover {
    border-color: #1DC901;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.product-thumb {
    margin-bottom: 15px;
    text-align: center;
}

.product-thumb img {
    max-height: 120px;
    width: auto;
    margin: 0 auto;
    border-radius: 8px;
}

.product-card h3 {
    margin: 0 0 6px 0;
    font-size: 1.15rem;
    text-align: center;
}

.product-brand {
    text-align: center;
    color: #7d7f7c;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.toggle-product-details {
    display: block;
    width: 100%;
    background: transparent;
    border: 1px solid #1DC901;
    color: #1DC901;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.toggle-product-details:hover {
    background: #1DC901;
    color: #fff;
}

.product-card-details {
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.product-description {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-buy-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== About Page ===== */
.about-content {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.about-block {
    margin-bottom: 32px;
}

.about-block h2 {
    font-size: 1.45rem;
    margin-bottom: 12px;
    color: #111;
}

.about-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 16px;
}

.about-block p:last-child {
    margin-bottom: 0;
}

/* Photo blocks */
.photo {
    margin: 40px auto;
    max-width: 640px;
}

.photo img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.photo .caption {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Make sure the page header stays centered too */
.page-header {
    text-align: center;
}

.page-header h1 {
    margin-bottom: 8px;
}

.page-header p {
    color: #555;
    font-size: 1.1rem;
}

/* ===== Contact Page Centering ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;                 /* centers the whole two-column block */
}

.contact-info,
.contact-form-box {
    text-align: center;
}

.contact-info h2,
.contact-form-box h2 {
    text-align: center;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    text-align: center;
}

.contact-details li {
    margin-bottom: 12px;
}

.contact-form .form-group {
    text-align: center;
}

.contact-form label {
    display: block;
    text-align: center;
    margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    display: block;
    text-align: center;
}

.contact-form button {
    display: block;
    margin: 25px auto 0;
}

/* Mobile */
@media (max-width: 800px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
    }
}

/* Force white text in page headers */
.page-header,
.page-header h1,
.page-header p {
    color: #ffffff !important;
}

/* =========================================
   FORCE READABLE TEXT COLORS
   ========================================= */

/* Default text on light backgrounds = black */
body,
.section,
.service-item,
.service-card,
.service-description,
.service-summary,
.service-meta,
.service-time,
.service-check-title,
.service-check-time,
.instructions-box,
.instructions-box p,
.vehicle-size-box,
.size-intro,
.size-label,
.size-label strong,
.size-label small,
.about-block,
.about-block p,
.contact-info,
.contact-details,
.contact-details li,
.form-group label,
.showcase-description,
.showcase-details,
.showcase-writeup,
.showcase-services,
.showcase-products,
.showcase-list,
.product-card,
.product-brand,
.product-description,
.note-box,
.booking-form label,
.booking-form input,
.booking-form select,
.booking-form textarea,
.total-row {
    color: #111111 !important;
}

/* Keep green for prices & accents */
.service-price,
.service-check-price,
.cash-price,
.savings-line,
#total-price,
.btn,
.main-nav a:hover,
.wwd-cal-nav,
.view-project,
.toggle-details,
.site-footer a {
    color: #1DC901 !important;
}

/* Keep white text on dark backgrounds */
.page-header,
.page-header h1,
.page-header p,
.cta-section,
.cta-section h2,
.cta-section p,
.site-footer,
.site-footer p,
#book-selected-bar {
    color: #ffffff !important;
}

/* Force white text on green buttons */
.btn,
.btn:hover,
button.btn,
a.btn {
    color: #ffffff !important;
}

.product-category-block .product-card-details,
.product-category-block .product-card-details p {
    text-align: center;
}

/* Center product cards */
.product-category-block .products-grid,
.product-category-block .product-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.product-card {
    max-width: 320px;
    width: 100%;
}

.services-grid,
.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;   /* centers cards until the row fills */
    gap: 24px;
}

.service-item,
.service-card {
    flex: 0 1 300px;           /* keeps a consistent card width */
    max-width: 320px;
}

.inspections-note {
    text-align: center;
}

.product-card-details ul,
.service-description ul {
    list-style: none;
    padding-left: 0;
    margin-top: 8px;
}

.product-card-details li,
.service-description li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 6px;
}

.product-card-details li::before,
.service-description li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1DC901;
    font-weight: 700;
}

/* ===== Winter Mode / Chilly Willy ===== */
.service-item.winter-mode {
    background: #e0f2fe !important;
    border-color: #38bdf8 !important;
    position: relative;
    overflow: hidden;
}

.service-item.winter-mode .service-select-check {
    opacity: 0.4;
    pointer-events: none;
}

.chilly-willy-banner {
    position: absolute;
    top: 18px;
    right: -35px;
    background: #0284c7;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 6px 45px;
    transform: rotate(35deg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 5;
    pointer-events: none;
}

/* Booking page Winter Mode cards */
.service-checkbox.winter-mode {
    background: #e0f2fe !important;
    border-color: #38bdf8 !important;
    position: relative;
    overflow: hidden;
    opacity: 0.9;
}

.service-checkbox.winter-mode input[type="checkbox"] {
    pointer-events: none;
    opacity: 0.4;
}