    /* Custom Properties for consistent theming */
    :root {
        --color-primary: #1a1a2e;
        --color-secondary: #16213e;
        --color-accent: #0f3460;
        --color-highlight: #e94560;
        --color-warm: #f5f5f0;
        --color-cream: #fafaf8;
        --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
        --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
        --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
    }

    /* Breadcrumb styling */
    .breadcrumb-item {
        position: relative;
        transition: var(--transition-smooth);
    }
    
    .breadcrumb-item::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background: currentColor;
        transition: width 0.3s ease;
    }
    
    .breadcrumb-item:hover::after {
        width: 100%;
    }

    /* Main image container with glass effect */
    .main-image-container {
        position: relative;
        background: linear-gradient(135deg, var(--color-cream) 0%, #ffffff 100%);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: var(--shadow-soft);
    }

    .main-image-container::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.02) 100%);
        pointer-events: none;
        z-index: 1;
    }

    /* Thumbnail styling */
    .thumbnail-btn {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        transition: var(--transition-smooth);
        border: 2px solid transparent;
        background: white;
    }

    .thumbnail-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .thumbnail-btn:hover::before {
        opacity: 1;
    }

    .thumbnail-btn.active {
        border-color: var(--color-highlight);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(233, 69, 96, 0.2);
    }

    /* Typography enhancements */
    .product-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
        line-height: 1.1;
        letter-spacing: -0.02em;
        background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .price-tag {
        font-variant-numeric: tabular-nums;
        letter-spacing: -0.02em;
    }

    /* Feature cards with bento style */
    .feature-bento {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 16px;
        transition: var(--transition-smooth);
    }

    .feature-bento:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-medium);
        border-color: rgba(233, 69, 96, 0.2);
    }

    /* CTA Buttons */
    .btn-primary {
        background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
        color: white;
        border-radius: 12px;
        font-weight: 600;
        letter-spacing: 0.01em;
        transition: var(--transition-smooth);
        position: relative;
        overflow: hidden;
    }

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s ease;
    }

    .btn-primary:hover::before {
        left: 100%;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(26, 26, 46, 0.3);
    }

    .btn-secondary {
        background: white;
        color: var(--color-primary);
        border: 2px solid var(--color-primary);
        border-radius: 12px;
        font-weight: 600;
        transition: var(--transition-smooth);
    }

    .btn-secondary:hover {
        background: var(--color-primary);
        color: white;
        transform: translateY(-2px);
    }

    /* Trust badges */
    .trust-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        background: var(--color-cream);
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--color-secondary);
        transition: var(--transition-smooth);
    }

    .trust-badge:hover {
        background: var(--color-primary);
        color: white;
        transform: scale(1.05);
    }

    /* Specifications panel */
    .specs-panel {
        background: var(--color-cream);
        border-radius: 20px;
        border: 1px solid rgba(0,0,0,0.05);
    }

    .spec-row {
        display: flex;
        justify-content: space-between;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        transition: var(--transition-smooth);
    }

    .spec-row:hover {
        padding-left: 0.5rem;
        color: var(--color-highlight);
    }

    .spec-row:last-child {
        border-bottom: none;
    }


:root {
        --primary: hsl(255 52% 23%);
        --primary-hover: hsl(255 38% 26%);
        --secondary: hsl(178 48% 51%);
        --secondary-hover: hsl(178 48% 45%);
        --bg-warm: hsl(40 20% 97%);
        --text-muted: hsl(255 10% 50%);
    }

    /* Main Quote Section - Extraordinary Design */
    .quote-hero-section {
        position: relative;
        background: linear-gradient(135deg, var(--primary) 0%, hsl(255 45% 15%) 50%, var(--primary-hover) 100%);
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    /* Animated Background Elements */
    .quote-bg-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.4;
        animation: float 20s infinite ease-in-out;
    }

    .orb-1 {
        width: 600px;
        height: 600px;
        background: var(--secondary);
        top: -200px;
        right: -100px;
        animation-delay: 0s;
    }

    .orb-2 {
        width: 400px;
        height: 400px;
        background: hsl(280 60% 40%);
        bottom: -100px;
        left: -100px;
        animation-delay: -10s;
    }

    .orb-3 {
        width: 300px;
        height: 300px;
        background: var(--secondary);
        top: 50%;
        left: 30%;
        animation-delay: -5s;
        opacity: 0.2;
    }

    @keyframes float {
        0%, 100% { transform: translate(0, 0) scale(1); }
        33% { transform: translate(30px, -30px) scale(1.1); }
        66% { transform: translate(-20px, 20px) scale(0.9); }
    }

    /* Grid Pattern Overlay */
    .quote-grid-overlay {
        position: absolute;
        inset: 0;
        background-image: 
            linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
        background-size: 60px 60px;
        pointer-events: none;
    }

    /* Content Container */
    .quote-container {
        position: relative;
        z-index: 10;
        width: 100%;


    }

    /* Two Column Layout */
    .quote-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 4rem;
        align-items: start;
    }

    @media (min-width: 1024px) {
        .quote-grid {
            grid-template-columns: 1fr 1.2fr;
            gap: 6rem;
        }
    }

    /* Left Column - Value Proposition */
    .quote-value-col {
        color: white;
        padding-top: 2rem;
    }

    .quote-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 50px;
        font-size: 0.875rem;
        font-weight: 600;
        margin-bottom: 2rem;
        animation: pulse-glow 2s infinite;
    }

    @keyframes pulse-glow {
        0%, 100% { box-shadow: 0 0 20px rgba(94, 234, 212, 0.3); }
        50% { box-shadow: 0 0 40px rgba(94, 234, 212, 0.6); }
    }

    .quote-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, white 0%, rgba(255,255,255,0.8) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .quote-subtitle {
        font-size: 1.25rem;
        color: rgba(255,255,255,0.7);
        line-height: 1.7;
        margin-bottom: 3rem;
        max-width: 500px;
    }

    /* Trust Indicators */
    .quote-trust-grid {
        display: none;
     
    }

    
    @media (min-width: 1024px) {
        .quote-trust-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }
    }
    .trust-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .trust-item:hover {
        background: rgba(255,255,255,0.1);
        transform: translateX(5px);
        border-color: var(--secondary);
    }

    .trust-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, var(--secondary) 0%, hsl(178 48% 60%) 100%);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .trust-icon svg {
        width: 20px;
        height: 20px;
        color: white;
    }

    .trust-text {
        font-size: 0.875rem;
        font-weight: 600;
    }

    .trust-subtext {
        font-size: 0.75rem;
        color: rgba(255,255,255,0.6);
        margin-top: 0.25rem;
    }

    /* Right Column - The Form */
    .quote-form-wrapper {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 24px;
        padding: 2.5rem;
        box-shadow: 
            0 25px 50px -12px rgba(0, 0, 0, 0.5),
            0 0 0 1px rgba(255,255,255,0.1);
        position: relative;
        overflow: hidden;
    }

    .quote-form-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--secondary) 0%, hsl(280 60% 50%) 50%, var(--secondary) 100%);
        background-size: 200% 100%;
        animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
        0% { background-position: -200% 0; }
        100% { background-position: 200% 0; }
    }

    .form-header {
        margin-bottom: 2rem;
        text-align: center;
    }

    .form-header h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 0.5rem;
    }

    .form-header p {
        color: var(--text-muted);
        font-size: 0.875rem;
    }

    /* Floating Label Inputs */
    .form-group {
        position: relative;
        margin-bottom: 1.5rem;
    }

    .form-input {
        width: 100%;
        padding: 1rem 1rem 1rem 3rem;
        background: #e9eef3;
        border: 2px solid transparent;
        border-radius: 12px;
        font-size: 0.8rem;
        color: var(--primary);
        transition: all 0.3s ease;
        outline: none;
    }

    .form-input:focus {
        background: white;
        border-color: var(--secondary);
        box-shadow: 0 0 0 4px hsl(178 48% 51% / 0.1);
    }

    .form-input::placeholder {
        color: transparent;
    }

    .form-label {
        position: absolute;
        left: 3rem;
        top: 1rem;
        font-size: 0.8rem;
        color: var(--text-muted);
        pointer-events: none;
        transition: all 0.3s ease;
        background: transparent;
        padding: 0 0.25rem;
    }

    @media (max-width: 767px) {
    .form-label {
        left: 0.3rem;
        top: 1rem;
        
    }
}

    .form-input:focus + .form-label,
    .form-input:not(:placeholder-shown) + .form-label {
        top: -0.6rem;
        left: 0.75rem;
        font-size: 1rem;
        color: var(--secondary);
        background: white;
        font-weight: 600;
    }

    

    
    .form-icon {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-muted);
        transition: color 0.3s ease;
        width: 20px;
        height: 20px;
    }

    .form-input:focus ~ .form-icon {
        color: var(--secondary);
    }

    /* Textarea specific */
    .form-group textarea {
        min-height: 120px;
        padding-top: 1rem;
        resize: vertical;
    }

    .form-group textarea + .form-label {
        top: 1rem;
        transform: none;
    }

    .form-group textarea:focus + .form-label,
    .form-group textarea:not(:placeholder-shown) + .form-label {
        top: -0.6rem;
        transform: none;
    }

    /* Select Dropdown Styling */
    .form-select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        background-size: 1.5rem;
        padding-right: 3rem;
    }

    /* Two Column Form Grid */
    .form-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    @media (min-width: 640px) {
        .form-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    /* Submit Button - Extraordinary */
    .submit-btn {
        width: 100%;
        padding: 1.25rem 2rem;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 1.125rem;
        font-weight: 700;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .submit-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s ease;
    }

    .submit-btn:hover::before {
        left: 100%;
    }

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 20px 40px -10px hsl(255 52% 23% / 0.4);
    }

    .submit-btn:active {
        transform: translateY(0);
    }

    .submit-btn svg {
        transition: transform 0.3s ease;
    }

    .submit-btn:hover svg {
        transform: translateX(4px);
    }

    /* Loading State */
    .submit-btn.loading {
        pointer-events: none;
        opacity: 0.8;
    }

    .submit-btn.loading .btn-text {
        opacity: 0;
    }

    .btn-loader {
        position: absolute;
        width: 24px;
        height: 24px;
        border: 3px solid rgba(255,255,255,0.3);
        border-top-color: white;
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
        opacity: 0;
    }

    .submit-btn.loading .btn-loader {
        opacity: 1;
    }

    @keyframes spin {
        to { transform: rotate(360deg); }
    }

    /* Success Message */
    .form-success {
        display: none;
        text-align: center;
        padding: 3rem 2rem;
    }

    .form-success.active {
        display: block;
        animation: successPop 0.5s ease;
    }

    @keyframes successPop {
        0% { opacity: 0; transform: scale(0.9); }
        100% { opacity: 1; transform: scale(1); }
    }

    .success-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--secondary) 0%, hsl(178 48% 60%) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        animation: successPulse 0.5s ease;
    }

    @keyframes successPulse {
        0% { transform: scale(0); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }

    .success-icon svg {
        width: 40px;
        height: 40px;
        color: white;
    }

    /* Security Badges */
    .security-badges {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(0,0,0,0.1);
    }

    .security-badge {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.75rem;
        color: var(--text-muted);
    }

    .security-badge svg {
        width: 16px;
        height: 16px;
        color: var(--secondary);
    }

    /* Floating Particles */
    .particle {
        position: absolute;
        width: 4px;
        height: 4px;
        background: var(--secondary);
        border-radius: 50%;
        pointer-events: none;
        opacity: 0.6;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .quote-hero-section {
            min-height: auto;
            padding: 2rem 0;
        }
        
        .quote-form-wrapper {
            padding: 1rem;
            margin: 0 -1rem;
            border-radius: 20px;
        }
        
        .quote-trust-grid {
            grid-template-columns: 1fr;
        }
        
        .orb-1, .orb-2, .orb-3 {
            display: none;
        }
    }

    /* Input Focus Animation */
    .form-group::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--secondary);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .form-group:focus-within::after {
        width: calc(100% - 2rem);
    }

    /* Character Counter for Textarea */
    .char-counter {
        position: absolute;
        bottom: 0.75rem;
        right: 1rem;
        font-size: 0.75rem;
        color: var(--text-muted);
        background: rgba(255,255,255,0.9);
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
    }


    /* Related products */
    .related-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        transition: var(--transition-smooth);
        border: 1px solid rgba(0,0,0,0.05);
    }



    .related-image-wrapper {
        position: relative;
        overflow: hidden;
        aspect-ratio: 1;
    }

    .related-image-wrapper img {
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .related-card:hover .related-image-wrapper img {
        transform: scale(1.08);
    }

    .related-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(26, 26, 46, 0.8) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 1.5rem;
    }

    .related-card:hover .related-overlay {
        opacity: 1;
    }

    /* Scroll reveal animation */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    /* Sticky sidebar */
    @media (min-width: 1024px) {
        .sticky-info {
            position: sticky;
            top: 2rem;
        }
    }

    /* Mobile optimizations */
    @media (max-width: 768px) {
        .main-image-container {
            border-radius: 12px;
        }
        
        .thumbnail-btn {
            border-radius: 8px;
        }
        
        .quote-section {
            border-radius: 16px;
            margin: 0 -1rem;
        }
    }

    /* Image zoom effect */
    .zoom-container {
        cursor: zoom-in;
    }

    .zoom-container:hover img {
        transform: scale(1.05);
    }

    /* Loading state for images */
    .image-skeleton {
        background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
        background-size: 200% 100%;
        animation: shimmer 1.5s infinite;
    }

    @keyframes shimmer {
        0% { background-position: -200% 0; }
        100% { background-position: 200% 0; }
    }


        /* Keep two inputs per row on mobile for this page */
    #quote-form .form-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.85rem;
    }

    /* Force dimensions to stay on a single line */
    #quote-form .dimensions-row {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.75rem;
    }

    #quote-form .dimensions-row .form-group {
        min-width: 0;
    }

    /* Keep select/file labels readable and avoid overlap with field values */
    #quote-form select.form-input + .form-label,
    #quote-form input[type="file"].form-input + .form-label {
        top: -0.55rem;
        left: 0.75rem;
        font-size: 0.8rem;
        color: var(--secondary);
        background: white;
        font-weight: 600;
    }

    #quote-form select.form-input,
    #quote-form input[type="file"].form-input {
        padding-top: 1.05rem;
        padding-bottom: 0.65rem;
    }

    /* Premium select styling */
    #quote-form select.form-input {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        padding-left: 2.75rem;
        padding-right: 2.4rem;
        padding-top: 0.85rem;
        padding-bottom: 0.85rem;
        min-height: 3.5rem;
        line-height: 1.25;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.01em;
        background-color: #e9eef3;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b5f85' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 0.8rem center;
        background-size: 1rem;
        color: var(--primary);
    }

    #quote-form select.form-input.is-placeholder {
        color: #8a84a3;
        font-weight: 500;
    }

    #quote-form select.form-input option {
        color: var(--primary);
        background: #ffffff;
        font-size: 0.8rem;
        font-weight: 500;
    }

    #quote-form select.form-input option.placeholder-option {
        color: #8a84a3;
    }

    #quote-form select.form-input:focus {
        background-color: #ffffff;
    }

    #quote-form select.form-input ~ .form-icon {
        top: 50%;
        transform: translateY(-50%);
    }

    /* Dimension row is compact; remove icons there to prevent crowding */
    #quote-form .dimensions-row .form-icon {
        display: none;
    }

    #quote-form .dimensions-row .form-input {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    #quote-form .dimensions-row .form-label {
        left: 0.85rem;
    }

    @media (max-width: 768px) {
        #quote-form .form-group {
            margin-bottom: 0.8rem;
        }
           #quote-form .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }
    }

    @media (max-width: 420px) {
        #quote-form input.form-input,
        #quote-form textarea.form-input {
            padding-left: 0.9rem;
            padding-right: 2rem;
            font-size: 0.8rem;
        }

        #quote-form select.form-input {
            padding-left: 2.2rem;
            padding-right: 2rem;
            font-size: 0.8rem;
        }

        #quote-form .form-label {
            font-size:0.8rem;
        }
    }
