/* ===================================
   CurbVana - Style Sheet
   Brand: Warm, Friendly, Trustworthy
   =================================== */

/* CSS Variables */
:root {
    --navy: #1A2B4A;
    --teal: #00C9A7;
    --teal-dark: #00a88c;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

a {
    color: var(--teal);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--teal-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

.btn-primary:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-secondary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-secondary:hover {
    background: #0f1a2e;
    border-color: #0f1a2e;
    color: var(--white);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 12px 0;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
}

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

.logo-curb {
    color: var(--navy);
}

.logo-vana {
    color: var(--teal);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--navy);
    cursor: pointer;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    color: var(--navy);
    font-weight: 500;
    border-radius: var(--radius-sm);
}

.nav-link:hover {
    color: var(--teal);
    background: var(--light-gray);
}

.nav-cta {
    margin-left: 8px;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 8px 0;
}

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

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--dark-gray);
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--teal);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center top;
    padding: 120px 20px 80px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5), 0 3px 12px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Trust Bar */
.trust-bar {
    background: var(--navy);
    padding: 20px 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px 48px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 500;
}

.trust-item i {
    color: var(--teal);
    font-size: 20px;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 1.1rem;
}

/* Services */
.services {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 24px;
}

.service-content h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.service-content h3 i {
    color: var(--teal);
}

.service-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 32px 24px;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--teal);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.step p {
    color: var(--gray);
}

/* Satisfaction Guarantee */
.guarantee {
    background: var(--teal);
    padding: 100px 0;
}

.guarantee-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-icon i {
    font-size: 48px;
    color: var(--teal);
}

.guarantee h2 {
    color: var(--white);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 24px;
}

.guarantee p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 32px;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
}

.guarantee-badge i {
    font-size: 24px;
}

/* Trusted Professionals */
.trusted-pros {
    background: var(--light-gray);
}

.pros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.pro-feature {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.pro-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro-icon i {
    font-size: 28px;
    color: var(--teal);
}

.pro-feature h3 {
    margin-bottom: 12px;
}

.pro-feature p {
    color: var(--gray);
}

.pros-tagline {
    text-align: center;
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
}

/* Bundle CTA */
.bundle-cta {
    background: var(--white);
}

.bundle-content {
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, var(--navy) 0%, #2a4570 100%);
    border-radius: var(--radius);
}

.bundle-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.bundle-content h2 i {
    color: var(--teal);
}

.bundle-content p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 24px;
}

/* Service Area */
.service-area {
    background: var(--light-gray);
    text-align: center;
}

.zipcode-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.zipcode-form input {
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-size: 16px;
    min-width: 200px;
}

.zipcode-form input:focus {
    outline: none;
    border-color: var(--teal);
}

.zipcode-note {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Final CTA */
.final-cta {
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 120px 20px;
}

.final-cta h2 {
    color: var(--white);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 32px;
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 64px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.footer-social a:hover {
    background: var(--teal);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--teal);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--teal);
}

.footer-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 16px;
    background: rgba(0, 201, 167, 0.2);
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.footer-guarantee i {
    color: var(--teal);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   BOOKING PAGE STYLES
   =================================== */

/* Booking Header */
.booking-header {
    background: var(--navy);
    padding: 100px 0 40px;
    text-align: center;
}

.booking-header h1 {
    color: var(--white);
    margin-bottom: 8px;
}

.booking-header p {
    color: rgba(255, 255, 255, 0.8);
}

/* Progress Bar */
.progress-bar {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 24px 20px;
    background: var(--white);
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 68px;
    z-index: 99;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--light-gray);
    border-radius: 50px;
    font-size: 14px;
    color: var(--gray);
    transition: var(--transition);
}

.progress-step .step-num {
    width: 24px;
    height: 24px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
}

.progress-step.active {
    background: var(--teal);
    color: var(--white);
}

.progress-step.active .step-num {
    background: var(--white);
    color: var(--teal);
}

.progress-step.completed {
    background: var(--navy);
    color: var(--white);
}

.progress-step.completed .step-num {
    background: var(--teal);
    color: var(--white);
}

/* Booking Layout */
.booking-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 32px;
    padding: 40px 0;
    min-height: 60vh;
}

.booking-main {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

/* Booking Sidebar */
.booking-sidebar {
    position: sticky;
    top: 140px;
    height: fit-content;
}

.price-summary {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.price-summary h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.price-summary h3 i {
    color: var(--teal);
}

.summary-items {
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.summary-item.addon {
    color: var(--gray);
    padding-left: 16px;
}

.summary-item.discount {
    color: var(--teal);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 2px solid var(--navy);
    font-weight: 700;
    font-size: 1.25rem;
}

.summary-total .original {
    text-decoration: line-through;
    color: var(--gray);
    font-weight: 400;
    font-size: 0.9rem;
    margin-right: 8px;
}

.price-summary .guarantee-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--gray);
}

.price-summary .guarantee-note i {
    color: var(--teal);
}

/* Step Content */
.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-title {
    margin-bottom: 8px;
}

.step-subtitle {
    color: var(--gray);
    margin-bottom: 32px;
}

/* Service Selection Cards */
.service-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-option {
    position: relative;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.service-option:hover {
    border-color: var(--teal);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.service-option.selected {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0, 201, 167, 0.2);
}

.service-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none; /* Prevent hidden checkbox from intercepting clicks */
}

.service-option-image {
    height: 160px;
    background-size: cover;
    background-position: center;
}

.service-option-content {
    padding: 20px;
}

.service-option-content h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.service-option-content h4 i {
    color: var(--teal);
}

.service-option-content p {
    color: var(--gray);
    font-size: 14px;
}

.service-option .check-mark {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: var(--teal);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.service-option.selected .check-mark {
    display: flex;
}

/* Size Selection */
.size-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.size-option {
    position: relative;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius);
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.size-option:hover {
    border-color: var(--teal);
}

.size-option.selected {
    border-color: var(--teal);
    background: rgba(0, 201, 167, 0.05);
}

.size-option input {
    position: absolute;
    opacity: 0;
}

.size-option .size-icon {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 12px;
}

.size-option h4 {
    margin-bottom: 4px;
}

.size-option .size-desc {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
}

.size-option .size-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal);
}

/* Frequency Selection */
.frequency-selection {
    margin-bottom: 32px;
}

.frequency-selection h4 {
    margin-bottom: 16px;
}

.frequency-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.frequency-option {
    position: relative;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    cursor: pointer;
    transition: var(--transition);
}

.frequency-option:hover {
    border-color: var(--teal);
}

.frequency-option.selected {
    border-color: var(--teal);
    background: rgba(0, 201, 167, 0.05);
}

.frequency-option input {
    position: absolute;
    opacity: 0;
}

.frequency-option .freq-label {
    font-weight: 600;
}

.frequency-option .freq-discount {
    font-size: 12px;
    color: var(--teal);
    font-weight: 600;
}

/* Add-ons */
.addons-section {
    margin-bottom: 32px;
}

.addons-section h4 {
    margin-bottom: 16px;
}

.addon-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.addon-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.addon-option:hover {
    border-color: var(--teal);
}

.addon-option.selected {
    border-color: var(--teal);
    background: rgba(0, 201, 167, 0.05);
}

.addon-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--teal);
}

.addon-option .addon-info {
    flex: 1;
}

.addon-option .addon-name {
    font-weight: 600;
}

.addon-option .addon-desc {
    font-size: 13px;
    color: var(--gray);
}

.addon-option .addon-price {
    font-weight: 700;
    color: var(--teal);
}

/* What's Included */
.whats-included {
    margin-bottom: 32px;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-sm);
}

.whats-included-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    cursor: pointer;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
}

.whats-included-toggle h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.whats-included-content {
    display: none;
    padding: 20px;
}

.whats-included-content.open {
    display: block;
}

.whats-included-content h5 {
    color: var(--navy);
    margin: 16px 0 8px;
}

.whats-included-content h5:first-child {
    margin-top: 0;
}

.whats-included-content ul {
    list-style: none;
    padding-left: 0;
}

.whats-included-content li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 6px;
    color: var(--gray);
}

.whats-included-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
}

/* Cross-sell Section - Clean version (no box) */
.cross-sell-section {
    margin-top: 32px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.cross-sell-section h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--navy);
}

.cross-sell-subtitle {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 16px;
}

.cross-sell-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cross-sell-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.cross-sell-card:hover {
    border-color: var(--teal);
    box-shadow: 0 4px 12px rgba(0, 201, 167, 0.15);
}

.cross-sell-card--selected {
    border-color: var(--teal);
    background: rgba(0, 201, 167, 0.05);
    box-shadow: 0 0 0 3px rgba(0, 201, 167, 0.15);
}

.cross-sell-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cross-sell-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cross-sell-card-icon i {
    font-size: 20px;
    color: var(--teal);
}

.cross-sell-card--selected .cross-sell-card-icon {
    background: var(--teal);
}

.cross-sell-card--selected .cross-sell-card-icon i {
    color: var(--white);
}

.cross-sell-card-info {
    flex: 1;
}

.cross-sell-card-info h5 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--navy);
}

.cross-sell-price {
    font-size: 13px;
    color: var(--gray);
}

.cross-sell-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.cross-sell-add-label {
    background: var(--teal);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cross-sell-card:hover .cross-sell-add-label {
    background: var(--teal-dark);
}

.cross-sell-added {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--teal);
    font-weight: 600;
    font-size: 14px;
}

.cross-sell-added i {
    font-size: 16px;
}

.cross-sell-remove-btn {
    background: #fee2e2;
    color: #dc2626;
    border: none;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cross-sell-remove-btn:hover {
    background: #dc2626;
    color: var(--white);
}

.cross-sell-card-footer {
    margin-top: 8px;
    padding-top: 0;
    border-top: none;
    display: flex;
    justify-content: flex-start;
}

.cross-sell-discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff7ed;
    color: #ea580c;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.cross-sell-discount-badge i {
    font-size: 11px;
}

/* Cross-sell inline customization */
.cross-sell-customize {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}

.cross-sell-size-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.cross-sell-size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cross-sell-size-btn {
    background: var(--light-gray);
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    cursor: pointer;
    transition: var(--transition);
    min-height: 44px;
}

.cross-sell-size-btn:hover {
    border-color: var(--teal);
    background: var(--white);
}

.cross-sell-size-btn.selected {
    border-color: var(--teal);
    background: var(--teal);
    color: var(--white);
}

/* Summary remove button */
.summary-item-service {
    position: relative;
}

.summary-item-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-remove-btn {
    background: transparent;
    color: #999;
    border: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    padding: 0;
}

.summary-remove-btn:hover {
    background: #fee2e2;
    color: #dc2626;
}

/* Service section header with remove button */
.service-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.service-section-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.service-section-header h3 i {
    color: var(--teal);
}

.service-remove-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: #dc2626;
    border: 1px solid #fecaca;
    border-radius: 6px;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    min-width: 44px;
    min-height: 44px;
    transition: var(--transition);
}

.service-remove-btn:hover {
    background: #fee2e2;
    border-color: #dc2626;
}

.service-remove-btn .remove-x {
    font-size: 14px;
    font-weight: 700;
}

/* Legacy cross-sell styles (keeping for compatibility) */
.cross-sell {
    margin-top: 32px;
    padding: 20px;
    background: linear-gradient(135deg, #f0fdf9 0%, #e0f7f3 100%);
    border: 2px dashed var(--teal);
    border-radius: var(--radius);
}

.cross-sell h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.cross-sell p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 12px;
}

.cross-sell label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
}

.cross-sell input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--teal);
}

/* Pressure Washing Specific */
.pw-category {
    margin-bottom: 32px;
}

.pw-category h4 {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pw-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.pw-option {
    position: relative;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    padding: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.pw-option:hover {
    border-color: var(--teal);
}

.pw-option.selected {
    border-color: var(--teal);
    background: rgba(0, 201, 167, 0.05);
}

.pw-option input {
    position: absolute;
    opacity: 0;
}

.pw-option h5 {
    margin-bottom: 4px;
}

.pw-option .pw-desc {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 8px;
}

.pw-option .pw-price {
    font-weight: 700;
    color: var(--teal);
}

/* Form Fields */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--teal);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #e74c3c;
}

.form-group .error-message {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 6px;
    display: none;
}

.form-group .error-message.show {
    display: block;
}

/* Calendar */
.calendar-container {
    margin-bottom: 24px;
}

.calendar {
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    overflow: hidden;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: var(--navy);
    color: var(--white);
}

.calendar-header h4 {
    color: var(--white);
    margin: 0;
}

.calendar-header button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.calendar-header button:hover {
    background: var(--teal);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--light-gray);
    padding: 12px 0;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--gray);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    padding: 12px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.calendar-day:hover:not(.disabled):not(.empty):not(.selected) {
    background: var(--light-gray);
}

.calendar-day.selected {
    background: var(--teal);
    color: var(--white);
}

.calendar-day.selected:hover {
    background: var(--teal);
    color: var(--white);
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.empty {
    cursor: default;
}

.calendar-day.today {
    border: 2px solid var(--teal);
}

/* Time Slots */
.time-slots {
    margin-top: 24px;
}

.time-slots h4 {
    margin-bottom: 16px;
}

.time-options {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.time-option {
    position: relative;
    flex: 1;
    min-width: 200px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.time-option:hover {
    border-color: var(--teal);
}

.time-option.selected {
    border-color: var(--teal);
    background: rgba(0, 201, 167, 0.05);
}

.time-option input {
    position: absolute;
    opacity: 0;
}

.time-option i {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 8px;
}

.time-option h5 {
    margin-bottom: 4px;
}

.time-option p {
    font-size: 13px;
    color: var(--gray);
}

.time-note {
    margin-top: 20px;
    padding: 16px;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--gray);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.time-note i {
    color: var(--teal);
    font-size: 20px;
    margin-top: 2px;
}

/* Review Section */
.review-section {
    margin-bottom: 24px;
}

.review-card {
    background: var(--light-gray);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
}

.review-card h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.review-card h4 i {
    color: var(--teal);
}

.review-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.review-item .label {
    color: var(--gray);
}

.review-item .value {
    font-weight: 600;
}

.review-total {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}

.review-total h3 {
    color: var(--white);
    margin-bottom: 8px;
}

.review-total .total-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal);
}

.review-total .original-amount {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.25rem;
    margin-right: 12px;
}

.review-total .savings {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 16px;
    background: var(--teal);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

/* Navigation Buttons */
.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
}

.step-navigation .btn-back {
    background: var(--light-gray);
    color: var(--navy);
    border-color: var(--light-gray);
}

.step-navigation .btn-back:hover {
    background: #e9ecef;
    border-color: #e9ecef;
}

/* Confirmation */
.confirmation {
    text-align: center;
    padding: 60px 20px;
}

.confirmation-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirmation-icon i {
    font-size: 48px;
    color: var(--white);
}

.confirmation h2 {
    margin-bottom: 16px;
}

.confirmation p {
    color: var(--gray);
    margin-bottom: 8px;
}

.confirmation .email-highlight {
    font-weight: 600;
    color: var(--navy);
}

.confirmation .btn {
    margin-top: 24px;
}

/* Trust badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    font-size: 14px;
    color: var(--gray);
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-badges i {
    color: var(--teal);
}

/* ===================================
   SERVICE PAGES
   =================================== */

.service-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 120px 20px 60px;
}

.service-hero-content {
    max-width: 700px;
}

.service-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
}

.service-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.service-details {
    padding: 60px 0;
}

.service-details-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
}

.service-description h2 {
    margin-bottom: 16px;
}

.service-description p {
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.8;
}

.service-includes {
    margin-bottom: 32px;
}

.service-includes h3 {
    margin-bottom: 16px;
}

.service-includes ul {
    list-style: none;
}

.service-includes li {
    position: relative;
    padding: 10px 0 10px 32px;
    border-bottom: 1px solid #e0e0e0;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
    font-size: 18px;
}

/* Service page booking widget */
.service-booking-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.service-booking-widget h3 {
    margin-bottom: 24px;
    text-align: center;
}

.widget-price {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e0e0e0;
}

.widget-price .starting {
    color: var(--gray);
    font-size: 14px;
}

.widget-price .price {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
}

/* FAQ */
.faq-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--navy);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
    color: var(--gray);
}

.faq-item.open .faq-answer {
    display: block;
}

/* Cross-sell section on service pages */
.cross-sell-section {
    padding: 60px 0;
    background: var(--white);
}

.cross-sell-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.cross-sell-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--light-gray);
    border-radius: var(--radius);
    transition: var(--transition);
}

.cross-sell-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.cross-sell-card i {
    font-size: 32px;
    color: var(--teal);
}

.cross-sell-card h4 {
    margin-bottom: 4px;
}

.cross-sell-card p {
    font-size: 14px;
    color: var(--gray);
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 32px;
}

.contact-methods {
    margin-bottom: 32px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0;
}

.contact-method i {
    width: 48px;
    height: 48px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--teal);
}

.contact-method h4 {
    margin-bottom: 4px;
}

.contact-method p {
    color: var(--gray);
}

.contact-form {
    background: var(--light-gray);
    padding: 32px;
    border-radius: var(--radius);
}

.contact-form h3 {
    margin-bottom: 24px;
}

/* ===================================
   ANIMATIONS
   =================================== */

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   MOBILE RESPONSIVE
   =================================== */

/* Mobile Bottom Price Bar */
.mobile-price-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    padding: 16px 20px;
    z-index: 99;
}

.mobile-price-bar .price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-price-bar .price-label {
    font-size: 14px;
    color: var(--gray);
}

.mobile-price-bar .price-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
}

@media (max-width: 1024px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }
    
    .booking-sidebar {
        display: none;
    }
    
    .mobile-price-bar {
        display: block;
    }
    
    .booking-main {
        margin-bottom: 100px;
    }
    
    .service-details-grid {
        grid-template-columns: 1fr;
    }
    
    .service-booking-widget {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 12px 16px;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: var(--light-gray);
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hero {
        background-attachment: scroll;
        min-height: 90vh;
    }
    
    .trust-items {
        flex-direction: column;
        gap: 16px;
    }
    
    .progress-bar {
        overflow-x: auto;
        justify-content: flex-start;
        gap: 4px;
    }
    
    .progress-step {
        padding: 6px 12px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .progress-step .step-label {
        display: none;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .service-selection {
        grid-template-columns: 1fr;
    }
    
    .size-selection {
        grid-template-columns: 1fr 1fr;
    }
    
    .time-options {
        flex-direction: column;
    }
    
    .time-option {
        min-width: 100%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .size-selection {
        grid-template-columns: 1fr;
    }
    
    .frequency-options {
        flex-direction: column;
    }
    
    .frequency-option {
        width: 100%;
    }
    
    .pw-options {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 12px;
    }
    
    /* Cross-sell mobile */
    .cross-sell-grid {
        grid-template-columns: 1fr;
    }
    
    .cross-sell-card {
        padding: 14px;
    }
    
    .cross-sell-card-header {
        flex-wrap: wrap;
    }
    
    .cross-sell-toggle {
        margin-left: auto;
    }
    
    .cross-sell-size-options {
        flex-direction: column;
    }
    
    .cross-sell-size-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===================================
   MOBILE RESPONSIVENESS FIXES (375px)
   =================================== */

@media (max-width: 375px) {
    /* Ensure no horizontal scrolling */
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 16px;
    }
    
    /* Booking main area */
    .booking-main {
        padding: 20px 16px;
        margin-bottom: 120px; /* Extra space for mobile price bar */
    }
    
    /* Progress bar - ensure it fits */
    .progress-bar {
        padding: 16px 12px;
        gap: 2px;
    }
    
    .progress-step {
        padding: 6px 8px;
        font-size: 11px;
    }
    
    .progress-step .step-num {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    
    /* Service cards - minimum touch target 44px */
    .service-option {
        min-height: 44px;
    }
    
    .service-option-content {
        padding: 16px;
    }
    
    .service-option-image {
        height: 120px;
    }
    
    /* Buttons - minimum 44px touch targets */
    .btn {
        min-height: 44px;
        padding: 12px 20px;
    }
    
    .btn-primary, .btn-back {
        min-height: 48px;
        font-size: 15px;
    }
    
    .step-navigation {
        flex-direction: column-reverse;
        gap: 12px;
    }
    
    .step-navigation .btn {
        width: 100%;
    }
    
    /* Size options */
    .size-option {
        padding: 16px;
        min-height: 44px;
    }
    
    .size-option .size-price {
        font-size: 1.25rem;
    }
    
    /* Frequency options - stacked and touch-friendly */
    .frequency-option {
        padding: 14px 16px;
        min-height: 44px;
    }
    
    /* Add-ons - touch-friendly */
    .addon-option {
        padding: 14px 12px;
        min-height: 44px;
    }
    
    .addon-option input[type="checkbox"] {
        width: 24px;
        height: 24px;
        min-width: 24px;
    }
    
    /* Calendar - usable on touch */
    .calendar-day {
        min-width: 36px;
        min-height: 36px;
        font-size: 14px;
    }
    
    .calendar-header button {
        width: 44px;
        height: 44px;
    }
    
    .calendar-weekdays {
        font-size: 12px;
    }
    
    .calendar-days {
        padding: 8px;
        gap: 2px;
    }
    
    /* Time slots */
    .time-option {
        padding: 16px;
        min-height: 80px;
    }
    
    .time-option i {
        font-size: 20px;
    }
    
    /* Form fields - prevent zooming */
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents iOS zoom on focus */
        padding: 14px 12px;
        min-height: 48px;
    }
    
    /* Form grid single column */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    /* Nested state/zip grid */
    .form-group[style*="grid-template-columns: 1fr 1fr"] {
        display: flex !important;
        flex-direction: column;
        gap: 16px !important;
    }
    
    /* Mobile price bar - ensure it doesn't overlap */
    .mobile-price-bar {
        padding: 14px 16px;
        padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    }
    
    .mobile-price-bar .price-amount {
        font-size: 1.35rem;
    }
    
    /* Review cards */
    .review-card {
        padding: 16px;
    }
    
    .review-item {
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .review-item .value {
        word-break: break-word;
    }
    
    .review-total {
        padding: 20px 16px;
    }
    
    .review-total .total-amount {
        font-size: 2rem;
    }
    
    /* Cross-sell */
    .cross-sell {
        padding: 16px;
    }
    
    .cross-sell label {
        padding: 8px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .cross-sell input[type="checkbox"] {
        width: 24px;
        height: 24px;
        min-width: 24px;
    }
    
    /* Cross-sell section (new) */
    .cross-sell-section {
        padding: 16px;
    }
    
    .cross-sell-card {
        padding: 12px;
    }
    
    .cross-sell-card-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .cross-sell-card-icon i {
        font-size: 16px;
    }
    
    .cross-sell-add-label {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .cross-sell-remove-btn {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 16px;
    }
    
    .summary-remove-btn {
        width: 24px;
        height: 24px;
        min-width: 24px;
        font-size: 14px;
    }
    
    /* Service remove button - mobile friendly */
    .service-remove-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .service-section-header {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .service-section-header h3 {
        font-size: 1.1rem;
    }
    
    /* Pressure washing options */
    .pw-option {
        padding: 14px;
        min-height: 44px;
    }
    
    /* What's included */
    .whats-included-toggle {
        padding: 14px;
        min-height: 44px;
    }
    
    .whats-included-content {
        padding: 16px;
    }
    
    /* Confirmation page */
    .confirmation {
        padding: 40px 16px;
    }
    
    .confirmation-icon {
        width: 80px;
        height: 80px;
    }
    
    .confirmation-icon i {
        font-size: 36px;
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .mobile-price-bar,
    .step-navigation {
        display: none;
    }
}

/* Optional field label */
.optional-label {
    font-size: 0.8rem;
    color: #999;
    font-weight: 400;
    margin-left: 4px;
}

/* Notes textarea */
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #1A2B4A;
    resize: vertical;
    min-height: 80px;
    transition: border-color 0.2s;
}

textarea:focus {
    outline: none;
    border-color: #00C9A7;
}

/* ===== PAYMENT STEP ===== */
.payment-box {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.payment-order-summary {
    background: #f8fffe;
    border-bottom: 1px solid #e0f7f4;
    padding: 24px;
}

.payment-order-summary h3 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 16px;
    font-weight: 600;
}

.payment-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e0f7f4;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy);
}

.payment-total-amount {
    color: var(--teal);
    font-size: 1.3rem;
}

.payment-form-section {
    padding: 24px;
}

.stripe-ready-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0fdf9;
    border: 1px solid #00C9A7;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #00a389;
    font-weight: 500;
}

.card-input-wrapper {
    position: relative;
}

.card-input-wrapper input {
    padding-right: 44px;
}

.card-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1rem;
}

.form-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Stripe Card Element Styles */
.stripe-card-element {
    background: #fff;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    min-height: 48px;
}

.stripe-card-element:hover {
    border-color: #ccc;
}

.stripe-card-element.focused {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0, 201, 167, 0.1);
}

.stripe-card-element.StripeElement--invalid {
    border-color: #e53e3e;
}

.stripe-card-errors {
    display: none;
    color: #e53e3e;
    font-size: 0.85rem;
    margin-top: 8px;
    padding: 8px 12px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
}

.stripe-card-errors:not(:empty) {
    display: block;
}

/* Pay button loading state */
.btn-loading {
    opacity: 0.7;
    pointer-events: none;
    cursor: not-allowed;
}

.btn-loading .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.payment-trust-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 16px 24px;
    border-top: 1px solid #f0f0f0;
    font-size: 0.8rem;
    color: #666;
    flex-wrap: wrap;
}

.payment-trust-row i {
    color: var(--teal);
    margin-right: 4px;
}

@media (max-width: 480px) {
    .form-row-half {
        grid-template-columns: 1fr;
    }
    .payment-trust-row {
        gap: 12px;
        font-size: 0.75rem;
    }
}

/* Savings highlight in sidebar */
.summary-savings {
    background: linear-gradient(135deg, #e8fff9, #f0fdf9);
    border: 1px solid #00C9A7;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #00856a;
    text-align: center;
    animation: savingsPop 0.3s ease;
}

@keyframes savingsPop {
    0% { transform: scale(0.95); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Progress step click navigation */
.progress-step.completed {
    cursor: pointer !important;
}

.progress-step.completed:hover .step-num {
    background: #009b82;
    transform: scale(1.1);
    transition: all 0.2s ease;
}

.progress-step.completed:hover .step-label {
    color: #009b82;
}

.progress-step[title] {
    cursor: pointer !important;
}

/* Size selection nudge */
.size-nudge {
    color: #e57c00;
    font-size: 0.875rem;
    margin-top: 8px;
    padding: 8px 12px;
    background: #fff8f0;
    border: 1px solid #fcd3a0;
    border-radius: 8px;
    display: none;
    animation: nudgeFade 0.3s ease;
}

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

/* Review page pricing breakdown */
.review-price-breakdown {
    margin-top: 8px;
}

.review-discount-line .label {
    color: #00856a;
    font-weight: 500;
}

.review-discount-line .label i {
    margin-right: 4px;
    color: #00C9A7;
}

.discount-value {
    color: #00856a !important;
    font-weight: 600;
}

.review-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0 8px;
    border-top: 2px solid #e8e8e8;
    margin-top: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy);
}

.review-final-total {
    font-size: 1.4rem;
    color: var(--teal);
    font-weight: 700;
}

.review-savings-badge {
    text-align: center;
    background: linear-gradient(135deg, #e8fff9, #f0fdf9);
    border: 1px solid #00C9A7;
    border-radius: 8px;
    padding: 10px 14px;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #00856a;
    animation: savingsPop 0.3s ease;
}

/* ===================================
   BOOKING CONFIRMATION - Beautiful Success Screen
   =================================== */

.confirmation-container {
    text-align: center;
    padding: 60px 24px;
    max-width: 580px;
    margin: 0 auto;
}

.confirmation-icon-wrapper {
    margin-bottom: 32px;
}

.confirmation-checkmark {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.checkmark-svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #00C9A7;
    stroke-miterlimit: 10;
    box-shadow: 0 8px 30px rgba(0, 201, 167, 0.3);
    animation: confirmScale 0.5s ease-in-out;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: #00C9A7;
    fill: #e8fff9;
    animation: confirmStroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 4;
    stroke: #00C9A7;
    animation: confirmStroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.5s forwards;
}

@keyframes confirmStroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes confirmScale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

.confirmation-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.confirmation-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.confirmation-summary-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    text-align: left;
}

.confirmation-summary-row {
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.confirmation-summary-row:last-child {
    border-bottom: none;
}

.confirmation-summary-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.confirmation-summary-label i {
    color: var(--teal);
    width: 16px;
}

.confirmation-summary-value {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.5;
}

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

.confirmation-services-list li {
    color: var(--gray);
    font-size: 1rem;
    padding: 4px 0;
    padding-left: 24px;
    position: relative;
}

.confirmation-services-list li::before {
    content: "✓";
    color: var(--teal);
    font-weight: 700;
    position: absolute;
    left: 0;
}

.confirmation-time {
    font-size: 0.9rem;
    color: #9ca3af;
}

.confirmation-total-row {
    background: linear-gradient(135deg, #e8fff9, #f0fdf9);
    margin: 16px -24px -24px;
    padding: 20px 24px !important;
    border-radius: 0 0 16px 16px;
    border-bottom: none !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.confirmation-amount {
    font-size: 1.5rem !important;
    font-weight: 700;
    color: var(--teal) !important;
}

.confirmation-email-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    text-align: left;
}

.confirmation-email-notice i {
    color: #0284c7;
    font-size: 1.25rem;
    margin-top: 2px;
}

.confirmation-email-notice p {
    font-size: 0.95rem;
    color: #0369a1;
    line-height: 1.5;
    margin: 0;
}

.confirmation-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #e8fff9, #f0fdf9);
    border: 1px solid #00C9A7;
    border-radius: 10px;
    padding: 14px 20px;
    margin-bottom: 28px;
    font-size: 0.95rem;
    color: #00856a;
    font-weight: 500;
}

.confirmation-guarantee i {
    color: var(--teal);
    font-size: 1.1rem;
}

.confirmation-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
}

.confirmation-home-btn i {
    font-size: 1.1rem;
}

/* Mobile adjustments for confirmation */
@media (max-width: 768px) {
    .confirmation-container {
        padding: 40px 16px;
    }
    
    .confirmation-title {
        font-size: 1.6rem;
    }
    
    .confirmation-subtitle {
        font-size: 1rem;
    }
    
    .confirmation-checkmark {
        width: 80px;
        height: 80px;
    }
    
    .confirmation-summary-box {
        padding: 16px;
    }
    
    .confirmation-total-row {
        margin: 16px -16px -16px;
        padding: 16px !important;
    }
    
    .confirmation-email-notice {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .confirmation-guarantee {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* ===================================
   Legal Pages (Privacy & Terms)
   =================================== */

.legal-header {
    background: var(--navy);
    padding: 100px 0 60px;
    text-align: center;
}

.legal-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.legal-effective {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.legal-content {
    padding: 60px 0 80px;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
}

.legal-intro {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.legal-body h2 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-top: 48px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--teal);
}

.legal-body h3 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-body p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--dark-gray);
}

.legal-body ul, .legal-body ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-body li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--dark-gray);
}

.legal-body a {
    color: var(--teal);
    text-decoration: underline;
}

.legal-body a:hover {
    color: var(--teal-dark);
}

.legal-contact {
    background: var(--light-gray);
    padding: 24px;
    border-radius: var(--radius);
    margin-top: 24px;
}

.legal-contact p {
    margin: 0;
    line-height: 1.8;
}

.legal-contact a {
    color: var(--teal);
}

/* Footer legal links */
.footer-legal-links {
    margin-top: 8px;
    font-size: 0.9rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: var(--teal);
}

/* Mobile adjustments for legal pages */
@media (max-width: 768px) {
    .legal-header {
        padding: 80px 0 40px;
    }
    
    .legal-header h1 {
        font-size: 1.8rem;
    }
    
    .legal-content {
        padding: 40px 0 60px;
    }
    
    .legal-body h2 {
        font-size: 1.3rem;
        margin-top: 36px;
    }
    
    .legal-body h3 {
        font-size: 1.05rem;
    }
    
    .legal-intro {
        font-size: 1rem;
    }
}
