body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            min-height: 100vh;
            color: #fff;
        }
        
        .container-main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .form-container {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 0px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 25px;
            overflow: hidden;
        }
        .form-container .service-row {
            display: flex;
            flex-wrap: wrap;
            max-height: 350px;
            overflow-y: scroll
        }
        .form-container .service-col {
            display: flex;
        }
        
        .progress-bar-custom {
            height: 15px;
            background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
            border-radius: 0px;
            transition: width 0.3s ease;
        }
        
        .progress-container {
            width: 100%;
            height: 15px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 0px;
            margin-bottom: 25px;
        }
        
        .step {
            display: none;
        }
        
        .step.active {
            display: block;
        }
        
        .service-card {
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            flex: 1;
        }
        
        .service-card:hover {
            border-color: #6366f1;
            background: rgba(99, 102, 241, 0.1);
        }
        
        .service-card.selected {
            border-color: #6366f1;
            background: rgba(99, 102, 241, 0.2);
        }
        
        .service-card i {
            font-size: 2.5rem;
            color: #6366f1;
            margin-bottom: 15px;
        }
        
        .service-card h5 {
            color: #fff;
            margin-bottom: 5px;
            font-size: 1rem;
        }
        
        .service-card small {
            color: #aaa;
            font-size: 0.8rem;
        }
        
        .form-control {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            color: #fff;
            padding: 12px 16px;
        }
        
        .form-control:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: #6366f1;
            box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
            color: #fff;
        }
        
        .form-control::placeholder {
            color: #aaa;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            border: none;
            border-radius: 10px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
        }
        
        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 100px;
            color: #fff;
            padding: 12px 30px;
        }
        
        .gift-section {
            background: rgba(50, 50, 50, 0.3);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            margin-bottom: 25px;
        }
        
        .timer {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ff6b6b;
            margin: 20px 0;
        }
        
        .gift-voucher {
            background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
            color: #333;
            border-radius: 15px;
            padding: 20px;
            margin: 20px 0;
        }
        
        .benefit-item {
            display: flex;
            align-items: center;
            margin: 10px 0;
            padding: 10px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
        }
        
        .benefit-item i {
            color: #4ade80;
            margin-right: 10px;
        }
        
        .title-section {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .title-section h1 {
            font-size: 2.5rem;
            font-weight: bold;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
        }
        
        .title-section p {
            color: #aaa;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .step-indicator {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 30px;
            position: relative;
        }
        #quoteForm{
            padding: 25px;
        }
        
        .step-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            flex: 1;
            max-width: 200px;
        }
        
        .step-item:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 25px;
            left: 60%;
            width: 77%;
            height: 2px;
            margin-left: 3px;
            background: rgba(255, 255, 255, 0.2);
            z-index: 1;
        }
        
        .step-item.completed:not(:last-child)::after {
            background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
        }
        
        .step-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            position: relative;
            z-index: 2;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }
        
        .step-circle.active {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            color: white;
        }
        
        .step-circle.completed {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            color: white;
        }
        
        .step-circle.inactive {
            background: rgba(255, 255, 255, 0.1);
            color: #aaa;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }
        
        .step-label {
            font-size: 0.8rem;
            color: #aaa;
            text-align: center;
        }
        
        .step-item.active .step-label {
            color: #fff;
            font-weight: 600;
        }
        
        .step-item.completed .step-label {
            color: #6366f1;
        }
        
        .success-message {
            text-align: center;
            padding: 25px;
        }
        
        .success-message i {
            font-size: 4rem;
            color: #4ade80;
            margin-bottom: 20px;
        }

        