
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        body {
            background-color: #FFFCFC;
            color: #000000;
            line-height: 1.5;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .header {
            text-align: center;
            margin-bottom: 30px;
        }

        .logo {
            font-size: 32px;
            font-weight: 700;
            color: #000000;
            margin-bottom: 8px;
        }

        .tagline {
            color: #000000;
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.8;
        }

        .form-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            max-width: 1000px;
            margin: 0 auto;
        }

        .services-sidebar {
            flex: 1;
            min-width: 280px;
            background: #f8f8f8;
            padding: 24px;
        }

        .form-container {
            flex: 2;
            min-width: 400px;
            padding: 24px;
        }

        .service-option {
            display: flex;
            align-items: center;
            padding: 16px;
            margin-bottom: 8px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            border: 1px solid #e0e0e0;
        }

        .service-option:hover {
            background-color: white;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
        }

        .service-option.active {
            background-color: white;
            border-color: #000000;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #000000;
            color: white;
            border-radius: 8px;
            margin-right: 12px;
            font-size: 18px;
        }

        .service-info h3 {
            font-size: 16px;
            margin-bottom: 4px;
            font-weight: 600;
            color: #000000;
        }

        .service-info p {
            font-size: 14px;
            color: #000000;
            opacity: 0.7;
        }

        .form-section {
            margin-bottom: 24px;
        }

        .form-section h2 {
            font-size: 20px;
            margin-bottom: 16px;
            color: #000000;
            font-weight: 600;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-row {
            display: flex;
            gap: 12px;
        }

        .form-row .form-group {
            flex: 1;
        }

        label {
            display: block;
            margin-bottom: 6px;
            font-weight: 500;
            color: #000000;
            font-size: 14px;
        }

        input, select, textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #d1d1d1;
            border-radius: 6px;
            font-size: 16px;
            transition: all 0.2s ease;
            background-color: white;
            color: #000000;
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: #000000;
            box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
        }

        .checkbox-group input {
            width: auto;
            margin-right: 8px;
        }

        .checkbox-group label {
            margin-bottom: 0;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            background: #000000;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            text-align: center;
        }

        .btn:hover {
            background: #333333;
        }

        .btn-block {
            display: block;
            width: 100%;
        }

        .btn:disabled {
            background: #cccccc;
            cursor: not-allowed;
        }

        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid #ffffff;
            border-radius: 50%;
            border-top-color: transparent;
            animation: spin 1s ease-in-out infinite;
            margin-right: 8px;
            vertical-align: middle;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .conditional-field {
            display: none;
            animation: fadeIn 0.3s ease;
        }

        .conditional-field.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(8px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .progress-bar {
            display: flex;
            margin-bottom: 24px;
            position: relative;
        }

        .progress-step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .progress-step:not(:last-child):before {
            content: '';
            position: absolute;
            top: 16px;
            left: 50%;
            width: 100%;
            height: 2px;
            background: #e0e0e0;
            z-index: 1;
        }

        .progress-step.active:not(:last-child):before {
            background: #000000;
        }

        .step-circle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 8px;
            position: relative;
            z-index: 2;
            font-size: 14px;
            font-weight: 500;
        }

        .progress-step.active .step-circle {
            background: #000000;
            color: white;
        }

        .step-label {
            font-size: 14px;
            color: #000000;
            opacity: 0.7;
        }

        .progress-step.active .step-label {
            color: #000000;
            font-weight: 500;
            opacity: 1;
        }

        .form-step {
            display: none;
        }

        .form-step.active {
            display: block;
        }

        .success-message {
            text-align: center;
            padding: 40px 20px;
            display: none;
        }

        .success-message.active {
            display: block;
        }

        .success-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: #000000;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 28px;
        }

        .success-message h2 {
            color: #000000;
            margin-bottom: 12px;
            font-size: 24px;
        }

        .success-message p {
            color: #000000;
            opacity: 0.8;
            max-width: 500px;
            margin: 0 auto 20px;
        }

        .required:after {
            content: '*';
            color: #e53935;
            margin-left: 4px;
        }

        .error-message {
            color: #e53935;
            font-size: 14px;
            margin-top: 4px;
            display: none;
        }

        .form-group.error .error-message {
            display: block;
        }

        .form-group.error input,
        .form-group.error select,
        .form-group.error textarea {
            border-color: #e53935;
        }

        .form-buttons {
            display: flex;
            gap: 12px;
            margin-top: 24px;
        }

        .form-buttons .btn {
            flex: 1;
        }

        .btn-outline {
            background: transparent;
            border: 1px solid #000000;
            color: #000000;
        }

        .btn-outline:hover {
            background: #f0f0f0;
        }

        @media (max-width: 768px) {
            .form-wrapper {
                flex-direction: column;
            }
            
            .services-sidebar, .form-container {
                min-width: 100%;
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
        }
        /* ✅ Only for Wedding Checkbox Group */
.wedding-services-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 14px;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.wedding-services-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #333;
}

.wedding-services-group input[type="checkbox"] {
  transform: scale(1.1);
  accent-color: #2a7ae4;
  cursor: pointer;
}

.partner-options-group{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 14px;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.partner-options-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #333;
}

.partner-options-group input[type="checkbox"] {
  transform: scale(1.1);
  accent-color: #2a7ae4;
  cursor: pointer;
}

.vehicle-options-group{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 14px;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.vehicle-options-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #333;
}

.vehicle-options-group input[type="checkbox"] {
  transform: scale(1.1);
  accent-color: #2a7ae4;
  cursor: pointer;
}


.additional-options-group{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 14px;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.additional-options-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #333;
}

.additional-options-group input[type="checkbox"] {
  transform: scale(1.1);
  accent-color: #2a7ae4;
  cursor: pointer;
}



.secheck{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 14px;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.secheck label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #333;
}

.secheck input[type="checkbox"] {
  transform: scale(1.1);
  accent-color: #2a7ae4;
  cursor: pointer;
}