/* Quote Request Modal Styles */
.quote-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 24, 39, 0.75);
    backdrop-filter: blur(8px);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s;
}

.quote-overlay.active {
    display: block;
    opacity: 1;
}

.quote-panel {
    position: fixed;
    top: 0;
    right: -800px;
    width: 100%;
    max-width: 800px;
    height: 100%;
    background: white;
    box-shadow: -8px 0 48px rgba(0, 0, 0, 0.2);
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.quote-overlay.active .quote-panel {
    right: 0;
}

/* HEADER WITH BRANDING */
.branded-header {
    background: linear-gradient(135deg, #2D3748 0%, #1A202C 100%);
    padding: 32px 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.parallax-circle {
    position: absolute;
    border-radius: 50%;
    background: #F59E0B;
}

.parallax-circle:nth-child(1) {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    animation: float 6s ease-in-out infinite;
}

.parallax-circle:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.header-content {
    position: relative;
    z-index: 2;
}

.close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg) scale(1.1);
}

/* Logo Section */
.header-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.logo-badge {
    width: 56px;
    height: 64px;
    background: white;
    border-radius: 8px 8px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid #F59E0B;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.logo-badge-top {
    font-size: 9px;
    font-weight: 700;
    color: #F59E0B;
    letter-spacing: 0.8px;
    line-height: 1;
}

.logo-badge-year {
    font-size: 15px;
    font-weight: 900;
    color: #2D3748;
    line-height: 1;
    margin-top: 2px;
}

.logo-divider {
    width: 2px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.logo-text {
    flex: 1;
}

.logo-company-name {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.logo-company-name-main {
    font-size: 24px;
    font-weight: 900;
    color: white;
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-company-name-sub {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.logo-tagline {
    font-size: 13px;
    font-weight: 600;
    color: #F59E0B;
    background: rgba(245, 158, 11, 0.15);
    padding: 4px 12px;
    border-radius: 6px;
    display: inline-block;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Mode Switcher */
.mode-switcher {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
    margin-bottom: 24px;
}

.mode-btn {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mode-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.mode-btn.active {
    background: #F59E0B;
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

/* Progress Track */
.progress-track {
    display: flex;
    align-items: center;
    gap: 12px;
}

.progress-step-circle {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.progress-step-circle.active {
    background: #F59E0B;
    border-color: #F59E0B;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
}

.progress-step-circle.completed {
    background: rgba(16, 185, 129, 0.9);
    border-color: rgba(16, 185, 129, 1);
}

.progress-step-circle.completed::after {
    content: '✓';
    position: absolute;
    font-size: 20px;
}

.progress-connector {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.progress-connector-fill {
    height: 100%;
    background: #F59E0B;
    width: 0%;
    transition: width 0.5s;
}

/* CARD MODE BODY */
.card-mode-body {
    display: none;
    flex-direction: column;
    height: calc(100vh - 240px);
}

.card-mode-body.active {
    display: flex;
}

.card-body {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    overflow-x: hidden;
    background: linear-gradient(180deg, #f9fafb 0%, white 50%);
    display: flex;
    flex-direction: column;
}

.card-body::-webkit-scrollbar {
    width: 8px;
}

.card-body::-webkit-scrollbar-track {
    background: #e5e7eb;
    border-radius: 10px;
}

.card-body::-webkit-scrollbar-thumb {
    background: #F59E0B;
    border-radius: 10px;
}

.card-body::-webkit-scrollbar-thumb:hover {
    background: #D97706;
}

.card-stack {
    position: relative;
    perspective: 1000px;
    width: 100%;
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 40px;
    background: white;
    border-top: 2px solid #f3f4f6;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.card-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 2px solid #f3f4f6;
    opacity: 0;
    transform: translateX(100%) rotateY(20deg);
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.card-layer.active {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
    pointer-events: all;
    position: relative;
    z-index: 10;
}

.card-layer.exiting {
    opacity: 0;
    transform: translateX(-100%) rotateY(-20deg);
}

.card-emoji {
    font-size: 56px;
    margin-bottom: 16px;
    display: block;
    animation: bounce 1s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-title {
    font-size: 28px;
    font-weight: 800;
    color: #2D3748;
    margin-bottom: 8px;
    display: inline-block;
    vertical-align: middle;
}

.card-subtitle {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 32px;
}

/* Step Icon */
.step-icon {
    width: 32px;
    height: 32px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    color: #2D3748;
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-icon-indigo { color: #4F46E5; }
.step-icon-emerald { color: #059669; }
.step-icon-blue { color: #2563EB; }

/* Step 2 Header — icon + title + badge on one row */
.step2-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.step2-header .step-icon {
    margin-right: 0;
    flex-shrink: 0;
}
.step2-header .card-title {
    margin-bottom: 0;
    display: block;
}
.step2-header .card-subtitle {
    margin-bottom: 0;
    font-size: 14px;
}

/* Type Badge */
.type-badge {
    margin-left: auto;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    flex-shrink: 0;
}
.type-badge-koop, .type-badge:not(.type-badge-huur) {
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    color: #1d4ed8;
    border: 1px solid #93c5fd;
}
.type-badge-huur {
    background: linear-gradient(135deg, #d1fae5, #ecfdf5);
    color: #047857;
    border: 1px solid #6ee7b7;
}

/* Order Sections — grouped with depth */
.order-section {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.order-section-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.order-section-label svg {
    color: #94a3b8;
}

/* Modification Dropdown Multi-Select */
.mod-dropdown {
    position: relative;
}
.mod-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.mod-dropdown-trigger:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.mod-dropdown.open .mod-dropdown-trigger {
    border-color: #F59E0B;
    box-shadow: 0 0 0 3px rgba(245,158,11,0.12);
}
.mod-dropdown-text {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
}
.mod-dropdown.open .mod-dropdown-arrow {
    transform: rotate(180deg);
}
.mod-dropdown-arrow {
    color: #94a3b8;
    transition: transform 0.2s;
}
.mod-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 50;
    max-height: 280px;
    overflow-y: auto;
    padding: 4px;
}
.mod-dropdown.open .mod-dropdown-menu {
    display: block;
    animation: dropdownSlide 0.15s ease-out;
}
@keyframes dropdownSlide {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}
.mod-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s;
}
.mod-dropdown-item:hover {
    background: #f8fafc;
}
.mod-dropdown-item.selected {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
}
.mod-item-icon {
    font-size: 18px;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}
.mod-item-label {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}
.mod-item-desc {
    font-size: 12px;
    color: #94a3b8;
    margin-left: auto;
}
.mod-item-check {
    flex-shrink: 0;
    color: #d1d5db;
    transition: all 0.2s;
}
.mod-dropdown-item.selected .mod-item-check {
    color: #F59E0B;
}

/* Selected Modification Tags */
.mod-selected-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}
.mod-selected-tags:empty {
    margin-top: 0;
}
.mod-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #fbbf24;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #92400e;
}
.mod-tag-remove {
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    margin-left: 2px;
    opacity: 0.6;
    transition: opacity 0.15s;
}
.mod-tag-remove:hover {
    opacity: 1;
}

/* Form Elements */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 10px;
}

.form-label .required {
    color: #F59E0B;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    background: white;
    color: #2D3748;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #F59E0B;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
    transform: translateY(-2px);
}

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

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.checkbox-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkbox-item:hover {
    border-color: #F59E0B;
    transform: translateX(4px);
}

.checkbox-item.checked {
    border-color: #F59E0B;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(217, 119, 6, 0.05) 100%);
}

.checkbox-visual {
    width: 24px;
    height: 24px;
    border: 3px solid #d1d5db;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.checkbox-item.checked .checkbox-visual {
    background: #F59E0B;
    border-color: #F59E0B;
}

.checkbox-visual::after {
    content: '✓';
    color: white;
    font-weight: 900;
    font-size: 14px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.checkbox-item.checked .checkbox-visual::after {
    opacity: 1;
    transform: scale(1);
}

.checkbox-label {
    font-size: 15px;
    font-weight: 600;
    color: #2D3748;
}

/* Toggle Buttons */
.toggle-group {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.toggle-option {
    flex: 1;
    padding: 16px;
    border: 2px solid #d1d5db;
    border-radius: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
    font-weight: 600;
    color: #374151;
}

.toggle-option:hover {
    border-color: #F59E0B;
    transform: translateY(-2px);
}

.toggle-option.active {
    background: #F59E0B;
    border-color: #F59E0B;
    color: white;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

/* Option Cards */
.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.option-card {
    border: 3px solid #e5e7eb;
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: white;
    position: relative;
}

.option-card:hover {
    border-color: #F59E0B;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 32px rgba(245, 158, 11, 0.2);
}

.option-card.selected {
    border-color: #F59E0B;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(217, 119, 6, 0.08) 100%);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.3);
    transform: scale(1.05);
}

.option-card.selected .check-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: #F59E0B;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
    animation: checkPop 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes checkPop {
    0% { transform: scale(0) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
}

.option-icon {
    font-size: 52px;
    margin-bottom: 12px;
    display: block;
}

.option-title {
    font-size: 18px;
    font-weight: 800;
    color: #2D3748;
    margin-bottom: 4px;
}

.option-desc {
    font-size: 14px;
    color: #6b7280;
}

/* CHAT MODE BODY */
.chat-mode-body {
    display: none;
    flex-direction: column;
}

.chat-mode-body.active {
    display: flex;
}

.chat-messages {
    flex: 1;
    padding: 32px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #f9fafb;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: calc(100vh - 400px);
}

.chat-messages::-webkit-scrollbar {
    width: 8px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #e5e7eb;
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #F59E0B;
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: #D97706;
}

.message {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    animation: messageSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.message.bot .message-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.message.user {
    flex-direction: row-reverse;
}

.message-content {
    max-width: 70%;
}

.message.bot .message-bubble {
    background: white;
    border: 2px solid #e5e7eb;
    color: #2D3748;
    border-radius: 18px 18px 18px 4px;
}

.message.user .message-bubble {
    background: #F59E0B;
    color: white;
    border-radius: 18px 18px 4px 18px;
}

.message-bubble {
    padding: 14px 18px;
    font-size: 15px;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.message-time {
    font-size: 12px;
    color: #6b7280;
    margin-top: 6px;
    padding: 0 8px;
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.quick-reply {
    background: white;
    border: 2px solid #F59E0B;
    color: #F59E0B;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-reply:hover {
    background: #F59E0B;
    color: white;
    transform: scale(1.05);
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 16px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 18px;
    width: fit-content;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #9ca3af;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

.chat-input-area {
    padding: 20px 32px;
    background: white;
    border-top: 2px solid #e5e7eb;
}

.chat-input-wrapper {
    display: flex;
    gap: 12px;
    align-items: flex-end;
}

.chat-input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid #d1d5db;
    border-radius: 24px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    resize: none;
    max-height: 120px;
    transition: all 0.3s;
}

.chat-input:focus {
    outline: none;
    border-color: #F59E0B;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.chat-send-btn {
    width: 48px;
    height: 48px;
    background: #F59E0B;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-send-btn:hover {
    background: #D97706;
    transform: scale(1.1);
}

/* Buttons */
.btn {
    padding: 18px 32px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 17px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.btn-secondary {
    background: white;
    color: #374151;
    border: 2px solid #d1d5db;
}

.btn-secondary:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
    transform: translateY(-2px);
}

.btn-primary {
    background: #F59E0B;
    color: white;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    background: #D97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

/* Notification Toast */
.notification-toast {
    position: fixed;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 3px solid #F59E0B;
    border-radius: 16px;
    padding: 20px 28px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 400px;
}

.notification-toast.show {
    top: 24px;
}

.notification-toast-icon {
    font-size: 40px;
    animation: fadeInScale 0.6s ease;
}

@keyframes fadeInScale {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.notification-toast-content h4 {
    font-size: 16px;
    font-weight: 800;
    color: #2D3748;
    margin-bottom: 4px;
}

.notification-toast-content p {
    font-size: 14px;
    color: #6b7280;
}

/* Progress Badge */
.progress-badge {
    position: fixed;
    top: 100px;
    right: -220px;
    background: white;
    border: 3px solid #F59E0B;
    border-radius: 16px;
    padding: 16px 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 10001;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.progress-badge.show {
    right: 24px;
}

.progress-label {
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-number {
    font-size: 36px;
    font-weight: 900;
    color: #F59E0B;
    line-height: 1;
}

.progress-text {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
}

/* ============================================ */
/* TRANSPORT MODE STYLES */
/* ============================================ */

/* Form row for side-by-side fields */
.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
}

.form-group-half {
    flex: 1;
}

/* Transport method grid - 3 columns */
.transport-method-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}

.transport-method-grid .option-card {
    padding: 16px 12px;
}

.transport-method-grid .option-title {
    font-size: 14px;
}

.transport-method-grid .option-desc {
    font-size: 11px;
}

/* Form hint text */
.form-hint {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-top: 6px;
    line-height: 1.4;
}

/* Transport mode toggle group styling */
.transport-mode-card .toggle-group {
    margin-bottom: 20px;
}

/* Date input styling */
input[type="date"].form-input {
    cursor: pointer;
}

input[type="date"].form-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}

input[type="date"].form-input:hover::-webkit-calendar-picker-indicator {
    opacity: 1;
}

/* Transport mode responsive */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .transport-method-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ============================= */
/* INKOOP MODE STYLES */
/* ============================= */

.inkoop-condition-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}

.inkoop-condition-grid .option-card {
    padding: 16px 12px;
}

/* Photo Upload Area */
.photo-upload-area {
    border: 2px dashed #d1d5db;
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.photo-upload-area:hover {
    border-color: #F59E0B;
    background: rgba(245, 158, 11, 0.02);
}

.photo-upload-prompt {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #6b7280;
    transition: color 0.3s;
}

.photo-upload-prompt:hover {
    color: #F59E0B;
}

.photo-upload-prompt svg {
    opacity: 0.5;
    transition: opacity 0.3s;
}

.photo-upload-prompt:hover svg {
    opacity: 1;
    stroke: #F59E0B;
}

.photo-upload-prompt span {
    font-size: 15px;
    font-weight: 600;
}

.photo-upload-prompt small {
    font-size: 12px;
    color: #9ca3af;
}

/* Photo Preview Grid */
.photo-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.photo-preview-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #e5e7eb;
}

.photo-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-preview-remove {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.2s;
    opacity: 0;
}

.photo-preview-item:hover .photo-preview-remove {
    opacity: 1;
}

.photo-preview-remove:hover {
    background: #dc2626;
    transform: scale(1.1);
}

/* Photo upload with photos added */
.photo-upload-area.has-photos .photo-upload-prompt span {
    font-size: 13px;
}

.photo-upload-area.has-photos .photo-upload-prompt svg {
    width: 24px;
    height: 24px;
}

/* Zeevracht equipment grid */
.zeevracht-equipment-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}

.zeevracht-equipment-grid .option-card {
    padding: 16px 12px;
}

/* Inkoop mode responsive */
@media (max-width: 600px) {
    .inkoop-condition-grid,
    .zeevracht-equipment-grid {
        grid-template-columns: 1fr !important;
    }

    .photo-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .quote-panel {
        max-width: 100%;
    }

    .card-mode-body {
        flex: 1;
        height: 0;
        min-height: 0;
    }

    .card-layer {
        padding: 16px;
        border-radius: 12px;
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }

    /* Hide progress bar step labels on mobile */
    .progress-step-label {
        display: none;
    }

    .card-title {
        font-size: 20px;
    }

    .card-subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .container-line {
        padding: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
    }

    .container-line + .container-line {
        border-top: 1px solid #e5e7eb;
        padding-top: 12px;
        margin-top: 12px;
    }

    .order-section-label {
        font-size: 13px;
    }

    .delivery-summary-card {
        padding: 8px 10px;
    }

    .option-grid {
        grid-template-columns: 1fr;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .container-line .line-selectors {
        flex-direction: column;
    }

    .period-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .quote-footer {
        padding: 16px;
    }
}

/* ============================================ */
/* Container Line Builder                       */
/* ============================================ */
.container-line {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 10px;
    position: relative;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s;
}
.container-line:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.container-line:only-child .line-remove {
    display: none;
}

.line-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.line-label {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
}

.line-remove {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 18px;
    padding: 0 4px;
    line-height: 1;
    transition: color 0.2s;
}

.line-remove:hover {
    color: #ef4444;
}

.line-type-row {
    margin-bottom: 8px;
}
.line-type-row .form-select {
    font-size: 13px;
    padding: 8px 10px;
}
.line-type-row .form-label {
    font-size: 11px;
    margin-bottom: 4px;
    color: #64748b;
}

.line-selectors {
    display: flex;
    gap: 8px;
}

.line-selectors .form-group {
    flex: 1;
    margin-bottom: 0;
}

.line-selectors .form-select {
    font-size: 13px;
    padding: 8px 10px;
}

.line-selectors .form-label {
    font-size: 11px;
    margin-bottom: 4px;
    color: #64748b;
}

/* Huurperiode visual selector */
.period-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    margin-top: 6px;
}

.period-option {
    text-align: center;
    padding: 8px 4px;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
}

.period-option:hover {
    border-color: #F59E0B;
    background: #fffbeb;
}

.period-option.selected {
    border-color: #F59E0B;
    background: #F59E0B;
    color: #fff;
}

.period-option .period-num {
    font-size: 18px;
    font-weight: 800;
    display: block;
    line-height: 1.2;
}

.period-option .period-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.period-option.selected .period-label {
    opacity: 1;
}

/* Add container button */
.btn-add-container {
    display: block;
    width: 100%;
    padding: 10px;
    background: none;
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 4px;
}

.btn-add-container:hover {
    border-color: #F59E0B;
    color: #F59E0B;
    background: #fffbeb;
}

/* Delivery Summary Card */
.delivery-summary-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 10px;
    padding: 14px 16px;
    position: relative;
}

.delivery-summary-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
}

.delivery-summary-icon {
    font-size: 16px;
    width: 24px;
    text-align: center;
}

.delivery-summary-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    min-width: 80px;
}

.delivery-summary-value {
    font-size: 13px;
    color: #1e293b;
    font-weight: 600;
}

.delivery-summary-edit {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: #0284c7;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    padding: 2px 4px;
}

.delivery-summary-edit:hover {
    color: #0369a1;
}

/* Success Screen */
.success-screen {
    text-align: center;
    padding: 40px 20px;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.success-checkmark svg {
    width: 80px;
    height: 80px;
}

.success-checkmark circle {
    fill: none;
    stroke: #059669;
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 0;
    animation: checkCircle 0.6s ease-in-out;
}

.success-checkmark path {
    fill: none;
    stroke: #059669;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 0;
    animation: checkPath 0.4s 0.3s ease-in-out both;
}

@keyframes checkCircle {
    from { stroke-dashoffset: 166; }
    to { stroke-dashoffset: 0; }
}

@keyframes checkPath {
    from { stroke-dashoffset: 48; }
    to { stroke-dashoffset: 0; }
}

.success-title {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
}

.success-message {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.success-ref {
    font-size: 14px;
    color: #475569;
    background: #f1f5f9;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 8px;
}
