/* ========================================
   HIRA PRINT - AI-POWERED QUOTE CALCULATOR
   Enhanced Quote Page Styles
======================================== */

:root {
    --quote-gold: #d4af37;
    --quote-gold-light: #e9c85d;
    --quote-gold-glow: rgba(212, 175, 55, 0.3);
    --quote-navy: #0a1628;
    --quote-navy-light: #142238;
    --quote-navy-lighter: #1e3354;
    --quote-white: #ffffff;
    --quote-gray: #8892a6;
    --quote-success: #10b981;
    --quote-error: #ef4444;
    --quote-ai-blue: #00d4ff;
    --quote-ai-purple: #8b5cf6;
    --quote-ai-gradient: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.quote-page {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--quote-navy) 0%, var(--quote-navy-light) 100%);
    min-height: 100vh;
    color: var(--quote-white);
}

/* ========================================
   AI ASSISTANT COMPONENTS
======================================== */

/* AI Assistant Floating Button */
.ai-assistant-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--quote-ai-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
}

.ai-assistant-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.6);
}

.ai-assistant-trigger i {
    font-size: 24px;
    color: white;
}

.ai-assistant-trigger .ai-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--quote-gold);
    color: var(--quote-navy);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 8px;
}

.ai-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--quote-ai-gradient);
    animation: aiPulse 2s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes aiPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 0; }
}

/* AI Assistant Panel */
.ai-assistant-panel {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    max-height: 500px;
    background: var(--quote-navy-light);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.ai-assistant-panel.active {
    display: flex;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.ai-panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(139, 92, 246, 0.1));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-avatar {
    width: 44px;
    height: 44px;
    background: var(--quote-ai-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ai-avatar i {
    font-size: 20px;
    color: white;
}

.ai-avatar .ai-status {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: var(--quote-success);
    border: 2px solid var(--quote-navy-light);
    border-radius: 50%;
}

.ai-info {
    flex: 1;
}

.ai-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.ai-typing {
    font-size: 12px;
    color: var(--quote-ai-blue);
}

.ai-close {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    color: var(--quote-gray);
    cursor: pointer;
    transition: all 0.2s;
}

.ai-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.ai-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 300px;
}

.ai-message {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    animation: fadeIn 0.3s ease;
}

.ai-message.bot {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-bottom-left-radius: 4px;
    max-width: 85%;
}

.ai-message.user {
    background: var(--quote-gold);
    color: var(--quote-navy);
    border-bottom-right-radius: 4px;
    margin-left: auto;
    max-width: 85%;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.ai-suggestions {
    padding: 16px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-suggestion-btn {
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--quote-gray);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.ai-suggestion-btn:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--quote-ai-blue);
    color: var(--quote-ai-blue);
}

/* AI Insight Cards */
.ai-insight-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    margin-bottom: 24px;
    animation: fadeIn 0.5s ease;
}

.insight-icon {
    width: 36px;
    height: 36px;
    background: var(--quote-ai-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.insight-icon i {
    color: white;
    font-size: 16px;
}

.insight-content {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.insight-content strong {
    color: var(--quote-ai-blue);
    font-weight: 600;
}

/* AI Powered Badge */
.ai-powered-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(139, 92, 246, 0.15));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.ai-powered-badge i {
    color: var(--quote-ai-blue);
    font-size: 14px;
}

.ai-powered-badge span {
    font-size: 12px;
    font-weight: 600;
    background: var(--quote-ai-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ai-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

.ai-recommended {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: var(--quote-ai-gradient);
    color: white;
    font-size: 10px;
    font-weight: 600;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* ========================================
   HEADER STYLES
======================================== */

.quote-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.quote-header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.quote-header__logo .logo-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--quote-gold), var(--quote-gold-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--quote-navy);
}

.quote-header__logo .logo-text {
    display: flex;
    flex-direction: column;
}

.quote-header__logo .logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--quote-white);
    letter-spacing: 0.1em;
}

.quote-header__logo .logo-tagline {
    font-size: 0.65rem;
    color: var(--quote-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.quote-header__center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.quote-header__actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.quote-header__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--quote-white);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.quote-header__phone:hover {
    color: var(--quote-gold);
}

.quote-header__phone i {
    color: var(--quote-gold);
}

.quote-header__close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--quote-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.quote-header__close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--quote-white);
}

/* ========================================
   MAIN LAYOUT
======================================== */

.quote-main {
    padding-top: 90px;
    padding-bottom: 40px;
    min-height: 100vh;
}

.quote-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}

/* ========================================
   FORM PANEL STYLES
======================================== */

.quote-form-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(10px);
}

.quote-form-header {
    margin-bottom: 32px;
    text-align: center;
}

.header-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.quote-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--quote-gold);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.quote-badge.ai-badge-tag {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(139, 92, 246, 0.1));
    border-color: rgba(0, 212, 255, 0.3);
    color: var(--quote-ai-blue);
}

.quote-form-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--quote-white);
}

.quote-form-header p {
    color: var(--quote-gray);
    font-size: 14px;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 40px;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--quote-ai-gradient);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.step-circle {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-circle i {
    font-size: 18px;
    color: var(--quote-gray);
    transition: color 0.3s ease;
}

.progress-step span {
    font-size: 12px;
    color: var(--quote-gray);
    font-weight: 500;
}

.progress-step.active .step-circle {
    background: var(--quote-ai-gradient);
    border-color: transparent;
}

.progress-step.active .step-circle i {
    color: white;
}

.progress-step.active span {
    color: var(--quote-white);
}

.progress-step.completed .step-circle {
    background: var(--quote-success);
    border-color: var(--quote-success);
}

.progress-step.completed .step-circle i {
    color: white;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* Form Sections */
.form-section {
    margin-bottom: 32px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.section-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--quote-white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header h3 i {
    color: var(--quote-gold);
    font-size: 14px;
}

.section-header h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--quote-white);
}

.section-note {
    font-size: 12px;
    color: var(--quote-gray);
    margin-left: auto;
}

.help-btn {
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    color: var(--quote-gray);
    cursor: pointer;
    transition: color 0.2s ease;
}

.help-btn:hover {
    color: var(--quote-ai-blue);
}

/* Savings Indicator */
.savings-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    margin-left: auto;
}

.savings-indicator i {
    color: var(--quote-success);
    font-size: 12px;
}

.savings-indicator span {
    color: var(--quote-success);
    font-size: 11px;
    font-weight: 600;
}

/* ========================================
   PRODUCT CARDS
======================================== */

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.product-card {
    position: relative;
    cursor: pointer;
}

.product-card input {
    position: absolute;
    opacity: 0;
}

.product-card__content {
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.product-card:hover .product-card__content {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.product-card input:checked + .product-card__content {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--quote-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.product-icon-wrapper {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    position: relative;
    transition: all 0.3s ease;
}

.product-card input:checked + .product-card__content .product-icon-wrapper {
    background: var(--quote-gold);
}

.product-icon-wrapper i {
    font-size: 24px;
    color: var(--quote-gold);
    transition: color 0.3s ease;
}

.product-card input:checked + .product-card__content .product-icon-wrapper i {
    color: var(--quote-navy);
}

.popular-tag, .budget-tag {
    position: absolute;
    top: -8px;
    right: -8px;
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.popular-tag {
    background: var(--quote-gold);
    color: var(--quote-navy);
}

.budget-tag {
    background: var(--quote-success);
    color: white;
}

.product-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--quote-white);
    margin-bottom: 4px;
}

.product-desc {
    display: block;
    font-size: 11px;
    color: var(--quote-gray);
}

/* ========================================
   QUANTITY SELECTOR
======================================== */

.quantity-selector {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quantity-presets {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.qty-btn {
    flex: 1;
    min-width: 80px;
    padding: 14px 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--quote-white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.qty-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.qty-btn.active {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--quote-gold);
}

.qty-num {
    font-size: 15px;
    font-weight: 600;
}

.qty-discount {
    font-size: 10px;
    color: var(--quote-success);
    font-weight: 600;
}

.qty-btn.has-discount {
    position: relative;
}

.quantity-custom {
    display: flex;
    align-items: center;
    gap: 16px;
}

.custom-qty-wrapper {
    flex: 1;
}

.custom-qty-wrapper label {
    display: block;
    font-size: 12px;
    color: var(--quote-gray);
    margin-bottom: 8px;
}

.qty-input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.qty-input-group button {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--quote-gray);
    cursor: pointer;
    transition: all 0.2s ease;
}

.qty-input-group button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--quote-white);
}

.qty-input-group input {
    flex: 1;
    padding: 10px 16px;
    background: transparent;
    border: none;
    color: var(--quote-white);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.qty-input-group input:focus {
    outline: none;
}

/* ========================================
   SIZE CARDS
======================================== */

.size-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.size-card {
    cursor: pointer;
}

.size-card input {
    position: absolute;
    opacity: 0;
}

.size-card__content {
    padding: 16px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.size-card:hover .size-card__content {
    border-color: rgba(255, 255, 255, 0.2);
}

.size-card input:checked + .size-card__content {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--quote-gold);
}

.size-preview {
    width: 100%;
    aspect-ratio: 1 / 1.41;
    max-height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.size-preview.a4 { max-width: 42px; }
.size-preview.a5 { max-width: 35px; }
.size-preview.a3 { max-width: 50px; }
.size-preview.dl { max-width: 25px; }
.size-preview.custom { max-width: 38px; }

.size-preview.custom i {
    font-size: 18px;
    color: var(--quote-gray);
}

.size-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--quote-white);
    margin-bottom: 2px;
}

.size-dim {
    display: block;
    font-size: 10px;
    color: var(--quote-gray);
    margin-bottom: 4px;
}

.size-tag {
    display: inline-block;
    padding: 2px 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 9px;
    color: var(--quote-gray);
    text-transform: uppercase;
}

/* Custom Size Inputs */
.custom-size-inputs {
    margin-top: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.input-row {
    display: flex;
    gap: 16px;
}

.input-group {
    flex: 1;
}

.input-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--quote-gray);
    margin-bottom: 8px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--quote-white);
    font-size: 14px;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--quote-gold);
    background: rgba(212, 175, 55, 0.05);
}

.input-group.full-width {
    flex: none;
    width: 100%;
}

/* ========================================
   SPEC CARDS
======================================== */

.spec-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.spec-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.spec-card__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.spec-card__header i {
    color: var(--quote-gold);
    font-size: 14px;
}

.spec-card__header span {
    font-size: 13px;
    font-weight: 500;
    color: var(--quote-white);
}

.spec-hint {
    display: block;
    font-size: 11px;
    color: var(--quote-gray);
    margin-top: 8px;
}

.modern-select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: var(--quote-white);
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238892a6'%3E%3Cpath d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.modern-select:focus {
    outline: none;
    border-color: var(--quote-gold);
}

.modern-select option {
    background: var(--quote-navy-light);
    color: var(--quote-white);
}

/* Color Options */
.print-color-section {
    margin-top: 24px;
}

.color-options-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.color-option-card {
    cursor: pointer;
}

.color-option-card input {
    position: absolute;
    opacity: 0;
}

.color-card__content {
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.color-option-card:hover .color-card__content {
    border-color: rgba(255, 255, 255, 0.2);
}

.color-option-card input:checked + .color-card__content {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--quote-gold);
}

.color-preview {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.color-preview.full-color {
    background: linear-gradient(135deg, #ff6b6b 25%, #4ecdc4 25%, #4ecdc4 50%, #ffe66d 50%, #ffe66d 75%, #7c3aed 75%);
}

.color-preview.front-color {
    background: linear-gradient(to right, #ff6b6b 50%, #e0e0e0 50%);
}

.color-preview.bw {
    background: linear-gradient(135deg, #333 50%, #ddd 50%);
}

.color-name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--quote-white);
    margin-bottom: 2px;
}

.color-desc {
    display: block;
    font-size: 10px;
    color: var(--quote-gray);
    margin-bottom: 6px;
}

.color-tag {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
}

.color-tag.best-quality {
    background: rgba(212, 175, 55, 0.2);
    color: var(--quote-gold);
}

.color-tag.budget-friendly {
    background: rgba(16, 185, 129, 0.2);
    color: var(--quote-success);
}

/* Toggle Options */
.toggle-options {
    display: flex;
    gap: 8px;
}

.toggle-option {
    flex: 1;
    cursor: pointer;
}

.toggle-option input {
    position: absolute;
    opacity: 0;
}

.toggle-option span {
    display: block;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 12px;
    text-align: center;
    color: var(--quote-gray);
    transition: all 0.3s ease;
}

.toggle-option:hover span {
    border-color: rgba(255, 255, 255, 0.2);
}

.toggle-option input:checked + span {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--quote-gold);
    color: var(--quote-white);
}

/* Coating Options */
.coating-options {
    display: flex;
    gap: 12px;
}

.coating-card {
    flex: 1;
    cursor: pointer;
}

.coating-card input {
    position: absolute;
    opacity: 0;
}

.coating-content {
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.coating-card:hover .coating-content {
    border-color: rgba(255, 255, 255, 0.2);
}

.coating-card input:checked + .coating-content {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--quote-gold);
}

.coating-content i {
    font-size: 24px;
    color: var(--quote-gray);
    margin-bottom: 8px;
    display: block;
}

.coating-card input:checked + .coating-content i {
    color: var(--quote-gold);
}

.coating-name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--quote-white);
    margin-bottom: 2px;
}

.coating-price {
    display: block;
    font-size: 11px;
    color: var(--quote-success);
}

.coating-benefit {
    display: block;
    font-size: 10px;
    color: var(--quote-gray);
    margin-top: 4px;
}

/* ========================================
   LAMINATION GRID
======================================== */

.lamination-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.lamination-card {
    cursor: pointer;
}

.lamination-card input {
    position: absolute;
    opacity: 0;
}

.lamination-card__content {
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.lamination-card:hover .lamination-card__content {
    border-color: rgba(255, 255, 255, 0.2);
}

.lamination-card input:checked + .lamination-card__content {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--quote-gold);
}

.lam-preview {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lam-preview.none {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.lam-preview.gloss {
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.lam-preview.matt {
    background: #e0e0e0;
}

.lam-preview.softtouch {
    background: linear-gradient(135deg, #ddd 0%, #aaa 100%);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.lam-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--quote-white);
    margin-bottom: 4px;
}

.lam-desc {
    display: block;
    font-size: 11px;
    color: var(--quote-gray);
}

.lam-tag {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(212, 175, 55, 0.2);
    color: var(--quote-gold);
    border-radius: 8px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 8px;
}

.lam-tag.premium-tag {
    background: rgba(139, 92, 246, 0.2);
    color: var(--quote-ai-purple);
}

/* ========================================
   EFFECTS GRID
======================================== */

.effects-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.effect-card {
    cursor: pointer;
}

.effect-card input {
    position: absolute;
    opacity: 0;
}

.effect-content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.effect-card:hover .effect-content {
    border-color: rgba(255, 255, 255, 0.2);
}

.effect-card input:checked + .effect-content {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--quote-gold);
}

.effect-visual {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.effect-visual.spot-uv {
    background: linear-gradient(135deg, #333 0%, #666 100%);
    position: relative;
}

.effect-visual.spot-uv::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    filter: blur(2px);
}

.effect-visual.foiling {
    background: linear-gradient(135deg, #d4af37 0%, #f0d88a 50%, #d4af37 100%);
}

.effect-visual.emboss {
    background: #e0e0e0;
    box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.2), inset -2px -2px 4px rgba(255, 255, 255, 0.5);
}

.effect-visual i {
    font-size: 20px;
    color: white;
}

.effect-visual.emboss i {
    color: #666;
}

.effect-info {
    flex: 1;
}

.effect-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--quote-white);
    margin-bottom: 2px;
}

.effect-desc {
    display: block;
    font-size: 12px;
    color: var(--quote-gray);
    margin-bottom: 2px;
}

.effect-price {
    display: block;
    font-size: 12px;
    color: var(--quote-success);
    font-weight: 500;
}

.effect-check {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.effect-check i {
    font-size: 12px;
    color: white;
}

.effect-card input:checked + .effect-content .effect-check {
    opacity: 1;
    background: var(--quote-gold);
}

/* ========================================
   BINDING GRID
======================================== */

.binding-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.binding-card {
    cursor: pointer;
}

.binding-card input {
    position: absolute;
    opacity: 0;
}

.binding-card input + .binding-visual {
    width: 100%;
}

.binding-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.binding-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.binding-card:has(input:checked) {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--quote-gold);
}

.binding-visual {
    width: 80px;
    height: 60px;
    margin: 0 auto 12px;
    background: #e0e0e0;
    border-radius: 4px;
    position: relative;
}

.binding-visual.saddle {
    background: linear-gradient(to right, #ccc 48%, #999 48%, #999 52%, #ccc 52%);
}

.binding-visual.perfect {
    background: #e0e0e0;
    border-left: 8px solid #666;
}

.binding-visual.wire {
    background: #e0e0e0;
    position: relative;
}

.binding-visual.wire::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 6px;
    background: repeating-linear-gradient(0deg, #333 0px, #333 4px, transparent 4px, transparent 8px);
}

.binding-info {
    text-align: center;
}

.bind-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--quote-white);
    margin-bottom: 2px;
}

.bind-desc {
    display: block;
    font-size: 11px;
    color: var(--quote-gray);
    margin-bottom: 4px;
}

.bind-pages {
    display: block;
    font-size: 10px;
    color: var(--quote-success);
}

/* ========================================
   DELIVERY CARDS
======================================== */

.delivery-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.delivery-card {
    cursor: pointer;
}

.delivery-card input {
    position: absolute;
    opacity: 0;
}

.delivery-content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.delivery-card:hover .delivery-content {
    border-color: rgba(255, 255, 255, 0.2);
}

.delivery-card input:checked + .delivery-content {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--quote-gold);
}

.delivery-content > i {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--quote-gold);
}

.delivery-info {
    flex: 1;
}

.del-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--quote-white);
}

.del-location {
    display: block;
    font-size: 12px;
    color: var(--quote-gray);
}

.del-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--quote-white);
}

.del-price.free {
    color: var(--quote-success);
}

/* ========================================
   FORM NAVIGATION
======================================== */

.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-prev {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--quote-gray);
}

.btn-prev:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--quote-white);
}

.btn-next {
    background: var(--quote-gold);
    border: none;
    color: var(--quote-navy);
    margin-left: auto;
}

.btn-next:hover {
    background: var(--quote-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* ========================================
   SUMMARY PANEL
======================================== */

.quote-summary-panel {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Live Preview Card */
.live-preview-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
}

.preview-header {
    margin-bottom: 16px;
}

.preview-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--quote-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.preview-label i {
    color: var(--quote-ai-blue);
}

.preview-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    margin-bottom: 16px;
}

.preview-book {
    position: relative;
    perspective: 600px;
}

.book-cover {
    width: 80px;
    height: 100px;
    background: linear-gradient(135deg, var(--quote-gold), var(--quote-gold-light));
    border-radius: 2px 8px 8px 2px;
    position: relative;
    transform: rotateY(-20deg);
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cover-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    border-radius: inherit;
}

.book-pages {
    position: absolute;
    left: -5px;
    top: 5px;
    width: 75px;
    height: 90px;
    background: linear-gradient(to left, #f5f5f5, #e0e0e0);
    border-radius: 2px 0 0 2px;
    transform: rotateY(-20deg);
    z-index: -1;
}

.preview-specs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--quote-white);
}

.spec-divider {
    color: var(--quote-gray);
}

/* Quote Summary */
.quote-summary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px;
}

.summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.summary-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-title i {
    color: var(--quote-gold);
}

.summary-title h2 {
    font-size: 18px;
    font-weight: 600;
}

.ai-calculated {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
}

.ai-calculated i {
    color: var(--quote-ai-blue);
    font-size: 10px;
}

.ai-calculated span {
    font-size: 10px;
    color: var(--quote-ai-blue);
    font-weight: 500;
}

/* Savings Alert */
.savings-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    margin-bottom: 20px;
}

.savings-alert i {
    color: var(--quote-success);
}

.savings-alert span {
    font-size: 13px;
    color: var(--quote-success);
}

/* Summary Breakdown */
.summary-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.breakdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.item-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--quote-gray);
}

.item-label i {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--quote-gold);
}

.item-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--quote-white);
}

/* Summary Totals */
.summary-totals {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.total-row.subtotal {
    color: var(--quote-gray);
}

.total-row.discount {
    color: var(--quote-success);
}

.discount-value {
    font-weight: 600;
}

.total-row.gst {
    color: var(--quote-gray);
}

/* Grand Total */
.grand-total-box {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 16px;
    margin-bottom: 20px;
}

.grand-total {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.total-label {
    font-size: 14px;
    color: var(--quote-gray);
}

.total-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--quote-gold);
}

.per-piece {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.perpiece-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--quote-white);
}

.perpiece-label {
    font-size: 12px;
    color: var(--quote-gray);
}

/* Summary Actions */
.summary-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-primary-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--quote-gold);
    border: none;
    border-radius: 12px;
    color: var(--quote-navy);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary-action:hover {
    background: var(--quote-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: #25d366;
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 12px;
}

.trust-badge {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.trust-badge i {
    color: var(--quote-gold);
    font-size: 16px;
}

.trust-badge span {
    font-size: 10px;
    color: var(--quote-gray);
    text-align: center;
}

/* Discount Tiers Card */
.discount-tiers-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
}

.tiers-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.tiers-header i {
    color: var(--quote-success);
}

.tiers-header span {
    font-size: 14px;
    font-weight: 600;
    color: var(--quote-white);
}

.tier-items {
    display: flex;
    gap: 8px;
}

.tier-item {
    flex: 1;
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.tier-item.active {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--quote-success);
}

.tier-qty {
    display: block;
    font-size: 12px;
    color: var(--quote-gray);
    margin-bottom: 4px;
}

.tier-discount {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--quote-success);
}

/* ========================================
   TOOLTIP
======================================== */

.tooltip {
    position: fixed;
    max-width: 280px;
    padding: 12px 16px;
    background: var(--quote-navy-light);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--quote-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
}

.tooltip.visible {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   MODAL STYLES
======================================== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--quote-navy-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--quote-gray);
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--quote-white);
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--quote-gold), var(--quote-gold-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.modal-icon i {
    font-size: 28px;
    color: var(--quote-navy);
}

.modal-header h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 14px;
    color: var(--quote-gray);
}

/* Request Form */
.request-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.request-form .input-row {
    display: flex;
    gap: 16px;
}

.request-form .input-group {
    flex: 1;
}

.request-form .input-group.full-width {
    width: 100%;
}

.request-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--quote-gray);
    margin-bottom: 8px;
}

.request-form label i {
    color: var(--quote-gold);
}

.request-form input,
.request-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--quote-white);
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.request-form input::placeholder,
.request-form textarea::placeholder {
    color: var(--quote-gray);
}

.request-form input:focus,
.request-form textarea:focus {
    outline: none;
    border-color: var(--quote-gold);
    background: rgba(212, 175, 55, 0.05);
}

.quote-preview {
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    font-size: 13px;
    color: var(--quote-gray);
    line-height: 1.8;
}

.quote-preview strong {
    color: var(--quote-white);
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--quote-gold);
    border: none;
    border-radius: 12px;
    color: var(--quote-navy);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--quote-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

/* ========================================
   RESPONSIVE STYLES
======================================== */

@media (max-width: 1200px) {
    .quote-container {
        grid-template-columns: 1fr 380px;
        gap: 30px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .size-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .lamination-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .binding-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .quote-container {
        grid-template-columns: 1fr;
        max-width: 700px;
    }
    
    .quote-summary-panel {
        position: static;
    }
    
    .quote-header__center {
        display: none;
    }
    
    .ai-assistant-panel {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .quote-header {
        padding: 12px 20px;
    }
    
    .quote-header__phone span {
        display: none;
    }
    
    .quote-main {
        padding-top: 80px;
    }
    
    .quote-container {
        padding: 0 20px;
    }
    
    .quote-form-panel {
        padding: 24px;
        border-radius: 20px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .quantity-presets {
        flex-wrap: wrap;
    }
    
    .qty-btn {
        min-width: 70px;
    }
    
    .size-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .spec-cards {
        grid-template-columns: 1fr;
    }
    
    .color-options-modern {
        grid-template-columns: 1fr;
    }
    
    .lamination-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .binding-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .request-form .input-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .ai-assistant-trigger {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 480px) {
    .quote-form-header h1 {
        font-size: 1.5rem;
    }
    
    .header-badges {
        flex-wrap: wrap;
    }
    
    .progress-steps {
        gap: 10px;
    }
    
    .step-circle {
        width: 40px;
        height: 40px;
    }
    
    .step-circle i {
        font-size: 14px;
    }
    
    .product-card__content {
        padding: 16px 12px;
    }
    
    .size-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .total-value {
        font-size: 28px;
    }
}
