/* ====================================
   CSS Variables - Light Green Theme
   ==================================== */
:root {
    /* Light Green Color Palette */
    --color-primary: #10B981;
    /* emerald-500 */
    --color-primary-dark: #059669;
    /* emerald-600 */
    --color-primary-light: #6EE7B7;
    /* emerald-300 */
    --color-primary-lighter: #D1FAE5;
    /* emerald-100 */

    /* Neutral Colors */
    --color-text: #1F2937;
    /* gray-800 */
    --color-text-light: #6B7280;
    /* gray-500 */
    --color-background: #FFFFFF;
    --color-background-gray: #F9FAFB;
    /* gray-50 */
    --color-border: #E5E7EB;
    /* gray-200 */

    /* Semantic Colors */
    --color-success: #10B981;
    --color-error: #EF4444;
    --color-warning: #F59E0B;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

/* ====================================
   Reset & Base Styles
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text);
    background-color: var(--color-background);
    overflow-x: hidden;
}

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

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

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

/* ====================================
   Utility Classes
   ==================================== */
.hidden {
    display: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (max-width: 640px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

/* ====================================
   Language Switcher
   ==================================== */
.language-switcher {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px;
    border-radius: var(--radius-full);
}

.lang-btn {
    padding: 6px 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: 13px;
}

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

.lang-btn:hover:not(.active) {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* ====================================
   Sticky Header Bar
   ==================================== */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: var(--spacing-sm) 0;
    z-index: 998;
    box-shadow: var(--shadow-md);
}

.sticky-header .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--spacing-md);
}

.header-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    white-space: nowrap;
}

.header-center {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    justify-content: center;
}

.call-label {
    font-weight: 600;
    font-size: 15px;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--spacing-md);
}

.phone-link {
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    transition: transform var(--transition-fast);
    white-space: nowrap;
}

.phone-link:hover {
    transform: scale(1.05);
    color: var(--color-primary-lighter);
}

@media (max-width: 768px) {
    .sticky-header .container {
        grid-template-columns: auto 1fr auto;
        gap: var(--spacing-sm);
    }

    .header-logo {
        font-size: 1rem;
    }

    .call-label {
        display: none;
    }

    .phone-link {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header-logo {
        font-size: 0.875rem;
    }

    .phone-link {
        font-size: 0.9375rem;
    }
}

/* ====================================
   Hero Section
   ==================================== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('assets/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 56px;
    padding: var(--spacing-2xl) 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.85) 0%, rgba(5, 150, 105, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    font-weight: 500;
    opacity: 0.95;
}

.hero-ctas {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* ====================================
   Buttons
   ==================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: white;
    color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary {
    background: var(--color-background-gray);
    color: var(--color-text);
    border: 2px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-primary-lighter);
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: white;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

/* ====================================
   Section Styling
   ==================================== */
section {
    padding: var(--spacing-2xl) 0;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text);
}

.section-description {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
}

@media (max-width: 768px) {
    section h2 {
        font-size: 1.875rem;
    }
}

/* ====================================
   Modal Popup
   ==================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1001;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--color-background-gray);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: all var(--transition-base);
    color: var(--color-text);
    z-index: 1002;
}

.modal-close:hover {
    background: var(--color-primary);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: var(--spacing-xl);
}

.modal-body h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.modal-body .section-description {
    margin-bottom: var(--spacing-lg);
}

@media (max-width: 768px) {
    .modal {
        padding: 0;
    }

    .modal-content {
        max-height: 100vh;
        border-radius: 0;
        width: 100%;
    }

    .modal-body {
        padding: var(--spacing-lg);
    }

    .modal-body h2 {
        font-size: 1.5rem;
    }
}

/* ====================================
   Rental Form (in Modal)
   ==================================== */

.rental-form {
    margin: 0;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.form-section {
    margin-bottom: var(--spacing-xl);
}

.form-section:last-of-type {
    margin-bottom: var(--spacing-lg);
}

.form-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 3px solid var(--color-primary-lighter);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

/* Address row layout for postcode, house number, and addition */
.address-row {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-end;
}

.address-field {
    display: flex;
    flex-direction: column;
}

.address-field label {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
    font-size: 0.9375rem;
}

.address-field input {
    padding: 0.75rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.address-field input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-lighter);
}

/* Fixed widths for address fields */
.address-field-postcode {
    flex: 0 0 140px; /* Fixed width for postcode (4 digits + 2 letters) */
}

.address-field-housenumber {
    flex: 0 0 120px; /* Fixed width for house number */
}

.address-field-addition {
    flex: 0 0 120px; /* Fixed width for addition */
}

.address-field-floor {
    flex: 0 0 100px; /* Fixed width for floor number */
}

/* Address error message */
.address-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.address-error.hidden {
    display: none;
}

/* Mobile responsive */
@media (max-width: 640px) {
    .address-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .address-field-postcode,
    .address-field-housenumber,
    .address-field-addition,
    .address-field-floor {
        flex: 1 1 auto;
    }
}

.form-group label {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-lighter);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-hint {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-style: italic;
}

/* Address Lookup Styles */
.input-with-loader {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-loader input {
    flex: 1;
}

.address-loader {
    position: absolute;
    right: 0.75rem;
    font-size: 1.25rem;
    animation: spin 1s linear infinite;
}

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

    to {
        transform: rotate(360deg);
    }
}

.auto-filled {
    background-color: #f9fafb !important;
    color: #6b7280;
    cursor: not-allowed;
}

.auto-filled::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.radio-group {
    display: flex;
    gap: var(--spacing-md);
    padding-top: var(--spacing-xs);
}

.radio-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    cursor: pointer;
    font-weight: 500;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--color-primary);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    cursor: pointer;
    font-size: 0.9375rem;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--color-primary);
}

.checkbox-label a {
    text-decoration: underline;
}

/* Submit button alignment */
.rental-form button[type="submit"] {
    display: block;
    margin-left: auto;
    margin-right: 0;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .rental-form {
        padding: var(--spacing-lg);
    }

    .rental-form button[type="submit"] {
        width: 100%;
        margin: 0;
    }
}

/* Success Message */
.success-message {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--color-primary-lighter);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-md);
    text-align: center;
}

.success-message h3 {
    color: var(--color-primary-dark);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.success-message p {
    color: var(--color-text);
    font-size: 1.125rem;
}

/* ====================================
   Benefits Section
   ==================================== */
.benefits-section {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.benefit-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 2px solid var(--color-border);
    transition: all var(--transition-base);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.benefit-card p {
    color: var(--color-text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Date Picker Loader */
.date-picker-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: var(--radius-sm);
    z-index: 10;
    font-size: 14px;
    color: var(--color-text-light);
}

.date-picker-loader .spinner {
    width: 20px;
    height: 20px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ====================================
   How It Works Section
   ==================================== */
.how-it-works {
    background: var(--color-background-gray);
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.step {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    transition: all var(--transition-base);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.step p {
    color: var(--color-text-light);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .steps-timeline {
        grid-template-columns: 1fr;
    }
}

/* ====================================
   Service Areas Section
   ==================================== */
.service-areas {
    background: white;
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-top: var(--spacing-xl);
}

.areas-text p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.cities-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.cities-list li {
    padding: var(--spacing-xs) 0;
    color: var(--color-text-light);
    font-weight: 500;
    position: relative;
    padding-left: var(--spacing-md);
}

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

.areas-note {
    font-style: italic;
    color: var(--color-text-light);
    margin-top: var(--spacing-md);
}

.map-container {
    background: var(--color-background-gray);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.map-container img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    background-color: #fff;
}

@media (max-width: 768px) {
    .areas-content {
        grid-template-columns: 1fr;
    }
}

/* ====================================
   CTA Section
   ==================================== */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ====================================
   Footer
   ==================================== */
.footer {
    background: var(--color-text);
    color: white;
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary-light);
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary-light);
}

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

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: var(--color-primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

.footer-legal a:hover {
    color: var(--color-primary-light);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ====================================
   Animations
   ==================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Time Slot Grid Styles */
.time-slots-container {
    margin-top: 0.5rem;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
}

.time-slot-btn {
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    background-color: white;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.time-slot-btn:hover:not(:disabled):not(.selected):not(.duration-highlight) {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background-color: #f0fdf4;
}

.time-slot-btn.selected,
.time-slot-btn.selected:hover {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.time-slot-btn:disabled {
    background-color: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
    border-color: #e5e7eb !important;
}

/* Booked slots - striped pattern with line-through */
.time-slot-btn.time-slot-booked {
    background: repeating-linear-gradient(45deg,
            #f3f4f6,
            #f3f4f6 10px,
            #e5e7eb 10px,
            #e5e7eb 20px) !important;
    text-decoration: line-through;
    border-color: #e5e7eb !important;
    color: #9ca3af !important;
}

/* Blocked slots - same as booked (grey striped) */
.time-slot-btn.time-slot-blocked {
    background: repeating-linear-gradient(45deg,
            #f3f4f6,
            #f3f4f6 10px,
            #e5e7eb 10px,
            #e5e7eb 20px) !important;
    text-decoration: line-through;
    border-color: #e5e7eb !important;
    color: #9ca3af !important;
}

/* Travel time slots - light grey, no stripes, no line-through */
.time-slot-btn.time-slot-travel {
    background-color: #f9fafb !important;
    color: #9ca3af !important;
    border-color: #e5e7eb !important;
    opacity: 0.8;
}

/* Too close slots - light grey (can turn green when earlier slot selected) */
.time-slot-btn.time-slot-too-close {
    background-color: #f9fafb !important;
    color: #9ca3af !important;
    border-color: #e5e7eb !important;
    opacity: 0.8;
}

/* Insufficient time slots - greyed out without stripes */
.time-slot-btn.time-slot-insufficient {
    background-color: #f9fafb !important;
    color: #9ca3af !important;
    opacity: 0.7;
    border-color: #e5e7eb !important;
}

/* Duration highlight - MUST be last to override other styles */
.time-slot-btn.duration-highlight,
.time-slot-btn.duration-highlight:hover {
    background-color: #d1fae5 !important;
    color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    font-weight: 600;
    opacity: 1 !important;
    cursor: not-allowed; /* Still not clickable if disabled */
}

.time-slot-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 0.375rem;
    border: 1px dashed #e5e7eb;
}

/* ====================================
   Price Breakdown
   ==================================== */
.price-breakdown {
    background: linear-gradient(135deg, #f0fdf4 0%, #d1fae5 100%);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    box-shadow: var(--shadow-md);
}

.price-breakdown h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--color-primary);
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xs) 0;
    font-size: 1rem;
    color: var(--color-text);
}

.price-line span:first-child {
    font-weight: 500;
}

.price-line span:last-child {
    font-weight: 600;
    color: var(--color-primary-dark);
}

.price-line.price-total {
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--color-primary);
    font-size: 1.25rem;
}

.price-line.price-total span {
    font-weight: 700;
    color: var(--color-text);
}

.price-line.price-total span:last-child {
    color: var(--color-primary-dark);
    font-size: 1.5rem;
}

.price-line.price-deposit {
    background: white;
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    margin-top: var(--spacing-xs);
    border: 1px solid var(--color-primary-light);
}

.price-line.price-deposit span {
    color: var(--color-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .price-breakdown {
        padding: var(--spacing-md);
    }

    .price-breakdown h3 {
        font-size: 1.25rem;
    }

    .price-line {
        font-size: 0.9375rem;
    }

    .price-line.price-total {
        font-size: 1.125rem;
    }
}

/* ====================================
   Disabled Form Section
   ==================================== */
.form-section.disabled {
    position: relative;
    pointer-events: none;
    opacity: 0.5;
}

.form-section.disabled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
    border-radius: var(--radius-md);
}

.form-section.disabled::after {
    content: attr(data-message);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-primary);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-sm);
    font-weight: 600;
    z-index: 2;
    white-space: nowrap;
}